DBA Data[Home] [Help]

APPS.PAY_DATE_WRAPPER_PKG dependencies on FND_DATE

Line 23: of fnd_date and app_date.This is maintained differently

19:
20: Name : pay_date_wrapper_pkg
21:
22: Description : Package contains wrapper functions to call functions
23: of fnd_date and app_date.This is maintained differently
24: for versions below R12.1.X and above R12.1.X
25:
26: Uses :
27:

Line 36: FUNCTION fnd_date_date_to_displaydate(

32:
33: ****************************************************************************/
34: AS
35:
36: FUNCTION fnd_date_date_to_displaydate(
37: p_date date
38: )
39: RETURN VARCHAR2 IS
40:

Line 43: hr_utility.trace('Entering fnd_date_date_to_displaydate');

39: RETURN VARCHAR2 IS
40:
41: BEGIN
42:
43: hr_utility.trace('Entering fnd_date_date_to_displaydate');
44:
45: /*As International Calendar is supported in R12.1.3 or above and R12.2, this function
46: will pass the Calendar-aware Parameter (1) to date_to_displaydate and returns the value
47: as required*/

Line 49: RETURN fnd_date.date_to_displaydate(p_date,1);

45: /*As International Calendar is supported in R12.1.3 or above and R12.2, this function
46: will pass the Calendar-aware Parameter (1) to date_to_displaydate and returns the value
47: as required*/
48:
49: RETURN fnd_date.date_to_displaydate(p_date,1);
50:
51: END fnd_date_date_to_displaydate;
52:
53:

Line 51: END fnd_date_date_to_displaydate;

47: as required*/
48:
49: RETURN fnd_date.date_to_displaydate(p_date,1);
50:
51: END fnd_date_date_to_displaydate;
52:
53:
54: END pay_date_wrapper_pkg;