DBA Data[Home] [Help]

APPS.INV_RESERVATION_WORKFLOW dependencies on FND_API

Line 457: RAISE fnd_api.g_exc_error;

453: l_requestor_user_name VARCHAR2(100);
454: l_user_to_notify VARCHAR2(100);
455: BEGIN
456: IF p_reservation_id IS NULL THEN
457: RAISE fnd_api.g_exc_error;
458: END IF;
459:
460: SELECT
461: organization_id

Line 509: RAISE fnd_api.g_exc_error;

505: get_item_number(l_organization_id
506: , l_inventory_item_id
507: , l_inventory_item_number);
508: IF l_inventory_item_number IS NULL THEN
509: RAISE fnd_api.g_exc_error;
510: END IF;
511:
512: -- find out locator
513: get_locator(l_organization_id

Line 517: RAISE fnd_api.g_exc_error;

513: get_locator(l_organization_id
514: , l_locator_id
515: , l_locator);
516: IF l_locator IS NULL THEN
517: RAISE fnd_api.g_exc_error;
518: END IF;
519:
520: SELECT transaction_source_type_name INTO l_demand_source_type
521: FROM mtl_txn_source_types

Line 593: RAISE fnd_api.g_exc_error;

589: , itemkey
590: , To_char(actid)
591: , command
592: );
593: RAISE fnd_api.g_exc_error;
594: END selector;
595:
596: END inv_reservation_workflow;