DBA Data[Home] [Help]

APPS.PO_AUTOCREATE_GROUPING_PVT dependencies on PO_THIRD_PARTY_STOCK_GRP

Line 1244: PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag(

1240: FROM po_requisition_lines_all PRL
1241: WHERE PRL.requisition_line_id = p_req_line_id;
1242:
1243: l_req_line_delivery_info.consigned_flag :=
1244: PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag(
1245: NULL, --bug 5976612
1246: l_item_id, -- p_item_id
1247: p_supplier_id, -- p_supplier_id
1248: p_site_id, -- p_site_id

Line 1255: These changes are driven by the changes done to the function PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag. */

1251:
1252: /* Bug 5976612
1253: Added the 'NULL' parameter in the beginning in the place of org id.
1254: Moved the l_req_line_delivery_info.ship_to_organization_id parameter to end. This is inventory org id.
1255: These changes are driven by the changes done to the function PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag. */
1256:
1257: IF (PO_LOG.d_proc) THEN
1258: PO_LOG.proc_end(d_mod);
1259: END IF;

Line 2709: x_consigned_flag_tbl(i) := PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag

2705: WHERE requisition_line_id = p_req_line_id_tbl(i);
2706:
2707: IF PO_LOG.d_stmt THEN PO_LOG.stmt(d_mod,d_position,'l_item_id',l_item_id); END IF;
2708:
2709: x_consigned_flag_tbl(i) := PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag
2710: ( p_builder_org_id
2711: , l_item_id
2712: , p_builder_supplier_id
2713: , p_builder_site_id

Line 2718: These changes are driven by the changes done to the function PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag. */

2714: ,NULL --Bug 5976612
2715: );
2716: /* Bug 5976612
2717: Added the 'NULL' parameter in the end for the inv org id.
2718: These changes are driven by the changes done to the function PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag. */
2719:
2720: END LOOP;
2721:
2722: IF PO_LOG.d_proc THEN PO_LOG.proc_return(d_mod,x_consigned_flag_tbl); END IF;