SAP ISH_DATA_SET_SERVICES_600 Function Module for









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

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



Function ISH_DATA_SET_SERVICES_600 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_DATA_SET_SERVICES_600'"
EXPORTING
SS_EINRI = "IS-H: Institution
* SS_MARK = ' ' "Display Checkbox
* SS_DETAILCODE = 'TDTLB' "
* SS_NODETAIL = ' ' "
SS_FALNR = "IS-H: Case Number
SS_NFAL = "
SS_NPAT = "
* SS_PROGRAM = 'SAPLN017' "ABAP Program: Current Main Program
* SS_VIEWID = 'SAP_SV_ALL' "IS-H / IS-H*MED: Identification of View
* SS_VIEWTYPE = 'L02' "IS-H / IS-H*MED: View Type
* SS_VIEWTITLE = "View Name
* SS_REFRESH = ' ' "

TABLES
SS_VNLEI = "Services to Be Displayed
SS_VNBEW = "Current Movements
* SS_VNNLZ = "
.



IMPORTING Parameters details for ISH_DATA_SET_SERVICES_600

SS_EINRI - IS-H: Institution

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

SS_MARK - Display Checkbox

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

SS_DETAILCODE -

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

SS_NODETAIL -

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

SS_FALNR - IS-H: Case Number

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

SS_NFAL -

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

SS_NPAT -

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

SS_PROGRAM - ABAP Program: Current Main Program

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

SS_VIEWID - IS-H / IS-H*MED: Identification of View

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

SS_VIEWTYPE - IS-H / IS-H*MED: View Type

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

SS_VIEWTITLE - View Name

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

SS_REFRESH -

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

TABLES Parameters details for ISH_DATA_SET_SERVICES_600

SS_VNLEI - Services to Be Displayed

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

SS_VNBEW - Current Movements

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

SS_VNNLZ -

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

Copy and paste ABAP code example for ISH_DATA_SET_SERVICES_600 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_ss_einri  TYPE EINRI, "   
lt_ss_vnlei  TYPE STANDARD TABLE OF VNLEI, "   
lv_ss_mark  TYPE ISH_ON_OFF, "   ' '
lv_ss_detailcode  TYPE SY-UCOMM, "   'TDTLB'
lv_ss_nodetail  TYPE ISH_ON_OFF, "   ' '
lv_ss_falnr  TYPE FALNR, "   
lt_ss_vnbew  TYPE STANDARD TABLE OF VNBEW, "   
lv_ss_nfal  TYPE NFAL, "   
lt_ss_vnnlz  TYPE STANDARD TABLE OF VNNLZ, "   
lv_ss_npat  TYPE NPAT, "   
lv_ss_program  TYPE SYST-REPID, "   'SAPLN017'
lv_ss_viewid  TYPE NVIEWID, "   'SAP_SV_ALL'
lv_ss_viewtype  TYPE NVIEWTYPE, "   'L02'
lv_ss_viewtitle  TYPE STRING, "   
lv_ss_refresh  TYPE ISH_ON_OFF. "   ' '

  CALL FUNCTION 'ISH_DATA_SET_SERVICES_600'  "
    EXPORTING
         SS_EINRI = lv_ss_einri
         SS_MARK = lv_ss_mark
         SS_DETAILCODE = lv_ss_detailcode
         SS_NODETAIL = lv_ss_nodetail
         SS_FALNR = lv_ss_falnr
         SS_NFAL = lv_ss_nfal
         SS_NPAT = lv_ss_npat
         SS_PROGRAM = lv_ss_program
         SS_VIEWID = lv_ss_viewid
         SS_VIEWTYPE = lv_ss_viewtype
         SS_VIEWTITLE = lv_ss_viewtitle
         SS_REFRESH = lv_ss_refresh
    TABLES
         SS_VNLEI = lt_ss_vnlei
         SS_VNBEW = lt_ss_vnbew
         SS_VNNLZ = lt_ss_vnnlz
. " ISH_DATA_SET_SERVICES_600




ABAP code using 7.40 inline data declarations to call FM ISH_DATA_SET_SERVICES_600

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_ss_mark) = ' '.
 
"SELECT single UCOMM FROM SY INTO @DATA(ld_ss_detailcode).
DATA(ld_ss_detailcode) = 'TDTLB'.
 
DATA(ld_ss_nodetail) = ' '.
 
 
 
 
 
 
"SELECT single REPID FROM SYST INTO @DATA(ld_ss_program).
DATA(ld_ss_program) = 'SAPLN017'.
 
DATA(ld_ss_viewid) = 'SAP_SV_ALL'.
 
DATA(ld_ss_viewtype) = 'L02'.
 
 
DATA(ld_ss_refresh) = ' '.
 


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!