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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| IT_LINES | Importing | TYPE REP_EAPS_TAB_LINES | Table of Customized Lines | |
| IV_SRCID | Importing | TYPE IDREPFW_REP_SRCID | Data Source Identification | |
| IV_STRUCTURE | Importing | TYPE STRUKNAME | Name of a structure | |
| CR_OUTPUT | Changing | TYPE REF TO DATA | Assembled Data | |
| CT_RETURN | Changing | TYPE BAPIRETTAB | Table with BAPI Return Information |
Exceptions of Method ASSEMBLY_LINES
WRONG_CUSTOMIZING - Invalid CustomizingExample 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