DBA Data[Home] [Help]

APPS.CS_SERVICE_BILLING_ENGINE_PVT dependencies on FND_PROFILE

Line 6: --g_debug VARCHAR2(1) := NVL(fnd_profile.value('APPS_DEBUG'), 'N');

2: /* $Header: csxvsbeb.pls 120.11.12020000.6 2013/03/03 02:09:53 bkanimoz ship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30):= 'CS_Service_Billing_Engine_PVT';
5: G_FILE_NAME CONSTANT VARCHAR2(12) := 'csxvsbeb.pls';
6: --g_debug VARCHAR2(1) := NVL(fnd_profile.value('APPS_DEBUG'), 'N');
7:
8: --g_debug number := ASO_DEBUG_PUB.G_DEBUG_LEVEL;
9:
10:

Line 721: -- IF fnd_profile.value ('ENABLE_TIMEZONE_CONVERSIONS') = 'Y' THEN

717: END IF;
718:
719: -- Convert labor start datetime and end datetime using the new timezone routine
720: -- fix for bug#4120101
721: -- IF fnd_profile.value ('ENABLE_TIMEZONE_CONVERSIONS') = 'Y' THEN
722:
723: OPEN get_task_resource(l_charges_rec.source_id);
724: FETCH get_task_resource
725: INTO l_resource_id,

Line 747: Open timezone_code(fnd_profile.value('SERVER_TIMEZONE_ID'));

743:
744: --DBMS_OUTPUT.PUT_LINE('Timezone_Id' || lx_timezone_id);
745: --DBMS_OUTPUT.PUT_LINE('Timezone_name' || lx_timezone_name);
746: -- Begin Bug 11830349
747: Open timezone_code(fnd_profile.value('SERVER_TIMEZONE_ID'));
748: Fetch timezone_code Into l_source_tz_code;
749: Close timezone_code;
750: Open timezone_code(lx_timezone_id);
751: Fetch timezone_code Into l_dest_tz_code;

Line 770: p_source_tz_id => fnd_profile.value('SERVER_TIMEZONE_ID'),

766: -- Commented for bug 11830349
767: /* HZ_TIMEZONE_PUB.Get_time(
768: p_api_version => 1.0,
769: p_init_msg_list => 'T',
770: p_source_tz_id => fnd_profile.value('SERVER_TIMEZONE_ID'),
771: p_dest_tz_id => lx_timezone_id,
772: p_source_day_time => p_sbe_record.labor_start_date_time,
773: x_dest_day_time => lx_labor_start_date_time,
774: x_return_status => x_return_status,

Line 802: p_source_tz_id => fnd_profile.value('SERVER_TIMEZONE_ID'),

798: -- Commented below code for bug 11830349
799: /* HZ_TIMEZONE_PUB.Get_time(
800: p_api_version => 1.0,
801: p_init_msg_list => 'T',
802: p_source_tz_id => fnd_profile.value('SERVER_TIMEZONE_ID'),
803: p_dest_tz_id => lx_timezone_id,
804: p_source_day_time => p_sbe_record.labor_end_date_time,
805: x_dest_day_time => lx_labor_end_date_time,
806: x_return_status => x_return_status,

Line 859: l_base_uom := fnd_profile.value('CSF_UOM_HOURS');

855: IF base_uom_csr%NOTFOUND THEN
856: CLOSE base_uom_csr;
857: END IF;
858: CLOSE base_uom_csr; */
859: l_base_uom := fnd_profile.value('CSF_UOM_HOURS');
860:
861: IF FND_LOG.level_procedure >= FND_LOG.g_current_runtime_level
862: THEN
863: FND_LOG.String