DBA Data[Home] [Help]

APPS.ARP_RECON_REP dependencies on ARP_STANDARD

Line 181: arp_standard.debug('get_detail_accounts (+)');

177:
178: BEGIN
179:
180: log('get_detail_accounts (+)');
181: arp_standard.debug('get_detail_accounts (+)');
182:
183: /* Algorithm:
184: Read the details for the incoming parent value. If the detail of the incoming parent is also
185: a parent, store it. Remove the current parent from the list once the child accounts are

Line 226: arp_standard.debug('No of rows : '|| l_count);

222: END LOOP;
223:
224: l_count := detail.count;
225:
226: arp_standard.debug('No of rows : '|| l_count);
227:
228: IF l_count = 0 THEN
229: detail(1) := p_parent_value;
230: END IF;

Line 236: arp_standard.debug('p_code_combinations :' ||p_code_combinations);

232: /* Build the string of the code combinations */
233:
234: build_where_clause(p_code_combinations);
235:
236: arp_standard.debug('p_code_combinations :' ||p_code_combinations);
237:
238: arp_standard.debug('get_detail_accounts (-)');
239: log('get_detail_accounts (-)');
240: EXCEPTION

Line 238: arp_standard.debug('get_detail_accounts (-)');

234: build_where_clause(p_code_combinations);
235:
236: arp_standard.debug('p_code_combinations :' ||p_code_combinations);
237:
238: arp_standard.debug('get_detail_accounts (-)');
239: log('get_detail_accounts (-)');
240: EXCEPTION
241: WHEN OTHERS THEN
242: arp_standard.debug(sqlcode);

Line 242: arp_standard.debug(sqlcode);

238: arp_standard.debug('get_detail_accounts (-)');
239: log('get_detail_accounts (-)');
240: EXCEPTION
241: WHEN OTHERS THEN
242: arp_standard.debug(sqlcode);
243: arp_standard.debug(sqlerrm);
244: arp_standard.debug('get_detail_accounts (EXCEPTION)');
245: END get_detail_accounts;
246:

Line 243: arp_standard.debug(sqlerrm);

239: log('get_detail_accounts (-)');
240: EXCEPTION
241: WHEN OTHERS THEN
242: arp_standard.debug(sqlcode);
243: arp_standard.debug(sqlerrm);
244: arp_standard.debug('get_detail_accounts (EXCEPTION)');
245: END get_detail_accounts;
246:
247:

Line 244: arp_standard.debug('get_detail_accounts (EXCEPTION)');

240: EXCEPTION
241: WHEN OTHERS THEN
242: arp_standard.debug(sqlcode);
243: arp_standard.debug(sqlerrm);
244: arp_standard.debug('get_detail_accounts (EXCEPTION)');
245: END get_detail_accounts;
246:
247:
248: /*========================================================================+