DBA Data[Home] [Help]

APPS.IBE_QUOTE_SAVE_PVT dependencies on FND_PROFILE

Line 473: l_payment_term_id := fnd_profile.value('IBE_DEFAULT_PAYMENT_TERM_ID');

469: ibe_util.debug('p_qte_header_rec.contract_id is null hence l_payment_term_id is null');
470: END IF;
471: -- changed 4/5/04 for bug 3551866
472: --l_payment_term_id := null;
473: l_payment_term_id := fnd_profile.value('IBE_DEFAULT_PAYMENT_TERM_ID');
474: end if;
475:
476: if(p_hdr_payment_tbl.count>0) then
477: for counter in 1..p_hdr_payment_tbl.count loop

Line 629: x_qte_header_rec.contract_id := NVL(FND_Profile.Value('IBE_USER_DEFAULT_AGREEMENT'),

625: x_qte_header_rec.quote_header_id := FND_API.G_MISS_NUM;
626: -- if create quote and contract_id(agreement_id) is not set
627: -- then check if there is user default agreement
628: IF x_qte_header_rec.contract_id = FND_API.G_MISS_NUM THEN
629: x_qte_header_rec.contract_id := NVL(FND_Profile.Value('IBE_USER_DEFAULT_AGREEMENT'),
630: FND_API.G_MISS_NUM);
631: END IF;
632: -- update quote
633: /*A quote header_id is passed in during every update quote operation*/

Line 809: x_hdr_payment_tbl(1).PAYMENT_TERM_ID := FND_PROFILE.VALUE('IBE_DEFAULT_PAYMENT_TERM_ID');

805: END IF;
806:
807: IF x_qte_header_rec.quote_header_id is null OR l_org_payment_id is null THEN
808: IBE_Util.Debug('initializing header payment record...');
809: x_hdr_payment_tbl(1).PAYMENT_TERM_ID := FND_PROFILE.VALUE('IBE_DEFAULT_PAYMENT_TERM_ID');
810: IBE_Util.Debug('profile option IBE_DEFAULT_PAYMENT_TERM_ID='||x_hdr_payment_tbl(1).PAYMENT_TERM_ID);
811: IF x_qte_header_rec.quote_header_id is not null THEN
812: x_hdr_payment_tbl(1).QUOTE_HEADER_ID := x_qte_header_rec.quote_header_id;
813: END IF;

Line 913: l_combinesameitem := FND_Profile.Value('IBE_SC_MERGE_SHOPCART_LINES');

909: end loop;
910: close c_checkForPRG;
911:
912: IF (p_combinesameitem = FND_API.G_MISS_CHAR) THEN
913: l_combinesameitem := FND_Profile.Value('IBE_SC_MERGE_SHOPCART_LINES');
914: Else
915: l_combinesameitem := p_combinesameitem;
916: END IF;
917:

Line 920: IBE_Util.Debug('IBE_USE_SUPPORT: '||FND_Profile.Value('IBE_USE_SUPPORT'));

916: END IF;
917:
918: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
919: IBE_Util.Debug('Checking line level services profile');
920: IBE_Util.Debug('IBE_USE_SUPPORT: '||FND_Profile.Value('IBE_USE_SUPPORT'));
921: IBE_Util.Debug('IBE_USE_SUPPORT_CART_LEVEL '||FND_Profile.Value('IBE_USE_SUPPORT_CART_LEVEL'));
922: END IF;
923:
924: IF (FND_Profile.Value('IBE_USE_SUPPORT') = 'Y' ) THEN

Line 921: IBE_Util.Debug('IBE_USE_SUPPORT_CART_LEVEL '||FND_Profile.Value('IBE_USE_SUPPORT_CART_LEVEL'));

917:
918: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
919: IBE_Util.Debug('Checking line level services profile');
920: IBE_Util.Debug('IBE_USE_SUPPORT: '||FND_Profile.Value('IBE_USE_SUPPORT'));
921: IBE_Util.Debug('IBE_USE_SUPPORT_CART_LEVEL '||FND_Profile.Value('IBE_USE_SUPPORT_CART_LEVEL'));
922: END IF;
923:
924: IF (FND_Profile.Value('IBE_USE_SUPPORT') = 'Y' ) THEN
925:

Line 924: IF (FND_Profile.Value('IBE_USE_SUPPORT') = 'Y' ) THEN

920: IBE_Util.Debug('IBE_USE_SUPPORT: '||FND_Profile.Value('IBE_USE_SUPPORT'));
921: IBE_Util.Debug('IBE_USE_SUPPORT_CART_LEVEL '||FND_Profile.Value('IBE_USE_SUPPORT_CART_LEVEL'));
922: END IF;
923:
924: IF (FND_Profile.Value('IBE_USE_SUPPORT') = 'Y' ) THEN
925:
926: l_line_level_services := 'Y';
927: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
928: IBE_Util.Debug('line level services turned on');

Line 1743: l_control_rec.header_pricing_event := FND_Profile.Value('IBE_INCART_PRICING_EVENT');

1739: end loop;
1740: close c_getlineids;
1741:
1742: l_control_rec.pricing_request_type := 'ASO';
1743: l_control_rec.header_pricing_event := FND_Profile.Value('IBE_INCART_PRICING_EVENT');
1744: l_control_rec.line_pricing_event := FND_API.G_MISS_CHAR;
1745: l_control_rec.calculate_freight_charge_flag := 'Y';
1746: l_control_rec.calculate_tax_flag := 'Y';
1747:

Line 2064: if (( FND_Profile.Value('IBE_USE_SUPPORT_CART_LEVEL') <> 'N') AND

2060: IBE_Util.Debug('Save_flag in AddItemsToCart_orig is: '||p_save_flag);
2061: END IF;
2062:
2063: -- Check for cart level support
2064: if (( FND_Profile.Value('IBE_USE_SUPPORT_CART_LEVEL') <> 'N') AND
2065: ((FND_Profile.Value('IBE_USE_SUPPORT') = 'N') OR (FND_Profile.Value('IBE_USE_SUPPORT') is null ))) then
2066: l_isCartSupp := 'Y';
2067: else
2068: IF (IBE_UTIL.G_DEBUGON = l_true) THEN

Line 2065: ((FND_Profile.Value('IBE_USE_SUPPORT') = 'N') OR (FND_Profile.Value('IBE_USE_SUPPORT') is null ))) then

2061: END IF;
2062:
2063: -- Check for cart level support
2064: if (( FND_Profile.Value('IBE_USE_SUPPORT_CART_LEVEL') <> 'N') AND
2065: ((FND_Profile.Value('IBE_USE_SUPPORT') = 'N') OR (FND_Profile.Value('IBE_USE_SUPPORT') is null ))) then
2066: l_isCartSupp := 'Y';
2067: else
2068: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2069: IBE_Util.Debug('Cart level support turned off ');

Line 2073: IF ((FND_Profile.Value('IBE_USE_SUPPORT') <> 'N') and

2069: IBE_Util.Debug('Cart level support turned off ');
2070: END IF;
2071: end if;
2072: -- Check for line level support
2073: IF ((FND_Profile.Value('IBE_USE_SUPPORT') <> 'N') and
2074: (FND_Profile.Value('IBE_USE_SUPPORT') is not null)) THEN
2075:
2076: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2077: IBE_Util.Debug('Line level support profile turned on');

Line 2074: (FND_Profile.Value('IBE_USE_SUPPORT') is not null)) THEN

2070: END IF;
2071: end if;
2072: -- Check for line level support
2073: IF ((FND_Profile.Value('IBE_USE_SUPPORT') <> 'N') and
2074: (FND_Profile.Value('IBE_USE_SUPPORT') is not null)) THEN
2075:
2076: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2077: IBE_Util.Debug('Line level support profile turned on');
2078: END IF;

Line 2148: l_combinesameitem := FND_Profile.Value('IBE_SC_MERGE_SHOPCART_LINES');

2144: END IF;
2145:
2146: -- added 8/4/03: if merge case, we might not want to pass SRV info down
2147: IF (p_combinesameitem = FND_API.G_MISS_CHAR) THEN
2148: l_combinesameitem := FND_Profile.Value('IBE_SC_MERGE_SHOPCART_LINES');
2149: Else
2150: l_combinesameitem := p_combinesameitem;
2151: END IF;
2152:

Line 2226: l_suppLevelLookupName := rtrim(ltrim(FND_Profile.Value('IBE_CART_LEVEL_SUPPORT_LOOKUP')));

2222: END LOOP;
2223: END IF; --if l_itemIdListSRV is null and cart is not empty
2224:
2225: -- if add 1st item to cart
2226: l_suppLevelLookupName := rtrim(ltrim(FND_Profile.Value('IBE_CART_LEVEL_SUPPORT_LOOKUP')));
2227: l_suppLevelProfileValue := rtrim(ltrim(FND_Profile.Value('IBE_PREFERED_SUPPORT_LEVEL')));
2228:
2229:
2230: IF (IBE_UTIL.G_DEBUGON = l_true) THEN

Line 2227: l_suppLevelProfileValue := rtrim(ltrim(FND_Profile.Value('IBE_PREFERED_SUPPORT_LEVEL')));

2223: END IF; --if l_itemIdListSRV is null and cart is not empty
2224:
2225: -- if add 1st item to cart
2226: l_suppLevelLookupName := rtrim(ltrim(FND_Profile.Value('IBE_CART_LEVEL_SUPPORT_LOOKUP')));
2227: l_suppLevelProfileValue := rtrim(ltrim(FND_Profile.Value('IBE_PREFERED_SUPPORT_LEVEL')));
2228:
2229:
2230: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2231: IBE_Util.Debug('Support Level Lookup Name: ' || l_suppLevelLookupName);

Line 2661: IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y' ) THEN --Only if contracts is enabled

2657: lx_Price_Adj_Attr_Tbl := lx_Price_Adj_Attr_Tbl_tmp;
2658: lx_Price_Adj_Rltship_Tbl := lx_Price_Adj_Rltship_Tbl_tmp;
2659:
2660: IF(l_attach_contract = FND_API.G_TRUE) THEN
2661: IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y' ) THEN --Only if contracts is enabled
2662:
2663: --instantiate a contract and associate to the quote
2664: /*mannamra: Chnages for MOAC : Bug 4682364*/
2665: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style

Line 2665: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style

2661: IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y' ) THEN --Only if contracts is enabled
2662:
2663: --instantiate a contract and associate to the quote
2664: /*mannamra: Chnages for MOAC : Bug 4682364*/
2665: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style
2666: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style
2667: --
2668: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2669: IBE_UTIL.debug('l_contract_template_id = '||l_contract_template_id);

Line 2725: END IF; --IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y'

2721: END IF;
2722: IF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
2723: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2724: END IF; --IF (l_contract_template_id is not null
2725: END IF; --IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y'
2726: END IF;
2727: END IF; --if l_attach_contract is true;
2728:
2729: -- End of API body.

Line 2814: --l_context_org_id :=fnd_profile.value('ORG_ID');

2810: begin
2811:
2812: l_database_id := fnd_web_config.database_id;
2813: l_session_ticket :=cz_cf_api.icx_session_ticket;
2814: --l_context_org_id :=fnd_profile.value('ORG_ID');
2815: l_responsibility_id := fnd_profile.value('RESP_ID') ;
2816: l_calling_application_id := fnd_profile.value('RESP_APPL_ID');
2817: l_servlet_url := fnd_profile.value('CZ_UIMGR_URL') ;
2818: /*construct the XML string here*/

Line 2815: l_responsibility_id := fnd_profile.value('RESP_ID') ;

2811:
2812: l_database_id := fnd_web_config.database_id;
2813: l_session_ticket :=cz_cf_api.icx_session_ticket;
2814: --l_context_org_id :=fnd_profile.value('ORG_ID');
2815: l_responsibility_id := fnd_profile.value('RESP_ID') ;
2816: l_calling_application_id := fnd_profile.value('RESP_APPL_ID');
2817: l_servlet_url := fnd_profile.value('CZ_UIMGR_URL') ;
2818: /*construct the XML string here*/
2819:

Line 2816: l_calling_application_id := fnd_profile.value('RESP_APPL_ID');

2812: l_database_id := fnd_web_config.database_id;
2813: l_session_ticket :=cz_cf_api.icx_session_ticket;
2814: --l_context_org_id :=fnd_profile.value('ORG_ID');
2815: l_responsibility_id := fnd_profile.value('RESP_ID') ;
2816: l_calling_application_id := fnd_profile.value('RESP_APPL_ID');
2817: l_servlet_url := fnd_profile.value('CZ_UIMGR_URL') ;
2818: /*construct the XML string here*/
2819:
2820: str_database_id := ''||l_database_id||'';

Line 2817: l_servlet_url := fnd_profile.value('CZ_UIMGR_URL') ;

2813: l_session_ticket :=cz_cf_api.icx_session_ticket;
2814: --l_context_org_id :=fnd_profile.value('ORG_ID');
2815: l_responsibility_id := fnd_profile.value('RESP_ID') ;
2816: l_calling_application_id := fnd_profile.value('RESP_APPL_ID');
2817: l_servlet_url := fnd_profile.value('CZ_UIMGR_URL') ;
2818: /*construct the XML string here*/
2819:
2820: str_database_id := ''||l_database_id||'';
2821: str_session_ticket :=''||l_session_ticket||'';

Line 3096: l_servlet_url := fnd_profile.value('CZ_UIMGR_URL');

3092: END IF;
3093:
3094: if (l_number_of_bundles > 0) then
3095: l_bundle_counter := 0;
3096: l_servlet_url := fnd_profile.value('CZ_UIMGR_URL');
3097: -- by now the control record has already been set not to price
3098: -- we will restore the input pricing parameters on the last loop
3099:
3100: /*Loop through the model quote line ids obtained from the previous call to AddItemsToCart*/

Line 3501: L_profile_value := FND_Profile.Value('IBE_EXP_SAVE_CART');

3497: )
3498: or((p_quote_header_rec.quote_name = fnd_api.g_miss_char)
3499: and (l_cart_name is not null)
3500: and (l_cart_name <>'IBE_PRMT_SC_UNNAMED'))) then --MANNAMRA: 16/09/02:Changed IBEACTIVECART to IBE_PRMT_SC_UNNAMED
3501: L_profile_value := FND_Profile.Value('IBE_EXP_SAVE_CART');
3502: Else
3503: L_profile_value := FND_Profile.Value('IBE_EXP_ACTIVE_CART');
3504: End If;
3505:

Line 3503: L_profile_value := FND_Profile.Value('IBE_EXP_ACTIVE_CART');

3499: and (l_cart_name is not null)
3500: and (l_cart_name <>'IBE_PRMT_SC_UNNAMED'))) then --MANNAMRA: 16/09/02:Changed IBEACTIVECART to IBE_PRMT_SC_UNNAMED
3501: L_profile_value := FND_Profile.Value('IBE_EXP_SAVE_CART');
3502: Else
3503: L_profile_value := FND_Profile.Value('IBE_EXP_ACTIVE_CART');
3504: End If;
3505:
3506: /*If((p_quote_header_rec.quote_name <> fnd_api.g_miss_char
3507: and p_quote_header_rec.quote_name <> 'IBEACTIVECART' )) then

Line 3511: L_profile_value := FND_Profile.Value('IBE_EXP_SAVE_CART');

3507: and p_quote_header_rec.quote_name <> 'IBEACTIVECART' )) then
3508: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3509: IBE_UTIL.debug('Using the IBE_EXP_SAVE_CART profile value');
3510: END IF;
3511: L_profile_value := FND_Profile.Value('IBE_EXP_SAVE_CART');
3512:
3513: Elsif((l_cart_name = 'IBEACTIVECART')
3514: or(p_quote_header_rec.quote_name = 'IBEACTIVECART')) then
3515: IF (IBE_UTIL.G_DEBUGON = l_true) THEN

Line 3518: L_profile_value := FND_Profile.Value('IBE_EXP_ACTIVE_CART');

3514: or(p_quote_header_rec.quote_name = 'IBEACTIVECART')) then
3515: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3516: IBE_UTIL.debug('Using the IBE_EXP_ACTIVE_CART profile value');
3517: END IF;
3518: L_profile_value := FND_Profile.Value('IBE_EXP_ACTIVE_CART');
3519: End if;*/
3520: x_expiration_date := trunc(sysdate)+nvl(l_profile_value,0);
3521: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3522: ibe_util.debug('Expiration date returned by get_quote_exp_date is suppressed');

