DBA Data[Home] [Help]

APPS.ARP_FLEX dependencies on ARP_UTIL_TAX

Line 86: arp_util_tax.debug('application_id:'||to_char(application_id));

82: segment := 0;
83: prior_segment := 0;
84:
85: if PG_DEBUG = 'Y' then
86: arp_util_tax.debug('application_id:'||to_char(application_id));
87: arp_util_tax.debug('flex_code:'||flex_code);
88: arp_util_tax.debug('structure_id:'||to_char(structure_id));
89: end if;
90:

Line 87: arp_util_tax.debug('flex_code:'||flex_code);

83: prior_segment := 0;
84:
85: if PG_DEBUG = 'Y' then
86: arp_util_tax.debug('application_id:'||to_char(application_id));
87: arp_util_tax.debug('flex_code:'||flex_code);
88: arp_util_tax.debug('structure_id:'||to_char(structure_id));
89: end if;
90:
91: for location in sel_flex_structure( application_id, flex_code, structure_id)

Line 88: arp_util_tax.debug('structure_id:'||to_char(structure_id));

84:
85: if PG_DEBUG = 'Y' then
86: arp_util_tax.debug('application_id:'||to_char(application_id));
87: arp_util_tax.debug('flex_code:'||flex_code);
88: arp_util_tax.debug('structure_id:'||to_char(structure_id));
89: end if;
90:
91: for location in sel_flex_structure( application_id, flex_code, structure_id)
92: loop

Line 103: arp_util_tax.debug('location.name : '||location.name);

99: | 2 2 LOCATION_SEGMENT_ID_2 |
100: | So we need to check that this assumption is true |
101: +------------------------------------------------------------------*/
102: if PG_DEBUG = 'Y' then
103: arp_util_tax.debug('location.name : '||location.name);
104: arp_util_tax.debug('location.num : '||location.num);
105: arp_util_tax.debug('location.column_name : '||location.column_name);
106: arp_util_tax.debug('location.qualifier : '||location.qualifier);
107: arp_util_tax.debug('location.prompt : '||location.prompt);

Line 104: arp_util_tax.debug('location.num : '||location.num);

100: | So we need to check that this assumption is true |
101: +------------------------------------------------------------------*/
102: if PG_DEBUG = 'Y' then
103: arp_util_tax.debug('location.name : '||location.name);
104: arp_util_tax.debug('location.num : '||location.num);
105: arp_util_tax.debug('location.column_name : '||location.column_name);
106: arp_util_tax.debug('location.qualifier : '||location.qualifier);
107: arp_util_tax.debug('location.prompt : '||location.prompt);
108: arp_util_tax.debug('location.pos : '||location.pos);

Line 105: arp_util_tax.debug('location.column_name : '||location.column_name);

101: +------------------------------------------------------------------*/
102: if PG_DEBUG = 'Y' then
103: arp_util_tax.debug('location.name : '||location.name);
104: arp_util_tax.debug('location.num : '||location.num);
105: arp_util_tax.debug('location.column_name : '||location.column_name);
106: arp_util_tax.debug('location.qualifier : '||location.qualifier);
107: arp_util_tax.debug('location.prompt : '||location.prompt);
108: arp_util_tax.debug('location.pos : '||location.pos);
109: arp_util_tax.debug('location.column_num :'||location.column_num);

Line 106: arp_util_tax.debug('location.qualifier : '||location.qualifier);

102: if PG_DEBUG = 'Y' then
103: arp_util_tax.debug('location.name : '||location.name);
104: arp_util_tax.debug('location.num : '||location.num);
105: arp_util_tax.debug('location.column_name : '||location.column_name);
106: arp_util_tax.debug('location.qualifier : '||location.qualifier);
107: arp_util_tax.debug('location.prompt : '||location.prompt);
108: arp_util_tax.debug('location.pos : '||location.pos);
109: arp_util_tax.debug('location.column_num :'||location.column_num);
110: end if;

Line 107: arp_util_tax.debug('location.prompt : '||location.prompt);

103: arp_util_tax.debug('location.name : '||location.name);
104: arp_util_tax.debug('location.num : '||location.num);
105: arp_util_tax.debug('location.column_name : '||location.column_name);
106: arp_util_tax.debug('location.qualifier : '||location.qualifier);
107: arp_util_tax.debug('location.prompt : '||location.prompt);
108: arp_util_tax.debug('location.pos : '||location.pos);
109: arp_util_tax.debug('location.column_num :'||location.column_num);
110: end if;
111:

Line 108: arp_util_tax.debug('location.pos : '||location.pos);

104: arp_util_tax.debug('location.num : '||location.num);
105: arp_util_tax.debug('location.column_name : '||location.column_name);
106: arp_util_tax.debug('location.qualifier : '||location.qualifier);
107: arp_util_tax.debug('location.prompt : '||location.prompt);
108: arp_util_tax.debug('location.pos : '||location.pos);
109: arp_util_tax.debug('location.column_num :'||location.column_num);
110: end if;
111:
112: if location.column_name like 'LOCATION_ID_SEGMENT_%' and

