DBA Data[Home] [Help]

APPS.FUN_REPORT_PVT dependencies on FND_FILE

Line 1471: FND_FILE.put_line(FND_FILE.output, l_para_meaning_list);

1467:
1468:
1469: -- Save the parameter list to output file
1470: l_progress := '020';
1471: FND_FILE.put_line(FND_FILE.output, l_para_meaning_list);
1472:
1473:
1474: -- Process the XML data source and save to output file
1475: l_progress := '030';

Line 1481: FND_FILE.put_line(FND_FILE.output, ' ');

1477: FUN_UTIL.log_conc_stmt(
1478: g_pkg_name, l_api_name, l_progress, 'construct both', '');
1479: IF DBMS_LOB.getlength(p_outbound_trxs) IS NULL THEN
1480: l_progress := '030.a';
1481: FND_FILE.put_line(FND_FILE.output, ' ');
1482: ELSE
1483: -- trim header of outbound trxs
1484: -- save outbound trxs
1485: l_progress := '030.b';

Line 1509: FND_FILE.put_line(FND_FILE.output, ' ');

1505:
1506:
1507: IF DBMS_LOB.getlength(p_inbound_trxs) IS NULL THEN
1508: l_progress := '030.c';
1509: FND_FILE.put_line(FND_FILE.output, ' ');
1510: ELSE
1511: -- trim header of inbound trxs
1512: -- save inbound trxs
1513: l_progress := '030.d';

Line 1531: FND_FILE.put_line(FND_FILE.output, ' ');

1527:
1528:
1529:
1530: ELSIF (p_para_rec.batch_type = 'IN') THEN
1531: FND_FILE.put_line(FND_FILE.output, ' ');
1532:
1533: IF DBMS_LOB.getlength(p_inbound_trxs) IS NULL THEN
1534: l_progress := '030.e';
1535: FND_FILE.put_line(FND_FILE.output, ' ');

Line 1535: FND_FILE.put_line(FND_FILE.output, ' ');

1531: FND_FILE.put_line(FND_FILE.output, ' ');
1532:
1533: IF DBMS_LOB.getlength(p_inbound_trxs) IS NULL THEN
1534: l_progress := '030.e';
1535: FND_FILE.put_line(FND_FILE.output, ' ');
1536: ELSE
1537: -- trim header of inbound trxs
1538: -- append inbound trxs to outbound trxs
1539: l_progress := '030.f';

Line 1557: FND_FILE.put_line(FND_FILE.output, ' ');

1553:
1554: ELSE -- (p_para_rec.batch_type = 'OUT')
1555: IF DBMS_LOB.getlength(p_outbound_trxs) IS NULL THEN
1556: l_progress := '030.g';
1557: FND_FILE.put_line(FND_FILE.output, ' ');
1558: ELSE
1559: -- trim header of outbound trxs
1560: -- append outbound trxs to outbound trxs
1561: l_progress := '030.h';

Line 1576: FND_FILE.put_line(FND_FILE.output, ' ');

1572: p_trxs => p_outbound_trxs,
1573: p_offset => l_offset+2);
1574: END IF;
1575:
1576: FND_FILE.put_line(FND_FILE.output, ' ');
1577:
1578: END IF;
1579:
1580: IF x_return_status = FND_API.G_RET_STS_ERROR THEN

Line 1587: FND_FILE.put_line(FND_FILE.output, '');

1583: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1584: END IF;
1585:
1586:
1587: FND_FILE.put_line(FND_FILE.output, '');
1588:
1589:
1590: FUN_UTIL.log_conc_end(g_pkg_name, l_api_name);
1591:

Line 1752: FND_FILE.put_line(FND_FILE.output, l_para_meaning_list);

1748:
1749:
1750: -- Save the parameter list to output file
1751: l_progress := '020';
1752: FND_FILE.put_line(FND_FILE.output, l_para_meaning_list);
1753: FUN_UTIL.log_conc_stmt(
1754: g_pkg_name, l_api_name, l_progress, 'xml_parameters',l_para_meaning_list);
1755:
1756:

Line 1802: FND_FILE.put_line(FND_FILE.output, '');

1798: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1799: END IF;
1800:
1801:
1802: FND_FILE.put_line(FND_FILE.output, '');
1803:
1804:
1805: FUN_UTIL.log_conc_end(g_pkg_name, l_api_name);
1806:

Line 1866: FND_FILE.put(FND_FILE.output, l_buffer);

1862:
1863: WHILE (l_pos <= l_length)
1864: LOOP
1865: DBMS_LOB.read(p_trxs, l_amount, l_pos, l_buffer);
1866: FND_FILE.put(FND_FILE.output, l_buffer);
1867:
1868: -- FUN_UTIL.log_conc_stmt(g_pkg_name, l_api_name, l_progress, 'xml_date',l_buffer);
1869: -- l_buffer:=NULL;
1870: