Search Results okc_action_attributes_b
Overview
The OKC_ACTION_ATTRIBUTES_B table is a core data structure within the Oracle E-Business Suite Contracts Core (OKC) module. It functions as the master repository for attributes that define and describe Actions within the contract management system. In the context of Oracle Contracts, an Action is a business process or task that can be triggered by contract events, such as generating a renewal notice or creating a purchase order. This table stores the metadata for the configurable parameters, or attributes, associated with these Actions, enabling flexible and detailed control over contract automation and workflow execution. Its role is foundational to the rule-based engine that governs contract lifecycle management in both EBS 12.1.1 and 12.2.2.
Key Information Stored
The table's primary purpose is to define the characteristics of an Action's attributes. While the full column list is not detailed in the provided metadata, the foreign key relationships and standard Oracle Contracts design patterns indicate critical columns. The primary key is the ID column. The ACN_ID column is a foreign key to OKC_ACTIONS_B, linking the attribute to its parent Action. The AAL_ID column references OKC_ACTION_ATT_LOOKUPS, which typically stores the type or definition of the attribute (e.g., a data type, display prompt, or validation rule). Other columns would store the attribute's sequence number, whether it is mandatory, and its default value logic. Essentially, each row defines one parameter that must or can be supplied when the associated Action is executed.
Common Use Cases and Queries
This table is primarily accessed for configuration, troubleshooting, and reporting on contract automation rules. Common scenarios include identifying all configurable parameters for a specific Action or validating attribute setup. A typical query would join to OKC_ACTIONS_B to list attributes for a named action.
- Listing Attributes for an Action:
SELECT aae.* FROM okc_action_attributes_b aae, okc_actions_b acn WHERE aae.acn_id = acn.id AND acn.name = 'RENEW_CONTRACT'; - Auditing Attribute Definitions: Reports can be built to cross-reference attributes with their lookup definitions and the values stored in child tables like OKC_ACTION_ATT_VALS to ensure data integrity and completeness.
- Support & Diagnostics: When an Action fails or behaves unexpectedly, support personnel may query this table and its related values to verify the attribute configuration passed to the business logic.
Related Objects
As shown in the metadata, OKC_ACTION_ATTRIBUTES_B is a central hub with multiple dependencies. OKC_ACTIONS_B is the parent table defining the Action itself. OKC_ACTION_ATT_LOOKUPS provides the type or template for the attribute. Crucially, OKC_ACTION_ATT_VALS is a key child table that stores the actual values assigned to these attributes for specific contract records. Furthermore, it is referenced by OKC_CONDITION_LINES_B, OKC_FUNCTION_EXPR_PARAMS, and OKC_OUTCOME_ARGUMENTS, highlighting its integral role in the expression, condition, and outcome evaluation logic of the Contracts Core engine. Development or customization involving contract rules will invariably interact with this table's relationships.
-
Table: OKC_ACTION_ATTRIBUTES_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTION_ATTRIBUTES_B, object_name:OKC_ACTION_ATTRIBUTES_B, status:VALID, product: OKC - Contracts Core , description: Stores attributes that describe the Action , implementation_dba_data: OKC.OKC_ACTION_ATTRIBUTES_B ,
-
Table: OKC_ACTION_ATTRIBUTES_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTION_ATTRIBUTES_B, object_name:OKC_ACTION_ATTRIBUTES_B, status:VALID, product: OKC - Contracts Core , description: Stores attributes that describe the Action. , implementation_dba_data: OKC.OKC_ACTION_ATTRIBUTES_B ,
-
View: OKC_ACTION_ATTRIBUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_ACTION_ATTRIBUTES_V, object_name:OKC_ACTION_ATTRIBUTES_V, status:VALID, product: OKC - Contracts Core , description: View based on tables OKC_ACTION_ATTRIBUTES_B and OKC_ACTION_ATTRIBUTES_TL , implementation_dba_data: APPS.OKC_ACTION_ATTRIBUTES_V ,
-
View: OKC_ACTION_ATTRIBUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_ACTION_ATTRIBUTES_V, object_name:OKC_ACTION_ATTRIBUTES_V, status:VALID, product: OKC - Contracts Core , description: View based on tables OKC_ACTION_ATTRIBUTES_B and OKC_ACTION_ATTRIBUTES_TL , implementation_dba_data: APPS.OKC_ACTION_ATTRIBUTES_V ,
-
Table: OKC_ACTION_ATTRIBUTES_TL
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTION_ATTRIBUTES_TL, object_name:OKC_ACTION_ATTRIBUTES_TL, status:VALID, product: OKC - Contracts Core , description: Translatable columns from OKC_ACTION_ATTRIBUTES_B, as per MLS standards. , implementation_dba_data: OKC.OKC_ACTION_ATTRIBUTES_TL ,
-
Table: OKC_ACTION_ATT_LOOKUPS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTION_ATT_LOOKUPS, object_name:OKC_ACTION_ATT_LOOKUPS, status:VALID, product: OKC - Contracts Core , description: Defines table/column lookup for an Action Attribute , implementation_dba_data: OKC.OKC_ACTION_ATT_LOOKUPS ,
-
Table: OKC_OUTCOME_ARGUMENTS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_OUTCOME_ARGUMENTS, object_name:OKC_OUTCOME_ARGUMENTS, status:VALID, product: OKC - Contracts Core , description: Values to pass to process definition parameters. , implementation_dba_data: OKC.OKC_OUTCOME_ARGUMENTS ,
-
Table: OKC_FUNCTION_EXPR_PARAMS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_FUNCTION_EXPR_PARAMS, object_name:OKC_FUNCTION_EXPR_PARAMS, status:VALID, product: OKC - Contracts Core , description: The parameter values to be supplied for the function in a CONDITION LINE. , implementation_dba_data: OKC.OKC_FUNCTION_EXPR_PARAMS ,
-
Table: OKC_OUTCOME_ARGUMENTS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_OUTCOME_ARGUMENTS, object_name:OKC_OUTCOME_ARGUMENTS, status:VALID, product: OKC - Contracts Core , description: Values to pass to process definition parameters. , implementation_dba_data: OKC.OKC_OUTCOME_ARGUMENTS ,
-
Table: OKC_ACTION_ATTRIBUTES_TL
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTION_ATTRIBUTES_TL, object_name:OKC_ACTION_ATTRIBUTES_TL, status:VALID, product: OKC - Contracts Core , description: Translatable columns from OKC_ACTION_ATTRIBUTES_B, as per MLS standards. , implementation_dba_data: OKC.OKC_ACTION_ATTRIBUTES_TL ,
-
Table: OKC_ACTIONS_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTIONS_B, object_name:OKC_ACTIONS_B, status:VALID, product: OKC - Contracts Core , description: This table stores information about Actions. , implementation_dba_data: OKC.OKC_ACTIONS_B ,
-
Table: OKC_ACTIONS_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTIONS_B, object_name:OKC_ACTIONS_B, status:VALID, product: OKC - Contracts Core , description: This table stores information about Actions , implementation_dba_data: OKC.OKC_ACTIONS_B ,
-
Table: OKC_CONDITION_LINES_B
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_CONDITION_LINES_B, object_name:OKC_CONDITION_LINES_B, status:VALID, product: OKC - Contracts Core , description: Stores boolean expression which further qualifies a Condition Header. , implementation_dba_data: OKC.OKC_CONDITION_LINES_B ,
-
Table: OKC_CONDITION_LINES_B
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_CONDITION_LINES_B, object_name:OKC_CONDITION_LINES_B, status:VALID, product: OKC - Contracts Core , description: Stores boolean expressions which further qualify a Condition Header , implementation_dba_data: OKC.OKC_CONDITION_LINES_B ,
-
Table: OKC_ACTION_ATT_VALS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTION_ATT_VALS, object_name:OKC_ACTION_ATT_VALS, status:VALID, product: OKC - Contracts Core , description: Stores value of an instance of Action Attribute for every occurrence of an Action , implementation_dba_data: OKC.OKC_ACTION_ATT_VALS ,
-
Table: OKC_ACTION_ATT_LOOKUPS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTION_ATT_LOOKUPS, object_name:OKC_ACTION_ATT_LOOKUPS, status:VALID, product: OKC - Contracts Core , description: Defines table/column lookup for an Action Attribute , implementation_dba_data: OKC.OKC_ACTION_ATT_LOOKUPS ,
-
Table: OKC_ACTION_ATT_VALS
12.1.1
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_ACTION_ATT_VALS, object_name:OKC_ACTION_ATT_VALS, status:VALID, product: OKC - Contracts Core , description: Stores value of an instance of Action Attribute for every occurrence of an Action , implementation_dba_data: OKC.OKC_ACTION_ATT_VALS ,
-
Table: OKC_FUNCTION_EXPR_PARAMS
12.2.2
owner:OKC, object_type:TABLE, fnd_design_data:OKC.OKC_FUNCTION_EXPR_PARAMS, object_name:OKC_FUNCTION_EXPR_PARAMS, status:VALID, product: OKC - Contracts Core , description: The parameter values to be supplied for the function in a CONDITION LINE. , implementation_dba_data: OKC.OKC_FUNCTION_EXPR_PARAMS ,
-
View: OKC_LAUNCH_TASKGRID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_LAUNCH_TASKGRID_V, object_name:OKC_LAUNCH_TASKGRID_V, status:VALID, product: OKC - Contracts Core , description: View for Launchpad schedule tab , implementation_dba_data: APPS.OKC_LAUNCH_TASKGRID_V ,
-
View: OKC_LAUNCH_TASKGRID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_LAUNCH_TASKGRID_V, object_name:OKC_LAUNCH_TASKGRID_V, status:VALID, product: OKC - Contracts Core , description: View for Launchpad schedule tab , implementation_dba_data: APPS.OKC_LAUNCH_TASKGRID_V ,