DBA Data[Home] [Help]

APPS.OE_QUOTE_UTIL dependencies on OE_DEBUG_PUB

Line 39: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

35: l_return_status VARCHAR2(30);
36: l_msg_count NUMBER;
37: l_msg_data VARCHAR2(2000);
38: I NUMBER;
39: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
40:
41: BEGIN
42:
43: if l_debug_level > 0 then

Line 44: oe_debug_pub.add('ENTER Complete_Negotiation',1);

40:
41: BEGIN
42:
43: if l_debug_level > 0 then
44: oe_debug_pub.add('ENTER Complete_Negotiation',1);
45: end if;
46:
47: x_return_status := FND_API.G_RET_STS_SUCCESS;
48:

Line 84: oe_debug_pub.add('old quote date :'||to_char(l_old_header_rec.quote_date

80:
81: l_header_rec.operation := oe_globals.g_opr_update;
82: l_header_rec.transaction_phase_code := 'F';
83: --l_header_rec.ordered_date := sysdate; bug7138819
84: oe_debug_pub.add('old quote date :'||to_char(l_old_header_rec.quote_date
85: ,'DD-MON-YYYY HH24:MI:SS'));
86: oe_debug_pub.add('new quote date :'||to_char(l_header_rec.quote_date
87: ,'DD-MON-YYYY HH24:MI:SS'));
88: l_header_rec.flow_status_code := 'ENTERED';

Line 86: oe_debug_pub.add('new quote date :'||to_char(l_header_rec.quote_date

82: l_header_rec.transaction_phase_code := 'F';
83: --l_header_rec.ordered_date := sysdate; bug7138819
84: oe_debug_pub.add('old quote date :'||to_char(l_old_header_rec.quote_date
85: ,'DD-MON-YYYY HH24:MI:SS'));
86: oe_debug_pub.add('new quote date :'||to_char(l_header_rec.quote_date
87: ,'DD-MON-YYYY HH24:MI:SS'));
88: l_header_rec.flow_status_code := 'ENTERED';
89: -- Bug 3519935
90: -- Send reason as SYSTEM, this will be used if audit constraint to

Line 167: oe_debug_pub.add('EXIT Complete_Negotiation',1);

163: , p_data => x_msg_data
164: );
165:
166: if l_debug_level > 0 then
167: oe_debug_pub.add('EXIT Complete_Negotiation',1);
168: end if;
169:
170: EXCEPTION
171: