DBA Data[Home] [Help]

APPS.FLM_KANBAN_PLANNING_UTIL dependencies on FND_FILE

Line 863: fnd_file.put_line(fnd_file.log,errbuf);

859:
860: if l_return_status = 1 then
861: retcode :=1;
862: errbuf := 'The Import program successfully imported all records';
863: fnd_file.put_line(fnd_file.log,errbuf);
864: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',errbuf);
865: else
866: retcode := 1;
867: errbuf := 'The Import program marked at least one row as errored';

Line 868: fnd_file.put_line(fnd_file.log,errbuf);

864: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',errbuf);
865: else
866: retcode := 1;
867: errbuf := 'The Import program marked at least one row as errored';
868: fnd_file.put_line(fnd_file.log,errbuf);
869: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',errbuf);
870: end if;
871:
872: exception

Line 876: fnd_file.put_line(fnd_file.log,errbuf);

872: exception
873: when e_null_org_id then
874: retcode := -1;
875: errbuf := 'Organization parameter cannot be null';
876: fnd_file.put_line(fnd_file.log,errbuf);
877: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
878: when others then
879: retcode := -1;
880: errbuf := 'Errors encountered in interface txn, please check the log file.';

Line 881: fnd_file.put_line(fnd_file.log,errbuf);

877: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
878: when others then
879: retcode := -1;
880: errbuf := 'Errors encountered in interface txn, please check the log file.';
881: fnd_file.put_line(fnd_file.log,errbuf);
882: fnd_file.put_line(fnd_file.log,sqlerrm(sqlcode));
883: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
884: end process_interface_records;
885:

Line 882: fnd_file.put_line(fnd_file.log,sqlerrm(sqlcode));

878: when others then
879: retcode := -1;
880: errbuf := 'Errors encountered in interface txn, please check the log file.';
881: fnd_file.put_line(fnd_file.log,errbuf);
882: fnd_file.put_line(fnd_file.log,sqlerrm(sqlcode));
883: l_conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',errbuf);
884: end process_interface_records;
885:
886: function get_item_id(p_org_id in number,

Line 1159: fnd_file.put_line(fnd_file.log,' Record with Interface Id : '|| l_flm_kanban_demand_intf(l_counter).interface_id ||

1155: v_error(pop_counter) := l_flm_kanban_demand_intf(l_counter).error;
1156: v_interface_id(pop_counter) := l_flm_kanban_demand_intf(l_counter).interface_id;
1157:
1158: if l_flm_kanban_demand_intf(l_counter).process_status = WARNING then
1159: fnd_file.put_line(fnd_file.log,' Record with Interface Id : '|| l_flm_kanban_demand_intf(l_counter).interface_id ||
1160: ' have following warnings : '|| l_flm_kanban_demand_intf(l_counter).error );
1161: end if;
1162: if l_flm_kanban_demand_intf(l_counter).process_status = ERROR then
1163: fnd_file.put_line(fnd_file.log,' Record with Interface Id : '|| l_flm_kanban_demand_intf(l_counter).interface_id ||

Line 1163: fnd_file.put_line(fnd_file.log,' Record with Interface Id : '|| l_flm_kanban_demand_intf(l_counter).interface_id ||

1159: fnd_file.put_line(fnd_file.log,' Record with Interface Id : '|| l_flm_kanban_demand_intf(l_counter).interface_id ||
1160: ' have following warnings : '|| l_flm_kanban_demand_intf(l_counter).error );
1161: end if;
1162: if l_flm_kanban_demand_intf(l_counter).process_status = ERROR then
1163: fnd_file.put_line(fnd_file.log,' Record with Interface Id : '|| l_flm_kanban_demand_intf(l_counter).interface_id ||
1164: ' failed with the error : '|| l_flm_kanban_demand_intf(l_counter).error );
1165: end if;
1166:
1167: pop_counter := pop_counter+1;