FICUPL_FORM is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter FICUPL_FORM into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
G_POSTING_DATE_OF_PERIOD_GET * call function 'G_POSTING_DATE_OF_PERIOD_GET' * exporting year = id_ryear * period = id_perid * variant = ld_periv * importing to_date = ld_date.
FC_EXRTYP_READ * call function 'FC_EXRTYP_READ' * exporting e_rvers = id_rvers * e_ryear = id_ryear * e_perid = id_perid * e_exrind = id_ctype * importing i_exrtyp = ld_exind * exceptions others = 1.
CONVERT_TO_LOCAL_CURRENCY * call function 'CONVERT_TO_LOCAL_CURRENCY' * exporting date = ld_date * foreign_amount = cd_hsl * foreign_currency = id_rlcur * local_currency = id_rgcur * rate = 0 * type_of_rate = ld_exind * importing exchange_rate = cd_crate * foreign_factor = cd_ffact * local_factor = cd_tfact * local_amount = cd_ksl * exceptions others = 1.
CONVERT_TO_FOREIGN_CURRENCY * call function 'CONVERT_TO_FOREIGN_CURRENCY' * exporting date = ld_date * local_amount = cd_ksl * foreign_currency = id_rlcur * local_currency = id_rgcur * rate = 0 * type_of_rate = ld_exind * importing exchange_rate = cd_crate * foreign_factor = cd_ffact * local_factor = cd_tfact * foreign_amount = cd_hsl * exceptions others = 1.
FC_CALCULATE_MISSING_VALUES call function 'FC_CALCULATE_MISSING_VALUES' exporting ed_dimen = id_dimen ed_rldnr = id_rldnr ed_rvers = id_rvers ed_bunit = id_bunit ed_ryear = id_ryear ed_perid = id_perid ed_ctype = id_ctype ed_lcurr = id_rlcur ed_gcurr = id_rgcur changing cd_lcval = cd_hsl cd_gcval = cd_ksl cd_crate = cd_crate ct_message = lt_msg.
FC_CALCULATE_MISSING_VALUES call function 'FC_CALCULATE_MISSING_VALUES' exporting ed_dimen = id_dimen ed_rldnr = id_rldnr ed_rvers = id_rvers ed_bunit = id_bunit ed_ryear = id_ryear ed_perid = id_perid ed_ctype = id_ctype ed_lcurr = id_rlcur ed_gcurr = id_rgcur changing cd_lcval = cd_hsl cd_gcval = cd_ksl cd_crate = cd_crate cd_lfact = cd_tfact cd_gfact = cd_ffact ct_message = lt_msg.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.