DBA Data[Home] [Help]

APPS.CSF_PLANBOARD_TASKS dependencies on CSF_TIMEZONES_PVT

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

1077: -- this if is added to check if actual_start_date is not null then display actual_start_date time
1078: --or else display scheduled_start_date
1079: IF l_tz = 'UTZ' THEN
1080: IF actual_start_date(i) IS NOT NULL THEN
1081: l_line :='('|| csf_timezones_pvt.date_to_client_tz_chartime(actual_start_date(i), 'hh24:mi')||') ';
1082: ELSE
1083: l_line := csf_timezones_pvt.date_to_client_tz_chartime(scheduled_start_date(i), 'hh24:mi')|| ' ';
1084: END IF;
1085: ELSE

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

1079: IF l_tz = 'UTZ' THEN
1080: IF actual_start_date(i) IS NOT NULL THEN
1081: l_line :='('|| csf_timezones_pvt.date_to_client_tz_chartime(actual_start_date(i), 'hh24:mi')||') ';
1082: ELSE
1083: l_line := csf_timezones_pvt.date_to_client_tz_chartime(scheduled_start_date(i), 'hh24:mi')|| ' ';
1084: END IF;
1085: ELSE
1086: IF actual_start_date(i) IS NOT NULL THEN
1087: l_line := '(' || to_char(actual_start_date(i),'hh24:mi')||') ';