SAP ISHMED_VORLAGE_ORGIDS Function Module for









ISHMED_VORLAGE_ORGIDS is a standard ishmed vorlage orgids 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 ishmed vorlage orgids FM, simply by entering the name ISHMED_VORLAGE_ORGIDS into the relevant SAP transaction such as SE37 or SE38.

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



Function ISHMED_VORLAGE_ORGIDS 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 'ISHMED_VORLAGE_ORGIDS'"
EXPORTING
SS_EINRI = "Institution
SS_UMFELD = "Caller ID
* SS_NO_FALLIST = ' ' "
* SS_GDATUM = SY-DATUM "Validity Date
* SS_GPART = ' ' "Employee Responsible
* SS_GZEIT = SY-UZEIT "Validity Time
* SS_NBEW = ' ' "
* SS_NBEW_ANFOR = ' ' "
* SS_NFAL = ' ' "Current Case
* SS_NLEI = ' ' "Current Service
* SS_ERBOE = ' ' "

IMPORTING
E_ANFOE = "
E_ANPOE = "
E_ERBOE = "Performing Organizational Unit
E_GDATUM = "Service Start Date
E_GPART = "Employee Responsible
E_GZEIT = "
E_NBEW = "

EXCEPTIONS
POPUP_CANCELED = 1 NO_DATA_FOUND = 2
.



IMPORTING Parameters details for ISHMED_VORLAGE_ORGIDS

SS_EINRI - Institution

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

SS_UMFELD - Caller ID

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

SS_NO_FALLIST -

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

SS_GDATUM - Validity Date

Data type: NLEI-IBGDT
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_GPART - Employee Responsible

Data type: N1LSSTZ-GPART
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_GZEIT - Validity Time

Data type: NLEI-IBZT
Default: SY-UZEIT
Optional: Yes
Call by Reference: No ( called with pass by value option)

SS_NBEW -

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

SS_NBEW_ANFOR -

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

SS_NFAL - Current Case

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

SS_NLEI - Current Service

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

SS_ERBOE -

Data type: NLEI-ERBOE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISHMED_VORLAGE_ORGIDS

E_ANFOE -

Data type: NLEI-ANFOE
Optional: No
Call by Reference: No ( called with pass by value option)

E_ANPOE -

Data type: NLEI-ANPOE
Optional: No
Call by Reference: No ( called with pass by value option)

E_ERBOE - Performing Organizational Unit

Data type: NLEI-ERBOE
Optional: No
Call by Reference: No ( called with pass by value option)

E_GDATUM - Service Start Date

Data type: NLEI-IBGDT
Optional: No
Call by Reference: No ( called with pass by value option)

E_GPART - Employee Responsible

Data type: N1LSSTZ-GPART
Optional: No
Call by Reference: No ( called with pass by value option)

E_GZEIT -

Data type: NLEI-IBZT
Optional: No
Call by Reference: No ( called with pass by value option)

E_NBEW -

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

EXCEPTIONS details

POPUP_CANCELED -

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

NO_DATA_FOUND -

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

Copy and paste ABAP code example for ISHMED_VORLAGE_ORGIDS 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_e_anfoe  TYPE NLEI-ANFOE, "   
lv_ss_einri  TYPE NBEW-EINRI, "   
lv_popup_canceled  TYPE NBEW, "   
lv_ss_umfeld  TYPE NBEW, "   
lv_ss_no_fallist  TYPE NBEW, "   SPACE
lv_e_anpoe  TYPE NLEI-ANPOE, "   
lv_ss_gdatum  TYPE NLEI-IBGDT, "   SY-DATUM
lv_no_data_found  TYPE NLEI, "   
lv_e_erboe  TYPE NLEI-ERBOE, "   
lv_ss_gpart  TYPE N1LSSTZ-GPART, "   SPACE
lv_e_gdatum  TYPE NLEI-IBGDT, "   
lv_ss_gzeit  TYPE NLEI-IBZT, "   SY-UZEIT
lv_e_gpart  TYPE N1LSSTZ-GPART, "   
lv_ss_nbew  TYPE NBEW, "   SPACE
lv_e_gzeit  TYPE NLEI-IBZT, "   
lv_ss_nbew_anfor  TYPE NBEW, "   SPACE
lv_e_nbew  TYPE NBEW, "   
lv_ss_nfal  TYPE NFAL, "   SPACE
lv_ss_nlei  TYPE NLEI, "   SPACE
lv_ss_erboe  TYPE NLEI-ERBOE. "   SPACE

  CALL FUNCTION 'ISHMED_VORLAGE_ORGIDS'  "
    EXPORTING
         SS_EINRI = lv_ss_einri
         SS_UMFELD = lv_ss_umfeld
         SS_NO_FALLIST = lv_ss_no_fallist
         SS_GDATUM = lv_ss_gdatum
         SS_GPART = lv_ss_gpart
         SS_GZEIT = lv_ss_gzeit
         SS_NBEW = lv_ss_nbew
         SS_NBEW_ANFOR = lv_ss_nbew_anfor
         SS_NFAL = lv_ss_nfal
         SS_NLEI = lv_ss_nlei
         SS_ERBOE = lv_ss_erboe
    IMPORTING
         E_ANFOE = lv_e_anfoe
         E_ANPOE = lv_e_anpoe
         E_ERBOE = lv_e_erboe
         E_GDATUM = lv_e_gdatum
         E_GPART = lv_e_gpart
         E_GZEIT = lv_e_gzeit
         E_NBEW = lv_e_nbew
    EXCEPTIONS
        POPUP_CANCELED = 1
        NO_DATA_FOUND = 2
. " ISHMED_VORLAGE_ORGIDS




ABAP code using 7.40 inline data declarations to call FM ISHMED_VORLAGE_ORGIDS

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 ANFOE FROM NLEI INTO @DATA(ld_e_anfoe).
 
"SELECT single EINRI FROM NBEW INTO @DATA(ld_ss_einri).
 
 
 
DATA(ld_ss_no_fallist) = ' '.
 
"SELECT single ANPOE FROM NLEI INTO @DATA(ld_e_anpoe).
 
"SELECT single IBGDT FROM NLEI INTO @DATA(ld_ss_gdatum).
DATA(ld_ss_gdatum) = SY-DATUM.
 
 
"SELECT single ERBOE FROM NLEI INTO @DATA(ld_e_erboe).
 
"SELECT single GPART FROM N1LSSTZ INTO @DATA(ld_ss_gpart).
DATA(ld_ss_gpart) = ' '.
 
"SELECT single IBGDT FROM NLEI INTO @DATA(ld_e_gdatum).
 
"SELECT single IBZT FROM NLEI INTO @DATA(ld_ss_gzeit).
DATA(ld_ss_gzeit) = SY-UZEIT.
 
"SELECT single GPART FROM N1LSSTZ INTO @DATA(ld_e_gpart).
 
DATA(ld_ss_nbew) = ' '.
 
"SELECT single IBZT FROM NLEI INTO @DATA(ld_e_gzeit).
 
DATA(ld_ss_nbew_anfor) = ' '.
 
 
DATA(ld_ss_nfal) = ' '.
 
DATA(ld_ss_nlei) = ' '.
 
"SELECT single ERBOE FROM NLEI INTO @DATA(ld_ss_erboe).
DATA(ld_ss_erboe) = ' '.
 


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!