DBA Data[Home] [Help]

APPS.PA_NL_INSTALLED dependencies on FND_API

Line 58: RAISE fnd_api.g_exc_error;

54: X_login => fnd_global.login_id,
55: X_status => l_status);
56:
57: IF l_status <> 0 THEN
58: RAISE fnd_api.g_exc_error;
59: END IF;
60:
61: SELECT expenditure_item_id
62: INTO l_backout_id

Line 74: RAISE fnd_api.g_exc_error;

70: x_user => fnd_global.user_id,
71: x_status => l_status);
72:
73: IF l_status <> 0 THEN
74: RAISE fnd_api.g_exc_error;
75: END IF;
76:
77: -- this is required because the cdl created by the routine has the value as 'P'
78: -- and is preventing this line to be transferred to FA

Line 87: WHEN fnd_api.g_exc_error THEN

83:
84: x_status := l_status;
85:
86: EXCEPTION
87: WHEN fnd_api.g_exc_error THEN
88: x_status := l_status;
89: WHEN others THEN
90: x_status := sqlcode;
91: END reverse_eib_ei;