DBA Data[Home] [Help]

APPS.IBE_ORD_ONECLICK_PVT dependencies on FND_PROFILE

Line 852: if (FND_Profile.Value('IBE_PRICE_CHANGED_LINES') = 'Y' and p_price_mode = 'CHANGE_LINE') then

848: l_control_rec.CALCULATE_TAX_FLAG := 'Y';
849: l_control_rec.CALCULATE_FREIGHT_CHARGE_FLAG := 'Y';
850:
851: l_control_rec.PRICE_MODE:= p_price_mode;
852: if (FND_Profile.Value('IBE_PRICE_CHANGED_LINES') = 'Y' and p_price_mode = 'CHANGE_LINE') then
853: l_qte_header_rec.PRICING_STATUS_INDICATOR := 'I';
854: l_qte_header_rec.TAX_STATUS_INDICATOR := 'I';
855: end if;
856:

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

927: IF (OKC_TERMS_UTIL_GRP.Get_Terms_Template('QUOTE', p_cart_id) IS NULL) THEN -- Checking whether a contract has already been attached (Bug 5260372)
928: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
929: ibe_util.debug('ibe_ord_oneclick_pvt.Express_Buy_Order - : No contract currently attached !');
930: END IF;
931: IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y' ) THEN --Only if contracts is enabled
932: --instantiate a contract and associate to the quote
933: /*mannamra: changes for MOAC: Bug 4682364 */
934: --l_contract_template_id := FND_PROFILE.VALUE('ASO_DEFAULT_CONTRACT_TEMPLATE'); old style
935: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style

Line 934: --l_contract_template_id := FND_PROFILE.VALUE('ASO_DEFAULT_CONTRACT_TEMPLATE'); old style

930: END IF;
931: IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS') = 'Y' ) THEN --Only if contracts is enabled
932: --instantiate a contract and associate to the quote
933: /*mannamra: changes for MOAC: Bug 4682364 */
934: --l_contract_template_id := FND_PROFILE.VALUE('ASO_DEFAULT_CONTRACT_TEMPLATE'); old style
935: l_contract_template_id := to_number(ASO_UTILITY_PVT.GET_OU_ATTRIBUTE_VALUE(ASO_UTILITY_PVT.G_DEFAULT_CONTRACT_TEMPLATE)); --New style
936: /*mannamra: end of changes for MOAC*/
937:
938: IF (l_contract_template_id is not null) THEN

Line 964: END IF; --IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS')

960: IF (x_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
961: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
962: END IF;
963: END IF; --If contract template id is not null
964: END IF; --IF (FND_Profile.Value('OKC_ENABLE_SALES_CONTRACTS')
965: ELSE
966: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
967: ibe_util.debug('ibe_ord_oneclick_pvt.Express_Buy_Order - : A contract is already instanciated for this quote');
968: END IF;

Line 1519: /*l_payment_rec.payment_term_id := fnd_profile.value('IBE_DEFAULT_PAYMENT_TERM_ID');

1515: l_payment_rec.operation_code := 'UPDATE';
1516: end if;
1517: CLOSE c_payment;
1518:
1519: /*l_payment_rec.payment_term_id := fnd_profile.value('IBE_DEFAULT_PAYMENT_TERM_ID');
1520: l_payment_rec.payment_type_code := 'CREDIT_CARD';
1521: l_payment_rec.payment_ref_number := l_credit_card_num;
1522: l_payment_rec.credit_card_expiration_date := l_credit_card_exp;
1523: l_payment_rec.credit_card_code := l_credit_card_name;