DBA Data[Home] [Help]

APPS.PO_ITEMS_SV dependencies on FND_API

Line 726: x_result := FND_API.G_TRUE;

722: AND SYSDATE < NVL(OOD.disable_date, SYSDATE + 1)
723: AND MIR.organization_id = OOD.organization_id
724: AND MIR.inventory_item_id = p_item_id);
725:
726: x_result := FND_API.G_TRUE;
727: EXCEPTION
728: WHEN NO_DATA_FOUND THEN
729: x_result := FND_API.G_FALSE;
730: END;

Line 729: x_result := FND_API.G_FALSE;

725:
726: x_result := FND_API.G_TRUE;
727: EXCEPTION
728: WHEN NO_DATA_FOUND THEN
729: x_result := FND_API.G_FALSE;
730: END;
731: ELSE
732:
733: l_key := PO_CORE_S.get_session_gt_nextval;

Line 735: -- if the line has been saved, then we return FND_API.TRUE only if

731: ELSE
732:
733: l_key := PO_CORE_S.get_session_gt_nextval;
734:
735: -- if the line has been saved, then we return FND_API.TRUE only if
736: -- all the non-cancelled shipments share at least one revision. This
737: -- is essentially done by:
738:
739: -- (1) Count all occurences of the revision numbers for the orgs in

Line 784: x_result := FND_API.G_TRUE;

780: FROM po_session_gt
781: WHERE key = l_key
782: AND num1 = l_shipment_count );
783:
784: x_result := FND_API.G_TRUE;
785:
786: EXCEPTION
787: WHEN NO_DATA_FOUND THEN
788: x_result := FND_API.G_FALSE;

Line 788: x_result := FND_API.G_FALSE;

784: x_result := FND_API.G_TRUE;
785:
786: EXCEPTION
787: WHEN NO_DATA_FOUND THEN
788: x_result := FND_API.G_FALSE;
789: END;
790:
791: DELETE FROM po_session_gt WHERE key = l_key;
792: