DBA Data[Home] [Help]

PACKAGE BODY: APPS.HXT_HXT958A_XMLP_PKG

Source


1 PACKAGE BODY HXT_HXT958A_XMLP_PKG AS
2 /* $Header: HXT958AB.pls 120.1 2008/03/27 08:13:25 vjaganat noship $ */
3 
4 function BeforeReport return boolean is
5 c_date_format varchar2(25) := 'DD-MON-YYYY';
6 begin
7   /*SRW.USER_EXIT('FND SRWINIT');*/null;
8 
9 
10 
11   if start_date is null then
12      start_date := hr_general.start_of_time;
13   end if;
14   if end_date is null then
15      end_date := hr_general.end_of_time;
16   end if;
17 
18   P_START_DATE :=to_char(start_date,'DD MON YYYY');
19   P_END_DATE :=to_char(end_date,'DD MON YYYY');
20   return (TRUE);
21 end;
22 
23 function AfterReport return boolean is
24 begin
25   /*SRW.USER_EXIT('FND SRWEXIT');*/null;
26 
27 
28   return (TRUE);
29 end;
30 
31 --Functions to refer Oracle report placeholders--
32 
33 END HXT_HXT958A_XMLP_PKG ;