DBA Data[Home] [Help]

APPS.OKL_ACCOUNTING_PROCESS_PVT dependencies on FND_FILE

Line 259: Fnd_File.PUT_LINE(Fnd_File.LOG, 'Could not get transaction Number and Transaction type Class');

255: OPEN trx_csr(dists_rec.source_id);
256: FETCH trx_csr INTO l_trx_number,
257: l_trx_type_class;
258: IF (trx_csr%NOTFOUND) THEN
259: Fnd_File.PUT_LINE(Fnd_File.LOG, 'Could not get transaction Number and Transaction type Class');
260: CLOSE trx_csr;
261: RAISE Okl_Api.G_EXCEPTION_ERROR;
262: END IF;
263:

Line 272: Fnd_File.PUT_LINE(Fnd_File.LOG, 'Could not get transaction Number and Transaction type Class');

268: OPEN tal_csr(dists_rec.source_id);
269: FETCH tal_csr INTO l_trx_number,
270: l_trx_type_class;
271: IF (tal_csr%NOTFOUND) THEN
272: Fnd_File.PUT_LINE(Fnd_File.LOG, 'Could not get transaction Number and Transaction type Class');
273: CLOSE tal_csr;
274: RAISE Okl_Api.G_EXCEPTION_ERROR;
275: END IF;
276: CLOSE tal_csr;

Line 278: Fnd_File.PUT_LINE(Fnd_File.LOG, 'Invalid Source Table ' || dists_rec.source_table || ' found');

274: RAISE Okl_Api.G_EXCEPTION_ERROR;
275: END IF;
276: CLOSE tal_csr;
277: ELSE
278: Fnd_File.PUT_LINE(Fnd_File.LOG, 'Invalid Source Table ' || dists_rec.source_table || ' found');
279: RAISE Okl_Api.G_EXCEPTION_ERROR;
280: END IF;
281:
282: -- Get the max event number for this source id and table combination

Line 313: Fnd_File.PUT_LINE(Fnd_File.LOG,

309: p_aetv_rec => l_event_rec_in,
310: x_aetv_rec => l_event_rec_out);
311:
312: IF (l_return_status <> Okl_Api.G_RET_STS_SUCCESS) THEN
313: Fnd_File.PUT_LINE(Fnd_File.LOG,
314: 'Error in Creating Accounting event for transaction Number ' || l_trx_number);
315: RAISE Okl_Api.G_EXCEPTION_ERROR;
316: END IF;
317:

Line 341: Fnd_File.PUT_LINE(Fnd_File.LOG, SQLERRM);

337:
338: EXCEPTION
339: WHEN OTHERS THEN
340: l_return_status := Okl_Api.G_RET_STS_UNEXP_ERROR;
341: Fnd_File.PUT_LINE(Fnd_File.LOG, SQLERRM);
342:
343: END;
344:
345: END LOOP;

Line 362: Fnd_File.PUT_LINE(Fnd_File.LOG,

358: */
359:
360:
361: IF (l_return_status <> Okl_Api.G_RET_STS_SUCCESS) THEN
362: Fnd_File.PUT_LINE(Fnd_File.LOG,
363: 'Error in Updating Distribution with accounting event id for transaction Number ' || l_trx_number);
364:
365: DO_CLEANUP(p_aetv_rec => l_Event_rec_out,
366: x_return_status => l_return_status);

Line 385: Fnd_File.PUT_LINE(Fnd_File.LOG, l_error_msg_rec(m));

381: Okl_Accounting_Util.GET_ERROR_MESSAGE(l_error_msg_rec);
382: IF (l_error_msg_rec.COUNT > 0) THEN
383: FOR m IN l_error_msg_rec.FIRST..l_error_msg_rec.LAST
384: LOOP
385: Fnd_File.PUT_LINE(Fnd_File.LOG, l_error_msg_rec(m));
386: END LOOP;
387: END IF;
388:
389: END;

Line 547: Fnd_File.PUT_LINE(Fnd_File.LOG,

543:
544: l_ae_category := GET_CATEGORY(p_trx_type);
545:
546: IF (l_ae_category IS NULL) THEN
547: Fnd_File.PUT_LINE(Fnd_File.LOG,
548: 'GL Category Not Found while Processing Transaction Number ' || l_trx_number);
549: RAISE Okl_Api.G_EXCEPTION_ERROR;
550: END IF;
551:

Line 766: Fnd_File.PUT_LINE(Fnd_File.LOG, 'A CCID is Invalid for Transaction Number '

762: IF (l_ccid_valid = Okl_Api.G_FALSE) THEN
763: l_aelv_tbl_in(i).accounting_error_code := 'INVALID_ACCOUNT';
764: -- l_aelv_tbl_in(i).code_combination_id := -1;
765: x_ret_message := 'INVALID ACCOUNT';
766: Fnd_File.PUT_LINE(Fnd_File.LOG, 'A CCID is Invalid for Transaction Number '
767: || l_trx_number);
768: END IF;
769:
770: END LOOP;

Line 1255: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 47 , ' ' ) ||

1251:
1252: BEGIN
1253: -- santonyr
1254:
1255: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 47 , ' ' ) ||
1256: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCT_LEASE_MANAGEMENT')
1257: || RPAD(' ', 48 , ' ' ));
1258:
1259: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 42 , ' ' ) || Okl_Accounting_Util.get_message_token

Line 1259: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 42 , ' ' ) || Okl_Accounting_Util.get_message_token

1255: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 47 , ' ' ) ||
1256: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCT_LEASE_MANAGEMENT')
1257: || RPAD(' ', 48 , ' ' ));
1258:
1259: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 42 , ' ' ) || Okl_Accounting_Util.get_message_token
1260: ('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCT_PROCESS_REPORT') || RPAD(' ', 43 , ' ' ));
1261: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ',42 , ' ' ) || '-----------------------------------' || RPAD(' ', 43 , ' ' ));
1262: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1263:

Line 1261: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ',42 , ' ' ) || '-----------------------------------' || RPAD(' ', 43 , ' ' ));

1257: || RPAD(' ', 48 , ' ' ));
1258:
1259: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 42 , ' ' ) || Okl_Accounting_Util.get_message_token
1260: ('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCT_PROCESS_REPORT') || RPAD(' ', 43 , ' ' ));
1261: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ',42 , ' ' ) || '-----------------------------------' || RPAD(' ', 43 , ' ' ));
1262: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1263:
1264: -- Derive the org name and print it on the report.
1265:

Line 1262: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1258:
1259: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 42 , ' ' ) || Okl_Accounting_Util.get_message_token
1260: ('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCT_PROCESS_REPORT') || RPAD(' ', 43 , ' ' ));
1261: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ',42 , ' ' ) || '-----------------------------------' || RPAD(' ', 43 , ' ' ));
1262: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1263:
1264: -- Derive the org name and print it on the report.
1265:
1266: l_set_of_books_name := Okl_Accounting_Util.get_set_of_books_name (Okl_Accounting_Util.get_set_of_books_id);

Line 1285: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_SET_OF_BOOKS') ||': '||

1281:
1282: i := 0;
1283:
1284:
1285: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_SET_OF_BOOKS') ||': '||
1286: RPAD(SUBSTR(l_set_of_books_name, 1, 60), 60, ' ') || LPAD(' ', 18 , ' ' )
1287: || Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_RUN_DATE') ||':' ||
1288: SUBSTR(TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI'), 1, 27));
1289: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_OPERUNIT')

Line 1289: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_OPERUNIT')

1285: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_SET_OF_BOOKS') ||': '||
1286: RPAD(SUBSTR(l_set_of_books_name, 1, 60), 60, ' ') || LPAD(' ', 18 , ' ' )
1287: || Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_RUN_DATE') ||':' ||
1288: SUBSTR(TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI'), 1, 27));
1289: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_OPERUNIT')
1290: ||':'|| SUBSTR(l_org_name, 1, 30) );
1291:
1292: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1293: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',

Line 1292: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1288: SUBSTR(TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI'), 1, 27));
1289: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_OPERUNIT')
1290: ||':'|| SUBSTR(l_org_name, 1, 30) );
1291:
1292: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1293: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1294: 'OKL_START_DATE'), 25 , ' ' ) || RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1295: 'OKL_END_DATE'), 25 , ' ' ) ||
1296: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_STATUS'), 30 , ' ' ) ||

Line 1293: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',

1289: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_OPERUNIT')
1290: ||':'|| SUBSTR(l_org_name, 1, 30) );
1291:
1292: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1293: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1294: 'OKL_START_DATE'), 25 , ' ' ) || RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1295: 'OKL_END_DATE'), 25 , ' ' ) ||
1296: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_STATUS'), 30 , ' ' ) ||
1297: LPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_AE_HEADERS'), 20 , ' ' ) ||

Line 1299: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));

1295: 'OKL_END_DATE'), 25 , ' ' ) ||
1296: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_STATUS'), 30 , ' ' ) ||
1297: LPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_AE_HEADERS'), 20 , ' ' ) ||
1298: LPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_AE_LINES'), 20 , ' ' ));
1299: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));
1300: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, GET_PROPER_LENGTH(p_start_date,25,'TITLE') || GET_PROPER_LENGTH(p_end_date, 25 ,'TITLE' ) ||
1301: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_PROCESSED_ENTRIES'), 30 , ' ' ) ||
1302: LPAD(l_total_headers, 20 , ' ' ) || LPAD(l_total_lines, 20 , ' ' ));
1303: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 25 , ' ' ) || RPAD(' ', 25 , ' ' ) ||

Line 1300: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, GET_PROPER_LENGTH(p_start_date,25,'TITLE') || GET_PROPER_LENGTH(p_end_date, 25 ,'TITLE' ) ||

1296: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_STATUS'), 30 , ' ' ) ||
1297: LPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_AE_HEADERS'), 20 , ' ' ) ||
1298: LPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_AE_LINES'), 20 , ' ' ));
1299: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));
1300: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, GET_PROPER_LENGTH(p_start_date,25,'TITLE') || GET_PROPER_LENGTH(p_end_date, 25 ,'TITLE' ) ||
1301: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_PROCESSED_ENTRIES'), 30 , ' ' ) ||
1302: LPAD(l_total_headers, 20 , ' ' ) || LPAD(l_total_lines, 20 , ' ' ));
1303: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 25 , ' ' ) || RPAD(' ', 25 , ' ' ) ||
1304: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCOUNTED_SUCCESS'), 30 , ' ' ) ||

Line 1303: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 25 , ' ' ) || RPAD(' ', 25 , ' ' ) ||

1299: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));
1300: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, GET_PROPER_LENGTH(p_start_date,25,'TITLE') || GET_PROPER_LENGTH(p_end_date, 25 ,'TITLE' ) ||
1301: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_PROCESSED_ENTRIES'), 30 , ' ' ) ||
1302: LPAD(l_total_headers, 20 , ' ' ) || LPAD(l_total_lines, 20 , ' ' ));
1303: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 25 , ' ' ) || RPAD(' ', 25 , ' ' ) ||
1304: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCOUNTED_SUCCESS'), 30 , ' ' ) ||
1305: LPAD((l_total_headers - l_error_ae_headers), 20 , ' ' ) || LPAD((l_total_lines - l_error_ae_lines), 20 , ' ' ));
1306: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 25 , ' ' ) || RPAD(' ', 25 , ' ' ) ||
1307: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCOUNTED_ERROR'), 30 , ' ' ) ||

Line 1306: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 25 , ' ' ) || RPAD(' ', 25 , ' ' ) ||

1302: LPAD(l_total_headers, 20 , ' ' ) || LPAD(l_total_lines, 20 , ' ' ));
1303: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 25 , ' ' ) || RPAD(' ', 25 , ' ' ) ||
1304: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCOUNTED_SUCCESS'), 30 , ' ' ) ||
1305: LPAD((l_total_headers - l_error_ae_headers), 20 , ' ' ) || LPAD((l_total_lines - l_error_ae_lines), 20 , ' ' ));
1306: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', 25 , ' ' ) || RPAD(' ', 25 , ' ' ) ||
1307: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCOUNTED_ERROR'), 30 , ' ' ) ||
1308: LPAD((l_error_ae_headers), 20 , ' ' ) || LPAD((l_error_ae_lines), 20 , ' ' ));
1309:
1310:

Line 1311: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1307: RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ACCOUNTED_ERROR'), 30 , ' ' ) ||
1308: LPAD((l_error_ae_headers), 20 , ' ' ) || LPAD((l_error_ae_lines), 20 , ' ' ));
1309:
1310:
1311: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1312: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('=', l_line_length , '=' ));
1313: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1314:
1315: header_report_rec.transaction_date := GET_PROPER_LENGTH(

Line 1312: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('=', l_line_length , '=' ));

1308: LPAD((l_error_ae_headers), 20 , ' ' ) || LPAD((l_error_ae_lines), 20 , ' ' ));
1309:
1310:
1311: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1312: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('=', l_line_length , '=' ));
1313: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1314:
1315: header_report_rec.transaction_date := GET_PROPER_LENGTH(
1316: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_TRANSACTION'),

Line 1313: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1309:
1310:
1311: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1312: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('=', l_line_length , '=' ));
1313: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1314:
1315: header_report_rec.transaction_date := GET_PROPER_LENGTH(
1316: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_TRANSACTION'),
1317: l_transaction_date_len, 'TITLE');

Line 1373: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1369:
1370:
1371: --- Error Section Begins ------------------------
1372:
1373: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1374: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ERROR_LOG'), l_line_length , ' ' ));
1375: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------', l_line_length , ' ' ));
1376: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1377:

Line 1374: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ERROR_LOG'), l_line_length , ' ' ));

1370:
1371: --- Error Section Begins ------------------------
1372:
1373: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1374: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ERROR_LOG'), l_line_length , ' ' ));
1375: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------', l_line_length , ' ' ));
1376: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1377:
1378:

Line 1375: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------', l_line_length , ' ' ));

1371: --- Error Section Begins ------------------------
1372:
1373: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1374: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ERROR_LOG'), l_line_length , ' ' ));
1375: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------', l_line_length , ' ' ));
1376: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1377:
1378:
1379: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',

Line 1376: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1372:
1373: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1374: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_ERROR_LOG'), l_line_length , ' ' ));
1375: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------', l_line_length , ' ' ));
1376: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1377:
1378:
1379: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1380: 'DEBIT_NOT_EQUAL_TO_CREDIT') , l_line_length, ' ' ));

Line 1379: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',

1375: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------', l_line_length , ' ' ));
1376: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1377:
1378:
1379: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1380: 'DEBIT_NOT_EQUAL_TO_CREDIT') , l_line_length, ' ' ));
1381: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------------', l_line_length , ' ' ));
1382: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1383:

Line 1381: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------------', l_line_length , ' ' ));

1377:
1378:
1379: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1380: 'DEBIT_NOT_EQUAL_TO_CREDIT') , l_line_length, ' ' ));
1381: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------------', l_line_length , ' ' ));
1382: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1383:
1384: -- Print the Header, same as the processed one.
1385:

Line 1382: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1378:
1379: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1380: 'DEBIT_NOT_EQUAL_TO_CREDIT') , l_line_length, ' ' ));
1381: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------------', l_line_length , ' ' ));
1382: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1383:
1384: -- Print the Header, same as the processed one.
1385:
1386: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

Line 1386: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1382: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1383:
1384: -- Print the Header, same as the processed one.
1385:
1386: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1387: header_report_rec.transaction_date||
1388: header_report_rec.contract_number||
1389: header_report_rec.transaction_number ||
1390: header_report_rec.transaction_line_number ||

Line 1398: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec2.transaction_date||

1394: -- Modified by kthiruva for Bug 3861943
1395: --header_report_rec.account ||
1396: header_report_rec.currency);
1397:
1398: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec2.transaction_date||
1399: header_report_rec2.contract_number||
1400: header_report_rec2.transaction_number ||
1401: header_report_rec2.transaction_line_number ||
1402: header_report_rec2.accounting_date ||

Line 1412: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1408:
1409:
1410:
1411:
1412: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1413:
1414: OPEN dr_cr_unequal_dst_csr(l_request_id);
1415: FETCH dr_cr_unequal_dst_csr INTO dr_cr_unequal_dst_rec;
1416: IF (dr_cr_unequal_dst_csr%NOTFOUND) THEN

Line 1417: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1413:
1414: OPEN dr_cr_unequal_dst_csr(l_request_id);
1415: FETCH dr_cr_unequal_dst_csr INTO dr_cr_unequal_dst_rec;
1416: IF (dr_cr_unequal_dst_csr%NOTFOUND) THEN
1417: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1418: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1419: ELSE
1420: NULL;
1421: END IF;

Line 1463: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1459: dr_cr_report_rec.currency :=
1460: GET_PROPER_LENGTH(dr_cr_unequal_dst_rec.currency_code,l_currency_len,'DATA');
1461:
1462:
1463: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1464: dr_cr_report_rec.transaction_date||
1465: dr_cr_report_rec.contract_number ||
1466: dr_cr_report_rec.transaction_number ||
1467: dr_cr_report_rec.transaction_line_number||

Line 1475: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec.account||':'||dr_cr_report_rec.account );

1471: --dr_cr_report_rec.account ||
1472: dr_cr_report_rec.currency);
1473:
1474: --Added by kthiruva for Bug 3861943
1475: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec.account||':'||dr_cr_report_rec.account );
1476:
1477:
1478: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1479:

Line 1478: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1474: --Added by kthiruva for Bug 3861943
1475: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec.account||':'||dr_cr_report_rec.account );
1476:
1477:
1478: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1479:
1480:
1481: END LOOP;
1482:

Line 1483: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1479:
1480:
1481: END LOOP;
1482:
1483: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1484: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1485: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1486: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1487:

Line 1484: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1480:
1481: END LOOP;
1482:
1483: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1484: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1485: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1486: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1487:
1488: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',

Line 1485: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1481: END LOOP;
1482:
1483: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1484: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1485: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1486: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1487:
1488: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1489: 'INVALID_ACCOUNT'), l_line_length, ' ' ));

Line 1486: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1482:
1483: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1484: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1485: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1486: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1487:
1488: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1489: 'INVALID_ACCOUNT'), l_line_length, ' ' ));
1490: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------', l_line_length , ' ' ));

Line 1488: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',

1484: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1485: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1486: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1487:
1488: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1489: 'INVALID_ACCOUNT'), l_line_length, ' ' ));
1490: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------', l_line_length , ' ' ));
1491: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1492:

Line 1490: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------', l_line_length , ' ' ));

1486: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1487:
1488: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1489: 'INVALID_ACCOUNT'), l_line_length, ' ' ));
1490: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------', l_line_length , ' ' ));
1491: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1492:
1493: ---- Print the Header for Invalid Account, Same as before.
1494:

Line 1491: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1487:
1488: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_lookup_meaning('OKL_ACCOUNTING_ERROR_CODE',
1489: 'INVALID_ACCOUNT'), l_line_length, ' ' ));
1490: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------', l_line_length , ' ' ));
1491: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1492:
1493: ---- Print the Header for Invalid Account, Same as before.
1494:
1495:

Line 1496: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1492:
1493: ---- Print the Header for Invalid Account, Same as before.
1494:
1495:
1496: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1497: header_report_rec.transaction_date||
1498: header_report_rec.contract_number||
1499: header_report_rec.transaction_number ||
1500: header_report_rec.transaction_line_number ||

Line 1508: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec2.transaction_date||

1504: -- Modified by kthiruva for Bug 3861943
1505: --header_report_rec.account ||
1506: header_report_rec.currency);
1507:
1508: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec2.transaction_date||
1509: header_report_rec2.contract_number||
1510: header_report_rec2.transaction_number ||
1511: header_report_rec2.transaction_line_number ||
1512: header_report_rec2.accounting_date ||

Line 1520: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1516: --header_report_rec2.account ||
1517: header_report_rec2.currency);
1518:
1519:
1520: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1521:
1522: OPEN invalid_acc_dst_csr(l_request_id);
1523: FETCH invalid_acc_dst_csr INTO invalid_acc_dst_rec;
1524: IF (invalid_Acc_dst_csr%NOTFOUND) THEN

Line 1525: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1521:
1522: OPEN invalid_acc_dst_csr(l_request_id);
1523: FETCH invalid_acc_dst_csr INTO invalid_acc_dst_rec;
1524: IF (invalid_Acc_dst_csr%NOTFOUND) THEN
1525: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1526: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1527: ELSE
1528: NULL;
1529: END IF;

Line 1569: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1565: invalid_acc_report_rec.currency
1566: := GET_PROPER_LENGTH(invalid_acc_dst_rec.currency_code, l_currency_len, 'DATA');
1567:
1568:
1569: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1570: invalid_Acc_report_rec.transaction_date||
1571: invalid_acc_report_rec.contract_number ||
1572: invalid_Acc_report_rec.transaction_number ||
1573: invalid_acc_report_rec.transaction_line_number||

Line 1582: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec.account||':'||invalid_acc_report_rec.account);

1578: --invalid_acc_report_rec.account ||
1579: invalid_acc_report_rec.currency);
1580:
1581: -- Added by kthiruva for Bug 3861943
1582: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec.account||':'||invalid_acc_report_rec.account);
1583:
1584: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1585:
1586: END LOOP;

Line 1584: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1580:
1581: -- Added by kthiruva for Bug 3861943
1582: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec.account||':'||invalid_acc_report_rec.account);
1583:
1584: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1585:
1586: END LOOP;
1587:
1588: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

Line 1588: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1584: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1585:
1586: END LOOP;
1587:
1588: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1589: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1590: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1591: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1592:

Line 1589: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1585:
1586: END LOOP;
1587:
1588: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1589: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1590: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1591: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1592:
1593: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',

Line 1590: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1586: END LOOP;
1587:
1588: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1589: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1590: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1591: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1592:
1593: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1594: 'OKL_NON_PROCESSED_ENTRIES'), l_line_length , ' ' ));

Line 1591: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1587:
1588: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1589: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1590: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1591: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1592:
1593: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1594: 'OKL_NON_PROCESSED_ENTRIES'), l_line_length , ' ' ));
1595: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------', l_line_length , ' ' ));

Line 1593: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',

1589: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1590: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1591: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1592:
1593: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1594: 'OKL_NON_PROCESSED_ENTRIES'), l_line_length , ' ' ));
1595: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------', l_line_length , ' ' ));
1596: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1597:

Line 1595: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------', l_line_length , ' ' ));

1591: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1592:
1593: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1594: 'OKL_NON_PROCESSED_ENTRIES'), l_line_length , ' ' ));
1595: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------', l_line_length , ' ' ));
1596: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1597:
1598: --Assigning the headers for non-processed entries
1599:

Line 1596: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1592:
1593: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1594: 'OKL_NON_PROCESSED_ENTRIES'), l_line_length , ' ' ));
1595: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('---------------------', l_line_length , ' ' ));
1596: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1597:
1598: --Assigning the headers for non-processed entries
1599:
1600:

Line 1649: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1645: header_err_report_rec2.amount := GET_PROPER_LENGTH(NULL,l_amount_len, 'TITLE');
1646: header_err_report_rec2.currency := GET_PROPER_LENGTH(NULL,l_currency_len, 'TITLE');
1647:
1648:
1649: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1650: header_err_report_rec.transaction_date||
1651: header_err_report_rec.contract_number||
1652: header_err_report_rec.transaction_number ||
1653: header_err_report_rec.transaction_line_number ||

Line 1659: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1655: header_err_report_rec.accounting_period ||
1656: header_err_report_rec.amount||
1657: header_err_report_rec.currency);
1658:
1659: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1660: header_err_report_rec2.transaction_date||
1661: header_err_report_rec2.contract_number||
1662: header_err_report_rec2.transaction_number ||
1663: header_err_report_rec2.transaction_line_number ||

Line 1671: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1667: header_err_report_rec2.currency);
1668:
1669:
1670:
1671: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1672:
1673: IF (l_trx_err_tbl.COUNT < 1) THEN
1674:
1675: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

Line 1675: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1671: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1672:
1673: IF (l_trx_err_tbl.COUNT < 1) THEN
1674:
1675: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1676: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1677: END IF;
1678:
1679: --- Process the non-processed Entries

Line 1720: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1716:
1717: non_proc_report_rec.currency
1718: := GET_PROPER_LENGTH(details_rec.currency_code, l_currency_len, 'DATA');
1719:
1720: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1721: non_proc_report_rec.transaction_date ||
1722: non_proc_report_rec.contract_number ||
1723: non_proc_report_rec.transaction_number ||
1724: non_proc_report_rec.transaction_line_number ||

Line 1731: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1727: non_proc_report_rec.amount ||
1728: non_proc_report_rec.currency);
1729:
1730:
1731: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1732:
1733: END LOOP;
1734:
1735: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));

Line 1735: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));

1731: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1732:
1733: END LOOP;
1734:
1735: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));
1736: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1737: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1738:
1739: --gboomina..bug#4648697 ..Added condition to print

Line 1736: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1732:
1733: END LOOP;
1734:
1735: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));
1736: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1737: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1738:
1739: --gboomina..bug#4648697 ..Added condition to print
1740: --processed records only if rpt_format is ALL.

Line 1737: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1733: END LOOP;
1734:
1735: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length, '-' ));
1736: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1737: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1738:
1739: --gboomina..bug#4648697 ..Added condition to print
1740: --processed records only if rpt_format is ALL.
1741: IF (p_rpt_format = 'ALL') THEN

Line 1743: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));

1739: --gboomina..bug#4648697 ..Added condition to print
1740: --processed records only if rpt_format is ALL.
1741: IF (p_rpt_format = 'ALL') THEN
1742:
1743: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1744: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_PROCESSED_ENTRIES'), l_line_length, ' ' ));
1745: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-----------------', l_line_length, ' ' ));
1746: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1747:

Line 1744: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_PROCESSED_ENTRIES'), l_line_length, ' ' ));

1740: --processed records only if rpt_format is ALL.
1741: IF (p_rpt_format = 'ALL') THEN
1742:
1743: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1744: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_PROCESSED_ENTRIES'), l_line_length, ' ' ));
1745: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-----------------', l_line_length, ' ' ));
1746: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1747:
1748:

Line 1745: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-----------------', l_line_length, ' ' ));

1741: IF (p_rpt_format = 'ALL') THEN
1742:
1743: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1744: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_PROCESSED_ENTRIES'), l_line_length, ' ' ));
1745: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-----------------', l_line_length, ' ' ));
1746: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1747:
1748:
1749:

Line 1746: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1742:
1743: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length, ' ' ));
1744: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_PROCESSED_ENTRIES'), l_line_length, ' ' ));
1745: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-----------------', l_line_length, ' ' ));
1746: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1747:
1748:
1749:
1750: OPEN ae_category_csr(l_request_id);

Line 1754: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1750: OPEN ae_category_csr(l_request_id);
1751: FETCH ae_category_csr INTO ae_category_rec;
1752: IF (ae_category_csr%NOTFOUND) THEN
1753:
1754: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1755: header_report_rec.transaction_date||
1756: header_report_rec.contract_number||
1757: header_report_rec.transaction_number ||
1758: header_report_rec.transaction_line_number ||

Line 1766: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec2.transaction_date||

1762: -- Modified by kthiruva for Bug 3861943
1763: --header_report_rec.account ||
1764: header_report_rec.currency);
1765:
1766: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec2.transaction_date||
1767: header_report_rec2.contract_number||
1768: header_report_rec2.transaction_number ||
1769: header_report_rec2.transaction_line_number ||
1770: header_report_rec2.accounting_date ||

Line 1777: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1773: -- Modified by kthiruva for Bug 3861943
1774: --header_report_rec2.account ||
1775: header_report_rec2.currency);
1776:
1777: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1778: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1779: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1780: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1781: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

Line 1778: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1774: --header_report_rec2.account ||
1775: header_report_rec2.currency);
1776:
1777: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1778: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1779: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1780: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1781: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1782: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

Line 1780: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1776:
1777: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1778: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1779: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1780: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1781: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1782: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1783: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1784:

Line 1781: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1777: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1778: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1779: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1780: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1781: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1782: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1783: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1784:
1785:

Line 1782: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1778: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1779: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1780: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1781: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1782: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1783: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1784:
1785:
1786: END IF;

Line 1783: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1779: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_NO_RECORDS'));
1780: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1781: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1782: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1783: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1784:
1785:
1786: END IF;
1787:

Line 1795: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',

1791: FOR ae_category_rec IN ae_category_csr(l_request_id)
1792:
1793: LOOP -- For each journal category
1794:
1795: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1796: 'OKL_JOURNAL_CATEGORY') || ' : ' || ae_category_rec.ae_category || ' ' ||
1797: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1798: 'OKL_TRANSACTION_TYPE') ||' : ' || ae_category_rec.try_name , l_line_length ,' '));
1799:

Line 1800: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,RPAD(' ',l_line_length,' '));

1796: 'OKL_JOURNAL_CATEGORY') || ' : ' || ae_category_rec.ae_category || ' ' ||
1797: Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS',
1798: 'OKL_TRANSACTION_TYPE') ||' : ' || ae_category_rec.try_name , l_line_length ,' '));
1799:
1800: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,RPAD(' ',l_line_length,' '));
1801:
1802: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1803: header_report_rec.transaction_date||
1804: header_report_rec.contract_number||

Line 1802: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1798: 'OKL_TRANSACTION_TYPE') ||' : ' || ae_category_rec.try_name , l_line_length ,' '));
1799:
1800: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,RPAD(' ',l_line_length,' '));
1801:
1802: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1803: header_report_rec.transaction_date||
1804: header_report_rec.contract_number||
1805: header_report_rec.transaction_number ||
1806: header_report_rec.transaction_line_number ||

Line 1814: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec2.transaction_date||

1810: -- Modified by kthiruva for Bug 3861943
1811: --header_report_rec.account ||
1812: header_report_rec.currency);
1813:
1814: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,header_report_rec2.transaction_date||
1815: header_report_rec2.contract_number||
1816: header_report_rec2.transaction_number ||
1817: header_report_rec2.transaction_line_number ||
1818: header_report_rec2.accounting_date ||

Line 1827: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1823: header_report_rec2.currency);
1824:
1825:
1826:
1827: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1828:
1829: FOR proc_dst_rec IN proc_dst_csr(l_request_id, ae_category_rec.ae_category,
1830: ae_category_rec.try_id,
1831: ae_category_rec.currency_code)

