DBA Data[Home] [Help]

APPS.PO_DOCUMENT_CHECKS_GRP dependencies on PO_DOCUMENT_CHECKS_PVT

Line 302: PO_DOCUMENT_CHECKS_PVT.po_submission_check(

298: END IF;
299:
300: --Call the private po_submission_check
301:
302: PO_DOCUMENT_CHECKS_PVT.po_submission_check(
303: p_api_version => 2.0
304: , p_action_requested => p_action_requested
305: , p_document_type => p_document_type
306: , p_document_subtype => p_document_subtype

Line 875: PO_DOCUMENT_CHECKS_PVT.PO_SECURITY_CHECK(

871: END IF; /* p_org_id IS NOT NULL*/
872:
873: l_progress := '060';
874: --Call the private PO_Security_Check
875: PO_DOCUMENT_CHECKS_PVT.PO_SECURITY_CHECK(
876: p_api_version => p_api_version,
877: p_query_table => p_query_table,
878: p_owner_id_column => p_owner_id_column,
879: p_employee_id => p_employee_id,

Line 942: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check

938: -- 2c:Document Number and Document Sub Type are not null
939: -- 2d:Vendor Order Num is not null
940: -- Note that the Line/Shipment are optional but a Header/Release is required.
941: --Notes:
942: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check
943: --End of Comments
944: -------------------------------------------------------------------------------
945: PROCEDURE validate_status_check_inputs (
946: p_api_version IN NUMBER,

Line 1082: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check

1078: -- Group procedure to find the status of a Purchase Order or a Release
1079: -- This validates inputs and calls the private procedure po_status_check
1080: --Notes:
1081: -- For details on validations, refer to Group Procedure validate_status_check_inputs
1082: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check
1083: --End of Comments
1084: -------------------------------------------------------------------------------
1085: PROCEDURE po_status_check (
1086: p_api_version IN NUMBER,

Line 1149: PO_DOCUMENT_CHECKS_PVT.po_status_check(

1145: END IF;
1146:
1147: --Call the private procedure to actually do po status check
1148: l_progress := '020';
1149: PO_DOCUMENT_CHECKS_PVT.po_status_check(
1150: p_api_version => p_api_version,
1151: p_header_id => l_header_id,
1152: p_release_id => l_release_id,
1153: p_document_type => l_document_type,

Line 1196: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check

1192: -- Finds the status of a Purchase Order or a Release
1193: -- This is a convenience procedure for a single entity and takes in scalar input IDs
1194: -- This in turn calls the group procedure po_status_check that takes Table input IDs
1195: --Notes:
1196: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check
1197: --End of Comments
1198: -------------------------------------------------------------------------------
1199: PROCEDURE po_status_check (
1200: p_api_version IN NUMBER,

Line 1785: l_is_price_updateable := PO_DOCUMENT_CHECKS_PVT.is_pay_item_price_updateable(

1781: d_progress := 10;
1782:
1783: x_return_status := FND_API.g_ret_sts_success;
1784:
1785: l_is_price_updateable := PO_DOCUMENT_CHECKS_PVT.is_pay_item_price_updateable(
1786: p_line_location_id => p_line_location_id
1787: , p_add_reasons_to_msg_list => p_add_reasons_to_msg_list);
1788:
1789: d_progress := 20;