DBA Data[Home] [Help]

APPS.FA_ROUND_PKG dependencies on DUAL

Line 23: from dual;

19: and bc.book_type_code = X_book;
20:
21: select round(X_amount,h_precision)
22: into X_amount
23: from dual;
24:
25: END fa_round;
26: --
27: --

Line 46: from dual;

42: and bc.book_type_code = X_book;
43:
44: select ceil(X_amount * power(10,h_precision)) / power(10,h_precision)
45: into X_amount
46: from dual;
47:
48: END fa_Ceil;
49: --
50: --

Line 70: from dual;

66: and bc.book_type_code = X_book;
67:
68: select trunc(X_amount * power(10,h_precision)) / power(10,h_precision)
69: into X_amount
70: from dual;
71:
72: END fa_floor;
73:
74: END FA_ROUND_PKG;