DBA Data[Home] [Help]

APPS.HRI_OLTP_DISC_TIME dependencies on HRI_BPL_TIME

Line 10: in the package HRI_BPL_TIME

6: period in which the date lies.
7: The period can be 'YEAR','SEMIYEAR','QUARTERYEAR',
8: 'BIMONTH','MONTH'.
9: This is a wrapper function for function GET_PERIOD_START_DATE
10: in the package HRI_BPL_TIME
11: Preconditions : None
12: In Parameters : p_start_date IN DATE
13: p_period IN VARCHAR2
14: Post Sucess : It returns the start date for the period

Line 25: l_start_date := hri_bpl_time.get_period_start_date(p_start_date,p_period);

21: l_start_date DATE;
22: --
23: begin
24: --
25: l_start_date := hri_bpl_time.get_period_start_date(p_start_date,p_period);
26: return l_start_date;
27: --
28: exception
29: --

Line 44: in the package HRI_BPL_TIME

40: period in which the date lies.
41: The period can be 'YEAR','SEMIYEAR','QUARTERYEAR',
42: 'BIMONTH','MONTH'.
43: This is a wrapper function for function GET_PERIOD_END_DATE
44: in the package HRI_BPL_TIME
45: Preconditions : None
46: In Parameters : p_end_date IN DATE
47: p_period IN VARCHAR2
48: Post Sucess : It returns the end date for the period

Line 59: l_end_date := hri_bpl_time.get_period_end_date(p_end_date,p_period);

55: l_end_date DATE;
56: --
57: begin
58: --
59: l_end_date := hri_bpl_time.get_period_end_date(p_end_date,p_period);
60: return l_end_date;
61: --
62: exception
63: when others then