DBA Data[Home] [Help]

APPS.QP_PRICE_BOOK_PVT dependencies on OE_ORDER_PUB

Line 891: OE_ORDER_PUB.G_HDR.agreement_id := p_pb_input_header_rec.pl_agr_bsa_id;

887: --For agreement_id since there is no attribute to map the global structure
888: --column for agreement_id, directly assign value to the ORDER level global
889: --structure column
890: IF p_pb_input_header_rec.price_based_on = 'AGREEMENT' THEN
891: OE_ORDER_PUB.G_HDR.agreement_id := p_pb_input_header_rec.pl_agr_bsa_id;
892: END IF;
893:
894: IF l_line_type_code_tbl.COUNT > 0 THEN
895: FOR ii IN l_line_type_code_tbl.FIRST..l_line_type_code_tbl.LAST

Line 993: OE_ORDER_PUB.G_LINE.agreement_id :=

989: --For agreement_id since there is no attribute to map the global
990: --structure column for agreement_id, directly assign value to the LINE
991: --level global structure column
992: IF p_pb_input_header_rec.price_based_on = 'AGREEMENT' THEN
993: OE_ORDER_PUB.G_LINE.agreement_id :=
994: p_pb_input_header_rec.pl_agr_bsa_id;
995: l_validated_flag := 'Y';
996: ELSE
997: l_validated_flag := 'N';

Line 1022: OE_ORDER_PUB.G_LINE.price_list_id :=

1018: l_bsa_line_price_list_id := null;
1019: END;
1020:
1021: --Assign blanket pricelist to appropriate line level structure column
1022: OE_ORDER_PUB.G_LINE.price_list_id :=
1023: nvl(l_bsa_line_price_list_id, l_bsa_hdr_price_list_id);
1024:
1025: END IF; --If price_based_on is 'BSA'
1026: