DBA Data[Home] [Help]

APPS.OZF_UTILITY_PVT dependencies on FND_PROFILE

Line 969: l_conversion_type := FND_PROFILE.Value (L_CONVERSION_TYPE_PROFILE);

965: -- Initialize return status.
966: x_return_status := FND_API.G_RET_STS_SUCCESS;
967:
968: -- Get the currency conversion type from profile option
969: l_conversion_type := FND_PROFILE.Value (L_CONVERSION_TYPE_PROFILE);
970:
971: -- Call the proper GL API to convert the amount.
972: GL_Currency_API.Convert_Closest_Amount (
973: x_from_currency => p_from_currency,

Line 1077: l_sys_time_id := FND_PROFILE.VALUE('SERVER_TIMEZONE_ID');

1073:
1074: BEGIN
1075: -- Initialize API return status to success
1076: x_return_status := FND_API.G_RET_STS_SUCCESS;
1077: l_sys_time_id := FND_PROFILE.VALUE('SERVER_TIMEZONE_ID');
1078: OPEN c_get_name(l_sys_time_id);
1079: FETCH c_get_name into l_sys_name;
1080: IF (c_get_name%NOTFOUND) THEN
1081: CLOSE c_get_name;

Line 1124: l_user_time_id := FND_PROFILE.VALUE('CLIENT_TIMEZONE_ID');

1120:
1121: BEGIN
1122: -- Initialize API return status to success
1123: x_return_status := FND_API.G_RET_STS_SUCCESS;
1124: l_user_time_id := FND_PROFILE.VALUE('CLIENT_TIMEZONE_ID');
1125: OPEN get_name(l_user_time_id);
1126: FETCH get_name into l_user_time_name;
1127: IF (get_name%NOTFOUND) THEN
1128: CLOSE get_name;

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

2190: --++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
2191: -- Mumu Pande 09/20/2000 Updated the following
2192: -- Get the currency conversion type from profile option
2193: IF x_exchange_rate_type IS NULL THEN
2194: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);
2195: ELSE
2196: l_conversion_type := x_exchange_rate_type;
2197: END IF;
2198:

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

2574: -- Initialize return status.
2575: x_return_status := fnd_api.g_ret_sts_success;
2576:
2577: IF x_exchange_rate_type IS NULL OR x_exchange_rate_type=FND_API.G_MISS_CHAR THEN
2578: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);
2579: ELSE
2580: l_conversion_type := x_exchange_rate_type;
2581: END IF;
2582:

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

2697:
2698: -- condition added to pass conversion types
2699: IF p_conv_type = FND_API.G_MISS_CHAR OR p_conv_type IS NULL THEN --Added for bug 7030415
2700: -- Get the currency conversion type from profile option
2701: l_conversion_type := fnd_profile.VALUE(l_conversion_type_profile);
2702: -- Conversion type cannot be null in profile
2703: IF l_conversion_type IS NULL THEN
2704: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
2705: fnd_message.set_name('OZF', 'OZF_NO_EXCHANGE_TYPE');