SAP ISHMED_READ_NORG Function Module for









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

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



Function ISHMED_READ_NORG 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_READ_NORG'"
EXPORTING
* SS_CHECK = ' ' "
* SS_CHECK_FREIG = OFF "
* SS_CHECK_LOEKZ = OFF "
* SS_DATUM = SY-DATUM "
* SS_EINRI = ' ' "
SS_ORGID = "

IMPORTING
E_NORG = "

EXCEPTIONS
NOT_ANFOE = 1 NOT_ANPOE = 2 NOT_ERBOE = 3 NOT_FOUND = 4 NOT_FREIG = 5 NOT_VALID = 6 SET_LOEKZ = 7
.



IMPORTING Parameters details for ISHMED_READ_NORG

SS_CHECK -

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

SS_CHECK_FREIG -

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

SS_CHECK_LOEKZ -

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

SS_DATUM -

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

SS_EINRI -

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

SS_ORGID -

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

EXPORTING Parameters details for ISHMED_READ_NORG

E_NORG -

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

EXCEPTIONS details

NOT_ANFOE -

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

NOT_ANPOE -

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

NOT_ERBOE -

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

NOT_FOUND -

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

NOT_FREIG -

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

NOT_VALID -

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

SET_LOEKZ -

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

Copy and paste ABAP code example for ISHMED_READ_NORG 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_norg  TYPE NORG, "   
lv_ss_check  TYPE NORG, "   SPACE
lv_not_anfoe  TYPE NORG, "   
lv_not_anpoe  TYPE NORG, "   
lv_ss_check_freig  TYPE NORG, "   OFF
lv_not_erboe  TYPE NORG, "   
lv_ss_check_loekz  TYPE NORG, "   OFF
lv_ss_datum  TYPE NORG-BEGDT, "   SY-DATUM
lv_not_found  TYPE NORG, "   
lv_ss_einri  TYPE NORG-EINRI, "   SPACE
lv_not_freig  TYPE NORG, "   
lv_ss_orgid  TYPE NORG-ORGID, "   
lv_not_valid  TYPE NORG, "   
lv_set_loekz  TYPE NORG. "   

  CALL FUNCTION 'ISHMED_READ_NORG'  "
    EXPORTING
         SS_CHECK = lv_ss_check
         SS_CHECK_FREIG = lv_ss_check_freig
         SS_CHECK_LOEKZ = lv_ss_check_loekz
         SS_DATUM = lv_ss_datum
         SS_EINRI = lv_ss_einri
         SS_ORGID = lv_ss_orgid
    IMPORTING
         E_NORG = lv_e_norg
    EXCEPTIONS
        NOT_ANFOE = 1
        NOT_ANPOE = 2
        NOT_ERBOE = 3
        NOT_FOUND = 4
        NOT_FREIG = 5
        NOT_VALID = 6
        SET_LOEKZ = 7
. " ISHMED_READ_NORG




ABAP code using 7.40 inline data declarations to call FM ISHMED_READ_NORG

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_check) = ' '.
 
 
 
DATA(ld_ss_check_freig) = OFF.
 
 
DATA(ld_ss_check_loekz) = OFF.
 
"SELECT single BEGDT FROM NORG INTO @DATA(ld_ss_datum).
DATA(ld_ss_datum) = SY-DATUM.
 
 
"SELECT single EINRI FROM NORG INTO @DATA(ld_ss_einri).
DATA(ld_ss_einri) = ' '.
 
 
"SELECT single ORGID FROM NORG INTO @DATA(ld_ss_orgid).
 
 
 


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!