SAP ISH_N2_UPD_CONTAINER_DOCUMENT Function Module for









ISH_N2_UPD_CONTAINER_DOCUMENT is a standard ish n2 upd container document 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 n2 upd container document FM, simply by entering the name ISH_N2_UPD_CONTAINER_DOCUMENT into the relevant SAP transaction such as SE37 or SE38.

Function Group: N204
Program Name: SAPLN204
Main Program: SAPLN204
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function ISH_N2_UPD_CONTAINER_DOCUMENT 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_N2_UPD_CONTAINER_DOCUMENT'"
EXPORTING
SS_DOKAR = "
SS_DOKNR = "
SS_DOKVR = "
SS_DOKTL = "
SS_FILE_LENGTH = "

TABLES
SS_DOKUMENT_CONTENT = "

EXCEPTIONS
DOCUMENT_NOT_FOUND = 1 NO_RFC = 2
.



IMPORTING Parameters details for ISH_N2_UPD_CONTAINER_DOCUMENT

SS_DOKAR -

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

SS_DOKNR -

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

SS_DOKVR -

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

SS_DOKTL -

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

SS_FILE_LENGTH -

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

TABLES Parameters details for ISH_N2_UPD_CONTAINER_DOCUMENT

SS_DOKUMENT_CONTENT -

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

EXCEPTIONS details

DOCUMENT_NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

NO_RFC -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISH_N2_UPD_CONTAINER_DOCUMENT 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_dokar  TYPE NDOC-DOKAR, "   
lv_document_not_found  TYPE NDOC, "   
lt_ss_dokument_content  TYPE STANDARD TABLE OF RN2PCRAW255, "   
lv_no_rfc  TYPE RN2PCRAW255, "   
lv_ss_doknr  TYPE NDOC-DOKNR, "   
lv_ss_dokvr  TYPE NDOC-DOKVR, "   
lv_ss_doktl  TYPE NDOC-DOKTL, "   
lv_ss_file_length  TYPE N2PCDOC-N2_BYTES. "   

  CALL FUNCTION 'ISH_N2_UPD_CONTAINER_DOCUMENT'  "
    EXPORTING
         SS_DOKAR = lv_ss_dokar
         SS_DOKNR = lv_ss_doknr
         SS_DOKVR = lv_ss_dokvr
         SS_DOKTL = lv_ss_doktl
         SS_FILE_LENGTH = lv_ss_file_length
    TABLES
         SS_DOKUMENT_CONTENT = lt_ss_dokument_content
    EXCEPTIONS
        DOCUMENT_NOT_FOUND = 1
        NO_RFC = 2
. " ISH_N2_UPD_CONTAINER_DOCUMENT




ABAP code using 7.40 inline data declarations to call FM ISH_N2_UPD_CONTAINER_DOCUMENT

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 DOKAR FROM NDOC INTO @DATA(ld_ss_dokar).
 
 
 
 
"SELECT single DOKNR FROM NDOC INTO @DATA(ld_ss_doknr).
 
"SELECT single DOKVR FROM NDOC INTO @DATA(ld_ss_dokvr).
 
"SELECT single DOKTL FROM NDOC INTO @DATA(ld_ss_doktl).
 
"SELECT single N2_BYTES FROM N2PCDOC INTO @DATA(ld_ss_file_length).
 


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!