FILL_WORKAREA SAP Method Maintains the Internal Tables
Below is documentation, parameters and attributes of ABAP Method FILL_WORKAREA within SAP class CL_ISU_BUSINESS_PARTNER. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_ISU_BUSINESS_PARTNER 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_WORKAREA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FILL_WORKAREA
.| Name | Type | Data Type | Description | Default Value |
| XT_ADDRESS | Importing | TYPE ISU_BUS020_EXT_TAB | XT_ADDRESS | |
| XT_ADFAX | Importing | TYPE ISU_ADFAX_TAB | Standard Table for Structure ADFAX | |
| XT_ADR2 | Importing | TYPE ISU_ADR2_TAB | XT_ADR2 | |
| XT_ADR3 | Importing | TYPE ISU_ADR3_TAB | XT_ADR3 | |
| XT_ADR6 | Importing | TYPE ISU_ADR6_TAB | XT_ADR6 | |
| XT_ADRT | Importing | TYPE ISU_ADRT_TAB | Table Category for Structure ADRT | |
| XT_ADSMTP | Importing | TYPE ISU_ADSMTP_TAB | Standard Table for Structure ADSMTP | |
| XT_ADTEL | Importing | TYPE ISU_ADTEL_TAB | Standard Table for Structure ADTEL | |
| XT_CCARD | Importing | TYPE ISU_CCARD_AUTO_TAB | XT_CCARD | |
| XT_IDENT | Importing | TYPE TTY_BUT0ID | SAP BP: Table Type for Transferring Identification Data | |
| XT_IND_SECTOR | Importing | TYPE ISU_BUT0IS_TAB | Standard Structure for Table BUT0IS | |
| XT_PAYMENT | Importing | TYPE ISU_BUS0BK_TAB | XT_PAYMENT | |
| XT_TAXNUM | Importing | TYPE ISU_DFKKBPTAXNUM_TAB | Standard Table for Structure DFKKBPTAXNUM | |
| X_EKUN_EXT | Importing | TYPE EKUN_EXT | X_EKUN_EXT |
Exceptions of Method FILL_WORKAREA
NOT_SELECTED - NOT_SELECTEDExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO CL_ISU_BUSINESS_PARTNER.
DATA: lv_XT_ADDRESS TYPE ISU_BUS020_EXT_TAB,
lv_XT_ADFAX TYPE ISU_ADFAX_TAB,
lv_XT_ADR2 TYPE ISU_ADR2_TAB,
lv_XT_ADR3 TYPE ISU_ADR3_TAB,
lv_XT_ADR6 TYPE ISU_ADR6_TAB,
lv_XT_ADRT TYPE ISU_ADRT_TAB,
lv_XT_ADSMTP TYPE ISU_ADSMTP_TAB,
lv_XT_ADTEL TYPE ISU_ADTEL_TAB,
lv_XT_CCARD TYPE ISU_CCARD_AUTO_TAB,
lv_XT_IDENT TYPE TTY_BUT0ID,
lv_XT_IND_SECTOR TYPE ISU_BUT0IS_TAB,
lv_XT_PAYMENT TYPE ISU_BUS0BK_TAB,
lv_XT_TAXNUM TYPE ISU_DFKKBPTAXNUM_TAB,
lv_X_EKUN_EXT TYPE EKUN_EXT,
lv_other TYPE c.
CALL METHOD lo_class=>FILL_WORKAREA(
EXPORTING
XT_ADDRESS = lv_XT_ADDRESS
XT_ADFAX = lv_XT_ADFAX
XT_ADR2 = lv_XT_ADR2
XT_ADR3 = lv_XT_ADR3
XT_ADR6 = lv_XT_ADR6
XT_ADRT = lv_XT_ADRT
XT_ADSMTP = lv_XT_ADSMTP
XT_ADTEL = lv_XT_ADTEL
XT_CCARD = lv_XT_CCARD
XT_IDENT = lv_XT_IDENT
XT_IND_SECTOR = lv_XT_IND_SECTOR
XT_PAYMENT = lv_XT_PAYMENT
XT_TAXNUM = lv_XT_TAXNUM
X_EKUN_EXT = lv_X_EKUN_EXT ).
Links to Related Class(s)
CL_ISU_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects