DBA Data[Home] [Help]

APPS.EAM_CAP_MAIN_COST_PVT dependencies on FND_API

Line 92: x_return_status := fnd_api.G_RET_STS_SUCCESS ;

88: BEGIN
89:
90: SAVEPOINT initiate_capitalization;
91:
92: x_return_status := fnd_api.G_RET_STS_SUCCESS ;
93:
94: -- Insert into the FA_MASS_ADDITIONS and EAM_WORK_ORER_BILLS tables
95:
96: IF p_eam_wo_bills_tbl.count > 0 THEN

Line 311: x_return_status := FND_API.G_RET_STS_ERROR ;

307: EXCEPTION
308:
309: WHEN csi_asset_rec_not_found THEN
310: ROLLBACK TO initiate_capitalization;
311: x_return_status := FND_API.G_RET_STS_ERROR ;
312: fnd_message.set_name('EAM','EAM_CSI_REC_NOT_FOUND');
313: x_msg_data := fnd_message.get;
314: x_msg_count := 1;
315:

Line 318: x_return_status := FND_API.G_RET_STS_ERROR ;

314: x_msg_count := 1;
315:
316: WHEN cost_not_defined THEN
317: ROLLBACK TO initiate_capitalization;
318: x_return_status := FND_API.G_RET_STS_ERROR ;
319: fnd_message.set_name('EAM','EAM_COST_NOT_DEFINED');
320: x_msg_data := fnd_message.get;
321: x_msg_count := 1;
322:

Line 325: x_return_status := FND_API.G_RET_STS_ERROR ;

321: x_msg_count := 1;
322:
323: WHEN book_type_not_defined THEN
324: ROLLBACK TO initiate_capitalization;
325: x_return_status := FND_API.G_RET_STS_ERROR ;
326: fnd_message.set_name('EAM','EAM_BOOK_TYPE_NOT_DEFINED');
327: x_msg_data := fnd_message.get;
328: x_msg_count := 1;
329:

Line 332: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

328: x_msg_count := 1;
329:
330: WHEN others THEN
331: ROLLBACK TO initiate_capitalization;
332: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
333: fnd_message.set_name('EAM','EAM_ATP_SYSTEM_ERROR');
334: x_msg_data := fnd_message.get;
335: x_msg_count := 1;
336: