DBA Data[Home] [Help] [Dependency Information]


TABLE: HR.PAY_TRIGGER_DECLARATIONS

Object Details
Object Name: PAY_TRIGGER_DECLARATIONS
Object Type: TABLE
Owner: HR
FND Design Data: TablePAY.PAY_TRIGGER_DECLARATIONS
Subobject Name:
Status: VALID


PAY_TRIGGER_DECLARATIONS stores the definitions of variables which will be declared locally to the trigger body. If the table contains the business_group_id column and it is defined as being not null then the business_group_id and legislation_code variables will automatically be added to this list of declarations and the user will not be permitted to remove them. The Payroll ID column is processed similarly. Advanced users are able to define their own variables to be included in the generated code. Variables will be declared as l_ in the code. Changing any values in this table from within the trigger generation form will invalidate the parent trigger (i.e. it will require re-generation).


Storage Details
Tablespace: TablespaceAPPS_TS_TX_DATA
PCT Free: 10
PCT Used:
Indexes
Index Type Uniqueness Tablespace Column
PAY_TRIGGER_DECLARATIONS_PK NORMAL UNIQUE TablespaceAPPS_TS_TX_IDX ColumnDECLARATION_ID
ColumnZD_EDITION_NAME
PAY_TRIGGER_DECLARATIONS_FK NORMAL NONUNIQUE TablespaceAPPS_TS_TX_IDX ColumnEVENT_ID
Columns
Name Datatype Length Mandatory Comments
DECLARATION_ID NUMBER (15) Yes System-generated primary key column.
EVENT_ID NUMBER (15) Yes Foreign key to PAY_TRIGGER_EVENTS.
VARIABLE_NAME VARCHAR2 (60) Yes The name of the variable to be defined. Any name entered here will have the text l_ prepended to it. In-line initialisation of variables is not permitted.
DATA_TYPE VARCHAR2 (1) Yes The type of the variable to declare, either C, N or D for Character (VARCHAR2), Number or Date respectively.
VARIABLE_SIZE NUMBER (9)
The size of the variable to declare. Sizes can only be specified for Character type variables.
ZD_EDITION_NAME VARCHAR2 (30) Yes
Query Text

Cut, paste (and edit) the following text to query this object:


SELECT DECLARATION_ID
,      EVENT_ID
,      VARIABLE_NAME
,      DATA_TYPE
,      VARIABLE_SIZE
,      ZD_EDITION_NAME
FROM HR.PAY_TRIGGER_DECLARATIONS;

Dependencies

[top of page]

HR.PAY_TRIGGER_DECLARATIONS does not reference any database object

HR.PAY_TRIGGER_DECLARATIONS is referenced by following:

SchemaHR
ViewPAY_TRIGGER_DECLARATIONS#