SAP ISH_VERBUCHER_NORG Function Module for IS-H: Updates org. units









ISH_VERBUCHER_NORG is a standard ish verbucher norg 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: Updates org. units 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 verbucher norg FM, simply by entering the name ISH_VERBUCHER_NORG into the relevant SAP transaction such as SE37 or SE38.

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



Function ISH_VERBUCHER_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 'ISH_VERBUCHER_NORG'"IS-H: Updates org. units
EXPORTING
NNORG = "
ONORG = "
TCODE = "
UPD_ICDTXT_NORG = "
UPD_NORG = "
UPD_TN10H = "
UP_DATE = "
UP_TIME = "

TABLES
ICDTXT_NORG = "
XTN10H = "
YTN10H = "
XTNKFO = "
YTNKFO = "
.



IMPORTING Parameters details for ISH_VERBUCHER_NORG

NNORG -

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

ONORG -

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

TCODE -

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

UPD_ICDTXT_NORG -

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

UPD_NORG -

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

UPD_TN10H -

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

UP_DATE -

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

UP_TIME -

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

TABLES Parameters details for ISH_VERBUCHER_NORG

ICDTXT_NORG -

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

XTN10H -

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

YTN10H -

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

XTNKFO -

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

YTNKFO -

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

Copy and paste ABAP code example for ISH_VERBUCHER_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_nnorg  TYPE NORG, "   
lt_icdtxt_norg  TYPE STANDARD TABLE OF CDTXT, "   
lv_onorg  TYPE NORG, "   
lt_xtn10h  TYPE STANDARD TABLE OF VTN10H, "   
lv_tcode  TYPE SY-TCODE, "   
lt_ytn10h  TYPE STANDARD TABLE OF VTN10H, "   
lt_xtnkfo  TYPE STANDARD TABLE OF VTNKFO, "   
lv_upd_icdtxt_norg  TYPE CDPOS-CHNGIND, "   
lt_ytnkfo  TYPE STANDARD TABLE OF VTNKFO, "   
lv_upd_norg  TYPE CDPOS-CHNGIND, "   
lv_upd_tn10h  TYPE CDPOS-CHNGIND, "   
lv_up_date  TYPE SY-DATUM, "   
lv_up_time  TYPE SY-UZEIT. "   

  CALL FUNCTION 'ISH_VERBUCHER_NORG'  "IS-H: Updates org. units
    EXPORTING
         NNORG = lv_nnorg
         ONORG = lv_onorg
         TCODE = lv_tcode
         UPD_ICDTXT_NORG = lv_upd_icdtxt_norg
         UPD_NORG = lv_upd_norg
         UPD_TN10H = lv_upd_tn10h
         UP_DATE = lv_up_date
         UP_TIME = lv_up_time
    TABLES
         ICDTXT_NORG = lt_icdtxt_norg
         XTN10H = lt_xtn10h
         YTN10H = lt_ytn10h
         XTNKFO = lt_xtnkfo
         YTNKFO = lt_ytnkfo
. " ISH_VERBUCHER_NORG




ABAP code using 7.40 inline data declarations to call FM ISH_VERBUCHER_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.

 
 
 
 
"SELECT single TCODE FROM SY INTO @DATA(ld_tcode).
 
 
 
"SELECT single CHNGIND FROM CDPOS INTO @DATA(ld_upd_icdtxt_norg).
 
 
"SELECT single CHNGIND FROM CDPOS INTO @DATA(ld_upd_norg).
 
"SELECT single CHNGIND FROM CDPOS INTO @DATA(ld_upd_tn10h).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_up_date).
 
"SELECT single UZEIT FROM SY INTO @DATA(ld_up_time).
 


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!