"FORM" OBJECT CODE
Object code format
[parent_object.]FORM[{selector}][:scope].property
Possible parent objects | Example |
|
---|---|---|
<none> | FORM.REF | Returns the reference of the same FORM where the OBJECT CODE is being evaluated |
CASE | CASE.FORM{ELEGIBILITY}.REF | Returns the reference of all FORMs with FORM_CODE="ELEGIBILITY". The FORMs will be searched in all ADMISSIONS that belong to the CASE the context ADMISSION (the ADMISSION where the OBJECT CODE is being evaluated) Introduced in API Version 2.7.3 |
PROGRAM | PROGRAM.FORM{ELEGIBILITY}.REF | Returns the reference of a FORM with FORM_CODE="ELEGIBILITY". The FORMs will be searched in all ADMISSIONS that belong to the PROGRAM of the context ADMISSION (the ADMISSION where the OBJECT CODE is being evaluated) |
SUBSCRIPTION | SUBSCRIPTION.FORM{ELEGIBILITY}.REF | Returns the reference of a FORM with FORM_CODE="ELEGIBILITY". The FORMs will be searched in all ADMISSIONS that belong to the SUBSCRIPTION of the context ADMISSION (the ADMISSION where the OBJECT CODE is being evaluated) |
ADMISSION | ADMISSION.FORM{ELEGIBILITY}.REF | Returns the reference of a FORM with FORM_CODE="ELEGIBILITY". The FORMs will be searched in all FORMs of the context ADMISSION (the ADMISSION where the OBJECT CODE is being evaluated) |
TASK | TASK.FORM{ELEGIBILITY}.REF | Returns the reference of a FORM with FORM_CODE="ELEGIBILITY". The FORMs will be searched in all FORMs of the parent TASK object |
Returns information about a FORM
Scope options
This OBJECT CODE accepts the following scope expressions:
FIRST
: The first FORM of a TASK (according to the order of the FORMs in the TASK)LAST
: The last FORM in a TASK (according to the order of the FORMs in the TASK)A valid DATE SCOPE to define a date range for evaluating the OBJECT CODES. Note that the scope is referred to the TASK in which the OBJECT CODE has been invoked.
Note that when using the scopes FIRST
and LAST
, though apparently the expected output should be a unique FORM (the first or last FORM), in some circumstances may return more than one result. This happens when a parent object is explicitly specified and corresponds to more than one object.
For example, when you use the following expression: ADMISSION.TASK{ttt}.FORM{xxx}:LAST
it could happen that multiple TASKS with TASK_CODE=”xxx” exist in the ADMISSION. In that situation, the evaluation of the OBJECT CODE will return an array composed by the last FORM included in each of those TASKS.
The following table shows some examples to understand the behavior:
Object Code | Returns |
---|---|
| The reference of the last FORM with FORM_CODE=”xxx” in the last TASK (that contains that FORM) of the ADMISSION. The evaluation returns only one value. Before the fix applied in this issue the evaluation could return multiple values if there existed multiple TASKS with that FORM |
| The reference of the last FORM in the current TASK The evaluation returns only one value |
| The reference of the last FORM in the first TASK of the ADMISSION The evaluation returns only one value |
| The last FORM in the all TASKs with TASK_CODE=”ttt” of the ADMISSION. The evaluation may return a single value or an array (one per TASK) |
Examples
OBJECT CODE EXPRESSION | Description |
---|---|
| returns the reference of the first FORM in the context TASK (the one in which the OBJECT CODE is being evaluated) |
| returns the reference of the last FORM in the TASK with TASK CODE = “HEART_INFO” |
| returns the reference of all FORMS with FORM CODE = “HEART_RATE” that have been closed in the last 7 days |
Context information
Required context objects |
---|
TASK or ADMISSION or SUBSCRIPTION or PROGRAM or CASE |
When this OBJECT CODE is used independently (no parent), only FORMs in the current TASK (the one where the OBJECT CODE is evaluated) are considered
Otherwise the FORM is searched in the scope defined by the parent OBJECT.
If no selector has been provided in the OBJECT CODE (e..g. FORM.REF), then the FORM used to calculate the properties is the one where the OBJECT CODE is evaluated. Otherwise the FORM/s that correspond to the desired selector (e.g. ADMISSION.FORM{form_code}.REF) will be used
Properties
PROPERTY | DESCRIPTION |
---|---|
FORM.__SELF__ | Returns an object that represents the FORM. This object is intended to be used in REPORT TEMPLATES The properties of the object can retrieved from a REPORT TEMPLATE by means of the TWIG function ocGet() REPORT function This is the default property if no one is specified
|
| FORM object. The selector (optional) can be:
|
| Form reference |
| An object of type DESCRIPTION that contains the name of the FORM. See the "DESCRIPTION" OBJECT CODE |
| An object of type DESCRIPTION that contains the name of the FORM. See the "DESCRIPTION" OBJECT CODE |
| Date of last modification of the FORM |
| Status. It returns:
|
| ARRAYs with CODE=”X” of the FORM Introduced in API version 2.8.1 |
| An ITEM in the FORM. Only ITEMS in closed FORMS are considered unless no selector is specified for the FORM (i.e. the ITEM referenced is part of the current FORM) |
| A DATA_CODE in the FORM |