DBA Data[Home] [Help]

APPS.FA_TRANSACTION_ITF_PKG dependencies on FND_API

Line 140: raise FND_API.G_EXC_UNEXPECTED_ERROR;

136: l_err_stage := 'Begin FA_AFE_RECLASS_PKG.process_transaction_interface';
137: if (not g_log_level_rec.initialized) then
138: if (NOT
139: fa_util_pub.get_log_level_rec(x_log_level_rec => g_log_level_rec)) then
140: raise FND_API.G_EXC_UNEXPECTED_ERROR;
141: end if;
142: end if;
143:
144: l_err_stage := 'Get Lookup values';

Line 331: x_return_status := FND_API.G_RET_STS_SUCCESS;

327: end loop;
328: close get_interface_assets;
329: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
330:
331: x_return_status := FND_API.G_RET_STS_SUCCESS;
332: EXCEPTION
333: WHEN FND_API.G_EXC_ERROR THEN
334: FA_SRVR_MSG.Add_Message(calling_fn => 'FA_TRANSFER_PUB.do_transfer',
335: p_log_level_rec => g_log_level_rec);

Line 333: WHEN FND_API.G_EXC_ERROR THEN

329: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
330:
331: x_return_status := FND_API.G_RET_STS_SUCCESS;
332: EXCEPTION
333: WHEN FND_API.G_EXC_ERROR THEN
334: FA_SRVR_MSG.Add_Message(calling_fn => 'FA_TRANSFER_PUB.do_transfer',
335: p_log_level_rec => g_log_level_rec);
336:
337: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,

Line 340: x_return_status := FND_API.G_RET_STS_ERROR;

336:
337: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,
338: p_data => x_msg_data);
339: ROLLBACK TO AFE_Reclass_Asset_Begin;
340: x_return_status := FND_API.G_RET_STS_ERROR;
341:
342: WHEN OTHERS THEN
343: FA_SRVR_MSG.add_sql_error(calling_fn => 'FA_TRANSFER_PUB.do_transfer',
344: p_log_level_rec => g_log_level_rec);

Line 349: x_return_status := FND_API.G_RET_STS_ERROR;

345:
346: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,
347: p_data => x_msg_data);
348: ROLLBACK TO AFE_Reclass_Asset_Begin;
349: x_return_status := FND_API.G_RET_STS_ERROR;
350: end process_transaction_interface;
351:
352: end FA_TRANSACTION_ITF_PKG;