DBA Data[Home] [Help]

APPS.QP_PRICE_BOOK_PVT dependencies on OE_ORDER_PUB

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

870: --For agreement_id since there is no attribute to map the global structure
871: --column for agreement_id, directly assign value to the ORDER level global
872: --structure column
873: IF p_pb_input_header_rec.price_based_on = 'AGREEMENT' THEN
874: OE_ORDER_PUB.G_HDR.agreement_id := p_pb_input_header_rec.pl_agr_bsa_id;
875: END IF;
876:
877: IF l_line_type_code_tbl.COUNT > 0 THEN
878: FOR ii IN l_line_type_code_tbl.FIRST..l_line_type_code_tbl.LAST

Line 975: OE_ORDER_PUB.G_LINE.agreement_id :=

971: --For agreement_id since there is no attribute to map the global
972: --structure column for agreement_id, directly assign value to the LINE
973: --level global structure column
974: IF p_pb_input_header_rec.price_based_on = 'AGREEMENT' THEN
975: OE_ORDER_PUB.G_LINE.agreement_id :=
976: p_pb_input_header_rec.pl_agr_bsa_id;
977: l_validated_flag := 'Y';
978: ELSE
979: l_validated_flag := 'N';

Line 1004: OE_ORDER_PUB.G_LINE.price_list_id :=

1000: l_bsa_line_price_list_id := null;
1001: END;
1002:
1003: --Assign blanket pricelist to appropriate line level structure column
1004: OE_ORDER_PUB.G_LINE.price_list_id :=
1005: nvl(l_bsa_line_price_list_id, l_bsa_hdr_price_list_id);
1006:
1007: END IF; --If price_based_on is 'BSA'
1008: