DBA Data[Home] [Help]

APPS.EGO_ITEMCAT_VAL_TO_ID dependencies on FND_FLEX_KEYVAL

Line 114: is_valid := FND_FLEX_KEYVAL.Validate_Segs

110:
111: -- dbms_output.put_line('validating segments . . .operation - ' || p_operation );
112: -- dbms_output.put_line(' concat. value ' || p_catalog_group_name);
113:
114: is_valid := FND_FLEX_KEYVAL.Validate_Segs
115: ( operation => p_operation
116: , appl_short_name => 'INV'
117: , key_flex_code => 'MICG'
118: , structure_number => 101

Line 168: -- dbms_output.put_line('returning ccid . . . ' || FND_FLEX_KEYVAL.Combination_ID);

164: j := to_number(substr(seg.column_name,8));
165: EGO_Item_Catalog_Pub.G_KF_SEGMENT_VALUES(j) := l_segment_values(i);
166: end loop;
167:
168: -- dbms_output.put_line('returning ccid . . . ' || FND_FLEX_KEYVAL.Combination_ID);
169: */
170:
171: return FND_FLEX_KEYVAL.Combination_ID;
172:

Line 171: return FND_FLEX_KEYVAL.Combination_ID;

167:
168: -- dbms_output.put_line('returning ccid . . . ' || FND_FLEX_KEYVAL.Combination_ID);
169: */
170:
171: return FND_FLEX_KEYVAL.Combination_ID;
172:
173: ELSIF (is_valid AND p_operation = 'CHECK_SEGMENTS')
174: THEN
175:

Line 179: G_Error_Msg_Text := FND_FLEX_KEYVAL.error_message; -- bug 12380454

175:
176: return 1;
177: ELSIF ( NOT is_valid AND p_operation = 'CHECK_SEGMENTS')
178: THEN
179: G_Error_Msg_Text := FND_FLEX_KEYVAL.error_message; -- bug 12380454
180: return 0;
181:
182: ELSE
183: -- dbms_output.put_line('operation: ' || p_operation || ' returning NULL ' );

Line 205: if FND_Flex_KeyVal.validate_ccid(appl_short_name => 'INV',

201: BEGIN
202:
203: -- dbms_output.put_line('validating ID: ' || p_catalog_group_id);
204:
205: if FND_Flex_KeyVal.validate_ccid(appl_short_name => 'INV',
206: key_flex_code => 'MICG',
207: structure_number => 101,
208: combination_id => p_catalog_group_id
209: )

Line 211: -- dbms_output.put_line('returning name ' || FND_FLEX_KEYVAL.concatenated_values);

207: structure_number => 101,
208: combination_id => p_catalog_group_id
209: )
210: THEN
211: -- dbms_output.put_line('returning name ' || FND_FLEX_KEYVAL.concatenated_values);
212: return FND_FLEX_KEYVAL.concatenated_values;
213: ELSE
214: return null;
215: END IF;

Line 212: return FND_FLEX_KEYVAL.concatenated_values;

208: combination_id => p_catalog_group_id
209: )
210: THEN
211: -- dbms_output.put_line('returning name ' || FND_FLEX_KEYVAL.concatenated_values);
212: return FND_FLEX_KEYVAL.concatenated_values;
213: ELSE
214: return null;
215: END IF;
216: