CALL_REPORT SAP Method Calling of Report to Post the Converted File(s)









Below is documentation, parameters and attributes of ABAP Method CALL_REPORT within SAP class IF_EX_BADI_DMEECONVERT_ABA. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_BADI_DMEECONVERT_ABA into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method CALL_REPORT can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CALL_REPORT

.

NameTypeData TypeDescriptionDefault Value
FLT_VALImportingTYPE
DMEE_TREETYPE_ABA
Parameter FLT_VAL of method CALL_REPORT
IM_FILENAME1ImportingTYPE
LOCALFILE
Name of First Converted DME File
IM_FILENAME2ImportingTYPE
LOCALFILE
Name of Second Converted DME File
IM_REPNAMEImportingTYPE
PROGRAMM
Name of Report to be Called
IM_VARNAMEImportingTYPE
SYCHAR14
Name of Report Variant
IM_X_PCImportingTYPE
XFELD
DME File to be Read from PC



Exceptions of Method CALL_REPORT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_BADI_DMEECONVERT_ABA.
DATA: lv_FLT_VAL TYPE DMEE_TREETYPE_ABA,
lv_IM_FILENAME1 TYPE LOCALFILE,
lv_IM_FILENAME2 TYPE LOCALFILE,
lv_IM_REPNAME TYPE PROGRAMM,
lv_IM_VARNAME TYPE SYCHAR14,
lv_IM_X_PC TYPE XFELD,
lv_other TYPE c.

CALL METHOD lo_class=>CALL_REPORT(
EXPORTING
FLT_VAL = lv_FLT_VAL
IM_FILENAME1 = lv_IM_FILENAME1
IM_FILENAME2 = lv_IM_FILENAME2
IM_REPNAME = lv_IM_REPNAME
IM_VARNAME = lv_IM_VARNAME
IM_X_PC = lv_IM_X_PC ).

Links to Related Class(s)

IF_EX_BA...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!