ASSEMBLY_LINES SAP Method Assembly lines of report data only (w/o values) (Obsolete)









Below is documentation, parameters and attributes of ABAP Method ASSEMBLY_LINES within SAP class REP_EAPS_COMPUTE. 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 REP_EAPS_COMPUTE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

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

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


Parameters of Method ASSEMBLY_LINES

.

NameTypeData TypeDescriptionDefault Value
IT_LINESImportingTYPE
REP_EAPS_TAB_LINES
Table of Customized Lines
IV_SRCIDImportingTYPE
IDREPFW_REP_SRCID
Data Source Identification
IV_STRUCTUREImportingTYPE
STRUKNAME
Name of a structure
CR_OUTPUTChangingTYPE REF TO
DATA
Assembled Data
CT_RETURNChangingTYPE
BAPIRETTAB
Table with BAPI Return Information



Exceptions of Method ASSEMBLY_LINES

WRONG_CUSTOMIZING - Invalid Customizing

Example ABAP coding


DATA: lv_CR_OUTPUT TYPE DATA,
lv_CT_RETURN TYPE BAPIRETTAB,
lv_IT_LINES TYPE REP_EAPS_TAB_LINES,
lv_IV_SRCID TYPE IDREPFW_REP_SRCID,
lv_IV_STRUCTURE TYPE STRUKNAME,
lv_other TYPE c.

CALL METHOD REP_EAPS_COMPUTE=>ASSEMBLY_LINES(
EXPORTING
IT_LINES = lv_IT_LINES
IV_SRCID = lv_IV_SRCID
IV_STRUCTURE = lv_IV_STRUCTURE
CHANGING
CR_OUTPUT = lv_CR_OUTPUT
CT_RETURN = lv_CT_RETURN ).

Links to Related Class(s)

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