DBA Data[Home] [Help]

APPS.PO_GA_ORG_ASSIGN_PVT dependencies on APP_EXCEPTION

Line 224: -- p_organization_id. Uses APP_EXCEPTION.raise_exception when error occurs.

220: --Locks:
221: -- PO_GA_ORG_ASSIGNMENTS
222: --Function:
223: -- Deletes the row in PO_GA_ORG_ASSIGNMENTS with p_po_header_id and
224: -- p_organization_id. Uses APP_EXCEPTION.raise_exception when error occurs.
225: --Parameters:
226: --IN:
227: --p_po_header_id
228: --p_organization_id

Line 248: APP_EXCEPTION.raise_exception;

244: WHEN OTHERS THEN
245: PO_MESSAGE_S.sql_error(routine => 'PO_GA_ORG_ASSIGN_PVT.delete_row',
246: location => '200',
247: error_code => SQLCODE);
248: APP_EXCEPTION.raise_exception;
249: END delete_row;
250:
251:
252: --Rewrote lock_row procedure

Line 273: -- is set. Uses APP_EXCEPTION.raise_exception when errors occur.

269: -- enabled_flag
270: -- If any of these are different than the database value, the procedure will
271: -- error out after setting the FND message FORM_RECORD_CHANGED. If the matching
272: -- record in the database cannot be found, the FND message FORM_RECORD_DELETED
273: -- is set. Uses APP_EXCEPTION.raise_exception when errors occur.
274: --Parameters:
275: --IN:
276: --p_org_assign_rec
277: --p_row_id

Line 305: WHEN APP_EXCEPTION.record_lock_exception THEN

301: RAISE FND_API.g_exc_error;
302: END IF;
303:
304: EXCEPTION
305: WHEN APP_EXCEPTION.record_lock_exception THEN
306: -- The record could not be locked, so raise it to calling procedure
307: RAISE APP_EXCEPTION.record_lock_exception;
308: WHEN NO_DATA_FOUND THEN
309: -- Could not find the record

Line 307: RAISE APP_EXCEPTION.record_lock_exception;

303:
304: EXCEPTION
305: WHEN APP_EXCEPTION.record_lock_exception THEN
306: -- The record could not be locked, so raise it to calling procedure
307: RAISE APP_EXCEPTION.record_lock_exception;
308: WHEN NO_DATA_FOUND THEN
309: -- Could not find the record
310: FND_MESSAGE.set_name(application => 'FND',
311: name => 'FORM_RECORD_DELETED');

Line 312: APP_EXCEPTION.raise_exception;

308: WHEN NO_DATA_FOUND THEN
309: -- Could not find the record
310: FND_MESSAGE.set_name(application => 'FND',
311: name => 'FORM_RECORD_DELETED');
312: APP_EXCEPTION.raise_exception;
313: WHEN FND_API.g_exc_error THEN
314: -- The individual value comparisons failed
315: FND_MESSAGE.set_name(application => 'FND',
316: name => 'FORM_RECORD_CHANGED');

Line 317: APP_EXCEPTION.raise_exception;

313: WHEN FND_API.g_exc_error THEN
314: -- The individual value comparisons failed
315: FND_MESSAGE.set_name(application => 'FND',
316: name => 'FORM_RECORD_CHANGED');
317: APP_EXCEPTION.raise_exception;
318: WHEN OTHERS THEN
319: FND_MSG_PUB.build_exc_msg
320: (p_pkg_name => g_pkg_name,
321: p_procedure_name => 'lock_row',

Line 323: APP_EXCEPTION.raise_exception;

319: FND_MSG_PUB.build_exc_msg
320: (p_pkg_name => g_pkg_name,
321: p_procedure_name => 'lock_row',
322: p_error_text => NULL);
323: APP_EXCEPTION.raise_exception;
324: END lock_row;
325:
326: --------------------------------------------------------------------------------
327: --Start of Comments