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.33.12020000.4 2013/03/01 03:40:19 rravikir ship $ */
3:
4: cr CONSTANT char(1) := '
5: ';

Line 793: AR_BPA_PRINT_CONC.Build_where_clause(

789: select_stmt :=
790: ' select distinct(nvl(rtrim(substr(a_bill_loc.language,1,4)), ''' || base_lang || ''')) language ' || cr ||
791: build_from_clause;
792:
793: AR_BPA_PRINT_CONC.Build_where_clause(
794: p_org_id,
795: p_choice ,
796: p_batch_id ,
797: p_cust_trx_class,

Line 817: AR_BPA_PRINT_CONC.Build_where_clause(

813:
814: sql_stmt := select_stmt || cr || p_where1;
815:
816: IF ( p_PRINT_DATE_LOW IS NOT NULL OR p_PRINT_DATE_HIGH IS NOT NULL ) THEN
817: AR_BPA_PRINT_CONC.Build_where_clause(
818: p_org_id,
819: p_choice ,
820: p_batch_id ,
821: p_cust_trx_class,

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

997:
998: BEGIN
999:
1000: MO_global.init('AR');
1001: FND_FILE.PUT_LINE( FND_FILE.LOG, 'AR_BPA_PRINT_CONC.print_invoices(+)' );
1002: -- to check if the output directory exists
1003:
1004: -- read the variable request_data to check if it is reentering the program
1005: req_data := fnd_conc_global.request_data;

Line 1063: AR_BPA_PRINT_CONC.Build_where_clause(

1059: select_stmt := ' select ' || m_request_id || ', payment_schedule_id, rownum, 1, sysdate, 1, sysdate, customer_trx_id from '
1060: || cr ||' ( select ps.payment_schedule_id, trx.customer_trx_id '|| cr || build_from_clause ||
1061: ' AND nvl(a_bill_loc.language,' || '''' || base_lang || ''') = ' || '''' || userenv_lang || '''' ;
1062:
1063: AR_BPA_PRINT_CONC.Build_where_clause(
1064: p_org_id,
1065: p_choice ,
1066: p_batch_id ,
1067: p_cust_trx_class,

Line 1087: AR_BPA_PRINT_CONC.Build_where_clause(

1083:
1084: sql_stmt := insert_stmt || cr || select_stmt || cr || p_where1 || ')';
1085:
1086: IF ( p_PRINT_DATE_LOW IS NOT NULL OR p_PRINT_DATE_HIGH IS NOT NULL ) THEN
1087: AR_BPA_PRINT_CONC.Build_where_clause(
1088: p_org_id,
1089: p_choice ,
1090: p_batch_id ,
1091: p_cust_trx_class,

Line 1208: l_request_id := AR_BPA_PRINT_CONC.submit_print_request(

1204:
1205:
1206: FOR no_of_workers in 1 .. divided_worker_counts
1207: LOOP
1208: l_request_id := AR_BPA_PRINT_CONC.submit_print_request(
1209: m_request_id,
1210: no_of_workers,
1211: p_order_by,
1212: p_template_id,

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

1284: COMMIT;
1285:
1286: END IF;
1287:
1288: FND_FILE.PUT_LINE( FND_FILE.LOG, 'AR_BPA_PRINT_CONC.print_invoices(-)' );
1289:
1290: EXCEPTION
1291: WHEN OTHERS THEN
1292: RAISE;

Line 1427: l_request_id := AR_BPA_PRINT_CONC.submit_print_request(

1423:
1424: -- When parent request id is passed as -1, child
1425: -- request uses its request id to pick data.
1426:
1427: l_request_id := AR_BPA_PRINT_CONC.submit_print_request(
1428: -1,
1429: no_of_workers,
1430: 'TRX_NUMBER',
1431: p_template_id,

Line 1590: END AR_BPA_PRINT_CONC;

1586: WHEN OTHERS THEN
1587: x_out_status := SUBSTR(SQLERRM, 1, 100);
1588: END process_multi_print;
1589:
1590: END AR_BPA_PRINT_CONC;