DBA Data[Home] [Help]

APPS.FFFUNC dependencies on FND_NUMBER

Line 18: Call fnd_number and fnd_date canonical

14: -----------
15: P Gowers 21-JAN-1993 Creation
16: A Roussel 27-OCT-1994 Moved header to after create/replace
17: A Rashid 30-MAR-1999 Added nc, tn, td, and dc functions.
18: Call fnd_number and fnd_date canonical
19: functions where appropriate.
20: A Rashid 27-APR-1999 Replace fnd_number and fnd_date canonical
21: calls by standard to_date, to_number,
22: and to_char calls. Added cn/cd functions

Line 20: A Rashid 27-APR-1999 Replace fnd_number and fnd_date canonical

16: A Roussel 27-OCT-1994 Moved header to after create/replace
17: A Rashid 30-MAR-1999 Added nc, tn, td, and dc functions.
18: Call fnd_number and fnd_date canonical
19: functions where appropriate.
20: A Rashid 27-APR-1999 Replace fnd_number and fnd_date canonical
21: calls by standard to_date, to_number,
22: and to_char calls. Added cn/cd functions
23: for converting canonical strings to
24: number/date.

Line 47: before passing to fnd_number

43: message text truncation. Use
44: FF_EXEC.FF_BIND_LEN to truncate the
45: returned message text.
46: A Logue 20-JAN-2006 Remove Group Seperator in tn
47: before passing to fnd_number
48: canonical_to_number. Bug 4765352.
49: A Logue 10-NOV-2006 Undo last change. Bug 5654185.
50: */
51: ---------------------------------- nc -----------------------------------

Line 62: return fnd_number.number_to_canonical(p_number);

58: Short name to keep formula text short.
59: */
60: function nc (p_number in number) return varchar2 is
61: begin
62: return fnd_number.number_to_canonical(p_number);
63: end nc;
64: ------------------------------ date_to_char ------------------------------
65: /*
66: NAME

Line 148: return fnd_number.canonical_to_number(p_numstr);

144: Short name to keep formula text short.
145: */
146: function tn (p_numstr in varchar2) return number is
147: begin
148: return fnd_number.canonical_to_number(p_numstr);
149: end tn;
150: ------------------------------ text_to_date ------------------------------
151: /*
152: NAME

Line 219: return fnd_number.canonical_to_number(canonical => p_numstr);

215: Converts a string, in the canonical number format, to a number.
216: */
217: function cn (p_numstr in varchar2) return number is
218: begin
219: return fnd_number.canonical_to_number(canonical => p_numstr);
220: end cn;
221: --------------------------------- gfm -----------------------------------
222: function gfm
223: (p_application in varchar2