DBA Data[Home] [Help]

APPS.ARP_TRX_SELECT_CONTROL dependencies on STANDARD

Line 15: | ARP_STANDARD.AR_ERROR_NUMBER ( in arp_standard.fnd_message ) |

11: | |
12: | REQUIRES |
13: | |
14: | EXCEPTIONS RAISED |
15: | ARP_STANDARD.AR_ERROR_NUMBER ( in arp_standard.fnd_message ) |
16: | |
17: | KNOWN BUGS |
18: | |
19: | NOTES |

Line 304: dates_high := arp_standard.ceil(P_dates_high);

300: | make dates_low := P_dates_low 00:00:00 |
301: | make dates_high := P_dates_high 23:59:59 |
302: +----------------------------------------------------------------------*/
303: dates_low := trunc(P_dates_low);
304: dates_high := arp_standard.ceil(P_dates_high);
305:
306: adj_dates_low := trunc( p_adj_dates_low );
307: adj_dates_high := arp_standard.ceil( p_adj_dates_high);
308:

Line 307: adj_dates_high := arp_standard.ceil( p_adj_dates_high);

303: dates_low := trunc(P_dates_low);
304: dates_high := arp_standard.ceil(P_dates_high);
305:
306: adj_dates_low := trunc( p_adj_dates_low );
307: adj_dates_high := arp_standard.ceil( p_adj_dates_high);
308:
309:
310: /*----------------------------------------------------------------------+
311: | Protect every occurance of single quote in trx/adj number params|

Line 323: arp_standard.fnd_message( 'AR_MAND_PARAMETER_NULL',

319: /*----------------------------------------------------------------------+
320: | Check mandatory parameters |
321: +----------------------------------------------------------------------*/
322: if P_choice is NULL then
323: arp_standard.fnd_message( 'AR_MAND_PARAMETER_NULL',
324: 'PARAM', 'P_choice' );
325: end if;
326:
327: if P_open_invoice is NULL then

Line 328: arp_standard.fnd_message( 'AR_MAND_PARAMETER_NULL',

324: 'PARAM', 'P_choice' );
325: end if;
326:
327: if P_open_invoice is NULL then
328: arp_standard.fnd_message( 'AR_MAND_PARAMETER_NULL',
329: 'PARAM', 'P_open_invoice' );
330: end if;
331:
332: select language_code

Line 402: arp_standard.fnd_message( 'AR_MAND_PARAMETER_NULL',

398: end if;
399: elsif P_choice = 'ONE' then
400: begin
401: if P_customer_trx_id is NULL then
402: arp_standard.fnd_message( 'AR_MAND_PARAMETER_NULL',
403: 'PARAM', 'P_customer_trx_id' );
404: end if;
405: choice := sel_one;
406: end;

Line 410: arp_standard.fnd_message( 'AR_MAND_PARAMETER_NULL',

406: end;
407: elsif P_choice = 'BATCH' then
408: begin
409: if P_batch_id is NULL then
410: arp_standard.fnd_message( 'AR_MAND_PARAMETER_NULL',
411: 'PARAM', 'P_batch_id' );
412: end if;
413: choice := sel_batch;
414: end;

Line 416: arp_standard.fnd_message( 'AR_RAXINV_INVALID_PARAMETERS',

412: end if;
413: choice := sel_batch;
414: end;
415: else
416: arp_standard.fnd_message( 'AR_RAXINV_INVALID_PARAMETERS',
417: 'PARAM', 'P_choice' );
418: end if;
419:
420: where1 := where1 || 'A.BILL_TO_CUSTOMER_ID = B.CUST_ACCOUNT_ID';