DBA Data[Home] [Help]

APPS.CSF_PLANBOARD_TASKS dependencies on CSF_TIMEZONES_PVT

Line 781: l_line :='('|| csf_timezones_pvt.date_to_client_tz_chartime(actual_start_date(i), 'hh24:mi')||') ';

777: -- this if is added to check if actual_start_date is not null then display actual_start_date time
778: --or else display scheduled_start_date
779: IF l_tz = 'UTZ' THEN
780: IF actual_start_date(i) IS NOT NULL THEN
781: l_line :='('|| csf_timezones_pvt.date_to_client_tz_chartime(actual_start_date(i), 'hh24:mi')||') ';
782: ELSE
783: l_line := csf_timezones_pvt.date_to_client_tz_chartime(scheduled_start_date(i), 'hh24:mi')|| ' ';
784: END IF;
785: ELSE

Line 783: l_line := csf_timezones_pvt.date_to_client_tz_chartime(scheduled_start_date(i), 'hh24:mi')|| ' ';

779: IF l_tz = 'UTZ' THEN
780: IF actual_start_date(i) IS NOT NULL THEN
781: l_line :='('|| csf_timezones_pvt.date_to_client_tz_chartime(actual_start_date(i), 'hh24:mi')||') ';
782: ELSE
783: l_line := csf_timezones_pvt.date_to_client_tz_chartime(scheduled_start_date(i), 'hh24:mi')|| ' ';
784: END IF;
785: ELSE
786: IF actual_start_date(i) IS NOT NULL THEN
787: l_line := '(' || to_char(actual_start_date(i),'hh24:mi')||') ';