DBA Data[Home] [Help]

APPS.IBE_QUOTE_MISC_PVT dependencies on FND_PROFILE

Line 9: IF(FND_PROFILE.Value('IBE_ENABLE_MULT_SVC') = 'Y') THEN

5: l_true VARCHAR2(1) := FND_API.G_TRUE;
6:
7: FUNCTION get_multi_svc_profile return varchar2 is
8: BEGIN
9: IF(FND_PROFILE.Value('IBE_ENABLE_MULT_SVC') = 'Y') THEN
10: return FND_API.G_TRUE;
11: ELSE
12: return FND_API.G_FALSE;
13: END IF;

Line 2960: If (FND_Profile.Value('IBE_UPDATE_DRAFT_QUOTES') = 'Y' and l_status_code <> 'DRAFT') THEN

2956: end if;
2957: End if;
2958: Elsif(p_load_type = L_LOAD_FORUPDATE) then
2959: If (l_resource_id is not null and (l_resource_id <> FND_API.G_MISS_NUM)) THEN
2960: If (FND_Profile.Value('IBE_UPDATE_DRAFT_QUOTES') = 'Y' and l_status_code <> 'DRAFT') THEN
2961: -- Update on Draft profile enabled, only allow updates on DRAFT.
2962: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2963: IBE_UTIL.debug('Including the Error code: IBE_SC_INVALID_QUOTE_STS');
2964: END IF;

Line 3363: p_org_id => FND_PROFILE.Value('ORG_ID'),

3359: p_api_version_number => p_api_version_number,
3360: p_init_msg_list => p_init_msg_list,
3361: x_msg_count => x_msg_count,
3362: x_msg_data => x_msg_data,
3363: p_org_id => FND_PROFILE.Value('ORG_ID'),
3364: p_organization_id => p_organization_id,
3365: p_product_item_id => p_product_item_id,
3366: x_return_status => x_return_status,
3367: x_warranty_tbl => l_warranty_tbl

Line 4093: l_control_rec.pricing_request_type := 'ASO';--FND_PROFILE.Value('IBE_PRICE_REQUEST_TYPE');

4089: End loop;
4090: l_control_rec.calculate_tax_flag := 'Y';
4091: l_control_rec.calculate_freight_charge_flag := 'Y';
4092: --mannamra:Removing references to obsoleted profile IBE_PRICE_REQUEST_TYPE see bug 2594529 for details
4093: l_control_rec.pricing_request_type := 'ASO';--FND_PROFILE.Value('IBE_PRICE_REQUEST_TYPE');
4094: l_control_rec.header_pricing_event := FND_PROFILE.Value('IBE_INCART_PRICING_EVENT');
4095: l_control_rec.line_pricing_event := FND_API.G_MISS_CHAR;
4096: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
4097: IBE_UTIL.Debug('Split_quote_line: aso_split_line_int.split_quote_line:start');

Line 4094: l_control_rec.header_pricing_event := FND_PROFILE.Value('IBE_INCART_PRICING_EVENT');

4090: l_control_rec.calculate_tax_flag := 'Y';
4091: l_control_rec.calculate_freight_charge_flag := 'Y';
4092: --mannamra:Removing references to obsoleted profile IBE_PRICE_REQUEST_TYPE see bug 2594529 for details
4093: l_control_rec.pricing_request_type := 'ASO';--FND_PROFILE.Value('IBE_PRICE_REQUEST_TYPE');
4094: l_control_rec.header_pricing_event := FND_PROFILE.Value('IBE_INCART_PRICING_EVENT');
4095: l_control_rec.line_pricing_event := FND_API.G_MISS_CHAR;
4096: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
4097: IBE_UTIL.Debug('Split_quote_line: aso_split_line_int.split_quote_line:start');
4098: END IF;

Line 4251: IF (FND_Profile.Value('IBE_UPDATE_DRAFT_QUOTES') = 'Y' ) THEN -- Update on Draft profile enabled, only allow updates on DRAFT.

4247: END IF;
4248:
4249: IF (l_validate_quote_sts = FND_API.G_TRUE) THEN
4250: IF (l_resource_id is not null) THEN
4251: IF (FND_Profile.Value('IBE_UPDATE_DRAFT_QUOTES') = 'Y' ) THEN -- Update on Draft profile enabled, only allow updates on DRAFT.
4252: IF (l_status_code <> 'DRAFT') THEN
4253: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
4254: FND_Message.Set_Name('IBE', 'IBE_SC_INVALID_QUOTE_STS');
4255: FND_Msg_Pub.Add;