|
|
CORE 1.0 |
Subelements:
|
|
Name |
Comment |
|
General purpose form management functions. |
|
|
CORE_FRM |
(Package body) |
Program Unit CORE_FRM
General purpose form management functions. - Getting ID of forms - Form related global variable management with transparent unique global variable name creation.
|
|||||||
Member index:
Method name Comment GET_FRM_ID Returns with the internal ID of the form. GET_PARAM Returns with a current form specific global variable GET_PARAM Returns with a form specific global variable. SET_PARAM Sets a current form specific global variable. SET_PARAM Sets a form specific global variable.
Function GET_FRM_ID
Returns with the internal ID of the form. IDs are unique within the form session
Base definition:
FUNCTION GET_FRM_ID RETURN NUMBER
Function GET_PARAM
Returns with a current form specific global variable
Base definition:
FUNCTION GET_PARAM RETURN VARCHAR2
Arguments:
PARAM_NAME VARCHAR2 The name of the form variable DEF_VAL VARCHAR2 The default value if the variable doesn't exist
Function GET_PARAM
Returns with a form specific global variable. The form id has to be specified in order to make the function be able to get the variable specific to that form.
Base definition:
FUNCTION GET_PARAM RETURN VARCHAR2
Arguments:
FRM_ID NUMBER The form's ID, the variable is specific to. PARAM_NAME VARCHAR2 The name of the form variable DEF_VAL VARCHAR2 The default value if the variable doesn't exist
Procedure SET_PARAM
Sets a current form specific global variable.
Base definition:
PROCEDURE SET_PARAM
Arguments:
PARAM_NAME VARCHAR2 The name of the form variable PARAM_VALUE VARCHAR2 The value of the variable. Cannot be equal to '#NULL#'
Procedure SET_PARAM
Sets a form specific global variable.
Base definition:
PROCEDURE SET_PARAM
Arguments:
FRM_ID NUMBER The form's ID, the variable is specific to. PARAM_NAME VARCHAR2 The name of the form variable PARAM_VALUE VARCHAR2 The value of the variable. Cannot be equal to '#NULL#'
|
|
CORE 1.0 |