DBA Data[Home] [Help]

APPS.OE_DEFAULT_CONTRACT dependencies on OE_DEFAULT_CONTRACT

Line 1: PACKAGE BODY OE_Default_Contract AS

1: PACKAGE BODY OE_Default_Contract AS
2: /* $Header: OEXDPCTB.pls 115.0 99/07/15 19:21:06 porting shi $ */
3:
4: -- Global constant holding the package name
5:

Line 6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_Default_Contract';

2: /* $Header: OEXDPCTB.pls 115.0 99/07/15 19:21:06 porting shi $ */
3:
4: -- Global constant holding the package name
5:
6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_Default_Contract';
7:
8: -- Package global used within the package.
9:
10: g_Contract_rec OE_Pricing_Cont_PUB.Contract_Rec_Type;

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 388: OE_Default_Contract.Attributes

384: OR g_Contract_rec.price_list_id = FND_API.G_MISS_NUM
385: OR g_Contract_rec.pricing_contract_id = FND_API.G_MISS_NUM
386: THEN
387:
388: OE_Default_Contract.Attributes
389: ( p_Contract_rec => g_Contract_rec
390: , p_iteration => p_iteration + 1
391: , x_Contract_rec => x_Contract_rec
392: );

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;

Line 408: END OE_Default_Contract;

404: oe_debug_pub.add('Exiting OE_Default_Contract.Attributes');
405:
406: END Attributes;
407:
408: END OE_Default_Contract;