DBA Data[Home] [Help]

APPS.PO_DOCUMENT_CHECKS_GRP dependencies on PO_DOCUMENT_CHECKS_PVT

Line 301: PO_DOCUMENT_CHECKS_PVT.po_submission_check(

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

Line 865: PO_DOCUMENT_CHECKS_PVT.PO_SECURITY_CHECK(

861: END IF; /* p_org_id IS NOT NULL*/
862:
863: l_progress := '060';
864: --Call the private PO_Security_Check
865: PO_DOCUMENT_CHECKS_PVT.PO_SECURITY_CHECK(
866: p_api_version => p_api_version,
867: p_query_table => p_query_table,
868: p_owner_id_column => p_owner_id_column,
869: p_employee_id => p_employee_id,

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

928: -- 2c:Document Number and Document Sub Type are not null
929: -- 2d:Vendor Order Num is not null
930: -- Note that the Line/Shipment are optional but a Header/Release is required.
931: --Notes:
932: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check
933: --End of Comments
934: -------------------------------------------------------------------------------
935: PROCEDURE validate_status_check_inputs (
936: p_api_version IN NUMBER,

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

1068: -- Group procedure to find the status of a Purchase Order or a Release
1069: -- This validates inputs and calls the private procedure po_status_check
1070: --Notes:
1071: -- For details on validations, refer to Group Procedure validate_status_check_inputs
1072: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check
1073: --End of Comments
1074: -------------------------------------------------------------------------------
1075: PROCEDURE po_status_check (
1076: p_api_version IN NUMBER,

Line 1139: PO_DOCUMENT_CHECKS_PVT.po_status_check(

1135: END IF;
1136:
1137: --Call the private procedure to actually do po status check
1138: l_progress := '020';
1139: PO_DOCUMENT_CHECKS_PVT.po_status_check(
1140: p_api_version => p_api_version,
1141: p_header_id => l_header_id,
1142: p_release_id => l_release_id,
1143: p_document_type => l_document_type,

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

1182: -- Finds the status of a Purchase Order or a Release
1183: -- This is a convenience procedure for a single entity and takes in scalar input IDs
1184: -- This in turn calls the group procedure po_status_check that takes Table input IDs
1185: --Notes:
1186: -- Detailed comments maintained in PVT Package Body PO_DOCUMENT_CHECKS_PVT.po_status_check
1187: --End of Comments
1188: -------------------------------------------------------------------------------
1189: PROCEDURE po_status_check (
1190: p_api_version IN NUMBER,

Line 1775: l_is_price_updateable := PO_DOCUMENT_CHECKS_PVT.is_pay_item_price_updateable(

1771: d_progress := 10;
1772:
1773: x_return_status := FND_API.g_ret_sts_success;
1774:
1775: l_is_price_updateable := PO_DOCUMENT_CHECKS_PVT.is_pay_item_price_updateable(
1776: p_line_location_id => p_line_location_id
1777: , p_add_reasons_to_msg_list => p_add_reasons_to_msg_list);
1778:
1779: d_progress := 20;