DBA Data[Home] [Help]

APPS.DPP_UTILITY_PVT dependencies on FND_PROFILE

Line 2552: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);

2548: x_return_status := fnd_api.g_ret_sts_success;
2549: -- condition added to pass conversion types
2550: IF p_conv_type = FND_API.G_MISS_CHAR THEN
2551: -- Get the currency conversion type from profile option
2552: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);
2553: -- Conversion type cannot be null in profile
2554: IF l_conversion_type IS NULL THEN
2555: fnd_message.set_name('DPP', 'DPP_NO_EXCHANGE_TYPE');
2556: fnd_msg_pub.add;

Line 2646: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);

2642: x_return_status := fnd_api.g_ret_sts_success;
2643:
2644: -- Get the currency conversion type from profile option
2645: IF x_exchange_rate_type IS NULL THEN
2646: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);
2647: ELSE
2648: l_conversion_type := x_exchange_rate_type;
2649: END IF;
2650: