DBA Data[Home] [Help]

APPS.OE_DEFAULT_CONTRACT dependencies on OE_DEBUG_PUB

Line 19: oe_debug_pub.add('Entering OE_Default_Contract.Get_Agreement');

15: RETURN NUMBER
16: IS
17: l_Agreement_Id NUMBER := NULL;
18: BEGIN
19: oe_debug_pub.add('Entering OE_Default_Contract.Get_Agreement');
20:
21: /*
22: select oe_agreements_s.nextval into l_Agreement_Id
23: from dual;

Line 27: oe_debug_pub.add('Exiting OE_Default_Contract.Get_Agreement, agreement_id: '||to_char(l_Agreement_Id));

23: from dual;
24:
25: RETURN l_Agreement_Id;
26: */
27: oe_debug_pub.add('Exiting OE_Default_Contract.Get_Agreement, agreement_id: '||to_char(l_Agreement_Id));
28:
29: RETURN NULL;
30: EXCEPTION
31:

Line 51: oe_debug_pub.add('Entering OE_Default_Contract.Get_Discount');

47: RETURN NUMBER
48: IS
49: l_Discount_Id NUMBER := NULL;
50: BEGIN
51: oe_debug_pub.add('Entering OE_Default_Contract.Get_Discount');
52:
53: /*
54: select oe_discounts_s.nextval
55: into l_Discount_Id

Line 61: oe_debug_pub.add('Exiting OE_Default_Contract.Get_Discount, Discount_Id: '||to_char(l_Discount_Id));

57:
58: RETURN l_Discount_Id;
59: */
60:
61: oe_debug_pub.add('Exiting OE_Default_Contract.Get_Discount, Discount_Id: '||to_char(l_Discount_Id));
62:
63: RETURN NULL;
64: END Get_Discount;
65:

Line 90: oe_debug_pub.add('Entering OE_Default_Contract.Get_Pricing_Contract');

86: IS
87: l_Pricing_Contract_Id NUMBER := NULL;
88: BEGIN
89:
90: oe_debug_pub.add('Entering OE_Default_Contract.Get_Pricing_Contract');
91:
92: select oe_pricing_contracts_s.nextval into l_Pricing_Contract_Id
93: from dual;
94:

Line 95: oe_debug_pub.add('Exiting OE_Default_Contract.Get_Pricing_Contract, pricing_contract_id: '||to_char(l_Pricing_Contract_Id));

91:
92: select oe_pricing_contracts_s.nextval into l_Pricing_Contract_Id
93: from dual;
94:
95: oe_debug_pub.add('Exiting OE_Default_Contract.Get_Pricing_Contract, pricing_contract_id: '||to_char(l_Pricing_Contract_Id));
96:
97: RETURN l_Pricing_Contract_Id;
98:
99: END Get_Pricing_Contract;

Line 184: oe_debug_pub.add('Entering OE_Default_Contract.Attributes');

180: )
181: IS
182: BEGIN
183:
184: oe_debug_pub.add('Entering OE_Default_Contract.Attributes');
185:
186: -- Check number of iterations.
187:
188: IF p_iteration > OE_GLOBALS.G_MAX_DEF_ITERATIONS THEN

Line 399: oe_debug_pub.add('Agreement_Id : ' || to_char(g_Contract_rec.agreement_id));

395:
396: -- Done defaulting attributes
397:
398: x_Contract_rec := g_Contract_rec;
399: oe_debug_pub.add('Agreement_Id : ' || to_char(g_Contract_rec.agreement_id));
400: oe_debug_pub.add('Discount_Id : ' || to_char(g_Contract_rec.discount_id));
401:
402: END IF;
403:

Line 400: oe_debug_pub.add('Discount_Id : ' || to_char(g_Contract_rec.discount_id));

396: -- Done defaulting attributes
397:
398: x_Contract_rec := g_Contract_rec;
399: oe_debug_pub.add('Agreement_Id : ' || to_char(g_Contract_rec.agreement_id));
400: oe_debug_pub.add('Discount_Id : ' || to_char(g_Contract_rec.discount_id));
401:
402: END IF;
403:
404: oe_debug_pub.add('Exiting OE_Default_Contract.Attributes');

Line 404: oe_debug_pub.add('Exiting OE_Default_Contract.Attributes');

400: oe_debug_pub.add('Discount_Id : ' || to_char(g_Contract_rec.discount_id));
401:
402: END IF;
403:
404: oe_debug_pub.add('Exiting OE_Default_Contract.Attributes');
405:
406: END Attributes;
407:
408: END OE_Default_Contract;