SAP ISH_SERVICE_ENTRY_DATA_PUT Function Module for IS-H: Set Current Data for Case within NL10N
ISH_SERVICE_ENTRY_DATA_PUT is a standard ish service entry data put SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-H: Set Current Data for Case within NL10N 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 ish service entry data put FM, simply by entering the name ISH_SERVICE_ENTRY_DATA_PUT into the relevant SAP transaction such as SE37 or SE38.
Function Group: N017
Program Name: SAPLN017
Main Program: SAPLN017
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_SERVICE_ENTRY_DATA_PUT 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_SERVICE_ENTRY_DATA_PUT'"IS-H: Set Current Data for Case within NL10N.
EXPORTING
* SS_ACTNFAL = "IS-H: Cases
* SS_ADJNLICZ = ' ' "NLICZ Adjustment via actnlei
TABLES
* SS_ACTNLEI = "Current Services
* SS_ACTNNLZ = "Current Physician-to-Service Assignments
* SS_ACTNLLZ = "Current Service-to-Service Assignments
* SS_ACTNWCHZME = "Current Service Timestamps
* SS_DRNLSR = "Successful Cancellations for NLICZ Comparison
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLN017_001 IS-H: User Exit for Surgical Procedure Encoding (Call from SAPLN017)
EXIT_SAPLN017_002 IS-H: User Exit for Auto. Service-to-Certif. Asgmt (Call from SAPLN017)
EXIT_SAPLN017_003 IS-H: Check Customer-Specific Fields During Service Entry
IMPORTING Parameters details for ISH_SERVICE_ENTRY_DATA_PUT
SS_ACTNFAL - IS-H: Cases
Data type: NFALOptional: Yes
Call by Reference: No ( called with pass by value option)
SS_ADJNLICZ - NLICZ Adjustment via actnlei
Data type: ISH_ON_OFFDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISH_SERVICE_ENTRY_DATA_PUT
SS_ACTNLEI - Current Services
Data type: VNLEIOptional: Yes
Call by Reference: No ( called with pass by value option)
SS_ACTNNLZ - Current Physician-to-Service Assignments
Data type: VNNLZOptional: Yes
Call by Reference: No ( called with pass by value option)
SS_ACTNLLZ - Current Service-to-Service Assignments
Data type: VNLLZOptional: Yes
Call by Reference: No ( called with pass by value option)
SS_ACTNWCHZME - Current Service Timestamps
Data type: VNWCHZMEOptional: Yes
Call by Reference: Yes
SS_DRNLSR - Successful Cancellations for NLICZ Comparison
Data type: RNLSROptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ISH_SERVICE_ENTRY_DATA_PUT 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_actnfal | TYPE NFAL, " | |||
| lt_ss_actnlei | TYPE STANDARD TABLE OF VNLEI, " | |||
| lt_ss_actnnlz | TYPE STANDARD TABLE OF VNNLZ, " | |||
| lv_ss_adjnlicz | TYPE ISH_ON_OFF, " ' ' | |||
| lt_ss_actnllz | TYPE STANDARD TABLE OF VNLLZ, " | |||
| lt_ss_actnwchzme | TYPE STANDARD TABLE OF VNWCHZME, " | |||
| lt_ss_drnlsr | TYPE STANDARD TABLE OF RNLSR. " |
|   CALL FUNCTION 'ISH_SERVICE_ENTRY_DATA_PUT' "IS-H: Set Current Data for Case within NL10N |
| EXPORTING | ||
| SS_ACTNFAL | = lv_ss_actnfal | |
| SS_ADJNLICZ | = lv_ss_adjnlicz | |
| TABLES | ||
| SS_ACTNLEI | = lt_ss_actnlei | |
| SS_ACTNNLZ | = lt_ss_actnnlz | |
| SS_ACTNLLZ | = lt_ss_actnllz | |
| SS_ACTNWCHZME | = lt_ss_actnwchzme | |
| SS_DRNLSR | = lt_ss_drnlsr | |
| . " ISH_SERVICE_ENTRY_DATA_PUT | ||
ABAP code using 7.40 inline data declarations to call FM ISH_SERVICE_ENTRY_DATA_PUT
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_adjnlicz) | = ' '. | |||
Search for further information about these or an SAP related objects