DBA Data[Home] [Help]

APPS.EAM_CAP_MAIN_COST_PVT dependencies on FND_API

Line 103: x_return_status := fnd_api.G_RET_STS_SUCCESS ;

99: BEGIN
100:
101: SAVEPOINT initiate_capitalization;
102:
103: x_return_status := fnd_api.G_RET_STS_SUCCESS ;
104:
105: -- Insert into the FA_MASS_ADDITIONS and EAM_WORK_ORER_BILLS tables
106:
107: IF p_eam_wo_bills_tbl.count > 0 THEN

Line 357: x_return_status := FND_API.G_RET_STS_ERROR ;

353: EXCEPTION
354:
355: WHEN csi_asset_rec_not_found THEN
356: ROLLBACK TO initiate_capitalization;
357: x_return_status := FND_API.G_RET_STS_ERROR ;
358: fnd_message.set_name('EAM','EAM_CSI_REC_NOT_FOUND');
359: x_msg_data := fnd_message.get;
360: x_msg_count := 1;
361:

Line 364: x_return_status := FND_API.G_RET_STS_ERROR ;

360: x_msg_count := 1;
361:
362: WHEN cost_not_defined THEN
363: ROLLBACK TO initiate_capitalization;
364: x_return_status := FND_API.G_RET_STS_ERROR ;
365: fnd_message.set_name('EAM','EAM_COST_NOT_DEFINED');
366: x_msg_data := fnd_message.get;
367: x_msg_count := 1;
368:

Line 371: x_return_status := FND_API.G_RET_STS_ERROR ;

367: x_msg_count := 1;
368:
369: WHEN book_type_not_defined THEN
370: ROLLBACK TO initiate_capitalization;
371: x_return_status := FND_API.G_RET_STS_ERROR ;
372: fnd_message.set_name('EAM','EAM_BOOK_TYPE_NOT_DEFINED');
373: x_msg_data := fnd_message.get;
374: x_msg_count := 1;
375:

Line 378: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

374: x_msg_count := 1;
375:
376: WHEN others THEN
377: ROLLBACK TO initiate_capitalization;
378: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
379: fnd_message.set_name('EAM','EAM_ATP_SYSTEM_ERROR');
380: x_msg_data := fnd_message.get;
381: x_msg_count := 1;
382: