GET_FORMAT_ENTRIES SAP Method Gets the Format entries from maintenance table









Below is documentation, parameters and attributes of ABAP Method GET_FORMAT_ENTRIES within SAP class CL_DIAN_GENERATION_HELPER. 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 CL_DIAN_GENERATION_HELPER 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 GET_FORMAT_ENTRIES can also be found below:

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


Parameters of Method GET_FORMAT_ENTRIES

.

NameTypeData TypeDescriptionDefault Value
II_FILTERSImportingTYPE REF TO
IF_DIAN_EXTRACTION_FILTERS
IV_FORMAT_CODEImportingTYPE
DIAN_D_FORMAT
DIAN Format
IV_YEARImportingTYPE
GJAHR
Fiscal Year
RR_RESULTReturningTYPE REF TO
DATA
Reference to the format Structure type



Exceptions of Method GET_FORMAT_ENTRIES

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CL_DIAN_GENERATION_HELPER.
DATA: lv_II_FILTERS TYPE IF_DIAN_EXTRACTION_FILTERS,
lv_IV_FORMAT_CODE TYPE DIAN_D_FORMAT,
lv_IV_YEAR TYPE GJAHR,
lv_RR_RESULT TYPE DATA,
lv_other TYPE c.

CALL METHOD lo_class=>GET_FORMAT_ENTRIES(
EXPORTING
II_FILTERS = lv_II_FILTERS
IV_FORMAT_CODE = lv_IV_FORMAT_CODE
IV_YEAR = lv_IV_YEAR
RECEIVING
RR_RESULT = lv_RR_RESULT )



"Alternate coding for Method Call with returning parameter
lv_RR_RESULT = lo_class=>GET_FORMAT_ENTRIES(
EXPORTING
II_FILTERS = lv_II_FILTERS
IV_FORMAT_CODE = lv_IV_FORMAT_CODE
IV_YEAR = lv_IV_YEAR ).

Links to Related Class(s)

CL_DIAN_...
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!