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 2842: If (FND_Profile.Value('IBE_UPDATE_DRAFT_QUOTES') = 'Y' and l_status_code <> 'DRAFT') THEN

2838: end if;
2839: End if;
2840: Elsif(p_load_type = L_LOAD_FORUPDATE) then
2841: If (l_resource_id is not null and (l_resource_id <> FND_API.G_MISS_NUM)) THEN
2842: If (FND_Profile.Value('IBE_UPDATE_DRAFT_QUOTES') = 'Y' and l_status_code <> 'DRAFT') THEN
2843: -- Update on Draft profile enabled, only allow updates on DRAFT.
2844: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2845: IBE_UTIL.debug('Including the Error code: IBE_SC_INVALID_QUOTE_STS');
2846: END IF;

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

3241: p_api_version_number => p_api_version_number,
3242: p_init_msg_list => p_init_msg_list,
3243: x_msg_count => x_msg_count,
3244: x_msg_data => x_msg_data,
3245: p_org_id => FND_PROFILE.Value('ORG_ID'),
3246: p_organization_id => p_organization_id,
3247: p_product_item_id => p_product_item_id,
3248: x_return_status => x_return_status,
3249: x_warranty_tbl => l_warranty_tbl

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

3971: End loop;
3972: l_control_rec.calculate_tax_flag := 'Y';
3973: l_control_rec.calculate_freight_charge_flag := 'Y';
3974: --mannamra:Removing references to obsoleted profile IBE_PRICE_REQUEST_TYPE see bug 2594529 for details
3975: l_control_rec.pricing_request_type := 'ASO';--FND_PROFILE.Value('IBE_PRICE_REQUEST_TYPE');
3976: l_control_rec.header_pricing_event := FND_PROFILE.Value('IBE_INCART_PRICING_EVENT');
3977: l_control_rec.line_pricing_event := FND_API.G_MISS_CHAR;
3978: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3979: IBE_UTIL.Debug('Split_quote_line: aso_split_line_int.split_quote_line:start');

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

3972: l_control_rec.calculate_tax_flag := 'Y';
3973: l_control_rec.calculate_freight_charge_flag := 'Y';
3974: --mannamra:Removing references to obsoleted profile IBE_PRICE_REQUEST_TYPE see bug 2594529 for details
3975: l_control_rec.pricing_request_type := 'ASO';--FND_PROFILE.Value('IBE_PRICE_REQUEST_TYPE');
3976: l_control_rec.header_pricing_event := FND_PROFILE.Value('IBE_INCART_PRICING_EVENT');
3977: l_control_rec.line_pricing_event := FND_API.G_MISS_CHAR;
3978: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
3979: IBE_UTIL.Debug('Split_quote_line: aso_split_line_int.split_quote_line:start');
3980: END IF;

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

4129: END IF;
4130:
4131: IF (l_validate_quote_sts = FND_API.G_TRUE) THEN
4132: IF (l_resource_id is not null) THEN
4133: IF (FND_Profile.Value('IBE_UPDATE_DRAFT_QUOTES') = 'Y' ) THEN -- Update on Draft profile enabled, only allow updates on DRAFT.
4134: IF (l_status_code <> 'DRAFT') THEN
4135: IF FND_Msg_Pub.Check_Msg_Level (FND_Msg_Pub.G_MSG_LVL_ERROR) THEN
4136: FND_Message.Set_Name('IBE', 'IBE_SC_INVALID_QUOTE_STS');
4137: FND_Msg_Pub.Add;