DBA Data[Home] [Help]

APPS.AR_BUS_EVENT_SUB_PVT dependencies on FND_FILE

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

7067: l_acctd_amount_due_orig_table
7068: LIMIT ar_revenue_management_pvt.c_max_bulk_fetch_size;
7069:
7070: IF lines%NOTFOUND THEN
7071: fnd_file.put_line(fnd_file.log, 'last fetch');
7072: l_last_fetch := TRUE;
7073: END IF;
7074:
7075: fnd_file.put_line(fnd_file.log, 'Count: ' || to_char(l_rowid_table.COUNT));

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

7071: fnd_file.put_line(fnd_file.log, 'last fetch');
7072: l_last_fetch := TRUE;
7073: END IF;
7074:
7075: fnd_file.put_line(fnd_file.log, 'Count: ' || to_char(l_rowid_table.COUNT));
7076:
7077: IF l_rowid_table.COUNT = 0 AND l_last_fetch THEN
7078: fnd_file.put_line(fnd_file.log, 'last fetch and COUNT is zero');
7079: EXIT;

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

7074:
7075: fnd_file.put_line(fnd_file.log, 'Count: ' || to_char(l_rowid_table.COUNT));
7076:
7077: IF l_rowid_table.COUNT = 0 AND l_last_fetch THEN
7078: fnd_file.put_line(fnd_file.log, 'last fetch and COUNT is zero');
7079: EXIT;
7080: END IF;
7081:
7082: FOR i IN l_rowid_table.FIRST .. l_rowid_table.LAST LOOP

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

7086: p_customer_trx_line_id => l_customer_trx_line_id_table(i),
7087: p_amount => l_amount_due_original_table(i),
7088: p_acctd_amount => l_acctd_amount_due_orig_table(i));
7089:
7090: fnd_file.put_line(fnd_file.log, 'Raising Buisness Event For ' ||
7091: l_customer_trx_line_id_table(i));
7092:
7093: END LOOP;
7094: