DBA Data[Home] [Help]

APPS.FV_FACTS_EDIT_CHECK dependencies on FND_FILE

Line 851: fnd_file.put_line(fnd_file.log , 'Ending disbursement ' || l_disbursements_amt);

847: l_disbursements_amt := NVL(l_disbursements_amt, 0) + NVL(check8_disb_colla_rec.disbursements_amt, 0);
848: l_collections_amt := NVL(l_collections_amt, 0) + NVL(check8_disb_colla_rec.collections_amt, 0);
849: END LOOP;
850:
851: fnd_file.put_line(fnd_file.log , 'Ending disbursement ' || l_disbursements_amt);
852: fnd_file.put_line(fnd_file.log , 'Ending collection ' || l_collections_amt);
853:
854: FOR check8_disbb_rec IN check8_disbb_cur (g_treasury_symbol_id) LOOP
855: l_beg_disbursements_amt := NVL(check8_disbb_rec.beg_disbursements_amt, 0);

Line 852: fnd_file.put_line(fnd_file.log , 'Ending collection ' || l_collections_amt);

848: l_collections_amt := NVL(l_collections_amt, 0) + NVL(check8_disb_colla_rec.collections_amt, 0);
849: END LOOP;
850:
851: fnd_file.put_line(fnd_file.log , 'Ending disbursement ' || l_disbursements_amt);
852: fnd_file.put_line(fnd_file.log , 'Ending collection ' || l_collections_amt);
853:
854: FOR check8_disbb_rec IN check8_disbb_cur (g_treasury_symbol_id) LOOP
855: l_beg_disbursements_amt := NVL(check8_disbb_rec.beg_disbursements_amt, 0);
856: END LOOP;

Line 865: fnd_file.put_line(fnd_file.log , 'beg disbursement ' || l_beg_disbursements_amt);

861:
862: --- since we want to get only the acvity or ending_balances , we need to
863: -- substract any begining disbursement or collection from ending_balaces;
864:
865: fnd_file.put_line(fnd_file.log , 'beg disbursement ' || l_beg_disbursements_amt);
866: fnd_file.put_line(fnd_file.log , 'beg collection ' || l_beg_collections_amt);
867: l_disbursements_amt := NVL(l_disbursements_amt, 0) + NVL(l_beg_disbursements_amt, 0);
868: l_collections_amt := NVL(l_collections_amt, 0) + NVL(l_beg_collections_amt, 0);
869:

Line 866: fnd_file.put_line(fnd_file.log , 'beg collection ' || l_beg_collections_amt);

862: --- since we want to get only the acvity or ending_balances , we need to
863: -- substract any begining disbursement or collection from ending_balaces;
864:
865: fnd_file.put_line(fnd_file.log , 'beg disbursement ' || l_beg_disbursements_amt);
866: fnd_file.put_line(fnd_file.log , 'beg collection ' || l_beg_collections_amt);
867: l_disbursements_amt := NVL(l_disbursements_amt, 0) + NVL(l_beg_disbursements_amt, 0);
868: l_collections_amt := NVL(l_collections_amt, 0) + NVL(l_beg_collections_amt, 0);
869:
870: l_obligations_incurred_amt := -1*l_obligations_incurred_amt; --Cr balance report as + and Dr balance report as -

Line 1317: fnd_file.put_line(FND_file.LOG,'Running 7/24 debug version');

1313: l_cancel_date NUMBER(4);
1314:
1315: begin
1316:
1317: fnd_file.put_line(FND_file.LOG,'Running 7/24 debug version');
1318: g_error_flag := 0;
1319: g_treasury_symbol_id := p_treasury_symbol_id;
1320:
1321: SELECT to_number(to_char(cancellation_date,'YYYY'))