DBA Data[Home] [Help]

APPS.PV_PARTNER_PROGRAM_PVT dependencies on QP_GLOBALS

Line 436: -- l_operation CONSTANT VARCHAR2(30) := QP_GLOBALS.G_OPR_UPDATE; -- create or update

432:
433: v_pricing_attr_tbl QP_PRICE_LIST_PUB.Pricing_Attr_Tbl_Type;
434: v_pricing_attr_val_tbl QP_PRICE_LIST_PUB.Pricing_Attr_Val_Tbl_Type;
435:
436: -- l_operation CONSTANT VARCHAR2(30) := QP_GLOBALS.G_OPR_UPDATE; -- create or update
437:
438:
439: -- harding the value of the l_price_list_hdr_id but need to get from profile
440: l_price_list_hdr_id CONSTANT NUMBER := 1000;

Line 471: -- IF l_operation = QP_GLOBALS.G_OPR_UPDATE THEN

467: --dbms_output.put_line('passed p_operation in create_pricelist_line is ' || p_operation);
468: --dbms_output.put_line('passed no_fee_flag in create_pricelist_line is ' || l_ptr_prgm_rec.no_fee_flag);
469:
470: -- Begin Price list line creation
471: -- IF l_operation = QP_GLOBALS.G_OPR_UPDATE THEN
472: l_price_list_line_tbl(1).list_line_type_code := 'PLL';
473: l_price_list_line_tbl(1).operation := QP_GLOBALS.G_OPR_CREATE;--l_operation ;
474: l_price_list_line_tbl(1).base_uom_code := l_uom_code;
475: l_price_list_line_tbl(1).arithmetic_operator := 'UNIT_PRICE';

Line 473: l_price_list_line_tbl(1).operation := QP_GLOBALS.G_OPR_CREATE;--l_operation ;

469:
470: -- Begin Price list line creation
471: -- IF l_operation = QP_GLOBALS.G_OPR_UPDATE THEN
472: l_price_list_line_tbl(1).list_line_type_code := 'PLL';
473: l_price_list_line_tbl(1).operation := QP_GLOBALS.G_OPR_CREATE;--l_operation ;
474: l_price_list_line_tbl(1).base_uom_code := l_uom_code;
475: l_price_list_line_tbl(1).arithmetic_operator := 'UNIT_PRICE';
476: l_price_list_line_tbl(1).list_header_id := 1000; --l_price_list_hdr_id;
477: l_price_list_line_tbl(1).list_line_id := FND_API.G_MISS_NUM;

Line 490: l_pricing_attr_tbl(1).operation := QP_GLOBALS.G_OPR_CREATE;--QP_GLOBALS.G_OPR_UPDATE;

486: -- l_price_list_line_tbl(1).revision := 1;
487:
488:
489: -- populate pricing attributes table.
490: l_pricing_attr_tbl(1).operation := QP_GLOBALS.G_OPR_CREATE;--QP_GLOBALS.G_OPR_UPDATE;
491: l_pricing_attr_tbl(1).PRODUCT_ATTRIBUTE_CONTEXT := 'ITEM';
492: l_pricing_attr_tbl(1).PRODUCT_ATTRIBUTE := 'PRICING_ATTRIBUTE1';
493: l_pricing_attr_tbl(1).PRODUCT_ATTR_VALUE := p_inventory_item_id; --p_inventory_item_id; -- output of the Item Creation API
494: l_pricing_attr_tbl(1).PRICE_LIST_LINE_index :=1;

Line 502: if (p_operation = QP_GLOBALS.G_OPR_UPDATE) THEN

498: -- IF (PV_DEBUG_HIGH_ON) THEN PVX_UTILITY_PVT.debug_message('l_ptr_prgm_rec.no_fee_flag ' || l_ptr_prgm_rec.no_fee_flag); END IF;
499:
500:
501:
502: if (p_operation = QP_GLOBALS.G_OPR_UPDATE) THEN
503:
504: l_price_list_line_tbl(1).list_line_id := p_list_header_id; --p_list_header_id; -- need to change the var name
505: l_price_list_line_tbl(1).list_header_id := 1000; -- p_list_header_id;
506: l_price_list_line_tbl(1).operation := QP_GLOBALS.G_OPR_UPDATE;

Line 506: l_price_list_line_tbl(1).operation := QP_GLOBALS.G_OPR_UPDATE;

502: if (p_operation = QP_GLOBALS.G_OPR_UPDATE) THEN
503:
504: l_price_list_line_tbl(1).list_line_id := p_list_header_id; --p_list_header_id; -- need to change the var name
505: l_price_list_line_tbl(1).list_header_id := 1000; -- p_list_header_id;
506: l_price_list_line_tbl(1).operation := QP_GLOBALS.G_OPR_UPDATE;
507: l_pricing_attr_tbl(1).operation := QP_GLOBALS.G_OPR_UPDATE;
508: l_pricing_attr_tbl(1).pricing_attribute_id := p_pricing_attribute_id;
509:
510: -- IF (l_ptr_prgm_rec.no_fee_flag = 'N') THEN

Line 507: l_pricing_attr_tbl(1).operation := QP_GLOBALS.G_OPR_UPDATE;

503:
504: l_price_list_line_tbl(1).list_line_id := p_list_header_id; --p_list_header_id; -- need to change the var name
505: l_price_list_line_tbl(1).list_header_id := 1000; -- p_list_header_id;
506: l_price_list_line_tbl(1).operation := QP_GLOBALS.G_OPR_UPDATE;
507: l_pricing_attr_tbl(1).operation := QP_GLOBALS.G_OPR_UPDATE;
508: l_pricing_attr_tbl(1).pricing_attribute_id := p_pricing_attribute_id;
509:
510: -- IF (l_ptr_prgm_rec.no_fee_flag = 'N') THEN
511: -- dbms_output.put_line('HERE UPDATING THE PRICE RECORD WITH NEW PRICE VALUES ');

Line 1578: -- p_operation => QP_GLOBALS.G_OPR_CREATE,

1574:
1575: -- create_pricelist_line(
1576: -- p_ptr_prgm_rec => l_ptr_prgm_rec,
1577: -- p_inventory_item_id => l_Item_rec.inventory_item_id,
1578: -- p_operation => QP_GLOBALS.G_OPR_CREATE,
1579: --
1580: -- -- The following two variables will be used in case of Update only
1581: -- p_list_header_id => l_list_line_id, -- l_list_header_id,
1582: -- p_pricing_attribute_id => l_pricing_attribute_id,