DBA Data[Home] [Help]

APPS.OE_ACCEPTANCE_PVT dependencies on OE_ACCEPTANCE_PVT

Line 1: PACKAGE BODY OE_ACCEPTANCE_PVT AS

1: PACKAGE BODY OE_ACCEPTANCE_PVT AS
2: /* $Header: OEXVACCB.pls 120.7.12020000.3 2013/01/15 12:59:53 aparava ship $ */
3:
4: -- Global constant holding the package name
5:

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

2: /* $Header: OEXVACCB.pls 120.7.12020000.3 2013/01/15 12:59:53 aparava ship $ */
3:
4: -- Global constant holding the package name
5:
6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_ACCEPTANCE_PVT';
7:
8: G_LINE_ID_TBL NUMBER_TYPE;
9: G_HEADER_ID_TBL NUMBER_TYPE;
10: G_REVREC_COMMENTS_TBL VARCHAR_2000_TYPE;

Line 125: OE_ACCEPTANCE_PVT.Progress_Accepted_lines(l_return_status);

121: oe_debug_pub.add('IN OE_ACCEPTANCE_UTIL.Process_Acceptance - after bulk update' , 1);
122: END IF;
123:
124: -- Progress workflow for each processed lines in a loop.
125: OE_ACCEPTANCE_PVT.Progress_Accepted_lines(l_return_status);
126:
127: IF l_debug_level > 0 THEN
128: oe_debug_pub.add('IN OE_ACCEPTANCE_UTIL.Process_Acceptance-progress_accepted_lines return status:'|| l_return_status , 1);
129: END IF;

Line 133: oe_debug_pub.add( 'OE_ACCEPTANCE_PVT - Raise Integration event for Customer Acceptance');

129: END IF;
130: --Start of bug 16085063
131: IF l_return_status = FND_API.G_RET_STS_SUCCESS AND NVL (Fnd_Profile.Value('ONT_RAISE_STATUS_CHANGE_BUSINESS_EVENT'), 'N') = 'Y' THEN
132: IF l_debug_level > 0 then
133: oe_debug_pub.add( 'OE_ACCEPTANCE_PVT - Raise Integration event for Customer Acceptance');
134: oe_debug_pub.add( 'g_line_id_tbl count: '|| g_line_id_tbl.count);
135: END IF;
136:
137: FOR i IN 1..g_line_id_tbl.count LOOP

Line 145: oe_debug_pub.add( 'OE_ACCEPTANCE_PVT - Preparing paramters to pass to Integration event for Customer Acceptance');

141: END IF;
142:
143: IF g_accepted_quantity_tbl(i) <> 0 THEN
144: IF l_debug_level > 0 THEN
145: oe_debug_pub.add( 'OE_ACCEPTANCE_PVT - Preparing paramters to pass to Integration event for Customer Acceptance');
146: END IF;
147: l_count := 1;
148: l_nameVal_tbl(l_count).name := 'ACCEPTANCE_STATUS';
149: l_nameVal_tbl(l_count).value := 'ACCEPTED';

Line 159: oe_debug_pub.add( 'OE_ACCEPTANCE_PVT - Preparing paramters to pass to Integration event for Customer Rejection');

155: END IF;
156:
157: ELSE --For Rejection
158: IF l_debug_level > 0 THEN
159: oe_debug_pub.add( 'OE_ACCEPTANCE_PVT - Preparing paramters to pass to Integration event for Customer Rejection');
160: END IF;
161: l_count := 1;
162: l_nameVal_tbl(l_count).name := 'ACCEPTANCE_STATUS';
163: l_nameVal_tbl(l_count).value := 'REJECTED';

Line 720: END OE_ACCEPTANCE_PVT;

716: END IF;
717: x_return_status := l_return_status;
718: END Progress_Accepted_lines;
719:
720: END OE_ACCEPTANCE_PVT;