SAP SDCAS_ADDRESS_LIST_VIEWS_FILL Function Module for NOTRANSL: Füllen der Views über Adressen eines Adressbestandes
SDCAS_ADDRESS_LIST_VIEWS_FILL is a standard sdcas address list views fill SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Füllen der Views über Adressen eines Adressbestandes processing and below is the pattern details for this FM, 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 sdcas address list views fill FM, simply by entering the name SDCAS_ADDRESS_LIST_VIEWS_FILL into the relevant SAP transaction such as SE37 or SE38.
Function Group: V43M
Program Name: SAPLV43M
Main Program: SAPLV43M
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SDCAS_ADDRESS_LIST_VIEWS_FILL 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 'SDCAS_ADDRESS_LIST_VIEWS_FILL'"NOTRANSL: Füllen der Views über Adressen eines Adressbestandes.
EXPORTING
FI_SADLSTRECH = "
FI_SADLSTRECB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* FI_VIEW_RECL_FILL = "
* FI_VIEW_RECP_FILL = "
* FI_VIEW_CAS01_FILL = "
* FI_SENDER_COUNTRY = "
IMPORTING
FE_CAS01 = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FE_SADLSTRECL = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FE_SADLSTRECP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
FES_ADDR_KEY = "
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLV43M_007 User Exit to Supply LIS Data
IMPORTING Parameters details for SDCAS_ADDRESS_LIST_VIEWS_FILL
FI_SADLSTRECH -
Data type: LV43M_TY_SADLSTRECHOptional: No
Call by Reference: No ( called with pass by value option)
FI_SADLSTRECB - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: LV43M_TY_SADLSTRECBOptional: No
Call by Reference: No ( called with pass by value option)
FI_VIEW_RECL_FILL -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_VIEW_RECP_FILL -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_VIEW_CAS01_FILL -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_SENDER_COUNTRY -
Data type: T005-LAND1Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SDCAS_ADDRESS_LIST_VIEWS_FILL
FE_CAS01 - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CAS01Optional: No
Call by Reference: No ( called with pass by value option)
FE_SADLSTRECL - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SADLSTRECLOptional: No
Call by Reference: No ( called with pass by value option)
FE_SADLSTRECP - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SADLSTRECPOptional: No
Call by Reference: No ( called with pass by value option)
FES_ADDR_KEY -
Data type: ADDR_KEYOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SDCAS_ADDRESS_LIST_VIEWS_FILL 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: | ||||
| lv_fe_cas01 | TYPE CAS01, " | |||
| lv_fi_sadlstrech | TYPE LV43M_TY_SADLSTRECH, " | |||
| lv_fe_sadlstrecl | TYPE SADLSTRECL, " | |||
| lv_fi_sadlstrecb | TYPE LV43M_TY_SADLSTRECB, " | |||
| lv_fe_sadlstrecp | TYPE SADLSTRECP, " | |||
| lv_fi_view_recl_fill | TYPE SADLSTRECP, " | |||
| lv_fes_addr_key | TYPE ADDR_KEY, " | |||
| lv_fi_view_recp_fill | TYPE ADDR_KEY, " | |||
| lv_fi_view_cas01_fill | TYPE ADDR_KEY, " | |||
| lv_fi_sender_country | TYPE T005-LAND1. " |
|   CALL FUNCTION 'SDCAS_ADDRESS_LIST_VIEWS_FILL' "NOTRANSL: Füllen der Views über Adressen eines Adressbestandes |
| EXPORTING | ||
| FI_SADLSTRECH | = lv_fi_sadlstrech | |
| FI_SADLSTRECB | = lv_fi_sadlstrecb | |
| FI_VIEW_RECL_FILL | = lv_fi_view_recl_fill | |
| FI_VIEW_RECP_FILL | = lv_fi_view_recp_fill | |
| FI_VIEW_CAS01_FILL | = lv_fi_view_cas01_fill | |
| FI_SENDER_COUNTRY | = lv_fi_sender_country | |
| IMPORTING | ||
| FE_CAS01 | = lv_fe_cas01 | |
| FE_SADLSTRECL | = lv_fe_sadlstrecl | |
| FE_SADLSTRECP | = lv_fe_sadlstrecp | |
| FES_ADDR_KEY | = lv_fes_addr_key | |
| . " SDCAS_ADDRESS_LIST_VIEWS_FILL | ||
ABAP code using 7.40 inline data declarations to call FM SDCAS_ADDRESS_LIST_VIEWS_FILL
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 LAND1 FROM T005 INTO @DATA(ld_fi_sender_country). | ||||
Search for further information about these or an SAP related objects