DBA Data[Home] [Help]

APPS.AP_WEB_RECEIPTS_WF dependencies on FND_FILE

Line 2282: fnd_file.put_line(fnd_file.log, 'p_org_id = '|| p_org_id);

2278:
2279:
2280: BEGIN
2281:
2282: fnd_file.put_line(fnd_file.log, 'p_org_id = '|| p_org_id);
2283:
2284: ------------------------------------------------------------
2285: l_debug_info := 'Process Overdue/Missing Receipts';
2286: ------------------------------------------------------------

Line 2287: fnd_file.put_line(fnd_file.log, l_debug_info);

2283:
2284: ------------------------------------------------------------
2285: l_debug_info := 'Process Overdue/Missing Receipts';
2286: ------------------------------------------------------------
2287: fnd_file.put_line(fnd_file.log, l_debug_info);
2288:
2289: open c_overdue_receipts;
2290: loop
2291:

Line 2305: fnd_file.put_line(fnd_file.log, l_debug_info);

2301:
2302: ------------------------------------------------------------
2303: l_debug_info := 'Raise Overdue Event: '||l_report_header_id;
2304: ------------------------------------------------------------
2305: fnd_file.put_line(fnd_file.log, l_debug_info);
2306: RaiseOverdueEvent(l_report_header_id);
2307:
2308: elsif (l_receipts_status = C_MISSING) then
2309:

Line 2313: fnd_file.put_line(fnd_file.log, l_debug_info);

2309:
2310: ------------------------------------------------------------
2311: l_debug_info := 'Raise Missing Event: '||l_report_header_id;
2312: ------------------------------------------------------------
2313: fnd_file.put_line(fnd_file.log, l_debug_info);
2314: RaiseMissingEvent(l_report_header_id);
2315:
2316: end if;
2317:

Line 2324: fnd_file.put_line(fnd_file.log, l_debug_info);

2320:
2321: ------------------------------------------------------------
2322: l_debug_info := 'Commit Events for Overdue/Missing Receipts';
2323: ------------------------------------------------------------
2324: fnd_file.put_line(fnd_file.log, l_debug_info);
2325: COMMIT;
2326:
2327: ------------------------------------------------------------
2328: l_debug_info := 'Audit Overdue/Missing Receipts';

Line 2330: fnd_file.put_line(fnd_file.log, l_debug_info);

2326:
2327: ------------------------------------------------------------
2328: l_debug_info := 'Audit Overdue/Missing Receipts';
2329: ------------------------------------------------------------
2330: fnd_file.put_line(fnd_file.log, l_debug_info);
2331:
2332: open c_audit_list_receipts;
2333: loop
2334:

Line 2341: fnd_file.put_line(fnd_file.log, l_debug_info);

2337:
2338: ------------------------------------------------------------
2339: l_debug_info := 'Adding to Audit List employee: '||l_employee_id||' business group id: '||l_business_group_id||' duration: '||l_duration;
2340: ------------------------------------------------------------
2341: fnd_file.put_line(fnd_file.log, l_debug_info);
2342:
2343: l_emp_rec.business_group_id := l_business_group_id;
2344: l_emp_rec.person_id := l_employee_id;
2345: l_audit_rec.audit_reason_code := 'RECEIPTS_LATE';

Line 2366: fnd_file.put_line(fnd_file.log, l_debug_info);

2362:
2363: ------------------------------------------------------------
2364: l_debug_info := 'Commit Audit for Overdue/Missing Receipts';
2365: ------------------------------------------------------------
2366: fnd_file.put_line(fnd_file.log, l_debug_info);
2367: COMMIT;
2368:
2369: EXCEPTION
2370: WHEN OTHERS THEN