DBA Data[Home] [Help]

APPS.OE_UPG_INSTALL_DETAILS dependencies on FND_API

Line 155: ,p_init_msg_list => FND_API.G_TRUE

151:
152: CS_Inst_Detail_PUB.create_installation_details
153: (
154: p_api_version => 1.0
155: ,p_init_msg_list => FND_API.G_TRUE
156: ,x_return_status => l_return_status
157: ,x_msg_count => l_msg_count
158: ,x_msg_data => l_msg_data
159: ,p_line_inst_dtl_rec => l_old_line_inst_dtl_rec

Line 161: ,p_upgrade => FND_API.G_TRUE

157: ,x_msg_count => l_msg_count
158: ,x_msg_data => l_msg_data
159: ,p_line_inst_dtl_rec => l_old_line_inst_dtl_rec
160: ,p_line_inst_dtl_desc_flex => l_old_line_inst_dtl_desc_flex
161: ,p_upgrade => FND_API.G_TRUE
162: ,x_object_version_number => l_object_version_number
163: ,x_line_inst_detail_id => l_new_line_inst_detail_id
164: );
165:

Line 167: WHEN fnd_api.g_exc_error THEN

163: ,x_line_inst_detail_id => l_new_line_inst_detail_id
164: );
165:
166: EXCEPTION
167: WHEN fnd_api.g_exc_error THEN
168:
169: --
170: -- this is to work around a bug 1349874 filed against CRM
171: --

Line 173: l_return_status := FND_API.g_ret_sts_error;

169: --
170: -- this is to work around a bug 1349874 filed against CRM
171: --
172:
173: l_return_status := FND_API.g_ret_sts_error;
174: l_msg_count := 1;
175: l_msg_data := 'NO_DATA_FOUND Raised from CS_INST_DETAIL_PUB';
176:
177: WHEN OTHERS THEN

Line 186: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

182: commit;
183: l_count := 0;
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

Line 193: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN

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' ) ;
196: END IF;
197: END IF;

Line 199: IF NOT (l_return_status = FND_API.G_RET_STS_SUCCESS) 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
200:
201: BEGIN
202: select header_id into l_header_id
203: from so_lines_all where line_id = l_parent_line_id;

Line 225: l_msg_data := fnd_msg_pub.get(l_msg_index, FND_API.G_FALSE);

221: END;
222:
223: l_msg_index := 1;
224: while l_msg_count > 0 loop
225: l_msg_data := fnd_msg_pub.get(l_msg_index, FND_API.G_FALSE);
226: oe_upg_install_details.upgrade_insert_errors
227: (
228: L_header_id => l_header_id,
229: L_comments =>

Line 249: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

245:
246: -- dbms_output.put_line('Line_id is: ' || l_old_line_inst_dtl_rec.order_line_id
247: -- || ' line_service_detail_id is: ' || l_old_line_inst_dtl_rec.line_inst_detail_id);
248:
249: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
250:
251: END Upgrade_install_details;
252:
253:

Line 357: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

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;
360:
361: END oe_upg_install_details;