DBA Data[Home] [Help]

APPS.IGR_I_STATUS_PKG dependencies on FND_API

Line 87: x_ret_status := fnd_api.g_ret_sts_success;

83: SAVEPOINT update_row_status;
84:
85: -- Initialize api return status
86:
87: x_ret_status := fnd_api.g_ret_sts_success;
88:
89:
90: -- Fetch all the column values into local variables from the database
91: -- and pass these values, if they are not changed, in the AS_STATUSES_PKG.UPDATE_ROW call

Line 222: x_ret_status := fnd_api.g_ret_sts_unexp_error;

218: EXCEPTION
219: -- Exception Handling
220: WHEN OTHERS THEN
221: ROLLBACK TO update_row_status;
222: x_ret_status := fnd_api.g_ret_sts_unexp_error;
223: fnd_msg_pub.count_and_get (
224: p_count => x_msg_count,
225: p_data => x_msg_data
226: );