DBA Data[Home] [Help]

APPS.AR_BPA_PRINT_CONC dependencies on AR_BPA_PRINT_CONC

Line 1: PACKAGE BODY AR_BPA_PRINT_CONC AS

1: PACKAGE BODY AR_BPA_PRINT_CONC AS
2: /* $Header: ARBPPRIB.pls 120.23.12000000.4 2007/10/16 10:48:59 tthangav ship $ */
3:
4: cr CONSTANT char(1) := '
5: ';

Line 778: AR_BPA_PRINT_CONC.Build_where_clause(

774: select_stmt :=
775: ' select distinct(nvl(rtrim(substr(a_bill.language,1,4)), ''' || base_lang || ''')) language ' || cr ||
776: build_from_clause;
777:
778: AR_BPA_PRINT_CONC.Build_where_clause(
779: p_org_id,
780: p_choice ,
781: p_batch_id ,
782: p_cust_trx_class,

Line 802: AR_BPA_PRINT_CONC.Build_where_clause(

798:
799: sql_stmt := select_stmt || cr || p_where1;
800:
801: IF ( p_PRINT_DATE_LOW IS NOT NULL OR p_PRINT_DATE_HIGH IS NOT NULL ) THEN
802: AR_BPA_PRINT_CONC.Build_where_clause(
803: p_org_id,
804: p_choice ,
805: p_batch_id ,
806: p_cust_trx_class,

Line 986: FND_FILE.PUT_LINE( FND_FILE.LOG, 'AR_BPA_PRINT_CONC.print_invoices(+)' );

982:
983: BEGIN
984:
985: MO_global.init('AR');
986: FND_FILE.PUT_LINE( FND_FILE.LOG, 'AR_BPA_PRINT_CONC.print_invoices(+)' );
987: -- to check if the output directory exists
988:
989: -- read the variable request_data to check if it is reentering the program
990: req_data := fnd_conc_global.request_data;

Line 1048: AR_BPA_PRINT_CONC.Build_where_clause(

1044: select_stmt := ' select ' || m_request_id || ', payment_schedule_id, rownum, 1, sysdate, 1, sysdate from '
1045: || cr ||' ( select ps.payment_schedule_id '|| cr || build_from_clause ||
1046: ' AND nvl(a_bill.language,' || '''' || base_lang || ''') = ' || '''' || userenv_lang || '''' ;
1047:
1048: AR_BPA_PRINT_CONC.Build_where_clause(
1049: p_org_id,
1050: p_choice ,
1051: p_batch_id ,
1052: p_cust_trx_class,

Line 1072: AR_BPA_PRINT_CONC.Build_where_clause(

1068:
1069: sql_stmt := insert_stmt || cr || select_stmt || cr || p_where1 || ')';
1070:
1071: IF ( p_PRINT_DATE_LOW IS NOT NULL OR p_PRINT_DATE_HIGH IS NOT NULL ) THEN
1072: AR_BPA_PRINT_CONC.Build_where_clause(
1073: p_org_id,
1074: p_choice ,
1075: p_batch_id ,
1076: p_cust_trx_class,

Line 1193: l_request_id := AR_BPA_PRINT_CONC.submit_print_request(

1189:
1190:
1191: FOR no_of_workers in 1 .. divided_worker_counts
1192: LOOP
1193: l_request_id := AR_BPA_PRINT_CONC.submit_print_request(
1194: m_request_id,
1195: no_of_workers,
1196: p_order_by,
1197: p_template_id,

Line 1273: FND_FILE.PUT_LINE( FND_FILE.LOG, 'AR_BPA_PRINT_CONC.print_invoices(-)' );

1269: COMMIT;
1270:
1271: END IF;
1272:
1273: FND_FILE.PUT_LINE( FND_FILE.LOG, 'AR_BPA_PRINT_CONC.print_invoices(-)' );
1274:
1275: EXCEPTION
1276: WHEN OTHERS THEN
1277: RAISE;

Line 1408: l_request_id := AR_BPA_PRINT_CONC.submit_print_request(

1404:
1405: -- When parent request id is passed as -1, child
1406: -- request uses its request id to pick data.
1407:
1408: l_request_id := AR_BPA_PRINT_CONC.submit_print_request(
1409: -1,
1410: no_of_workers,
1411: 'TRX_NUMBER',
1412: p_template_id,

Line 1571: END AR_BPA_PRINT_CONC;

1567: WHEN OTHERS THEN
1568: x_out_status := SUBSTR(SQLERRM, 1, 100);
1569: END process_multi_print;
1570:
1571: END AR_BPA_PRINT_CONC;