DBA Data[Home] [Help]

APPS.CN_COLLECTION_GEN dependencies on CN_COLLECTION_CUSTOM_GEN

Line 785: -- driven) source, different code, generated by the cn_collection_custom_gen

781:
782:
783: -- Call_Notify generates different fixed notification code for
784: -- either the AR or OC mappings. For a completely generic (data-
785: -- driven) source, different code, generated by the cn_collection_custom_gen
786: -- package, is used.
787: IF NOT x_generic THEN
788:
789: -- Insert any User Code specified for the 'Pre-Notification' location

Line 792: cn_collection_custom_gen.Generate_User_Code(

788:
789: -- Insert any User Code specified for the 'Pre-Notification' location
790: cn_utils.unset_org_id();
791:
792: cn_collection_custom_gen.Generate_User_Code(
793: p_table_map_id => x_table_map_id,
794: p_location_name => 'Pre-Notification',
795: code => body_code,
796: X_ORG_ID => X_ORG_ID);

Line 808: cn_collection_custom_gen.Generate_User_Code(

804: ELSIF (x_event_id = cn_global.aia_event_id or x_event_id = cn_global.aia_om_event_id) THEN
805: -- Insert any User Code specified for the 'Pre-Notification' location
806: cn_utils.unset_org_id();
807:
808: cn_collection_custom_gen.Generate_User_Code(
809: p_table_map_id => x_table_map_id,
810: p_location_name => 'Pre-Notification',
811: code => body_code,
812: X_ORG_ID => X_ORG_ID);

Line 817: cn_collection_custom_gen.insert_cn_not_trx (

813:
814: call_notify(x_package_id, x_procedure_name, x_module_id,x_repository_id, x_event_id, body_code,X_ORG_ID);
815: ELSE
816: cn_utils.unset_org_id();
817: cn_collection_custom_gen.insert_cn_not_trx (
818: x_table_map_id => x_table_map_id,
819: x_event_id => x_event_id,
820: code => body_code,
821: X_ORG_ID => X_ORG_ID);

Line 827: cn_collection_custom_gen.Generate_User_Code(

823:
824:
825: -- Insert any User Code specified for the 'Post-Notification' location
826: cn_utils.unset_org_id();
827: cn_collection_custom_gen.Generate_User_Code(
828: p_table_map_id => x_table_map_id,
829: p_location_name => 'Post-Notification',
830: code => body_code,
831: X_ORG_ID => X_ORG_ID);

Line 918: cn_collection_custom_gen.insert_comm_lines_api (x_table_map_id, x_event_id, code,X_org_id);

914:
915: -- This is a package whose contents are comletely data-driven
916: -- Generate code to insert into API table for collection.
917:
918: cn_collection_custom_gen.insert_comm_lines_api (x_table_map_id, x_event_id, code,X_org_id);
919: ELSE
920:
921: -- This is for Order Capture.
922: -- Generate code to insert into API table for OE collection.

Line 930: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,

926: END IF;
927:
928: -- Insert any User Code specified for the 'Pre-Api-Update' location
929:
930: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,
931: p_location_name => 'Pre-Api-Update',
932: code => code,
933: X_ORG_ID => X_ORG_ID);
934:

Line 936: --dbms_output.put_line('B4 cn_collection_custom_gen.update_comm_lines_api');

932: code => code,
933: X_ORG_ID => X_ORG_ID);
934:
935: -- Generate code to apply Indirect Mappings to cn_comm_lines_api
936: --dbms_output.put_line('B4 cn_collection_custom_gen.update_comm_lines_api');
937: --COMMIT;
938: cn_collection_custom_gen.update_comm_lines_api (x_table_map_id, code,X_org_id, x_event_id, x_generic);
939: --dbms_output.put_line('After cn_collection_custom_gen.update_comm_lines_api');
940: --+

Line 938: cn_collection_custom_gen.update_comm_lines_api (x_table_map_id, code,X_org_id, x_event_id, x_generic);

934:
935: -- Generate code to apply Indirect Mappings to cn_comm_lines_api
936: --dbms_output.put_line('B4 cn_collection_custom_gen.update_comm_lines_api');
937: --COMMIT;
938: cn_collection_custom_gen.update_comm_lines_api (x_table_map_id, code,X_org_id, x_event_id, x_generic);
939: --dbms_output.put_line('After cn_collection_custom_gen.update_comm_lines_api');
940: --+
941: -- Insert any User Code specified for the 'Pre-Api-Filter' location
942: --+

Line 939: --dbms_output.put_line('After cn_collection_custom_gen.update_comm_lines_api');

935: -- Generate code to apply Indirect Mappings to cn_comm_lines_api
936: --dbms_output.put_line('B4 cn_collection_custom_gen.update_comm_lines_api');
937: --COMMIT;
938: cn_collection_custom_gen.update_comm_lines_api (x_table_map_id, code,X_org_id, x_event_id, x_generic);
939: --dbms_output.put_line('After cn_collection_custom_gen.update_comm_lines_api');
940: --+
941: -- Insert any User Code specified for the 'Pre-Api-Filter' location
942: --+
943:

Line 944: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,

940: --+
941: -- Insert any User Code specified for the 'Pre-Api-Filter' location
942: --+
943:
944: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,
945: p_location_name => 'Pre-Api-Filter',
946: code => code,
947: X_ORG_ID => X_ORG_ID);
948: --+

Line 952: cn_collection_custom_gen.filter_comm_lines_api (x_table_map_id, code,X_org_id);

948: --+
949: -- Generate code to apply Filters to cn_comm_lines_api
950: --+
951:
952: cn_collection_custom_gen.filter_comm_lines_api (x_table_map_id, code,X_org_id);
953:
954: --+
955: -- Insert any User Code specified for the 'Post-Api-Filter' location
956: --+

Line 957: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,

953:
954: --+
955: -- Insert any User Code specified for the 'Post-Api-Filter' location
956: --+
957: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,
958: p_location_name => 'Post-Api-Filter',
959: code => code,
960: X_ORG_ID => X_ORG_ID);
961:

Line 1039: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,

1035: cn_collection_ar_gen.insert_comm_lines (x_procedure_name, x_module_id, x_event_id, code,X_org_id);
1036: --+
1037: -- Insert any User Code specified for the 'Pre-Api-Update' location
1038: --+
1039: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,
1040: p_location_name => 'Pre-Api-Update',
1041: code => code,
1042: X_ORG_ID => X_ORG_ID);
1043: --+

Line 1046: cn_collection_custom_gen.update_comm_lines_api (x_table_map_id, code,X_org_id, x_event_id, x_generic);

1042: X_ORG_ID => X_ORG_ID);
1043: --+
1044: -- Generate code to apply Indirect Mappings to cn_comm_lines_api
1045: --+
1046: cn_collection_custom_gen.update_comm_lines_api (x_table_map_id, code,X_org_id, x_event_id, x_generic);
1047: --+
1048: -- Insert any User Code specified for the 'Pre-Api-Filter' location
1049: --+
1050: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,

Line 1050: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,

1046: cn_collection_custom_gen.update_comm_lines_api (x_table_map_id, code,X_org_id, x_event_id, x_generic);
1047: --+
1048: -- Insert any User Code specified for the 'Pre-Api-Filter' location
1049: --+
1050: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,
1051: p_location_name => 'Pre-Api-Filter',
1052: code => code,
1053: X_ORG_ID => X_ORG_ID);
1054: --+

Line 1057: cn_collection_custom_gen.filter_comm_lines_api (x_table_map_id, code,X_org_id);

1053: X_ORG_ID => X_ORG_ID);
1054: --+
1055: -- Generate code to apply Filters to cn_comm_lines_api
1056: --+
1057: cn_collection_custom_gen.filter_comm_lines_api (x_table_map_id, code,X_org_id);
1058: --+
1059: -- Insert any User Code specified for the 'Post-Api-Filter' location
1060: --+
1061: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,

Line 1061: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,

1057: cn_collection_custom_gen.filter_comm_lines_api (x_table_map_id, code,X_org_id);
1058: --+
1059: -- Insert any User Code specified for the 'Post-Api-Filter' location
1060: --+
1061: cn_collection_custom_gen.Generate_User_Code(p_table_map_id => x_table_map_id,
1062: p_location_name => 'Post-Api-Filter',
1063: code => code,
1064: X_ORG_ID => X_ORG_ID);
1065:

Line 1130: cn_collection_custom_gen.Generate_User_Code(

1126: cn_utils.unset_org_id();
1127: --+
1128: -- Insert any User Code specified for the 'Post-Collection' location
1129: --+
1130: cn_collection_custom_gen.Generate_User_Code(
1131: p_table_map_id => x_table_map_id,
1132: p_location_name => 'Post-Collection',
1133: code => code,
1134: X_ORG_ID => X_ORG_ID);