DBA Data[Home] [Help]

APPS.PON_UDA_IMPORT_PKG dependencies on EGO_ACTION_DISPLAYS_B

Line 932: FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B

928:
929: d_progress := 360;
930: SELECT Count(*)
931: INTO l_xd_present
932: FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B
933: WHERE classification_code = p_template_id
934: AND attr_group_id = l_attr_group_id
935: AND execution_method = 'XD'
936: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id;

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

932: FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B
933: WHERE classification_code = p_template_id
934: AND attr_group_id = l_attr_group_id
935: AND execution_method = 'XD'
936: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id;
937:
938: d_progress := 370;
939: IF l_xd_present <= 0 THEN
940: -- XD Function is not present and the ag need not be added

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

1192: --Name: EXECUTE_IMPORT_UDA_FUNCTION
1193: --Procedure:
1194: -- This procedure would execute all the actions appropriate using the procedure
1195: -- EGO_EXT_FWK_PUB.EXECUTE_FUNCTION.
1196: -- Appropriate actions are teh actions from the view EGO_ACTION_DISPLAYS_B with
1197: -- Calssification code as the teplate id attriubute group id would be all the
1198: -- attribute groups from the variable x_attributes_row_table and execution_code
1199: -- as that of p_event
1200: -- The actions would be executed in the order of the sequence number of the

Line 1261: SELECT EGO_ACTION_DISPLAYS_B.action_id FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B

1257:
1258:
1259:
1260: CURSOR c_get_action_id(p_template_id NUMBER, p_attribute_group_id NUMBER, p_event VARCHAR2) IS
1261: SELECT EGO_ACTION_DISPLAYS_B.action_id FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B
1262: WHERE classification_code = p_template_id
1263: AND attr_group_id = p_attribute_group_id
1264: AND execution_method = p_event
1265: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id

Line 1265: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id

1261: SELECT EGO_ACTION_DISPLAYS_B.action_id FROM EGO_ACTION_DISPLAYS_B, EGO_ACTIONS_B
1262: WHERE classification_code = p_template_id
1263: AND attr_group_id = p_attribute_group_id
1264: AND execution_method = p_event
1265: AND EGO_ACTION_DISPLAYS_B.action_id = EGO_ACTIONS_B.action_id
1266: ORDER BY SEQUENCE;
1267:
1268:
1269: l_pk_col_name_value_pairs_ind NUMBER;