DBA Data[Home] [Help]

APPS.IGIRGLOBE dependencies on FND_FLEX_DSC_API

Line 765: fnd_flex_dsc_api.set_session_mode ( 'seed_data' );

761: lv_line_segment4 varchar2(30) := 'INTERFACE_LINE_ATTRIBUTE4';
762: lv_header_txn_flex varchar2(50) := 'RA_INTERFACE_HEADER';
763:
764: begin
765: fnd_flex_dsc_api.set_session_mode ( 'seed_data' );
766:
767:
768: -- *************************** HEADER ********************************************
769: /*

Line 779: if fnd_flex_dsc_api.context_exists ( p_appl_short_name => lv_appl_short_name

775: -- 3.
776: --
777: */
778:
779: if fnd_flex_dsc_api.context_exists ( p_appl_short_name => lv_appl_short_name
780: , p_flexfield_name => lv_header_txn_flex
781: , p_context_code => pp_header_txn_context
782: ) THEN
783: fnd_flex_dsc_api.delete_context( appl_short_name => lv_appl_short_name

Line 783: fnd_flex_dsc_api.delete_context( appl_short_name => lv_appl_short_name

779: if fnd_flex_dsc_api.context_exists ( p_appl_short_name => lv_appl_short_name
780: , p_flexfield_name => lv_header_txn_flex
781: , p_context_code => pp_header_txn_context
782: ) THEN
783: fnd_flex_dsc_api.delete_context( appl_short_name => lv_appl_short_name
784: , flexfield_name => lv_header_txn_flex
785: , context => pp_header_txn_context
786: );
787: end if;

Line 789: fnd_flex_dsc_api.create_context( appl_short_name => lv_appl_short_name

785: , context => pp_header_txn_context
786: );
787: end if;
788:
789: fnd_flex_dsc_api.create_context( appl_short_name => lv_appl_short_name
790: , flexfield_name => lv_header_txn_flex
791: , context_code => pp_header_txn_context
792: , context_name => pp_header_txn_context
793: , description => pp_header_txn_context

Line 799: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name

795: );
796: /*
797: -- First Segment
798: */
799: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name
800: , flexfield_name => lv_header_txn_flex
801: , context_name => pp_header_txn_context
802: , name => pp_header_txn_id1
803: , column => lv_header_segment1

Line 823: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name

819:
820: /*
821: -- Second Segment
822: */
823: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name
824: , flexfield_name => lv_header_txn_flex
825: , context_name => pp_header_txn_context
826: , name => pp_header_txn_id2
827: , column => lv_header_segment2

Line 844: fnd_flex_dsc_api.freeze ( appl_short_name => lv_appl_short_name

840: , list_of_values_prompt => 'N'
841: , window_prompt => pp_header_txn_id2
842: );
843:
844: fnd_flex_dsc_api.freeze ( appl_short_name => lv_appl_short_name
845: , flexfield_name => lv_header_txn_flex
846: );
847: -- *************************** LINE ********************************************
848: if fnd_flex_dsc_api.context_exists ( p_appl_short_name => lv_appl_short_name

Line 848: if fnd_flex_dsc_api.context_exists ( p_appl_short_name => lv_appl_short_name

844: fnd_flex_dsc_api.freeze ( appl_short_name => lv_appl_short_name
845: , flexfield_name => lv_header_txn_flex
846: );
847: -- *************************** LINE ********************************************
848: if fnd_flex_dsc_api.context_exists ( p_appl_short_name => lv_appl_short_name
849: , p_flexfield_name => lv_line_txn_flex
850: , p_context_code => pp_line_txn_context
851: ) THEN
852: fnd_flex_dsc_api.delete_context( appl_short_name => lv_appl_short_name

Line 852: fnd_flex_dsc_api.delete_context( appl_short_name => lv_appl_short_name

848: if fnd_flex_dsc_api.context_exists ( p_appl_short_name => lv_appl_short_name
849: , p_flexfield_name => lv_line_txn_flex
850: , p_context_code => pp_line_txn_context
851: ) THEN
852: fnd_flex_dsc_api.delete_context( appl_short_name => lv_appl_short_name
853: , flexfield_name => lv_line_txn_flex
854: , context => pp_line_txn_context
855: );
856: end if;

Line 858: fnd_flex_dsc_api.create_context( appl_short_name => lv_appl_short_name

854: , context => pp_line_txn_context
855: );
856: end if;
857:
858: fnd_flex_dsc_api.create_context( appl_short_name => lv_appl_short_name
859: , flexfield_name => lv_line_txn_flex
860: , context_code => pp_line_txn_context
861: , context_name => pp_line_txn_context
862: , description => pp_line_txn_context

Line 869: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name

865:
866: /*
867: -- First Segment
868: */
869: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name
870: , flexfield_name => lv_line_txn_flex
871: , context_name => pp_line_txn_context
872: , name => pp_line_txn_id1
873: , column => lv_line_segment1

Line 893: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name

889:
890: /*
891: -- Second Segment
892: */
893: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name
894: , flexfield_name => lv_line_txn_flex
895: , context_name => pp_line_txn_context
896: , name => pp_line_txn_id2
897: , column => lv_line_segment2

Line 917: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name

913:
914: /*
915: -- Third Segment
916: */
917: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name
918: , flexfield_name => lv_line_txn_flex
919: , context_name => pp_line_txn_context
920: , name => pp_line_txn_id3
921: , column => lv_line_segment3

Line 941: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name

937: /*
938: -- Fourth Segment
939: */
940:
941: fnd_flex_dsc_api.create_segment ( appl_short_name => lv_appl_short_name
942: , flexfield_name => lv_line_txn_flex
943: , context_name => pp_line_txn_context
944: , name => pp_line_txn_id4
945: , column => lv_line_segment4

Line 963: fnd_flex_dsc_api.freeze ( appl_short_name => lv_appl_short_name

959: , window_prompt => pp_line_txn_id4
960: );
961:
962:
963: fnd_flex_dsc_api.freeze ( appl_short_name => lv_appl_short_name
964: , flexfield_name => lv_line_txn_flex
965: );
966:
967:

Line 974: lv_message := FND_FLEX_DSC_API.message();

970: exception when others then
971: declare
972: lv_message varchar2(300);
973: begin
974: lv_message := FND_FLEX_DSC_API.message();
975: raise_application_error(-20000, to_char(sqlcode)||' '||lv_message );
976: end;
977: END; -- Procedure
978: