DBA Data[Home] [Help]

APPS.OZF_SD_UTIL_PVT dependencies on FND_PROFILE

Line 16: --l_debug_level NUMBER := to_number(nvl(fnd_profile.value('CLN_DEBUG_LEVEL'), '5'));

12: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OZF_SD_UTIL_PVT';
13: G_FILE_NAME CONSTANT VARCHAR2(12) := 'ozfvsdub.pls';
14:
15:
16: --l_debug_level NUMBER := to_number(nvl(fnd_profile.value('CLN_DEBUG_LEVEL'), '5'));
17:
18: function SD_CONVERT_CURRENCY(p_batch_line_id number,p_amount number ) return number
19: is
20:

Line 242: l_rn_timezone := fnd_profile.value('CLN_RN_TIMEZONE');

238: END IF;
239: l_count_t_appearanace := instr(p_rn_date,'T');
240: IF (l_count_t_appearanace > 0) THEN
241: --Datetime Format: YYYYMMDDThhmmss.SSSZ
242: l_rn_timezone := fnd_profile.value('CLN_RN_TIMEZONE');
243:
244: -- get the timezone of the db server
245: l_db_timezone := FND_TIMEZONES.GET_SERVER_TIMEZONE_CODE;
246:

Line 684: l_rn_timezone := fnd_profile.value('CLN_RN_TIMEZONE');

680:
681: -- get the timezone of the db server
682: l_db_timezone := FND_TIMEZONES.GET_SERVER_TIMEZONE_CODE;
683:
684: l_rn_timezone := fnd_profile.value('CLN_RN_TIMEZONE');
685:
686:
687: -- this function converts the datetime from the user entered/db timezone to UTC
688: x_utc_date := FND_TIMEZONES_PVT.adjust_datetime(p_input_date,l_db_timezone,l_rn_timezone);