Line 3742: --l_salesrep_id := FND_Profile.Value('ASO_DEFAULT_PERSON_ID'); --Old code

3738: /*--10/17/2005: Mannamra: In light of MOAC chages, default salesrep setting is no
3739: longer a profile value but is instead stored
3740: as Quoting parameter. Bug ref: 4682364*/
3741:
3742: --l_salesrep_id := FND_Profile.Value('ASO_DEFAULT_PERSON_ID'); --Old code
3743: l_salesrep_id := ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_SALESREP); --new way of getting the salesrep id
3744:
3745: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3746: IBE_UTIL.debug('IBE_QUOTE_SAVE_PVT.Request_for_sales_assistance: salesrep id from quote_attrib: '||l_salesrep_id);

Line 3856: IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y' ) THEN --Only if contracts is enabled

3852: IBE_UTIL.debug('contract context is Yes, before calling get_terms_template');
3853: END IF;
3854: */
3855:
3856: IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y' ) THEN --Only if contracts is enabled
3857: --check whether ther is already a contract associated with the quote
3858: IF (OKC_TERMS_UTIL_GRP.Get_Terms_Template('QUOTE', p_quote_header_id) IS NULL) THEN
3859: --no contract associated with the quote yet, hence get the contract template id.
3860: --instantiate a contract and associate to the quote

Line 3862: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style

3858: IF (OKC_TERMS_UTIL_GRP.Get_Terms_Template('QUOTE', p_quote_header_id) IS NULL) THEN
3859: --no contract associated with the quote yet, hence get the contract template id.
3860: --instantiate a contract and associate to the quote
3861: /*Mannamra: Changes for MOAC: Bug 4682364**/
3862: --l_contract_template_id := FND_Profile.Value('ASO_DEFAULT_CONTRACT_TEMPLATE'); --Old style
3863: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style
3864: /*Mannamra: End of changes for MOAC**/
3865: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3866: IBE_UTIL.debug('l_contract_template_id = '||l_contract_template_id);

Line 4526: l_combinesameitem := FND_Profile.Value('IBE_SC_MERGE_SHOPCART_LINES');

4522: -- set default value for line
4523: --DBMS_OUTPUT.PUT_line('before setlinedefaultval ');
4524:
4525: IF (p_combinesameitem = FND_API.G_MISS_CHAR) THEN
4526: l_combinesameitem := FND_Profile.Value('IBE_SC_MERGE_SHOPCART_LINES');
4527: Else
4528: l_combinesameitem := p_combinesameitem;
4529: END IF;
4530: -- bug 6146600, scnagara

Line 4686: IF (p_control_rec.header_pricing_event = FND_Profile.Value('IBE_INCART_PRICING_EVENT') and p_control_rec.price_mode = 'CHANGE_LINE' ) THEN

4682: ASO_PRICING_INT.G_HEADER_REC := NULL;
4683: l_Qte_Header_Rec.MINISITE_ID := p_minisite_id ;
4684:
4685: -- change line logic pricing
4686: IF (p_control_rec.header_pricing_event = FND_Profile.Value('IBE_INCART_PRICING_EVENT') and p_control_rec.price_mode = 'CHANGE_LINE' ) THEN
4687: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
4688: IBE_UTIL.debug('Its a create quote, pricing is turned on, change line pricing is on ');
4689: IBE_UTIL.debug('Setting pricing indicators to C');
4690: END IF;

Line 4908: --l_pricebasedonowner := FND_Profile.Value('IBE_SC_PRICE_BASED_ON_OWNER');

4904:
4905: END IF;
4906: -- End Bug# 1955991
4907:
4908: --l_pricebasedonowner := FND_Profile.Value('IBE_SC_PRICE_BASED_ON_OWNER');
4909: l_ln_payment_tbl := p_Ln_Payment_Tbl;
4910: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
4911: Ibe_util.debug('Printing quote_line_tbl passedd to get_termid_pricelistid');
4912: END IF;

Line 6355: l_ship_method_code := FND_PROFILE.VALUE('IBE_PREFERED_SHIP_METHOD');

6351: if (l_isDone <> 'Y') then
6352: -- 2.1 First, look at the prefered Shipment Method profile:
6353: -- if there is a value then we have to validate this value with the list of shipment methods
6354: -- created from an intersection of shipment methods in the minisite and those in the operation unit
6355: l_ship_method_code := FND_PROFILE.VALUE('IBE_PREFERED_SHIP_METHOD');
6356:
6357: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
6358: IBE_Util.Debug('l_ship_method_code :'||l_ship_method_code||'*');
6359: END IF;

