DBA Data[Home] [Help]

APPS.OE_UPG_INSTALL_DETAILS dependencies on OE_DEBUG_PUB

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

8: )
9: is
10:
11: --
12: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
13: --
14: Begin
15: insert into oe_upgrade_errors
16: (

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

77: l_install_details_rec CS_InstalledBase_PUB.Line_Inst_Dtl_Rec_Type;
78: l_old_line_inst_dtl_desc_flex CS_InstalledBase_PUB.DFF_Rec_Type;
79:
80: --
81: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
82: --
83: BEGIN
84:
85: IF p_slab IS NOT NULL THEN

Line 117: oe_debug_pub.add( 'ENTERING INSTALLATION DETAILS' ) ;

113: END IF;
114:
115:
116: IF l_debug_level > 0 THEN
117: oe_debug_pub.add( 'ENTERING INSTALLATION DETAILS' ) ;
118: END IF;
119:
120: -- Get the parent line which has installation details
121:

Line 137: oe_debug_pub.add( 'PARENT LINE ID : ' || L_PARENT_LINE_ID ) ;

133:
134: /* Check for the parent line if there are multiple installation details */
135:
136: IF l_debug_level > 0 THEN
137: oe_debug_pub.add( 'PARENT LINE ID : ' || L_PARENT_LINE_ID ) ;
138: END IF;
139:
140: /* Get the installation details record from SO_LINES_SERVICE_DETAILS */
141: Get_Line_Inst_Details

Line 188: oe_debug_pub.add( 'CREATE INSTALLATION DETAILS - UNEXPECTED ERROR' ) ;

184: END IF;
185:
186: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
187: IF l_debug_level > 0 THEN
188: oe_debug_pub.add( 'CREATE INSTALLATION DETAILS - UNEXPECTED ERROR' ) ;
189: END IF;
190: IF l_debug_level > 0 THEN
191: oe_debug_pub.add( 'EXITING INSTALLATION DETAILS API' ) ;
192: END IF;

Line 191: oe_debug_pub.add( 'EXITING INSTALLATION DETAILS API' ) ;

187: IF l_debug_level > 0 THEN
188: oe_debug_pub.add( 'CREATE INSTALLATION DETAILS - UNEXPECTED ERROR' ) ;
189: END IF;
190: IF l_debug_level > 0 THEN
191: oe_debug_pub.add( 'EXITING INSTALLATION DETAILS API' ) ;
192: END IF;
193: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
194: IF l_debug_level > 0 THEN
195: oe_debug_pub.add( 'INSTALLATION DETAILS - ERROR' ) ;

Line 195: oe_debug_pub.add( 'INSTALLATION DETAILS - ERROR' ) ;

191: oe_debug_pub.add( 'EXITING INSTALLATION DETAILS API' ) ;
192: END IF;
193: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
194: IF l_debug_level > 0 THEN
195: oe_debug_pub.add( 'INSTALLATION DETAILS - ERROR' ) ;
196: END IF;
197: END IF;
198:
199: IF NOT (l_return_status = FND_API.G_RET_STS_SUCCESS) then

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

264: l_line_inst_dtl_desc_flex CS_InstalledBase_PUB.DFF_Rec_Type;
265: l_party_site_id NUMBER := NULL;
266:
267: --
268: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
269: --
270: BEGIN
271:
272:

Line 355: oe_debug_pub.add( 'ERROR IN GET_LINE_INST_DETAILS' ) ;

351:
352: EXCEPTION
353: WHEN OTHERS THEN
354: IF l_debug_level > 0 THEN
355: oe_debug_pub.add( 'ERROR IN GET_LINE_INST_DETAILS' ) ;
356: END IF;
357: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
358:
359: End Get_Line_Inst_Details;