DBA Data[Home] [Help]

APPS.PO_RELGEN_PKG dependencies on PO_DOCUMENT_CHECKS_PVT

Line 399: PO_DOCUMENT_CHECKS_PVT.set_lcm_flag(x_line_location_id,'AFTER',l_return_status);

395: CREATE_RELEASE_SHIPMENT (po_req_lines);
396: CREATE_RELEASE_DISTRIBUTION (po_req_lines,l_req_enc_flag);
397:
398: --
399: PO_DOCUMENT_CHECKS_PVT.set_lcm_flag(x_line_location_id,'AFTER',l_return_status);
400:
401:
402: /* ecso 11/18/97 R11 OE drop ship call back */
403: OE_DROP_SHIP (po_req_lines);

Line 1343: PO_DOCUMENT_CHECKS_PVT.set_lcm_flag(x_line_location_id,'AFTER',l_return_status);*/

1339: --
1340: /*
1341: l_progress := '003';
1342:
1343: PO_DOCUMENT_CHECKS_PVT.set_lcm_flag(x_line_location_id,'AFTER',l_return_status);*/
1344:
1345: EXCEPTION
1346: --
1347: WHEN OTHERS THEN

Line 2462: * (PO_DOCUMENT_CHECKS_PVT.check_po_rel_reqprice).

2458:
2459: /**
2460: * Private Procedure: CHECK_REL_REQPRICE
2461: * Note: This procedure is adapted from the Document Submission Checks API
2462: * (PO_DOCUMENT_CHECKS_PVT.check_po_rel_reqprice).
2463: * Modifies: Inserts error msgs in the concurrent program log.
2464: * Effects: This procedure checks that the release shipment price is
2465: * within the tolerance of the requisition line.
2466: * Returns:

Line 2919: -- Checks API (PO_DOCUMENT_CHECKS_PVT.check_releases):

2915: x_check_status := FND_API.G_RET_STS_ERROR;
2916: END IF;
2917:
2918: -- The following checks were adapted from the Document Submission
2919: -- Checks API (PO_DOCUMENT_CHECKS_PVT.check_releases):
2920:
2921: ----------------------------------------------
2922:
2923: l_progress := '012';

Line 2954: --Bug 10403684 start. Sync the following portion code with the submition check in PO_DOCUMENT_CHECKS_PVT.check_releases()

2950: AND PLL.po_release_id = x_po_release_id
2951: AND POL.po_line_id = PLL.po_line_id
2952: AND POL.min_release_amount is not null
2953: AND POL.min_release_amount >
2954: --Bug 10403684 start. Sync the following portion code with the submition check in PO_DOCUMENT_CHECKS_PVT.check_releases()
2955: ( SELECT decode ( sum ( decode ( PLL2.quantity /*Bug 5028960 pol.quantity */
2956: , NULL , PLL2.amount - nvl(PLL2.amount_cancelled,0)
2957: , PLL2.quantity - nvl(PLL2.quantity_cancelled,0)
2958: )