DBA Data[Home] [Help]

APPS.OE_INBOUND_INT dependencies on FND_PROFILE

Line 37: l_list_line_id := to_number(FND_PROFILE.VALUE('ONT_O2C_MANUAL_MODIFIER'));

33: --
34: -- Check if the profile 'ONT_AIA_MANUAL_MODIFIER' has any value,
35: -- if not exit without any processing to retain old behaviour.
36: --
37: l_list_line_id := to_number(FND_PROFILE.VALUE('ONT_O2C_MANUAL_MODIFIER'));
38:
39: IF l_list_line_id IS NOT NULL THEN
40: --
41: -- If the profile is set, it will return us list_line_id,

Line 5144: fnd_profile.put('ONT_USE_CONFIGURATOR', 'N');

5140: -- exploded structure for models/kits. In other words there is no
5141: -- way Oracle Configurator being used in such case. Given that,
5142: -- we set the profile option "OM: Use Configurator" to 'N'.
5143:
5144: fnd_profile.put('ONT_USE_CONFIGURATOR', 'N');
5145:
5146: END IF;
5147:
5148: ---

Line 5464: IF (Nvl(fnd_profile.Value('ONT_TAX_ROLLUP_HDR_AIA'), fnd_api.g_miss_char) = 'Y' AND

5460:
5461: -- Step 2: Based on profile option set up, populate freight_charge,
5462: -- tax_value at header and line levels.
5463: -- 2(a). When tax roll up at header level is required.
5464: IF (Nvl(fnd_profile.Value('ONT_TAX_ROLLUP_HDR_AIA'), fnd_api.g_miss_char) = 'Y' AND
5465: nvl(x_header_rec.header_id, FND_API.G_MISS_NUM) <> FND_API.G_MISS_NUM) -- Bug 16041105
5466: THEN
5467: Oe_Oe_Totals_Summary.Global_Totals(x_header_rec.header_id);
5468: x_header_rec.tax_value := Oe_Oe_Totals_Summary.Taxes(x_header_rec.header_id);

Line 5472: IF (Nvl(fnd_profile.Value('ONT_CHARGES_ROLLUP_HDR_AIA'), fnd_api.g_miss_char) = 'Y' AND

5468: x_header_rec.tax_value := Oe_Oe_Totals_Summary.Taxes(x_header_rec.header_id);
5469: END IF;
5470:
5471: -- 2(b). When the freight charges roll-up at header level is required.
5472: IF (Nvl(fnd_profile.Value('ONT_CHARGES_ROLLUP_HDR_AIA'), fnd_api.g_miss_char) = 'Y' AND
5473: nvl(x_header_rec.header_id, FND_API.G_MISS_NUM) <> FND_API.G_MISS_NUM) -- Bug 16041105
5474: THEN
5475: x_header_rec.freight_charge :=
5476: Oe_Oe_Totals_Summary.Charges(x_header_rec.header_id);

Line 5480: IF Nvl(fnd_profile.Value('ONT_CHARGES_ROLLUP_LINE_AIA'), fnd_api.g_miss_char)

5476: Oe_Oe_Totals_Summary.Charges(x_header_rec.header_id);
5477: END IF;
5478:
5479: -- 2(c). When the freight charges roll-up at each individual line level is required.
5480: IF Nvl(fnd_profile.Value('ONT_CHARGES_ROLLUP_LINE_AIA'), fnd_api.g_miss_char)
5481: = 'Y'
5482: THEN
5483: BEGIN
5484: IF x_line_tbl.Count > 0 THEN