SAP SPC_F4_ALV_VARIANTS Function Module for NOTRANSL: Handelskalkulation: F4-Hilfe zu ALV-Listvarianten
SPC_F4_ALV_VARIANTS is a standard spc f4 alv variants 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: Handelskalkulation: F4-Hilfe zu ALV-Listvarianten 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 spc f4 alv variants FM, simply by entering the name SPC_F4_ALV_VARIANTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: WVKF
Program Name: SAPLWVKF
Main Program: SAPLWVKF
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SPC_F4_ALV_VARIANTS 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 'SPC_F4_ALV_VARIANTS'"NOTRANSL: Handelskalkulation: F4-Hilfe zu ALV-Listvarianten.
EXPORTING
* PI_DISP = ' ' "
PI_RELID = "Region in IMPORT/EXPORT Data Table
PI_REPORT = "ABAP Program Name
* PI_HANDLE = ' ' "Management ID for Repeated Calls from the Same Program
PI_LOG_GROUP = "Logical Group Name
PI_USERNAME = "User name for user-specific storage
IMPORTING
PE_VARIANT = "Layout
EXCEPTIONS
NO_VALUES_FOUND = 1
IMPORTING Parameters details for SPC_F4_ALV_VARIANTS
PI_DISP -
Data type: SY-MARKYDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
PI_RELID - Region in IMPORT/EXPORT Data Table
Data type: LTDX-RELIDOptional: No
Call by Reference: No ( called with pass by value option)
PI_REPORT - ABAP Program Name
Data type: LTDX-REPORTOptional: No
Call by Reference: No ( called with pass by value option)
PI_HANDLE - Management ID for Repeated Calls from the Same Program
Data type: LTDX-HANDLEDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
PI_LOG_GROUP - Logical Group Name
Data type: LTDX-LOG_GROUPOptional: No
Call by Reference: No ( called with pass by value option)
PI_USERNAME - User name for user-specific storage
Data type: LTDX-USERNAMEOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SPC_F4_ALV_VARIANTS
PE_VARIANT - Layout
Data type: LTDX-VARIANTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_VALUES_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SPC_F4_ALV_VARIANTS 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_pi_disp | TYPE SY-MARKY, " ' ' | |||
| lv_pe_variant | TYPE LTDX-VARIANT, " | |||
| lv_no_values_found | TYPE LTDX, " | |||
| lv_pi_relid | TYPE LTDX-RELID, " | |||
| lv_pi_report | TYPE LTDX-REPORT, " | |||
| lv_pi_handle | TYPE LTDX-HANDLE, " ' ' | |||
| lv_pi_log_group | TYPE LTDX-LOG_GROUP, " | |||
| lv_pi_username | TYPE LTDX-USERNAME. " |
|   CALL FUNCTION 'SPC_F4_ALV_VARIANTS' "NOTRANSL: Handelskalkulation: F4-Hilfe zu ALV-Listvarianten |
| EXPORTING | ||
| PI_DISP | = lv_pi_disp | |
| PI_RELID | = lv_pi_relid | |
| PI_REPORT | = lv_pi_report | |
| PI_HANDLE | = lv_pi_handle | |
| PI_LOG_GROUP | = lv_pi_log_group | |
| PI_USERNAME | = lv_pi_username | |
| IMPORTING | ||
| PE_VARIANT | = lv_pe_variant | |
| EXCEPTIONS | ||
| NO_VALUES_FOUND = 1 | ||
| . " SPC_F4_ALV_VARIANTS | ||
ABAP code using 7.40 inline data declarations to call FM SPC_F4_ALV_VARIANTS
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 MARKY FROM SY INTO @DATA(ld_pi_disp). | ||||
| DATA(ld_pi_disp) | = ' '. | |||
| "SELECT single VARIANT FROM LTDX INTO @DATA(ld_pe_variant). | ||||
| "SELECT single RELID FROM LTDX INTO @DATA(ld_pi_relid). | ||||
| "SELECT single REPORT FROM LTDX INTO @DATA(ld_pi_report). | ||||
| "SELECT single HANDLE FROM LTDX INTO @DATA(ld_pi_handle). | ||||
| DATA(ld_pi_handle) | = ' '. | |||
| "SELECT single LOG_GROUP FROM LTDX INTO @DATA(ld_pi_log_group). | ||||
| "SELECT single USERNAME FROM LTDX INTO @DATA(ld_pi_username). | ||||
Search for further information about these or an SAP related objects