DBA Data[Home] [Help]

APPS.RCV_ROI_TRANSACTION dependencies on FND_FLEX_EXT

Line 13: FUNCTION getloc(x_locid OUT NOCOPY NUMBER, p_org_id NUMBER, p_locctrl NUMBER, p_segmentarray fnd_flex_ext.segmentarray) return BOOLEAN is

9: e_validation_error EXCEPTION;
10:
11: -- Bug 14725305 added for dropship project po
12: -- This will just create a new locator for dynamic locator setup.
13: FUNCTION getloc(x_locid OUT NOCOPY NUMBER, p_org_id NUMBER, p_locctrl NUMBER, p_segmentarray fnd_flex_ext.segmentarray) return BOOLEAN is
14: l_nseg NUMBER;
15: l_seglist fnd_flex_key_api.segment_list;
16: l_fftype fnd_flex_key_api.flexfield_type;
17: l_ffstru fnd_flex_key_api.structure_type;

Line 30: l_segmentarray fnd_flex_ext.segmentarray;

26: l_val BOOLEAN := FALSE;
27: DYNAMIC CONSTANT NUMBER := 3;
28: l_operation VARCHAR2(100);
29: -- Local array to hold the data for getting the cancatenated segment.
30: l_segmentarray fnd_flex_ext.segmentarray;
31: BEGIN
32:
33: fnd_flex_key_api.set_session_mode('seed_data');
34:

Line 62: l_locator := fnd_flex_ext.concatenate_segments(n_segments => l_nseg,

58: l_segmentarray(l_loop) := p_segmentarray(To_number(Substr(l_segment_type.column_name, 8)));
59: END LOOP;
60:
61: -- Gets the encoded cancatenated string
62: l_locator := fnd_flex_ext.concatenate_segments(n_segments => l_nseg,
63: segments => l_segmentarray,
64: delimiter => l_delim);
65: IF (g_asn_debug = 'Y') THEN
66: asn_debug.put_line('Locator is : ' || l_locator);

Line 142: l_segmentarray fnd_flex_ext.segmentarray;

138: x_locator_control NUMBER;
139: x_default_subinventory VARCHAR2(10);
140: x_default_locator_id NUMBER;
141: x_success BOOLEAN;
142: l_segmentarray fnd_flex_ext.segmentarray;
143: l_loc_id number;
144: BEGIN
145: IF (g_asn_debug = 'Y') THEN
146: asn_debug.put_line('inside default_for_pjm_dropship');