DBA Data[Home] [Help]

APPS.PO_UDA_TEMPLATES_UTIL dependencies on EGO_EXT_FWK_PUB

Line 19: --- EGO_EXT_FWK_PUB.DELETE_PAGE

15: --- It would Create all pages needed for the template passed
16: ---
17: --- Syncing the pages:
18: --- Delete all pages realted to the passed tempalte
19: --- EGO_EXT_FWK_PUB.DELETE_PAGE
20: --- Create pages for all the usage and context combination
21: --- EGO_EXT_FWK_PUB.Create_Page
22: --- EGO_EXT_FWK_PUB.Create_Page_entries
23: ---

Line 21: --- EGO_EXT_FWK_PUB.Create_Page

17: --- Syncing the pages:
18: --- Delete all pages realted to the passed tempalte
19: --- EGO_EXT_FWK_PUB.DELETE_PAGE
20: --- Create pages for all the usage and context combination
21: --- EGO_EXT_FWK_PUB.Create_Page
22: --- EGO_EXT_FWK_PUB.Create_Page_entries
23: ---
24: --- End of Comments
25: -------------------------------------------------------------------------------

Line 22: --- EGO_EXT_FWK_PUB.Create_Page_entries

18: --- Delete all pages realted to the passed tempalte
19: --- EGO_EXT_FWK_PUB.DELETE_PAGE
20: --- Create pages for all the usage and context combination
21: --- EGO_EXT_FWK_PUB.Create_Page
22: --- EGO_EXT_FWK_PUB.Create_Page_entries
23: ---
24: --- End of Comments
25: -------------------------------------------------------------------------------
26: PROCEDURE SYNC_PAGE_ENTRIES

Line 196: EGO_EXT_FWK_PUB.DELETE_PAGE

192: EXIT WHEN c_pages%NOTFOUND;
193:
194: d_progress := 290;
195:
196: EGO_EXT_FWK_PUB.DELETE_PAGE
197: (
198: p_api_version => 1.0
199: ,p_page_id => l_page_id
200: ,p_init_msg_list => fnd_api.g_FALSE

Line 343: EGO_EXT_FWK_PUB.Create_Page

339: fnd_file.put(fnd_file.log, ' l_internal_name ' || l_internal_name );
340: fnd_file.put(fnd_file.log, ' l_display_name ' || l_display_name );
341: fnd_file.put(fnd_file.log, ' l_temp_sequence ' || l_temp_sequence );
342:
343: EGO_EXT_FWK_PUB.Create_Page
344: (
345: p_api_version => 1.0
346: ,p_object_id => l_object_id
347: ,p_classification_code => p_template_id || ''

Line 387: EGO_EXT_FWK_PUB.Create_Page_Entry

383: fnd_file.put(fnd_file.log, ' l_association_id ' || l_association_id );
384: fnd_file.put(fnd_file.log, ' l_sequence ' || l_sequence );
385: fnd_file.put(fnd_file.log, ' p_template_id ' || p_template_id );
386:
387: EGO_EXT_FWK_PUB.Create_Page_Entry
388: (
389: p_api_version => 1.0
390: ,p_page_id => l_create_page_id
391: ,p_association_id => l_association_id

Line 2042: ego_ext_fwk_pub.create_attribute_group(

2038: PO_LOG.stmt(d_module, d_progress, 'l_owner', l_owner);
2039: END IF;
2040:
2041: -- Public api to create the real attribute group
2042: ego_ext_fwk_pub.create_attribute_group(
2043: p_api_version => p_glb_api_version
2044: ,p_application_id => p_glb_application_id
2045: ,p_attr_group_type => p_attribute_group_type
2046: ,p_internal_name => l_internal_name

Line 2273: EGO_EXT_FWK_PUB.Delete_Attribute_Group(

2269: PO_LOG.proc_begin(d_module);
2270: PO_LOG.proc_begin(d_module, 'p_real_attribute_group_id', p_real_attribute_group_id);
2271: END IF;
2272:
2273: EGO_EXT_FWK_PUB.Delete_Attribute_Group(
2274: p_api_version => p_glb_api_version
2275: ,p_attr_group_id => p_real_attribute_group_id
2276: ,p_init_msg_list => fnd_api.g_FALSE
2277: ,p_commit => fnd_api.g_FALSE

Line 2460: ego_ext_fwk_pub.update_attribute_group(

2456: PO_LOG.stmt(d_module, d_progress, 'l_attr_grp_desc', l_attr_grp_desc);
2457: END IF;
2458:
2459: -- Updating the real attribute group depending on the data from the dummy attribute group
2460: ego_ext_fwk_pub.update_attribute_group(
2461: p_api_version => p_glb_api_version
2462: ,p_attr_group_id => p_real_attribute_group_id
2463: ,p_display_name => l_display_name
2464: ,p_attr_group_desc => l_attr_grp_desc

Line 2503: ego_ext_fwk_pub.delete_attribute(

2499: FETCH c_get_attributes_to_delete INTO l_attribute_name;
2500: EXIT WHEN c_get_attributes_to_delete%NOTFOUND;
2501:
2502: -- Deleting all the attributes removed from the Dummy in a loop
2503: ego_ext_fwk_pub.delete_attribute(
2504: p_api_version => p_glb_api_version
2505: ,p_application_id => p_glb_application_id
2506: ,p_attr_group_type => l_real_attr_grp_type
2507: ,p_attr_group_name => l_internal_name

Line 2629: --bug15893437, commented the sql%found condition as it is not necessary and is inhibiting the call to ego_ext_fwk_pub.update_attribute or ego_ext_fwk_pub.create_attribute

2625: PO_LOG.stmt(d_module, d_progress, 'l_owner', l_owner);
2626: PO_LOG.stmt(d_module, d_progress, 'l_lud', l_lud);
2627: END IF;
2628:
2629: --bug15893437, commented the sql%found condition as it is not necessary and is inhibiting the call to ego_ext_fwk_pub.update_attribute or ego_ext_fwk_pub.create_attribute
2630: --IF SQL%FOUND THEN
2631:
2632: d_progress := 80;
2633:

Line 2643: ego_ext_fwk_pub.update_attribute

2639:
2640: -- If attribute found then updating the attribute
2641:
2642:
2643: ego_ext_fwk_pub.update_attribute
2644: (
2645: p_api_version => p_glb_api_version
2646: ,p_application_id => p_glb_application_id
2647: ,p_attr_group_type => l_real_attr_grp_type

Line 2689: ego_ext_fwk_pub.create_attribute

2685:
2686: ELSE
2687:
2688: -- Else creating the real attribute (Data from dummy attribute is used to create )
2689: ego_ext_fwk_pub.create_attribute
2690: (
2691: p_api_version => p_glb_api_version
2692: ,p_application_id => p_glb_application_id
2693: ,p_attr_group_type => l_real_attr_grp_type

Line 3082: ego_ext_fwk_pub.Delete_Association(

3078: j := 0;
3079: d_progress := 10;
3080: FOR association_ids_rec IN association_ids(p_template_id) LOOP
3081:
3082: ego_ext_fwk_pub.Delete_Association(
3083: p_api_version => 1.0, -- IN NUMBER
3084: p_association_id => association_ids_rec.association_id, -- IN NUMBER
3085: p_init_msg_list => 'F', -- IN VARCHAR2 := fnd_api.g_FALSE
3086: p_commit => 'F', -- IN VARCHAR2 := fnd_api.g_FALSE

Line 4020: EGO_EXT_FWK_PUB.Create_Action (

4016:
4017: FOR c_src_record_rec IN c_src_record(c_src_action_ids_rec.action_id) LOOP
4018: i := i+1;
4019:
4020: EGO_EXT_FWK_PUB.Create_Action (
4021: p_api_version => 1.0 ,
4022: p_object_id => c_src_record_rec.OBJECT_ID ,
4023: p_classification_code => p_new_template_code ,
4024: p_attr_group_id => p_attr_group_id ,

Line 4043: EGO_EXT_FWK_PUB.Create_Action_Display (

4039: /*Once the action is created we have to create the action display data*/
4040: IF (l_return_status = 'S') THEN
4041: FOR c_src_action_display_rec IN c_src_action_display(c_src_action_ids_rec.action_id) LOOP
4042:
4043: EGO_EXT_FWK_PUB.Create_Action_Display (
4044: p_api_version => 1.0
4045: ,p_action_id => l_action_id
4046: ,p_exec_code => c_src_action_display_rec.EXECUTION_METHOD
4047: ,p_display_style => c_src_action_display_rec.DISPLAY_STYLE

Line 4067: EGO_EXT_FWK_PUB.Create_Mapping (

4063:
4064: IF l_return_status = 'S' THEN
4065: FOR c_src_func_mappings_rec IN c_src_func_mappings(c_src_record_rec.FUNCTION_ID, c_src_action_ids_rec.action_id) LOOP
4066:
4067: EGO_EXT_FWK_PUB.Create_Mapping (
4068: p_api_version => 1.0
4069: ,p_function_id => c_src_record_rec.FUNCTION_ID
4070: ,p_mapped_obj_type => c_src_func_mappings_rec.MAPPED_OBJ_TYPE
4071: ,p_mapped_obj_pk1_value => l_action_id

Line 4742: ego_ext_fwk_pub.Delete_Action (

4738: PO_LOG.stmt(d_module, d_progress, 'action_id', c_get_action_id_rec.action_id);
4739: PO_LOG.stmt(d_module, d_progress, 'function_id', c_get_action_id_rec.function_id);
4740: END IF;
4741:
4742: ego_ext_fwk_pub.Delete_Action (
4743: p_api_version => 1.0
4744: ,p_action_id => c_get_action_id_rec.action_id
4745: ,p_init_msg_list => 'F'
4746: ,p_commit => 'F'

Line 4759: ego_ext_fwk_pub.Delete_Action_Display (

4755: IF PO_LOG.d_stmt THEN
4756: PO_LOG.stmt(d_module, d_progress, 'Delete Action successful. x_return_status: ', x_return_status);
4757: END IF;
4758:
4759: ego_ext_fwk_pub.Delete_Action_Display (
4760: p_api_version => 1.0
4761: ,p_action_id => c_get_action_id_rec.action_id
4762: ,p_init_msg_list => 'F'
4763: ,p_commit => 'F'

Line 4776: ego_ext_fwk_pub.Delete_Func_Mapping (

4772: IF PO_LOG.d_stmt THEN
4773: PO_LOG.stmt(d_module, d_progress, 'Delete_Action_Display successful. x_return_status: ', x_return_status);
4774: END IF;
4775:
4776: ego_ext_fwk_pub.Delete_Func_Mapping (
4777: p_api_version => 1.0
4778: ,p_function_id => c_get_action_id_rec.function_id
4779: ,p_mapped_obj_type => 'A' -- hardcoded to 'A'
4780: ,p_mapped_obj_pk1_value => c_get_action_id_rec.action_id

Line 4884: l_association_id := ego_ext_fwk_pub.Get_Association_Id_From_PKs(l_object_id

4880:
4881: /** check if the association for this attribute Group already exists if already exists
4882: do not create associations, action or mappings. Just copy the usage.
4883: Else create all the other and then copy the usage. */
4884: l_association_id := ego_ext_fwk_pub.Get_Association_Id_From_PKs(l_object_id
4885: ,p_new_template_id
4886: ,c_get_usage_ids_rec.attribute_group_id);
4887:
4888: IF (l_association_id IS NULL) THEN

Line 5103: l_association_id := ego_ext_fwk_pub.Get_Association_Id_From_PKs(l_object_id

5099:
5100: /** check if the association for this attribute Group already exists if already exists
5101: do not create associations, action or mappings. Just copy the usage.
5102: Else create all the other and then copy the usage. */
5103: l_association_id := ego_ext_fwk_pub.Get_Association_Id_From_PKs(l_object_id
5104: ,p_dest_template_id
5105: ,c_get_usage_id_rec.attribute_group_id);
5106:
5107:

Line 5697: EGO_EXT_FWK_PUB.Create_Association (

5693: END IF;
5694:
5695: --Create association for the real attribute..no chnage in parameters
5696:
5697: EGO_EXT_FWK_PUB.Create_Association (
5698: p_api_version => p_api_version ,
5699: p_association_id => p_association_id ,
5700: p_object_id => p_object_id ,
5701: p_classification_code => p_classification_code,

Line 5758: EGO_EXT_FWK_PUB.Create_Association (

5754: AND language = USERENV('LANG');
5755:
5756: --Now make a call to EGO API to create association for dummy attribute.
5757:
5758: EGO_EXT_FWK_PUB.Create_Association (
5759: p_api_version => p_api_version ,
5760: p_association_id => l_dummy_associaton_id ,
5761: p_object_id => l_dummy_object_id ,
5762: p_classification_code => l_dummy_classfication_code,

Line 5835: ego_ext_fwk_pub.Delete_Association(

5831: AND attr_group_id = l_real_attr_grp_id;
5832:
5833: --delete association for the real attribute..no chnage in parameters
5834:
5835: ego_ext_fwk_pub.Delete_Association(
5836: p_api_version => 1.0, -- IN NUMBER
5837: p_association_id => p_association_id, -- IN NUMBER
5838: p_init_msg_list => 'F', -- IN VARCHAR2 := fnd_api.g_FALSE
5839: p_commit => 'F', -- IN VARCHAR2 := fnd_api.g_FALSE

Line 5881: ego_ext_fwk_pub.Delete_Association(

5877: INTO l_dummy_associaton_id
5878: FROM ego_obj_ag_assocs_b
5879: WHERE attr_group_id = l_dummy_attr_grp_id AND classification_code = l_template_name AND data_level= l_dummy_data_level;
5880:
5881: ego_ext_fwk_pub.Delete_Association(
5882: p_api_version => 1.0, -- IN NUMBER
5883: p_association_id => l_dummy_associaton_id, -- IN NUMBER
5884: p_init_msg_list => 'F', -- IN VARCHAR2 := fnd_api.g_FALSE
5885: p_commit => 'F', -- IN VARCHAR2 := fnd_api.g_FALSE