SAP JIT01_READ_ANZVAR Function Module for NOTRANSL: JIT: Lesen der Anzeigevariante zum User
JIT01_READ_ANZVAR is a standard jit01 read anzvar 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: JIT: Lesen der Anzeigevariante zum User 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 jit01 read anzvar FM, simply by entering the name JIT01_READ_ANZVAR into the relevant SAP transaction such as SE37 or SE38.
Function Group: JIT01
Program Name: SAPLJIT01
Main Program: SAPLJIT01
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JIT01_READ_ANZVAR 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 'JIT01_READ_ANZVAR'"NOTRANSL: JIT: Lesen der Anzeigevariante zum User.
EXPORTING
UNAME_IV = "User name
* AZVAR_IV = "Display Variant in JIT Cockpit
TCODE_IV = "ABAP System Field: Current Transaction Code
IMPORTING
AZVAR_EV = "Display Variant in JIT Cockpit
AZVART_EV = "Short Text for Display Variant
USRSP_EV = "Indicator for User-Specific Saving
NO_AZVAR_FOUND = "Generic Type
IMPORTING Parameters details for JIT01_READ_ANZVAR
UNAME_IV - User name
Data type: USERNOptional: No
Call by Reference: No ( called with pass by value option)
AZVAR_IV - Display Variant in JIT Cockpit
Data type: JIT_AZVAR-AZVAROptional: Yes
Call by Reference: No ( called with pass by value option)
TCODE_IV - ABAP System Field: Current Transaction Code
Data type: SY-TCODEOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for JIT01_READ_ANZVAR
AZVAR_EV - Display Variant in JIT Cockpit
Data type: JIT_AZVAR-AZVAROptional: No
Call by Reference: No ( called with pass by value option)
AZVART_EV - Short Text for Display Variant
Data type: JIT_AZVART-AZVARTOptional: No
Call by Reference: No ( called with pass by value option)
USRSP_EV - Indicator for User-Specific Saving
Data type: JIT_AZVAR-USRSPOptional: No
Call by Reference: No ( called with pass by value option)
NO_AZVAR_FOUND - Generic Type
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for JIT01_READ_ANZVAR 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_azvar_ev | TYPE JIT_AZVAR-AZVAR, " | |||
| lv_uname_iv | TYPE USERN, " | |||
| lv_azvar_iv | TYPE JIT_AZVAR-AZVAR, " | |||
| lv_azvart_ev | TYPE JIT_AZVART-AZVART, " | |||
| lv_tcode_iv | TYPE SY-TCODE, " | |||
| lv_usrsp_ev | TYPE JIT_AZVAR-USRSP, " | |||
| lv_no_azvar_found | TYPE C. " |
|   CALL FUNCTION 'JIT01_READ_ANZVAR' "NOTRANSL: JIT: Lesen der Anzeigevariante zum User |
| EXPORTING | ||
| UNAME_IV | = lv_uname_iv | |
| AZVAR_IV | = lv_azvar_iv | |
| TCODE_IV | = lv_tcode_iv | |
| IMPORTING | ||
| AZVAR_EV | = lv_azvar_ev | |
| AZVART_EV | = lv_azvart_ev | |
| USRSP_EV | = lv_usrsp_ev | |
| NO_AZVAR_FOUND | = lv_no_azvar_found | |
| . " JIT01_READ_ANZVAR | ||
ABAP code using 7.40 inline data declarations to call FM JIT01_READ_ANZVAR
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 AZVAR FROM JIT_AZVAR INTO @DATA(ld_azvar_ev). | ||||
| "SELECT single AZVAR FROM JIT_AZVAR INTO @DATA(ld_azvar_iv). | ||||
| "SELECT single AZVART FROM JIT_AZVART INTO @DATA(ld_azvart_ev). | ||||
| "SELECT single TCODE FROM SY INTO @DATA(ld_tcode_iv). | ||||
| "SELECT single USRSP FROM JIT_AZVAR INTO @DATA(ld_usrsp_ev). | ||||
Search for further information about these or an SAP related objects