DBA Data[Home] [Help]

APPS.IBE_DELIVERABLE_EXPIMP_PVT dependencies on IBE_DELIVERABLE_GRP

Line 140: l_deliverable_rec IBE_DELIVERABLE_GRP.DELIVERABLE_REC_TYPE;

136: l_object_ver_num NUMBER;
137: l_item_id NUMBER;
138: l_lgl_phys_map_id NUMBER;
139: l_attachment_id NUMBER;
140: l_deliverable_rec IBE_DELIVERABLE_GRP.DELIVERABLE_REC_TYPE;
141: l_attachment_rec IBE_ATTACHMENT_GRP.ATTACHMENT_REC_TYPE;
142:
143: BEGIN
144: l_true:=FND_API.g_true;

Line 212: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Before calling IBE_Deliverable_Grp.save_deliverable');

208:
209: IF (l_item_id IS NULL) OR (l_item_id >=10000) THEN
210:
211: IF (p_enable_debug = 'Y') THEN
212: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Before calling IBE_Deliverable_Grp.save_deliverable');
213: END IF;
214:
215: IBE_Deliverable_GRP.save_deliverable(
216: p_api_version => 1.0,

Line 215: IBE_Deliverable_GRP.save_deliverable(

211: IF (p_enable_debug = 'Y') THEN
212: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Before calling IBE_Deliverable_Grp.save_deliverable');
213: END IF;
214:
215: IBE_Deliverable_GRP.save_deliverable(
216: p_api_version => 1.0,
217: p_init_msg_list => FND_API.g_false,
218: p_commit => FND_API.g_false,
219: x_return_status => l_return_status,

Line 413: ibe_util.debug('Expected error in IBE_DELIVERABLE_GRP.save_template_mappping');

409: EXCEPTION
410: WHEN FND_API.G_EXC_ERROR THEN
411: --x_error_num := x_error_num + 1;
412: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
413: ibe_util.debug('Expected error in IBE_DELIVERABLE_GRP.save_template_mappping');
414: END IF;
415: ROLLBACK TO save_template_mapping_pvt;
416: x_return_status := FND_API.G_RET_STS_ERROR;
417: FND_Msg_Pub.Count_And_Get(p_encoded => FND_API.G_FALSE,

Line 423: ibe_util.debug('Unexpected error in IBE_DELIVERABLE_GRP.save_template_mappping');

419: p_data => x_msg_data);
420: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
421: --x_error_num := x_error_num + 1;
422: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
423: ibe_util.debug('Unexpected error in IBE_DELIVERABLE_GRP.save_template_mappping');
424: END IF;
425: ROLLBACK TO save_template_mapping_pvt;
426: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
427: FND_Msg_Pub.Count_And_Get(p_encoded => FND_API.G_FALSE,

Line 435: ibe_util.debug('Unknown error in IBE_DELIVERABLE_GRP.save_template_mappping');

431: ROLLBACK TO save_template_mapping_pvt;
432: -- x_error_num := x_error_num + 1;
433: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
434: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
435: ibe_util.debug('Unknown error in IBE_DELIVERABLE_GRP.save_template_mappping');
436: END IF;
437: IF FND_Msg_Pub.Check_Msg_Level( FND_Msg_Pub.G_MSG_LVL_UNEXP_ERROR ) THEN
438: FND_Msg_Pub.Add_Exc_Msg(G_PKG_NAME,
439: L_API_NAME);