Line 6631: l_ret_credit_pref := NVL(FND_PROFILE.VALUE('IBE_RETAIN_CC_PREFS'),'Y');

6627: END IF;
6628: --DBMS_OUTPUT.PUT_line('Before calling IBE_CUSTOMER_pvt.get_default_credit_card_info');
6629: /* CC consolidation */
6630:
6631: l_ret_credit_pref := NVL(FND_PROFILE.VALUE('IBE_RETAIN_CC_PREFS'),'Y');
6632: G_PERM_VIEW_PAY_BOOK := IBE_UTIL.check_user_permission('IBE_USE_PAYMENT_BOOK');
6633:
6634: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
6635: IBE_Util.Debug('l_ret_credit_pref:'||l_ret_credit_pref);

Line 6746: px_hd_Payment_Tbl(1).PAYMENT_TERM_ID := fnd_profile.value('IBE_DEFAULT_PAYMENT_TERM_ID');

6742: if (l_payment_type_code = 'INVOICE') then
6743: l_payment_type_code := null;
6744: end if;
6745: px_hd_Payment_Tbl(1).PAYMENT_TYPE_CODE := l_payment_type_code;
6746: px_hd_Payment_Tbl(1).PAYMENT_TERM_ID := fnd_profile.value('IBE_DEFAULT_PAYMENT_TERM_ID');
6747:
6748: /*CC consolidation*/
6749: if ((lx_cc_assignment_id <> FND_API.G_MISS_NUM) and (lx_cc_assignment_id is not null)) then
6750: px_hd_Payment_Tbl(1).INSTR_ASSIGNMENT_ID := lx_cc_assignment_id;

Line 7453: l_exp_date_profile_value := FND_Profile.Value('IBE_EXP_SAVE_CART');

7449: END IF;
7450: END LOOP;
7451:
7452: -- Get the expiration date from the Saved Cart expiration profile.
7453: l_exp_date_profile_value := FND_Profile.Value('IBE_EXP_SAVE_CART');
7454: l_quote_expiration_date := trunc(sysdate)+nvl(l_exp_date_profile_value,0);
7455:
7456: -- Get Header Pricing event from IBE profile as it is needed for both calls (iStore duplicate cart logic and ASO copy quote)
7457: l_header_pricing_event := FND_Profile.Value('IBE_INCART_PRICING_EVENT');

Line 7457: l_header_pricing_event := FND_Profile.Value('IBE_INCART_PRICING_EVENT');

7453: l_exp_date_profile_value := FND_Profile.Value('IBE_EXP_SAVE_CART');
7454: l_quote_expiration_date := trunc(sysdate)+nvl(l_exp_date_profile_value,0);
7455:
7456: -- Get Header Pricing event from IBE profile as it is needed for both calls (iStore duplicate cart logic and ASO copy quote)
7457: l_header_pricing_event := FND_Profile.Value('IBE_INCART_PRICING_EVENT');
7458:
7459: -- If the cart is a shared cart or published quote, then copy only items and agreements and commitments if applicable
7460: -- Else call ASO copy_quote api to copy the entire cart.
7461:

Line 8501: IF (FND_Profile.Value('IBE_PRICE_CHANGED_LINES') = 'Y') THEN -- bug 10638145, scnagara

8497: l_quote_header_rec.quote_header_id := p_quote_header_id;
8498: l_quote_header_rec.currency_code := p_currency_code;
8499: l_quote_header_rec.price_list_id := p_price_list_id;
8500:
8501: IF (FND_Profile.Value('IBE_PRICE_CHANGED_LINES') = 'Y') THEN -- bug 10638145, scnagara
8502: l_control_rec.price_mode := 'CHANGE_LINE';
8503: l_quote_header_rec.PRICING_STATUS_INDICATOR := 'I';
8504: l_quote_header_rec.TAX_STATUS_INDICATOR := 'I';
8505: ELSE