DBA Data[Home] [Help]

APPS.PO_AUTOCREATE_GROUPING_PVT dependencies on PO_THIRD_PARTY_STOCK_GRP

Line 2722: PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag(

2718: FROM po_requisition_lines_all PRL
2719: WHERE PRL.requisition_line_id = p_req_line_id;
2720:
2721: l_req_line_delivery_info.consigned_flag :=
2722: PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag(
2723: NULL, --bug 5976612
2724: l_item_id, -- p_item_id
2725: p_supplier_id, -- p_supplier_id
2726: p_site_id, -- p_site_id

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

2729:
2730: /* Bug 5976612
2731: Added the 'NULL' parameter in the beginning in the place of org id.
2732: Moved the l_req_line_delivery_info.ship_to_organization_id parameter to end. This is inventory org id.
2733: These changes are driven by the changes done to the function PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag. */
2734:
2735: IF (PO_LOG.d_proc) THEN
2736: PO_LOG.proc_end(d_mod);
2737: END IF;

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

4890: WHERE requisition_line_id = p_req_line_id_tbl(i);
4891:
4892: IF PO_LOG.d_stmt THEN PO_LOG.stmt(d_mod,d_position,'l_item_id',l_item_id); END IF;
4893:
4894: x_consigned_flag_tbl(i) := PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag
4895: ( p_builder_org_id
4896: , l_item_id
4897: , p_builder_supplier_id
4898: , p_builder_site_id

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

4899: ,NULL --Bug 5976612
4900: );
4901: /* Bug 5976612
4902: Added the 'NULL' parameter in the end for the inv org id.
4903: These changes are driven by the changes done to the function PO_THIRD_PARTY_STOCK_GRP.get_consigned_flag. */
4904:
4905: END LOOP;
4906:
4907: IF PO_LOG.d_proc THEN PO_LOG.proc_return(d_mod,x_consigned_flag_tbl); END IF;