SAP DIPVAR_LOAD_VARIANT Function Module for Load Variant
DIPVAR_LOAD_VARIANT is a standard dipvar load variant SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Load Variant 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 dipvar load variant FM, simply by entering the name DIPVAR_LOAD_VARIANT into the relevant SAP transaction such as SE37 or SE38.
Function Group: DIPVAR
Program Name: SAPLDIPVAR
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DIPVAR_LOAD_VARIANT 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 'DIPVAR_LOAD_VARIANT'"Load Variant.
EXPORTING
I_APPL = "Variant Application
I_VARIANT_TAB_NAME = "Table Name
* I_POPUP_TITLE = "Text Field
IMPORTING
ET_VARIANT_TAB = "Predefined Type
E_VARNAME = "Variant
CHANGING
* C_UNAME = "Logon Name of User
IMPORTING Parameters details for DIPVAR_LOAD_VARIANT
I_APPL - Variant Application
Data type: AD01VAR_APPLOptional: No
Call by Reference: Yes
I_VARIANT_TAB_NAME - Table Name
Data type: TABNAMEOptional: No
Call by Reference: Yes
I_POPUP_TITLE - Text Field
Data type: TEXT50Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for DIPVAR_LOAD_VARIANT
ET_VARIANT_TAB - Predefined Type
Data type: ANY TABLEOptional: No
Call by Reference: Yes
E_VARNAME - Variant
Data type: AD01VARIANTOptional: No
Call by Reference: Yes
CHANGING Parameters details for DIPVAR_LOAD_VARIANT
C_UNAME - Logon Name of User
Data type: SYUNAMEOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for DIPVAR_LOAD_VARIANT 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_i_appl | TYPE AD01VAR_APPL, " | |||
| lv_c_uname | TYPE SYUNAME, " | |||
| lv_et_variant_tab | TYPE ANY TABLE, " | |||
| lv_e_varname | TYPE AD01VARIANT, " | |||
| lv_i_variant_tab_name | TYPE TABNAME, " | |||
| lv_i_popup_title | TYPE TEXT50. " |
|   CALL FUNCTION 'DIPVAR_LOAD_VARIANT' "Load Variant |
| EXPORTING | ||
| I_APPL | = lv_i_appl | |
| I_VARIANT_TAB_NAME | = lv_i_variant_tab_name | |
| I_POPUP_TITLE | = lv_i_popup_title | |
| IMPORTING | ||
| ET_VARIANT_TAB | = lv_et_variant_tab | |
| E_VARNAME | = lv_e_varname | |
| CHANGING | ||
| C_UNAME | = lv_c_uname | |
| . " DIPVAR_LOAD_VARIANT | ||
ABAP code using 7.40 inline data declarations to call FM DIPVAR_LOAD_VARIANT
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.Search for further information about these or an SAP related objects