DBA Data[Home] [Help]

APPS.ARP_AUTO_ACCOUNTING_BR dependencies on FND_FLEX_EXT

Line 1067: segments IN FND_FLEX_EXT.SegmentArray,

1063: key_flex_code IN VARCHAR2,
1064: structure_number IN NUMBER,
1065: validation_date IN DATE,
1066: n_segments IN NUMBER,
1067: segments IN FND_FLEX_EXT.SegmentArray,
1068: combination_id OUT NOCOPY NUMBER)
1069: RETURN BOOLEAN IS
1070: sepchar VARCHAR2(1);
1071: catsegs VARCHAR2(2000);

Line 1078: sepchar := fnd_flex_ext.get_delimiter(application_short_name, key_flex_code,

1074: print_fcn_label( 'arp_auto_accounting_br.get_combination_id1()+' );
1075:
1076: -- Concatenate the input segments, then send them to the other function.
1077: --
1078: sepchar := fnd_flex_ext.get_delimiter(application_short_name, key_flex_code,
1079: structure_number);
1080: if(sepchar is not null) then
1081: print_fcn_label( 'arp_auto_accounting_br.get_combination_id1()-' );
1082: return(get_combination_id(application_short_name, key_flex_code,

Line 1084: FND_FLEX_EXT.concatenate_segments(n_segments, segments, sepchar),

1080: if(sepchar is not null) then
1081: print_fcn_label( 'arp_auto_accounting_br.get_combination_id1()-' );
1082: return(get_combination_id(application_short_name, key_flex_code,
1083: structure_number, validation_date,
1084: FND_FLEX_EXT.concatenate_segments(n_segments, segments, sepchar),
1085: combination_id));
1086: end if;
1087: return(FALSE);
1088:

Line 1801: p_segment_table IN fnd_flex_ext.SegmentArray,

1797:
1798: FUNCTION Get_Ccid_From_Cache( p_system_info IN
1799: arp_trx_global.system_info_rec_type,
1800: p_concat_segments IN varchar2,
1801: p_segment_table IN fnd_flex_ext.SegmentArray,
1802: p_segment_cnt IN BINARY_INTEGER,
1803: p_account_class IN
1804: ra_cust_trx_line_gl_dist.account_class%type,
1805: p_result OUT NOCOPY BOOLEAN

Line 2003: p_segment_table IN fnd_flex_ext.SegmentArray,

1999: --
2000: --
2001: FUNCTION search_glcc_for_ccid( p_system_info IN
2002: arp_trx_global.system_info_rec_type,
2003: p_segment_table IN fnd_flex_ext.SegmentArray,
2004: p_segment_cnt IN BINARY_INTEGER,
2005: p_account_class IN
2006: ra_cust_trx_line_gl_dist.account_class%type,
2007: p_concat_segments IN VARCHAR2 )

Line 2156: p_segment_table IN fnd_flex_ext.SegmentArray,

2152:
2153:
2154: FUNCTION search_glcc_for_ccid( p_system_info IN
2155: arp_trx_global.system_info_rec_type,
2156: p_segment_table IN fnd_flex_ext.SegmentArray,
2157: p_segment_cnt IN BINARY_INTEGER )
2158: RETURN BINARY_INTEGER IS
2159:
2160: BEGIN

Line 2750: l_seg_table fnd_flex_ext.SegmentArray;

2746: l_delim VARCHAR2(1);
2747:
2748: -- to store segment values for binding
2749: --
2750: l_seg_table fnd_flex_ext.SegmentArray;
2751:
2752: BEGIN
2753:
2754: print_fcn_label2( 'arp_auto_accounting_br.assemble_code_combination()+' );