Line 1867: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,

1863: proc_report_rec.currency
1864: := GET_PROPER_LENGTH(proc_dst_rec.currency_code,l_currency_len,'DATA');
1865:
1866:
1867: Fnd_File.PUT_LINE(Fnd_File.OUTPUT,
1868: proc_report_rec.transaction_date ||
1869: proc_report_rec.contract_number ||
1870: proc_report_rec.transaction_number ||
1871: proc_report_rec.transaction_line_number ||

Line 1878: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, header_report_rec.account || ' : '|| proc_report_rec.account );

1874: proc_report_rec.accounted_amount ||
1875: --proc_report_rec.account ||
1876: proc_report_rec.currency);
1877: -- Added by kthiruva for Bug 3861943
1878: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, header_report_rec.account || ' : '|| proc_report_rec.account );
1879:
1880: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1881:
1882:

Line 1880: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1876: proc_report_rec.currency);
1877: -- Added by kthiruva for Bug 3861943
1878: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, header_report_rec.account || ' : '|| proc_report_rec.account );
1879:
1880: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1881:
1882:
1883: END LOOP; -- Of records for a particular journal category
1884:

Line 1885: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1881:
1882:
1883: END LOOP; -- Of records for a particular journal category
1884:
1885: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1886: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_TOTAL')
1887: || ' ' || Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_DEBIT'),l_total_offset,' ') ||
1888: GET_PROPER_LENGTH(Okl_Accounting_Util.format_amount(
1889: ae_category_rec.total_dr, ae_category_rec.currency_code), l_accounted_amount_len,'DATA') ||

Line 1886: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_TOTAL')

1882:
1883: END LOOP; -- Of records for a particular journal category
1884:
1885: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1886: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_TOTAL')
1887: || ' ' || Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_DEBIT'),l_total_offset,' ') ||
1888: GET_PROPER_LENGTH(Okl_Accounting_Util.format_amount(
1889: ae_category_rec.total_dr, ae_category_rec.currency_code), l_accounted_amount_len,'DATA') ||
1890: ae_category_rec.currency_code);

Line 1891: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_TOTAL')

1887: || ' ' || Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_DEBIT'),l_total_offset,' ') ||
1888: GET_PROPER_LENGTH(Okl_Accounting_Util.format_amount(
1889: ae_category_rec.total_dr, ae_category_rec.currency_code), l_accounted_amount_len,'DATA') ||
1890: ae_category_rec.currency_code);
1891: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_TOTAL')
1892: || ' ' || Okl_Accounting_Util.get_message_token('OKL_LP_ACCOUNTING_PROCESS','OKL_CREDIT_AMT'),l_total_offset,' ') ||
1893: GET_PROPER_LENGTH(Okl_Accounting_Util.format_amount(
1894: ae_category_rec.total_cr,ae_category_rec.currency_code), l_accounted_amount_len,'DATA')||
1895: ae_category_rec.currency_code);

Line 1897: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));

1893: GET_PROPER_LENGTH(Okl_Accounting_Util.format_amount(
1894: ae_category_rec.total_cr,ae_category_rec.currency_code), l_accounted_amount_len,'DATA')||
1895: ae_category_rec.currency_code);
1896:
1897: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1898:
1899: END LOOP; --- Of all journal categories
1900:
1901: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

Line 1901: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1897: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD('-', l_line_length , '-' ));
1898:
1899: END LOOP; --- Of all journal categories
1900:
1901: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1902: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1903: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1904:
1905:

Line 1902: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1898:
1899: END LOOP; --- Of all journal categories
1900:
1901: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1902: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1903: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1904:
1905:
1906: ---- Processed Section Complete Now--------------

Line 1903: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));

1899: END LOOP; --- Of all journal categories
1900:
1901: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1902: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1903: Fnd_File.PUT_LINE(Fnd_File.OUTPUT, RPAD(' ', l_line_length , ' ' ));
1904:
1905:
1906: ---- Processed Section Complete Now--------------
1907: END IF; --gboomina..bug#4648697

Line 1933: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);

1929: IS
1930: BEGIN
1931: --Stubbed out this procedure for Bug 5707866 (SLA Uptake of Accounting Entry Process concurrent program).
1932: FND_MESSAGE.SET_NAME( application =>g_app_name , NAME => 'OKL_OBS_ACCT_ENTRY_PRG');
1933: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MESSAGE.GET);
1934: END DO_ACCOUNTING;
1935:
1936:
1937: