DBA Data[Home] [Help]

APPS.IGI_IAC_REVAL_WRAPPER dependencies on IGI_IAC_TYPES

Line 9: function do_reval_calc_asset ( L_reval_params in out NOCOPY IGI_IAC_TYPES.iac_reval_params

5:
6: /* function to do the revaluation calculation once the structures are initialized.
7: ** Note, use a dummy variable to deal with the fp_reval_output_asset params */
8: -- This routine would be called from additions and reclass
9: function do_reval_calc_asset ( L_reval_params in out NOCOPY IGI_IAC_TYPES.iac_reval_params
10: , fp_reval_output_asset IN OUT NOCOPY IGI_IAC_TYPES.iac_reval_output_asset
11: )
12: return boolean
13: ;

Line 10: , fp_reval_output_asset IN OUT NOCOPY IGI_IAC_TYPES.iac_reval_output_asset

6: /* function to do the revaluation calculation once the structures are initialized.
7: ** Note, use a dummy variable to deal with the fp_reval_output_asset params */
8: -- This routine would be called from additions and reclass
9: function do_reval_calc_asset ( L_reval_params in out NOCOPY IGI_IAC_TYPES.iac_reval_params
10: , fp_reval_output_asset IN OUT NOCOPY IGI_IAC_TYPES.iac_reval_output_asset
11: )
12: return boolean
13: ;
14: /*

Line 29: , fp_reval_output_asset in out NOCOPY IGI_IAC_TYPES.iac_reval_output_asset

25: , fp_reval_mode in varchar2
26: , fp_reval_rate in number
27: , fp_period_counter in number
28: , fp_calling_program in varchar2
29: , fp_reval_output_asset in out NOCOPY IGI_IAC_TYPES.iac_reval_output_asset
30: , fp_reval_messages in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg
31: , fp_reval_messages_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg_idx
32: , fp_reval_exceptions in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions
33: , fp_reval_exceptions_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions_idx

Line 30: , fp_reval_messages in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg

26: , fp_reval_rate in number
27: , fp_period_counter in number
28: , fp_calling_program in varchar2
29: , fp_reval_output_asset in out NOCOPY IGI_IAC_TYPES.iac_reval_output_asset
30: , fp_reval_messages in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg
31: , fp_reval_messages_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg_idx
32: , fp_reval_exceptions in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions
33: , fp_reval_exceptions_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions_idx
34: )

Line 31: , fp_reval_messages_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg_idx

27: , fp_period_counter in number
28: , fp_calling_program in varchar2
29: , fp_reval_output_asset in out NOCOPY IGI_IAC_TYPES.iac_reval_output_asset
30: , fp_reval_messages in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg
31: , fp_reval_messages_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg_idx
32: , fp_reval_exceptions in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions
33: , fp_reval_exceptions_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions_idx
34: )
35: return boolean;

Line 32: , fp_reval_exceptions in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions

28: , fp_calling_program in varchar2
29: , fp_reval_output_asset in out NOCOPY IGI_IAC_TYPES.iac_reval_output_asset
30: , fp_reval_messages in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg
31: , fp_reval_messages_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg_idx
32: , fp_reval_exceptions in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions
33: , fp_reval_exceptions_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions_idx
34: )
35: return boolean;
36:

Line 33: , fp_reval_exceptions_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions_idx

29: , fp_reval_output_asset in out NOCOPY IGI_IAC_TYPES.iac_reval_output_asset
30: , fp_reval_messages in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg
31: , fp_reval_messages_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_mesg_idx
32: , fp_reval_exceptions in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions
33: , fp_reval_exceptions_idx in out NOCOPY IGI_IAC_TYPES.iac_reval_exceptions_idx
34: )
35: return boolean;
36:
37: function do_calculation_asset

Line 44: , fp_iac_reval_output_asset out NOCOPY IGI_IAC_TYPES.iac_reval_output_asset

40: , fp_book_type_code varchar2
41: , fp_reval_mode varchar2
42: , fp_reval_rate number
43: , fp_period_counter number
44: , fp_iac_reval_output_asset out NOCOPY IGI_IAC_TYPES.iac_reval_output_asset
45: )
46: return boolean;
47:
48: END;