H99CWTR0_GRID_TEMPLATE_CE 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 H99CWTR0_GRID_TEMPLATE_CE 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.
INCLUDE H99CWTR0_SHARED_DATA.
INCLUDE H99CWTR0_SHARED_DATA_ADDIT_CE.
INCLUDE H99CWTR0_FORMS_4_RUNTIME_PROG.
No SAP DATABASE tables are accessed within this REPORT code!
CONVERT_TO_LOCAL_CURRENCY *A call function 'CONVERT_TO_LOCAL_CURRENCY' *A exporting *A date = sy-datum *A foreign_amount = ios_data-betrg_ref *A foreign_currency = ios_data-waers_ref *A local_currency = ios_data-waers *A importing *A local_amount = ios_data-betrg_ref *A exceptions *A no_rate_found = 1 *A overflow = 2 *A no_factors_found = 3 *A no_spread_found = 4 *A derived_2_times = 5 *A others = 6.
CONVERT_TO_LOCAL_CURRENCY call function 'CONVERT_TO_LOCAL_CURRENCY' exporting date = sy-datum foreign_amount = o_betrg foreign_currency = i_waers_old local_currency = i_waers_new importing local_amount = o_betrg exceptions no_rate_found = 1 overflow = 2 no_factors_found = 3 no_spread_found = 4 derived_2_times = 5 others = 6.
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' exporting i_program_name = iv_driver i_internal_tabname = c_internal_tabname * I_STRUCTURE_NAME = * I_CLIENT_NEVER_DISPLAY = 'X' i_inclname = iv_driver i_bypassing_buffer = 'X' changing ct_fieldcat = lv_fieldcat[] exceptions inconsistent_interface = 1 program_error = 2 others = 3.
REUSE_ALV_GRID_DISPLAY call function 'REUSE_ALV_GRID_DISPLAY' exporting i_callback_pf_status_set = c_cbk_status i_callback_user_command = c_cbk_user_cmd i_callback_program = iv_calling_prog it_fieldcat = lv_fieldcat[] i_default = 'X' i_save = 'A' is_variant = iv_alv_template is_layout = lv_is_layout tables t_outtab = lt_datatable exceptions program_error = 1 others = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.