SAP BEFORE_EXP_CUST_ADDRESS_SOLMAN Function Module for
BEFORE_EXP_CUST_ADDRESS_SOLMAN is a standard before exp cust address solman SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for before exp cust address solman FM, simply by entering the name BEFORE_EXP_CUST_ADDRESS_SOLMAN into the relevant SAP transaction such as SE37 or SE38.
Function Group: SZAI
Program Name: SAPLSZAI
Main Program: SAPLSZAI
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BEFORE_EXP_CUST_ADDRESS_SOLMAN pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'BEFORE_EXP_CUST_ADDRESS_SOLMAN'".
EXPORTING
* IV_CLIENT = SY-MANDT "
TABLES
* IT_E071K = "
* ET_ADR6S2 = "
* ET_ADR7S2 = "
* ET_ADR8S2 = "
* ET_ADR9S2 = "
* ET_ADR10S2 = "
* ET_ADR11S2 = "
* ET_ADR12S2 = "
* ET_ADR13S2 = "
* ET_ADRTS2 = "
* ET_ADRUS2 = "
* IT_OBJ = "
* ET_ADRCOMCS2 = "
* ET_ADRCS2 = "
* ET_ADRCTS2 = "
* ET_ADRGS2 = "
* ET_ADR2S2 = "
* ET_ADR3S2 = "
* ET_ADR4S2 = "
* ET_ADR5S2 = "
IMPORTING Parameters details for BEFORE_EXP_CUST_ADDRESS_SOLMAN
IV_CLIENT -
Data type: T000-MANDTDefault: SY-MANDT
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BEFORE_EXP_CUST_ADDRESS_SOLMAN
IT_E071K -
Data type: E071KOptional: Yes
Call by Reference: Yes
ET_ADR6S2 -
Data type: ADR6S2Optional: Yes
Call by Reference: Yes
ET_ADR7S2 -
Data type: ADR7S2Optional: Yes
Call by Reference: Yes
ET_ADR8S2 -
Data type: ADR8S2Optional: Yes
Call by Reference: Yes
ET_ADR9S2 -
Data type: ADR9S2Optional: Yes
Call by Reference: Yes
ET_ADR10S2 -
Data type: ADR10S2Optional: Yes
Call by Reference: Yes
ET_ADR11S2 -
Data type: ADR11S2Optional: Yes
Call by Reference: Yes
ET_ADR12S2 -
Data type: ADR12S2Optional: Yes
Call by Reference: Yes
ET_ADR13S2 -
Data type: ADR13S2Optional: Yes
Call by Reference: Yes
ET_ADRTS2 -
Data type: ADRTS2Optional: Yes
Call by Reference: Yes
ET_ADRUS2 -
Data type: ADRUS2Optional: Yes
Call by Reference: Yes
IT_OBJ -
Data type: ADDR_OBJOptional: Yes
Call by Reference: Yes
ET_ADRCOMCS2 -
Data type: ADRCOMCS2Optional: Yes
Call by Reference: Yes
ET_ADRCS2 -
Data type: ADRCS2Optional: Yes
Call by Reference: Yes
ET_ADRCTS2 -
Data type: ADRCTS2Optional: Yes
Call by Reference: Yes
ET_ADRGS2 -
Data type: ADRGS2Optional: Yes
Call by Reference: Yes
ET_ADR2S2 -
Data type: ADR2S2Optional: Yes
Call by Reference: Yes
ET_ADR3S2 -
Data type: ADR3S2Optional: Yes
Call by Reference: Yes
ET_ADR4S2 -
Data type: ADR4S2Optional: Yes
Call by Reference: Yes
ET_ADR5S2 -
Data type: ADR5S2Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for BEFORE_EXP_CUST_ADDRESS_SOLMAN Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_it_e071k | TYPE STANDARD TABLE OF E071K, " | |||
| lv_iv_client | TYPE T000-MANDT, " SY-MANDT | |||
| lt_et_adr6s2 | TYPE STANDARD TABLE OF ADR6S2, " | |||
| lt_et_adr7s2 | TYPE STANDARD TABLE OF ADR7S2, " | |||
| lt_et_adr8s2 | TYPE STANDARD TABLE OF ADR8S2, " | |||
| lt_et_adr9s2 | TYPE STANDARD TABLE OF ADR9S2, " | |||
| lt_et_adr10s2 | TYPE STANDARD TABLE OF ADR10S2, " | |||
| lt_et_adr11s2 | TYPE STANDARD TABLE OF ADR11S2, " | |||
| lt_et_adr12s2 | TYPE STANDARD TABLE OF ADR12S2, " | |||
| lt_et_adr13s2 | TYPE STANDARD TABLE OF ADR13S2, " | |||
| lt_et_adrts2 | TYPE STANDARD TABLE OF ADRTS2, " | |||
| lt_et_adrus2 | TYPE STANDARD TABLE OF ADRUS2, " | |||
| lt_it_obj | TYPE STANDARD TABLE OF ADDR_OBJ, " | |||
| lt_et_adrcomcs2 | TYPE STANDARD TABLE OF ADRCOMCS2, " | |||
| lt_et_adrcs2 | TYPE STANDARD TABLE OF ADRCS2, " | |||
| lt_et_adrcts2 | TYPE STANDARD TABLE OF ADRCTS2, " | |||
| lt_et_adrgs2 | TYPE STANDARD TABLE OF ADRGS2, " | |||
| lt_et_adr2s2 | TYPE STANDARD TABLE OF ADR2S2, " | |||
| lt_et_adr3s2 | TYPE STANDARD TABLE OF ADR3S2, " | |||
| lt_et_adr4s2 | TYPE STANDARD TABLE OF ADR4S2, " | |||
| lt_et_adr5s2 | TYPE STANDARD TABLE OF ADR5S2. " |
|   CALL FUNCTION 'BEFORE_EXP_CUST_ADDRESS_SOLMAN' " |
| EXPORTING | ||
| IV_CLIENT | = lv_iv_client | |
| TABLES | ||
| IT_E071K | = lt_it_e071k | |
| ET_ADR6S2 | = lt_et_adr6s2 | |
| ET_ADR7S2 | = lt_et_adr7s2 | |
| ET_ADR8S2 | = lt_et_adr8s2 | |
| ET_ADR9S2 | = lt_et_adr9s2 | |
| ET_ADR10S2 | = lt_et_adr10s2 | |
| ET_ADR11S2 | = lt_et_adr11s2 | |
| ET_ADR12S2 | = lt_et_adr12s2 | |
| ET_ADR13S2 | = lt_et_adr13s2 | |
| ET_ADRTS2 | = lt_et_adrts2 | |
| ET_ADRUS2 | = lt_et_adrus2 | |
| IT_OBJ | = lt_it_obj | |
| ET_ADRCOMCS2 | = lt_et_adrcomcs2 | |
| ET_ADRCS2 | = lt_et_adrcs2 | |
| ET_ADRCTS2 | = lt_et_adrcts2 | |
| ET_ADRGS2 | = lt_et_adrgs2 | |
| ET_ADR2S2 | = lt_et_adr2s2 | |
| ET_ADR3S2 | = lt_et_adr3s2 | |
| ET_ADR4S2 | = lt_et_adr4s2 | |
| ET_ADR5S2 | = lt_et_adr5s2 | |
| . " BEFORE_EXP_CUST_ADDRESS_SOLMAN | ||
ABAP code using 7.40 inline data declarations to call FM BEFORE_EXP_CUST_ADDRESS_SOLMAN
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single MANDT FROM T000 INTO @DATA(ld_iv_client). | ||||
| DATA(ld_iv_client) | = SY-MANDT. | |||
Search for further information about these or an SAP related objects