DBA Data[Home] [Help]

APPS.AR_BUS_EVENT_SUB_PVT dependencies on FND_FILE

Line 7026: fnd_file.put_line(fnd_file.log, 'last fetch');

7022: l_acctd_amount_due_orig_table
7023: LIMIT ar_revenue_management_pvt.c_max_bulk_fetch_size;
7024:
7025: IF lines%NOTFOUND THEN
7026: fnd_file.put_line(fnd_file.log, 'last fetch');
7027: l_last_fetch := TRUE;
7028: END IF;
7029:
7030: fnd_file.put_line(fnd_file.log, 'Count: ' || to_char(l_rowid_table.COUNT));

Line 7030: fnd_file.put_line(fnd_file.log, 'Count: ' || to_char(l_rowid_table.COUNT));

7026: fnd_file.put_line(fnd_file.log, 'last fetch');
7027: l_last_fetch := TRUE;
7028: END IF;
7029:
7030: fnd_file.put_line(fnd_file.log, 'Count: ' || to_char(l_rowid_table.COUNT));
7031:
7032: IF l_rowid_table.COUNT = 0 AND l_last_fetch THEN
7033: fnd_file.put_line(fnd_file.log, 'last fetch and COUNT is zero');
7034: EXIT;

Line 7033: fnd_file.put_line(fnd_file.log, 'last fetch and COUNT is zero');

7029:
7030: fnd_file.put_line(fnd_file.log, 'Count: ' || to_char(l_rowid_table.COUNT));
7031:
7032: IF l_rowid_table.COUNT = 0 AND l_last_fetch THEN
7033: fnd_file.put_line(fnd_file.log, 'last fetch and COUNT is zero');
7034: EXIT;
7035: END IF;
7036:
7037: FOR i IN l_rowid_table.FIRST .. l_rowid_table.LAST LOOP

Line 7045: fnd_file.put_line(fnd_file.log, 'Raising Buisness Event For ' ||

7041: p_customer_trx_line_id => l_customer_trx_line_id_table(i),
7042: p_amount => l_amount_due_original_table(i),
7043: p_acctd_amount => l_acctd_amount_due_orig_table(i));
7044:
7045: fnd_file.put_line(fnd_file.log, 'Raising Buisness Event For ' ||
7046: l_customer_trx_line_id_table(i));
7047:
7048: END LOOP;
7049: