DBA Data[Home] [Help]

APPS.MST_AUDIT_REP_EXCP dependencies on MST_SNAPSHOT_TASK_UTIL

Line 1419: --Use MST_SNAPSHOT_TASK_UTIL.getCalendar function to obtain calendar code

1415: debug_output('starting cache of calendar codes');
1416:
1417:
1418: --cache shipping calendar code and location id association
1419: --Use MST_SNAPSHOT_TASK_UTIL.getCalendar function to obtain calendar code
1420: -- Input : locationId, type = 'SHIPPING' or 'RECEIVING'
1421: -- Output: calendarCode
1422: FOR delivLine IN cursor_DL LOOP
1423: calendar_lookup(delivLine.ship_from_location_id) := MST_SNAPSHOT_TASK_UTIL.getCalendar(delivLine.ship_from_location_id, 'SHIPPING');

Line 1423: calendar_lookup(delivLine.ship_from_location_id) := MST_SNAPSHOT_TASK_UTIL.getCalendar(delivLine.ship_from_location_id, 'SHIPPING');

1419: --Use MST_SNAPSHOT_TASK_UTIL.getCalendar function to obtain calendar code
1420: -- Input : locationId, type = 'SHIPPING' or 'RECEIVING'
1421: -- Output: calendarCode
1422: FOR delivLine IN cursor_DL LOOP
1423: calendar_lookup(delivLine.ship_from_location_id) := MST_SNAPSHOT_TASK_UTIL.getCalendar(delivLine.ship_from_location_id, 'SHIPPING');
1424: END LOOP;
1425:
1426:
1427: debug_output('starting deliv detail loop');

Line 1621: calendar_lookup(delivLine.ship_to_location_id) := MST_SNAPSHOT_TASK_UTIL.getCalendar(delivLine.ship_to_location_id, 'RECEIVING');

1617:
1618:
1619: --cache receiving calendar code and location id association
1620: FOR delivLine IN cursor_DL LOOP
1621: calendar_lookup(delivLine.ship_to_location_id) := MST_SNAPSHOT_TASK_UTIL.getCalendar(delivLine.ship_to_location_id, 'RECEIVING');
1622: END LOOP;
1623:
1624:
1625: debug_output('starting deliv detail loop');