DBA Data[Home] [Help]

APPS.AR_PREPAYMENTS dependencies on FND_FILE

Line 2169: FND_FILE.put_line(fnd_file.log,'Starting Concurrent Program ''Prepayment Matching ''');

2165: BEGIN
2166:
2167: -- Initialize message stack
2168: FND_MSG_PUB.initialize;
2169: FND_FILE.put_line(fnd_file.log,'Starting Concurrent Program ''Prepayment Matching ''');
2170: FND_FILE.put_line(fnd_file.log,'Start Time ' || TO_CHAR(SYSDATE, 'MM-DD-YY HH24:MI:SS' ));
2171:
2172: ---get the parameter request_id
2173: l_request_id := p_request_id;

Line 2170: FND_FILE.put_line(fnd_file.log,'Start Time ' || TO_CHAR(SYSDATE, 'MM-DD-YY HH24:MI:SS' ));

2166:
2167: -- Initialize message stack
2168: FND_MSG_PUB.initialize;
2169: FND_FILE.put_line(fnd_file.log,'Starting Concurrent Program ''Prepayment Matching ''');
2170: FND_FILE.put_line(fnd_file.log,'Start Time ' || TO_CHAR(SYSDATE, 'MM-DD-YY HH24:MI:SS' ));
2171:
2172: ---get the parameter request_id
2173: l_request_id := p_request_id;
2174:

Line 2197: ---as regular log messages as fnd_file.put_line or this?

2193: EXIT when get_prepay_invoices%NOTFOUND;
2194:
2195:
2196: ---Ajay, since there is no report exposing what happened? should be have them
2197: ---as regular log messages as fnd_file.put_line or this?
2198:
2199: IF PG_DEBUG in ('Y', 'C') THEN
2200: arp_util.debug('AR-ARZPREPAY-bef: Payment Schedule Id '||
2201: l_payment_schedule_id);

Line 2240: fnd_file.put_line(fnd_file.log,'EXCEPTION :AR_PREPAYMENTS_PUB.MATCH_PREPAYMENT Routine'||SQLERRM);

2236: EXCEPTION
2237:
2238: WHEN others THEN
2239:
2240: fnd_file.put_line(fnd_file.log,'EXCEPTION :AR_PREPAYMENTS_PUB.MATCH_PREPAYMENT Routine'||SQLERRM);
2241: l_retcode := 10;
2242: ROLLBACK to match_start;
2243:
2244: end; ---end to call to match_prepayment

Line 2248: fnd_file.put_line(fnd_file.log,' Payment Schedule Id '|| l_payment_schedule_id);

2244: end; ---end to call to match_prepayment
2245:
2246:
2247: if (l_ps_amt_due_remain = -1) then
2248: fnd_file.put_line(fnd_file.log,' Payment Schedule Id '|| l_payment_schedule_id);
2249: end if;
2250:
2251:
2252: END LOOP;

Line 2273: fnd_file.put_line(fnd_file.log, l_msg_data);

2269: l_msg_data :=
2270: substr(l_msg_data || ' ' || FND_MSG_PUB.Get(p_encoded =>
2271: FND_API.G_FALSE ), 1,255);
2272: END LOOP;
2273: fnd_file.put_line(fnd_file.log, l_msg_data);
2274: FND_MSG_PUB.Delete_Msg;
2275: retcode := l_retcode;
2276:
2277: END select_prepayments;