DBA Data[Home] [Help]

APPS.ONT_CUSTACCEPTOIP_PVT dependencies on OE_GLOBALS

Line 77: l_action := OE_GLOBALS.G_ACCEPT_FULFILLMENT;

73: --myerrams, Bug:5155962; Modified the code to match the LookupCode instead of Meaning
74: --as Meaning can be different for different languages.
75: IF p_action = 'A'
76: THEN
77: l_action := OE_GLOBALS.G_ACCEPT_FULFILLMENT;
78: ELSIF p_action = 'R'
79: THEN
80: l_action := OE_GLOBALS.G_REJECT_FULFILLMENT;
81: END IF;

Line 80: l_action := OE_GLOBALS.G_REJECT_FULFILLMENT;

76: THEN
77: l_action := OE_GLOBALS.G_ACCEPT_FULFILLMENT;
78: ELSIF p_action = 'R'
79: THEN
80: l_action := OE_GLOBALS.G_REJECT_FULFILLMENT;
81: END IF;
82: --myerrams, end. Bug:5155962
83:
84: IF l_debug_level > 0 THEN

Line 91: l_action_request_tbl(i).entity_code := OE_GLOBALS.G_ENTITY_LINE;

87:
88: oe_msg_pub.initialize;
89: FOR i IN 1..p_line_id_tbl.COUNT LOOP
90:
91: l_action_request_tbl(i).entity_code := OE_GLOBALS.G_ENTITY_LINE;
92: l_action_request_tbl(i).request_type := l_action;
93: l_action_request_tbl(i).entity_id := p_line_id_tbl(i);
94: l_action_request_tbl(i).param1 := p_customer_comments;
95: l_action_request_tbl(i).param2 := p_customer_signature;