DBA Data[Home] [Help]

APPS.OE_ACCEPTANCE_UTIL dependencies on OE_GLOBALS

Line 10: G_BINARY_LIMIT CONSTANT NUMBER := OE_GLOBALS.G_BINARY_LIMIT; -- Bug 8656395

6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_ACCEPTANCE_UTIL';
7:
8: G_batch_source_id NUMBER := FND_API.G_MISS_NUM;
9: G_batch_source_name VARCHAR2(50) := FND_API.G_MISS_CHAR;
10: G_BINARY_LIMIT CONSTANT NUMBER := OE_GLOBALS.G_BINARY_LIMIT; -- Bug 8656395
11:
12: PROCEDURE Register_Changed_Lines (
13: p_line_id IN NUMBER
14: , p_header_id IN NUMBER

Line 40: IF p_operation In (OE_GLOBALS.G_OPR_CREATE, OE_GLOBALS.G_OPR_UPDATE) THEN

36: oe_debug_pub.add('Operation value is ' || p_operation );
37: END IF;
38:
39: l_mod_line_id := MOD(p_line_id, G_BINARY_LIMIT); -- Bug 8656395
40: IF p_operation In (OE_GLOBALS.G_OPR_CREATE, OE_GLOBALS.G_OPR_UPDATE) THEN
41: IF G_line_index_Tbl.exists(l_mod_line_id) THEN
42: l_line_index := G_line_index_tbl(l_mod_line_id).line_index; -- Replaced p_line_id with l_mod_line_id 8656395
43: ELSE
44: l_line_index := G_line_id_tbl.count + 1;

Line 64: ELSIF p_operation = OE_GLOBALS.G_OPR_DELETE THEN

60: G_accounting_rule_id_tbl(l_line_index) := nvl(p_accounting_rule_id, -99);
61: --For Bug#8262992
62: G_ship_to_org_id_tbl(l_line_index) := nvl(p_ship_to_org_id, -99);
63:
64: ELSIF p_operation = OE_GLOBALS.G_OPR_DELETE THEN
65:
66: IF G_line_index_tbl.exists(l_mod_line_id) THEN
67: IF l_debug_level > 0 THEN
68: oe_debug_pub.add('Line Index value is ' || l_line_index ); -- Replaced p_line_id with l_mod_line_id 8656395