CONV_NODES_GR_TO_FIPEX SAP Method Convert Items to Commitment Items
Below is documentation, parameters and attributes of ABAP Method CONV_NODES_GR_TO_FIPEX 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 CONV_NODES_GR_TO_FIPEX can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONV_NODES_GR_TO_FIPEX
.| Name | Type | Data Type | Description | Default Value |
| IT_NODES_GR | Importing | TYPE REP_EAPS_TAB_NODES_GR | Table of Nodes Grouped | |
| IV_LINENR | Importing | TYPE REP_EAPS_LINENR | Line Number | |
| IV_SRC_ID | Importing | TYPE IDREPFW_REP_SRCID | Data Source Identification | |
| ET_ITMGRP_RNG_FIPEX | Exporting | TYPE REP_EAPS_FM=>TY_T_ITMGRP_RNG_FIPEX | Table of Range of Commitment Item for Item Groups |
Exceptions of Method CONV_NODES_GR_TO_FIPEX
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_ITMGRP_RNG_FIPEX TYPE REP_EAPS_FM=>TY_T_ITMGRP_RNG_FIPEX,
lv_IT_NODES_GR TYPE REP_EAPS_TAB_NODES_GR,
lv_IV_LINENR TYPE REP_EAPS_LINENR,
lv_IV_SRC_ID TYPE IDREPFW_REP_SRCID,
lv_other TYPE c.
CALL METHOD REP_EAPS_COMPUTE=>CONV_NODES_GR_TO_FIPEX(
EXPORTING
IT_NODES_GR = lv_IT_NODES_GR
IV_LINENR = lv_IV_LINENR
IV_SRC_ID = lv_IV_SRC_ID
IMPORTING
ET_ITMGRP_RNG_FIPEX = lv_ET_ITMGRP_RNG_FIPEX ).
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