DBA Data[Home] [Help]

APPS.PER_PERUSEOX_XMLP_PKG dependencies on FND_DATE

Line 21: c_report_year:= to_char(fnd_date.canonical_to_date(P_PAYROLL_PERIOD_DATE_START),'RRRR');

17: c_business_group_name := hr_reports.get_business_group(p_business_group_id);
18: c_report_date := trunc(sysdate);
19: if P_PAYROLL_PERIOD_DATE_START is not null
20: then
21: c_report_year:= to_char(fnd_date.canonical_to_date(P_PAYROLL_PERIOD_DATE_START),'RRRR');
22: else
23: c_report_year:= to_char(sysdate,'RRRR');
24: end if;
25: select

Line 123: p_report_year:= to_char(fnd_date.canonical_to_date(P_PAYROLL_PERIOD_DATE_START),'RRRR');

119: function P_REPORT_YEARValidTrigger return boolean is
120: begin
121: if P_PAYROLL_PERIOD_DATE_START is not null
122: then
123: p_report_year:= to_char(fnd_date.canonical_to_date(P_PAYROLL_PERIOD_DATE_START),'RRRR');
124: else
125: p_report_year:= to_char(sysdate,'RRRR');
126: end if;
127: return (TRUE);