Line 109: arp_util_tax.debug('location.column_num :'||location.column_num);

105: arp_util_tax.debug('location.column_name : '||location.column_name);
106: arp_util_tax.debug('location.qualifier : '||location.qualifier);
107: arp_util_tax.debug('location.prompt : '||location.prompt);
108: arp_util_tax.debug('location.pos : '||location.pos);
109: arp_util_tax.debug('location.column_num :'||location.column_num);
110: end if;
111:
112: if location.column_name like 'LOCATION_ID_SEGMENT_%' and
113: location.column_name <> location.column_num then

Line 115: arp_util_tax.debug('The Line Number: '||to_char(location.num)

111:
112: if location.column_name like 'LOCATION_ID_SEGMENT_%' and
113: location.column_name <> location.column_num then
114: if PG_DEBUG = 'Y' then
115: arp_util_tax.debug('The Line Number: '||to_char(location.num)
116: ||' and Column Segment Number for '||location.column_name
117: ||' must be equal.');
118: end if;
119: fnd_message.set_name('AR','GENERIC_MESSAGE');

Line 242: arp_util_tax.debug( '>> add_to_list( ' || list || ', ' || value || ' )' );

238: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
239:
240: begin
241: if PG_DEBUG = 'Y' then
242: arp_util_tax.debug( '>> add_to_list( ' || list || ', ' || value || ' )' );
243: end if;
244:
245: /*** MB skip, the instr only searches for a character string(value) ***/
246: /*** in list ***/

Line 256: arp_util_tax.debug( '<< add_to_list( ' || list || ', ' || value || ' )' );

252: list := list || value;
253: end if;
254:
255: if PG_DEBUG = 'Y' then
256: arp_util_tax.debug( '<< add_to_list( ' || list || ', ' || value || ' )' );
257: end if;
258: end add_to_list;
259:
260:

Line 282: arp_util_tax.debug( '>> qualifier_list( ' || flex_handle || ', ' || qualifiers || ')' );

278:
279: begin
280:
281: if PG_DEBUG = 'Y' then
282: arp_util_tax.debug( '>> qualifier_list( ' || flex_handle || ', ' || qualifiers || ')' );
283: end if;
284:
285: quals := qualifiers;
286: list := null;

Line 320: arp_util_tax.debug( 'i=' || i || ' ' || list || ' --- ' || segment );

316:
317: segment := list_start + i;
318:
319: if PG_DEBUG = 'Y' then
320: arp_util_tax.debug( 'i=' || i || ' ' || list || ' --- ' || segment );
321: end if;
322:
323: if ( qual in ( 'ALL', 'ALLREV' ))
324: then

Line 352: arp_util_tax.debug(

348: if not qual_found
349: then
350:
351: if PG_DEBUG = 'Y' then
352: arp_util_tax.debug(
353: arp_standard.fnd_message( 'AR_FLEX_NO_QUALIFIER', 'QUALIFIER', qual,
354: 'STRING', qualifiers,
355: 'FLEXCODE', flex_short_name( flex_handle ),
356: 'STRUCTURE', flex_id( flex_handle ) ));

Line 366: arp_util_tax.debug( '<< qualifier_list: ' || list );

362:
363: end loop;
364:
365: if PG_DEBUG = 'Y' then
366: arp_util_tax.debug( '<< qualifier_list: ' || list );
367: end if;
368: return( list );
369:
370: end;

Line 389: arp_util_tax.debug( '>> expand( ' || flex_handle || ', ' ||

385:
386: begin
387:
388: if PG_DEBUG = 'Y' then
389: arp_util_tax.debug( '>> expand( ' || flex_handle || ', ' ||
390: qualifiers || ', ' || separator || ', ' ||
391: word || ' )' );
392: end if;
393: /*-------------------------------------------------------------------------+

Line 433: arp_util_tax.debug( '<< expand: ' || str );

429: str := str || token_expand( flex_handle, word, segment );
430: end loop;
431:
432: if PG_DEBUG = 'Y' then
433: arp_util_tax.debug( '<< expand: ' || str );
434: end if;
435: return( str );
436:
437: end expand;

Line 466: arp_util_tax.debug( '>> active_segments( ' || flex_handle || ')' );

462: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
463: begin
464:
465: if PG_DEBUG = 'Y' then
466: arp_util_tax.debug( '>> active_segments( ' || flex_handle || ')' );
467: end if;
468:
469: /*-------------------------------------------------------------------------+
470: | Confirm that the flex handle passed is valid |

Line 481: arp_util_tax.debug( '<< active_segments: ' || to_char(segments) );

477: THEN arp_standard.fnd_message( 'AR_FLEX_BAD_HANDLE', 'HANDLE', to_char(flex_handle) );
478: END;
479:
480: if PG_DEBUG = 'Y' then
481: arp_util_tax.debug( '<< active_segments: ' || to_char(segments) );
482: end if;
483: return( segments );
484:
485: END;