DBA Data[Home] [Help]

APPS.OE_RSCH_SETS_CONC_REQUESTS dependencies on OE_GLOBALS

Line 48: IF p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_INCLUDED THEN

44:
45:
46: FOR I IN 1..p_x_line_tbl.count LOOP
47: BEGIN
48: IF p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_INCLUDED THEN
49:
50: -- Service items cannot be scheduled, so we will skip them.
51: -- Included items will be picked up by their parent, so we will
52: -- skip them.

Line 69: (p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_MODEL OR

65:
66: x_old_line_tbl(K) := p_x_line_tbl(I);
67:
68: IF (p_x_line_tbl(I).ato_line_id is null) AND
69: (p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_MODEL OR
70: p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_CLASS OR
71: p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_KIT) THEN
72:
73: -- Calling Process_Included_Items. This procedure

Line 70: p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_CLASS OR

66: x_old_line_tbl(K) := p_x_line_tbl(I);
67:
68: IF (p_x_line_tbl(I).ato_line_id is null) AND
69: (p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_MODEL OR
70: p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_CLASS OR
71: p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_KIT) THEN
72:
73: -- Calling Process_Included_Items. This procedure
74: -- will take care of exploding and updating the picture

Line 71: p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_KIT) THEN

67:
68: IF (p_x_line_tbl(I).ato_line_id is null) AND
69: (p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_MODEL OR
70: p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_CLASS OR
71: p_x_line_tbl(I).item_type_code = OE_GLOBALS.G_ITEM_KIT) THEN
72:
73: -- Calling Process_Included_Items. This procedure
74: -- will take care of exploding and updating the picture
75: -- of included_items in the oe_order_lines table.

Line 105: l_line_tbl(k).operation := OE_GLOBALS.G_OPR_UPDATE;

101: FOR J IN 1..l_ii_line_tbl.count LOOP
102: K := K+1;
103: l_line_tbl(k) := l_ii_line_tbl(J);
104: x_old_line_tbl(K) := l_ii_line_tbl(J);
105: l_line_tbl(k).operation := OE_GLOBALS.G_OPR_UPDATE;
106: l_line_tbl(k).ship_set_id :=
107: p_x_line_tbl(I).ship_set_id;
108: l_line_tbl(k).arrival_set_id :=
109: p_x_line_tbl(I).arrival_set_id;

Line 196: IF NOT OE_GLOBALS.Equal(l_line_tbl(I).ship_set_id,

192:
193: --- 2887734
194: -- get set name
195: IF l_line_tbl(I).ship_set_id IS NOT NULL THEN
196: IF NOT OE_GLOBALS.Equal(l_line_tbl(I).ship_set_id,
197: l_ship_set_id) THEN
198: l_ship_set_id := l_line_tbl(I).ship_set_id;
199: l_set_rec := OE_ORDER_CACHE.Load_Set(l_ship_set_id);
200: END IF;

Line 303: l_control_rec OE_GLOBALS.control_rec_type;

299: l_set_line_tbl OE_Order_PUB.Line_Tbl_Type;
300: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
301: l_line_rec OE_Order_PUB.Line_Rec_Type;
302: l_old_line_tbl OE_ORDER_PUB.Line_Tbl_Type;
303: l_control_rec OE_GLOBALS.control_rec_type;
304: g_set_recursive_flag BOOLEAN := FALSE;
305: l_msg_count number;
306: l_msg_data varchar2(32000);
307: