DBA Data[Home] [Help]

APPS.AHL_WIP_JOB_PVT dependencies on FND_PROFILE

Line 1074: IF fnd_profile.value('MRP_DEBUG') <> 'Y' THEN

1070: END LOOP;
1071: END LOOP;
1072:
1073: --No deletion for the failed records in debug mode.
1074: IF fnd_profile.value('MRP_DEBUG') <> 'Y' THEN
1075: FOR i IN l_interface_ids.FIRST..l_interface_ids.LAST LOOP
1076: DELETE FROM wip_interface_errors
1077: WHERE interface_id = l_interface_ids(i);
1078: END LOOP;

Line 1832: IF fnd_profile.value('MRP_DEBUG') <> 'Y' THEN

1828: x_ahl_wip_job_tbl(i+1).wip_entity_id := NULL;
1829: x_ahl_wip_job_tbl(i+1).error := l_error_msg;
1830:
1831: --Keep the failed records in interface tables in debug mode
1832: IF fnd_profile.value('MRP_DEBUG') <> 'Y' THEN
1833: FOR j IN l_interface_ids.FIRST..l_interface_ids.LAST LOOP
1834: DELETE FROM wip_interface_errors
1835: WHERE interface_id = l_interface_ids(j);
1836: END LOOP;