DBA Data[Home] [Help]

APPS.WIP_POPULATE_TEMP dependencies on FND_FLEX_KEYVAL

Line 317: x_dummy := FND_FLEX_KEYVAL.validate_ccid(

313: --6 is eAM job
314: IF p_entity_type in (WIP_CONSTANTS.DISCRETE,WIP_CONSTANTS.LOTBASED,6) THEN
315: FOR C IN CDIS LOOP
316:
317: x_dummy := FND_FLEX_KEYVAL.validate_ccid(
318: appl_short_name => 'INV',
319: key_flex_code => 'MSTK',
320: structure_number => 101,
321: combination_id => C.inventory_item_id,

Line 324: x_item_segments := FND_FLEX_KEYVAL.concatenated_values;

320: structure_number => 101,
321: combination_id => C.inventory_item_id,
322: data_set => p_organization_id);
323:
324: x_item_segments := FND_FLEX_KEYVAL.concatenated_values;
325:
326: x_locator_id := C.inventory_location_id;
327: /* Fix for Bug# 2149033. Added x_locator_id condition in if condition */
328: IF(C.subinventory_code IS NOT NULL) and (x_locator_id IS NOT NULL) THEN

Line 344: x_dummy := FND_FLEX_KEYVAL.validate_ccid(

340: IF x_locator_control = 1 THEN
341: x_locator_segments := NULL;
342: ELSE
343:
344: x_dummy := FND_FLEX_KEYVAL.validate_ccid(
345: appl_short_name => 'INV',
346: key_flex_code => 'MTLL',
347: structure_number => 101,
348: combination_id => x_locator_id,

Line 352: --x_locator_segments := FND_FLEX_KEYVAL.concatenated_values;

348: combination_id => x_locator_id,
349: data_set => p_organization_id);
350:
351: -- fix for bug 4084598
352: --x_locator_segments := FND_FLEX_KEYVAL.concatenated_values;
353: END IF;
354: ELSE
355: x_valid_locator_flag := 'N';
356: x_locator_id := null; --no locator when sub is not populated

Line 574: x_dummy := FND_FLEX_KEYVAL.validate_ccid(

570: ELSE
571:
572: FOR C IN CREP LOOP
573:
574: x_dummy := FND_FLEX_KEYVAL.validate_ccid(
575: appl_short_name => 'INV',
576: key_flex_code => 'MSTK',
577: structure_number => 101,
578: combination_id => C.inventory_item_id,

Line 581: x_item_segments := FND_FLEX_KEYVAL.concatenated_values;

577: structure_number => 101,
578: combination_id => C.inventory_item_id,
579: data_set => p_organization_id);
580:
581: x_item_segments := FND_FLEX_KEYVAL.concatenated_values;
582: IF(C.subinventory_code IS NULL) THEN
583: x_valid_subinventory_flag := 'N';
584: x_valid_locator_flag := 'N';
585: ELSE

Line 608: x_dummy := FND_FLEX_KEYVAL.validate_ccid(

604: IF x_locator_control = 1 THEN
605: x_locator_segments := NULL;
606: ELSE
607:
608: x_dummy := FND_FLEX_KEYVAL.validate_ccid(
609: appl_short_name => 'INV',
610: key_flex_code => 'MTLL',
611: structure_number => 101,
612: combination_id => x_locator_id,

Line 616: --x_locator_segments := FND_FLEX_KEYVAL.concatenated_values;

612: combination_id => x_locator_id,
613: data_set => p_organization_id);
614:
615: -- fix for bug 4084598
616: --x_locator_segments := FND_FLEX_KEYVAL.concatenated_values;
617: END IF;
618: END IF;
619:
620: IF C.revision_qty_control_code = WIP_CONSTANTS.REV THEN