DBA Data[Home] [Help]

APPS.DPP_UTILITY_PVT dependencies on FND_PROFILE

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

2480: x_return_status := fnd_api.g_ret_sts_success;
2481: -- condition added to pass conversion types
2482: IF p_conv_type = FND_API.G_MISS_CHAR THEN
2483: -- Get the currency conversion type from profile option
2484: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);
2485: -- Conversion type cannot be null in profile
2486: IF l_conversion_type IS NULL THEN
2487: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
2488: fnd_message.set_name('DPP', 'DPP_NO_EXCHANGE_TYPE');

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

2579: x_return_status := fnd_api.g_ret_sts_success;
2580:
2581: -- Get the currency conversion type from profile option
2582: IF x_exchange_rate_type IS NULL THEN
2583: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);
2584: ELSE
2585: l_conversion_type := x_exchange_rate_type;
2586: END IF;
2587: