DBA Data[Home] [Help]

APPS.PO_DOCUMENT_CONTROL_PVT dependencies on PO_CONSTANTS_SV

Line 3886: IF (p_doc_subtype = PO_CONSTANTS_SV.STANDARD) THEN

3882: --
3883: -- For cancel or finally close on Standard POs, call the OTL API to check
3884: -- if there are any submitted/approved timecards associated with the
3885: -- PO header/line. If so, return an error.
3886: IF (p_doc_subtype = PO_CONSTANTS_SV.STANDARD) THEN
3887: d_pos := 50;
3888: IF p_doc_level = PO_CORE_S.g_doc_level_HEADER THEN
3889: l_otl_field_name := PO_HXC_INTERFACE_PVT.field_PO_HEADER_ID;
3890: l_otl_field_value := p_doc_header_id;

Line 4864: AND p_doc_subtype = PO_CONSTANTS_SV.STANDARD) THEN

4860: d_pos := 40;
4861: -- Check if a given PO contains at least one Services line, i.e. if the
4862: -- value basis of any line is FIXED PRICE or RATE
4863: IF(p_doc_level = PO_CORE_S.g_doc_level_HEADER
4864: AND p_doc_subtype = PO_CONSTANTS_SV.STANDARD) THEN
4865:
4866: IF (PO_SERVICES_PVT.check_po_has_svc_line_with_req(p_doc_header_id)) THEN
4867: d_pos := 50;
4868: x_svc_line_with_req_flag := 'Y';

Line 4876: IF(p_doc_subtype = PO_CONSTANTS_SV.STANDARD) THEN

4872:
4873: d_pos := 60;
4874: -- Checks if the line type is Fixed Price Service AND a backing
4875: -- requisition exists for the given line or shipment
4876: IF(p_doc_subtype = PO_CONSTANTS_SV.STANDARD) THEN
4877: IF p_doc_level = PO_CORE_S.g_doc_level_LINE THEN
4878: IF PO_SERVICES_PVT.is_FPS_po_line_with_req(p_doc_level_id) THEN
4879: x_fps_line_ship_with_req_flag := 'Y';
4880: END IF;