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

.

NameTypeData TypeDescriptionDefault Value
FLT_VALImportingTYPE
EDI_MESTYP
Message type
IS_EDIDDImportingTYPE
EDIDD
Data record (IDoc)
IS_SDATAImportingTYPE
EDIDD-SDATA
Free Area for Transfer
IT_EDIDCImportingTYPE
EDIDC
Control Record (IDoc)
ET_EDIDDExportingTYPE
EDIDD_TT
Table Type for EDIDD (IDoc Data Records)
CF_IMPLEMENTATION_ACTIVEChangingTYPE
/DSD/HH_FM_IF-CHECKBOX
Checkbox



Exceptions of Method FILL_SEGMENT

ERROR_IN_METHOD_FILL_SEGMENT - An Error Occurred in Method FILL_SEGMENT

Example 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



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!