DBA Data[Home] [Help]

APPS.AMW_PROJECT_EVENT_PVT dependencies on FND_FILE

Line 638: fnd_file.put_line (fnd_file.LOG, SUBSTR ('No data found in update_org_summary_table'

634: END IF;
635:
636: EXCEPTION
637: WHEN NO_DATA_FOUND THEN
638: fnd_file.put_line (fnd_file.LOG, SUBSTR ('No data found in update_org_summary_table'
639: || SUBSTR (SQLERRM, 1, 100), 1, 200));
640:
641: WHEN OTHERS THEN
642: fnd_file.put_line (fnd_file.LOG, SUBSTR ('Unexpected Error in update_org_summary_table'

Line 642: fnd_file.put_line (fnd_file.LOG, SUBSTR ('Unexpected Error in update_org_summary_table'

638: fnd_file.put_line (fnd_file.LOG, SUBSTR ('No data found in update_org_summary_table'
639: || SUBSTR (SQLERRM, 1, 100), 1, 200));
640:
641: WHEN OTHERS THEN
642: fnd_file.put_line (fnd_file.LOG, SUBSTR ('Unexpected Error in update_org_summary_table'
643: || SUBSTR (SQLERRM, 1, 100), 1, 200));
644: END update_org_summary_table;
645:
646:

Line 881: fnd_file.put_line (fnd_file.LOG, SUBSTR ('No data found in update_proc_summary_table'

877: END IF;
878:
879: EXCEPTION
880: WHEN NO_DATA_FOUND THEN
881: fnd_file.put_line (fnd_file.LOG, SUBSTR ('No data found in update_proc_summary_table'
882: || SUBSTR (SQLERRM, 1, 100), 1, 200));
883:
884: WHEN OTHERS THEN
885: fnd_file.put_line (fnd_file.LOG, SUBSTR ('Unexpected Error in update_proc_summary_table'

Line 885: fnd_file.put_line (fnd_file.LOG, SUBSTR ('Unexpected Error in update_proc_summary_table'

881: fnd_file.put_line (fnd_file.LOG, SUBSTR ('No data found in update_proc_summary_table'
882: || SUBSTR (SQLERRM, 1, 100), 1, 200));
883:
884: WHEN OTHERS THEN
885: fnd_file.put_line (fnd_file.LOG, SUBSTR ('Unexpected Error in update_proc_summary_table'
886: || SUBSTR (SQLERRM, 1, 100), 1, 200));
887: END update_proc_summary_table;
888:
889:

Line 919: fnd_file.put_line (fnd_file.LOG,'Audit_Project_Id :' || p_audit_project_id);

915: proc_rec c_org_proc%rowtype;
916:
917:
918: BEGIN
919: fnd_file.put_line (fnd_file.LOG,'Audit_Project_Id :' || p_audit_project_id);
920:
921: IF p_audit_project_id IS NOT NULL THEN
922: FOR org_rec IN c_scope_org(p_audit_project_id) LOOP
923: update_org_summary_table(p_audit_project_id,org_rec.organization_id);

Line 945: fnd_file.put_line (fnd_file.LOG, SUBSTR ('Unexpected Error in Synchronize_Eng_Denorm_Tables'

941: COMMIT;
942:
943: EXCEPTION
944: WHEN OTHERS THEN
945: fnd_file.put_line (fnd_file.LOG, SUBSTR ('Unexpected Error in Synchronize_Eng_Denorm_Tables'
946: || SUBSTR (SQLERRM, 1, 100), 1, 200));
947: errbuf := SQLERRM;
948: retcode := FND_API.G_RET_STS_UNEXP_ERROR;
949: