DBA Data[Home] [Help]

APPS.OE_DEFAULT_AGREEMENT dependencies on OE_DEFAULT_AGREEMENT

Line 1: PACKAGE BODY OE_Default_Agreement AS

1: PACKAGE BODY OE_Default_Agreement AS
2: /* $Header: OEXDAGRB.pls 120.3 2005/12/14 15:57:40 shulin ship $ */
3:
4: -- Global constant holding the package name
5:

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

2: /* $Header: OEXDAGRB.pls 120.3 2005/12/14 15:57:40 shulin ship $ */
3:
4: -- Global constant holding the package name
5:
6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_Default_Agreement';
7:
8: -- Package global used within the package.
9:
10: g_Agreement_rec OE_Pricing_Cont_PUB.Agreement_Rec_Type;

Line 38: oe_debug_pub.add('Entering OE_Default_Agreement.Get_Agreement');

34: IS
35: l_Agreement_Id NUMBER := NULL;
36: BEGIN
37:
38: oe_debug_pub.add('Entering OE_Default_Agreement.Get_Agreement');
39:
40: select oe_agreements_s.nextval into l_Agreement_Id
41: from dual;
42:

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

39:
40: select oe_agreements_s.nextval into l_Agreement_Id
41: from dual;
42:
43: oe_debug_pub.add('Exiting OE_Default_Agreement.Get_Agreement, agreement_id: '||to_char(l_Agreement_Id));
44:
45: RETURN l_Agreement_Id;
46:
47: EXCEPTION

Line 370: oe_debug_pub.add('Entering OE_Default_Agreement.Attributes');

366: IS
367: l_Agreement_rec OE_Pricing_Cont_PUB.Agreement_Rec_Type; --[prarasto]
368: BEGIN
369:
370: oe_debug_pub.add('Entering OE_Default_Agreement.Attributes');
371:
372: -- Check number of iterations.
373:
374: IF p_iteration > OE_GLOBALS.G_MAX_DEF_ITERATIONS THEN

Line 1161: OE_Default_Agreement.Attributes

1157: OR g_Agreement_rec.orig_system_agr_id = FND_API.G_MISS_NUM
1158: --end code added by rchellam for OKC
1159: THEN
1160:
1161: OE_Default_Agreement.Attributes
1162: ( p_Agreement_rec => g_Agreement_rec
1163: , p_iteration => p_iteration + 1
1164: , x_Agreement_rec => x_Agreement_rec
1165: );

Line 1175: oe_debug_pub.add('Exiting OE_Default_Agreement.Attributes');

1171: x_Agreement_rec := g_Agreement_rec;
1172:
1173: END IF;
1174:
1175: oe_debug_pub.add('Exiting OE_Default_Agreement.Attributes');
1176:
1177: END Attributes;
1178:
1179: END OE_Default_Agreement;

Line 1179: END OE_Default_Agreement;

1175: oe_debug_pub.add('Exiting OE_Default_Agreement.Attributes');
1176:
1177: END Attributes;
1178:
1179: END OE_Default_Agreement;