DBA Data[Home] [Help]

APPS.WMS_PICK_LOAD_UI dependencies on INV_PROJECT

Line 257: x_locator := INV_PROJECT.GET_LOCSEGS(l_lpn_rec.concatenated_segments);

253: x_lpn_id := l_lpn_rec.lpn_id;
254: x_is_lpn_controlled := 'Y';
255: x_locator_id := l_lpn_rec.locator_id;
256: x_subinventory_code := l_lpn_rec.subinventory_code;
257: x_locator := INV_PROJECT.GET_LOCSEGS(l_lpn_rec.concatenated_segments);
258: EXIT;
259: END IF;
260:
261: END LOOP;

Line 355: debug('INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) : '||INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator));

351: LOOP
352: FETCH l_locators INTO l_loc_rec;
353: EXIT WHEN l_locators%notfound;
354: debug('l_loc_rec.locator : '||l_loc_rec.locator);
355: debug('INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) : '||INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator));
356: -- IF l_loc_rec.locator = p_locator_lpn OR p_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845
357: IF l_loc_rec.locator = l_locator_lpn OR l_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845
358: x_is_valid_locator := 'Y';
359: x_locator_id := l_loc_rec.locator_id;

Line 356: -- IF l_loc_rec.locator = p_locator_lpn OR p_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845

352: FETCH l_locators INTO l_loc_rec;
353: EXIT WHEN l_locators%notfound;
354: debug('l_loc_rec.locator : '||l_loc_rec.locator);
355: debug('INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) : '||INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator));
356: -- IF l_loc_rec.locator = p_locator_lpn OR p_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845
357: IF l_loc_rec.locator = l_locator_lpn OR l_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845
358: x_is_valid_locator := 'Y';
359: x_locator_id := l_loc_rec.locator_id;
360: x_subinventory_code := p_subinventory_code;

Line 357: IF l_loc_rec.locator = l_locator_lpn OR l_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845

353: EXIT WHEN l_locators%notfound;
354: debug('l_loc_rec.locator : '||l_loc_rec.locator);
355: debug('INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) : '||INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator));
356: -- IF l_loc_rec.locator = p_locator_lpn OR p_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845
357: IF l_loc_rec.locator = l_locator_lpn OR l_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845
358: x_is_valid_locator := 'Y';
359: x_locator_id := l_loc_rec.locator_id;
360: x_subinventory_code := p_subinventory_code;
361: x_locator := INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator);

Line 361: x_locator := INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator);

357: IF l_loc_rec.locator = l_locator_lpn OR l_locator_lpn = INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator) THEN -- Bug 7225845
358: x_is_valid_locator := 'Y';
359: x_locator_id := l_loc_rec.locator_id;
360: x_subinventory_code := p_subinventory_code;
361: x_locator := INV_PROJECT.GET_LOCSEGS(l_loc_rec.locator);
362: EXIT;
363: END IF;
364:
365: END LOOP;

Line 405: -- IF INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator) = p_locator_lpn OR p_locator_lpn = l_loc_sub_rec.locator THEN -- Bug 7225845

401: LOOP
402: FETCH l_locators INTO l_loc_sub_rec;
403: EXIT WHEN l_locators%notfound;
404:
405: -- IF INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator) = p_locator_lpn OR p_locator_lpn = l_loc_sub_rec.locator THEN -- Bug 7225845
406: IF INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator) = l_locator_lpn OR l_locator_lpn = l_loc_sub_rec.locator THEN -- Bug 7225845
407: x_is_valid_locator := 'Y';
408: x_locator_id := l_loc_sub_rec.locator_id;
409: x_subinventory_code := l_loc_sub_rec.subinventory;

Line 406: IF INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator) = l_locator_lpn OR l_locator_lpn = l_loc_sub_rec.locator THEN -- Bug 7225845

402: FETCH l_locators INTO l_loc_sub_rec;
403: EXIT WHEN l_locators%notfound;
404:
405: -- IF INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator) = p_locator_lpn OR p_locator_lpn = l_loc_sub_rec.locator THEN -- Bug 7225845
406: IF INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator) = l_locator_lpn OR l_locator_lpn = l_loc_sub_rec.locator THEN -- Bug 7225845
407: x_is_valid_locator := 'Y';
408: x_locator_id := l_loc_sub_rec.locator_id;
409: x_subinventory_code := l_loc_sub_rec.subinventory;
410: x_locator := INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator);

Line 410: x_locator := INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator);

406: IF INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator) = l_locator_lpn OR l_locator_lpn = l_loc_sub_rec.locator THEN -- Bug 7225845
407: x_is_valid_locator := 'Y';
408: x_locator_id := l_loc_sub_rec.locator_id;
409: x_subinventory_code := l_loc_sub_rec.subinventory;
410: x_locator := INV_PROJECT.GET_LOCSEGS(l_loc_sub_rec.locator);
411: EXIT;
412: END IF;
413:
414: END LOOP;