SAP ISH_SSA_UI_DATA_SET Function Module for









ISH_SSA_UI_DATA_SET is a standard ish ssa ui data set 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 ish ssa ui data set FM, simply by entering the name ISH_SSA_UI_DATA_SET into the relevant SAP transaction such as SE37 or SE38.

Function Group: NSSA_UI
Program Name: SAPLNSSA_UI
Main Program: SAPLNSSA_UI
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISH_SSA_UI_DATA_SET 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 'ISH_SSA_UI_DATA_SET'"
EXPORTING
* I_SSA_TYPE = ' ' "
* I_REFRESH = ' ' "
* I_MARK = ' ' "
* I_DETAILCODE = 'TDTLB' "
* I_NODETAIL = ' ' "
IT_VNLEI = "
IT_VNBEW = "
* IT_VNNLZ = "
IT_VNLLZ = "
I_EINRI = "
I_FALNR = "
IS_NFAL = "
IS_NPAT = "
* I_PROGRAM = 'SAPLN017' "
* I_VIEWID = 'SAP_SV_SSA' "
* I_VIEWTYPE = 'L01' "
* I_VIEWTITLE = "
.



IMPORTING Parameters details for ISH_SSA_UI_DATA_SET

I_SSA_TYPE -

Data type: ISH_ZUOTYP
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_REFRESH -

Data type: ISH_ON_OFF
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_MARK -

Data type: ISH_ON_OFF
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_DETAILCODE -

Data type: SYUCOMM
Default: 'TDTLB'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_NODETAIL -

Data type: ISH_ON_OFF
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_VNLEI -

Data type: ISH_T_VNLEI
Optional: No
Call by Reference: Yes

IT_VNBEW -

Data type: ISH_YT_VNBEW
Optional: No
Call by Reference: Yes

IT_VNNLZ -

Data type: ISH_NL_VNNLZ
Optional: Yes
Call by Reference: Yes

IT_VNLLZ -

Data type: ISH_T_VNLLZ
Optional: No
Call by Reference: Yes

I_EINRI -

Data type: EINRI
Optional: No
Call by Reference: No ( called with pass by value option)

I_FALNR -

Data type: FALNR
Optional: No
Call by Reference: No ( called with pass by value option)

IS_NFAL -

Data type: NFAL
Optional: No
Call by Reference: No ( called with pass by value option)

IS_NPAT -

Data type: NPAT
Optional: No
Call by Reference: No ( called with pass by value option)

I_PROGRAM -

Data type: SYREPID
Default: 'SAPLN017'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VIEWID -

Data type: NVIEWID
Default: 'SAP_SV_SSA'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VIEWTYPE -

Data type: NVIEWTYPE
Default: 'L01'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VIEWTITLE -

Data type: STRING
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISH_SSA_UI_DATA_SET 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_ssa_type  TYPE ISH_ZUOTYP, "   ' '
lv_i_refresh  TYPE ISH_ON_OFF, "   ' '
lv_i_mark  TYPE ISH_ON_OFF, "   ' '
lv_i_detailcode  TYPE SYUCOMM, "   'TDTLB'
lv_i_nodetail  TYPE ISH_ON_OFF, "   ' '
lv_it_vnlei  TYPE ISH_T_VNLEI, "   
lv_it_vnbew  TYPE ISH_YT_VNBEW, "   
lv_it_vnnlz  TYPE ISH_NL_VNNLZ, "   
lv_it_vnllz  TYPE ISH_T_VNLLZ, "   
lv_i_einri  TYPE EINRI, "   
lv_i_falnr  TYPE FALNR, "   
lv_is_nfal  TYPE NFAL, "   
lv_is_npat  TYPE NPAT, "   
lv_i_program  TYPE SYREPID, "   'SAPLN017'
lv_i_viewid  TYPE NVIEWID, "   'SAP_SV_SSA'
lv_i_viewtype  TYPE NVIEWTYPE, "   'L01'
lv_i_viewtitle  TYPE STRING. "   

  CALL FUNCTION 'ISH_SSA_UI_DATA_SET'  "
    EXPORTING
         I_SSA_TYPE = lv_i_ssa_type
         I_REFRESH = lv_i_refresh
         I_MARK = lv_i_mark
         I_DETAILCODE = lv_i_detailcode
         I_NODETAIL = lv_i_nodetail
         IT_VNLEI = lv_it_vnlei
         IT_VNBEW = lv_it_vnbew
         IT_VNNLZ = lv_it_vnnlz
         IT_VNLLZ = lv_it_vnllz
         I_EINRI = lv_i_einri
         I_FALNR = lv_i_falnr
         IS_NFAL = lv_is_nfal
         IS_NPAT = lv_is_npat
         I_PROGRAM = lv_i_program
         I_VIEWID = lv_i_viewid
         I_VIEWTYPE = lv_i_viewtype
         I_VIEWTITLE = lv_i_viewtitle
. " ISH_SSA_UI_DATA_SET




ABAP code using 7.40 inline data declarations to call FM ISH_SSA_UI_DATA_SET

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.

DATA(ld_i_ssa_type) = ' '.
 
DATA(ld_i_refresh) = ' '.
 
DATA(ld_i_mark) = ' '.
 
DATA(ld_i_detailcode) = 'TDTLB'.
 
DATA(ld_i_nodetail) = ' '.
 
 
 
 
 
 
 
 
 
DATA(ld_i_program) = 'SAPLN017'.
 
DATA(ld_i_viewid) = 'SAP_SV_SSA'.
 
DATA(ld_i_viewtype) = 'L01'.
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!