DBA Data[Home] [Help]

APPS.PO_UDA_IMPORT_PKG dependencies on EGO_ACTION_DISPLAYS_B

Line 854: FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B

850:
851: d_progress := 360;
852: SELECT Count(*)
853: INTO l_xd_present
854: FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B
855: WHERE classification_code = p_template_id
856: AND attr_group_id = l_attr_group_id
857: AND execution_method = 'XD'
858: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id;

Line 858: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id;

854: FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B
855: WHERE classification_code = p_template_id
856: AND attr_group_id = l_attr_group_id
857: AND execution_method = 'XD'
858: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id;
859:
860: d_progress := 370;
861: IF l_xd_present <= 0 THEN
862: -- XD Function is not present and the ag need not be added

Line 1127: -- Appropriate actions are teh actions from the view EGO_ACTION_DISPLAYS_B with

1123: --Name: EXECUTE_IMPORT_UDA_FUNCTION
1124: --Procedure:
1125: -- This procedure would execute all the actions appropriate using the procedure
1126: -- EGO_EXT_FWK_PUB.EXECUTE_FUNCTION.
1127: -- Appropriate actions are teh actions from the view EGO_ACTION_DISPLAYS_B with
1128: -- Calssification code as the teplate id attriubute group id would be all the
1129: -- attribute groups from the variable x_attributes_row_table and execution_code
1130: -- as that of p_event
1131: -- The actions would be executed in the order of the sequence number of the

Line 1192: SELECT EGO_ACTION_DISPLAYS_B.action_id FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B

1188:
1189:
1190:
1191: CURSOR c_get_action_id(p_template_id NUMBER, p_attribute_group_id NUMBER, p_event VARCHAR2) IS
1192: SELECT EGO_ACTION_DISPLAYS_B.action_id FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B
1193: WHERE classification_code = p_template_id
1194: AND attr_group_id = p_attribute_group_id
1195: AND execution_method = p_event
1196: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id

Line 1196: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id

1192: SELECT EGO_ACTION_DISPLAYS_B.action_id FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B
1193: WHERE classification_code = p_template_id
1194: AND attr_group_id = p_attribute_group_id
1195: AND execution_method = p_event
1196: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id
1197: ORDER BY SEQUENCE;
1198:
1199:
1200: l_pk_col_name_value_pairs_ind NUMBER;