FILL_SEGMENT SAP Method Fill Extension Segments (E1WXX01)
Below is documentation, parameters and attributes of ABAP Method FILL_SEGMENT within SAP class /DSD/IF_EX_HH_E1WXX01. 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 /DSD/IF_EX_HH_E1WXX01 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 FILL_SEGMENT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_SEGMENT
.| Name | Type | Data Type | Description | Default Value |
| FLT_VAL | Importing | TYPE EDI_MESTYP | Message type | |
| IS_EDIDD | Importing | TYPE EDIDD | Data record (IDoc) | |
| IS_SDATA | Importing | TYPE EDIDD-SDATA | Free Area for Transfer | |
| IT_EDIDC | Importing | TYPE EDIDC | Control Record (IDoc) | |
| ET_EDIDD | Exporting | TYPE EDIDD_TT | Table Type for EDIDD (IDoc Data Records) | |
| CF_IMPLEMENTATION_ACTIVE | Changing | TYPE /DSD/HH_FM_IF-CHECKBOX | Checkbox |
Exceptions of Method FILL_SEGMENT
ERROR_IN_METHOD_FILL_SEGMENT - An Error Occurred in Method FILL_SEGMENTExample ABAP coding
DATA: lo_class TYPE REF TO /DSD/IF_EX_HH_E1WXX01.
DATA: lv_CF_IMPLEMENTATION_ACTIVE TYPE /DSD/HH_FM_IF-CHECKBOX,
lv_ET_EDIDD TYPE EDIDD_TT,
lv_FLT_VAL TYPE EDI_MESTYP,
lv_IS_EDIDD TYPE EDIDD,
lv_IS_SDATA TYPE EDIDD-SDATA,
lv_IT_EDIDC TYPE EDIDC,
lv_other TYPE c.
CALL METHOD lo_class=>FILL_SEGMENT(
EXPORTING
FLT_VAL = lv_FLT_VAL
IS_EDIDD = lv_IS_EDIDD
IS_SDATA = lv_IS_SDATA
IT_EDIDC = lv_IT_EDIDC
IMPORTING
ET_EDIDD = lv_ET_EDIDD
CHANGING
CF_IMPLEMENTATION_ACTIVE = lv_CF_IMPLEMENTATION_ACTIVE ).
Links to Related Class(s)
/DSD/IF_...Full list of available SAP object classes
Search for further information about these or an SAP related objects