DBA Data[Home] [Help]

APPS.WSH_CORE dependencies on FND_FLEX_KEYVAL

Line 19: result := FND_FLEX_KEYVAL.validate_ccid(

15: IS
16: name VARCHAR(2000) := '?';
17: result BOOLEAN := TRUE;
18: BEGIN
19: result := FND_FLEX_KEYVAL.validate_ccid(
20: appl_short_name=>'INV',
21: key_flex_code=>'MSTK',
22: structure_number=>101,
23: combination_id=>inventory_item_id,

Line 26: name := FND_FLEX_KEYVAL.concatenated_values;

22: structure_number=>101,
23: combination_id=>inventory_item_id,
24: data_set=>warehouse_id);
25: IF result THEN
26: name := FND_FLEX_KEYVAL.concatenated_values;
27: END IF;
28: RETURN name;
29: END item_flex_name;
30:

Line 43: result := FND_FLEX_KEYVAL.validate_ccid(

39: IS
40: name VARCHAR(2000) := '?';
41: result BOOLEAN := TRUE;
42: BEGIN
43: result := FND_FLEX_KEYVAL.validate_ccid(
44: appl_short_name=>'INV',
45: key_flex_code=>'MTLL',
46: structure_number=>101,
47: combination_id=>locator_id,

Line 50: name := FND_FLEX_KEYVAL.concatenated_values;

46: structure_number=>101,
47: combination_id=>locator_id,
48: data_set=>warehouse_id);
49: IF result THEN
50: name := FND_FLEX_KEYVAL.concatenated_values;
51: END IF;
52: RETURN name;
53: END locator_flex_name;
54:

Line 77: result := FND_FLEX_KEYVAL.validate_ccid(

73: IS
74: name VARCHAR(2000) := NULL;
75: result BOOLEAN := TRUE;
76: BEGIN
77: result := FND_FLEX_KEYVAL.validate_ccid(
78: appl_short_name=>'INV',
79: key_flex_code=>k_flex_code,
80: structure_number=>struct_num,
81: combination_id=>entity_id,

Line 84: name := FND_FLEX_KEYVAL.concatenated_values;

80: structure_number=>struct_num,
81: combination_id=>entity_id,
82: data_set=>warehouse_id);
83: IF result THEN
84: name := FND_FLEX_KEYVAL.concatenated_values;
85: END IF;
86: RETURN name;
87: END generic_flex_name;
88: