SAP VIEWCLUSTER_IMPORT_INTERNAL Function Module for









VIEWCLUSTER_IMPORT_INTERNAL is a standard viewcluster import internal 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 viewcluster import internal FM, simply by entering the name VIEWCLUSTER_IMPORT_INTERNAL into the relevant SAP transaction such as SE37 or SE38.

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



Function VIEWCLUSTER_IMPORT_INTERNAL 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 'VIEWCLUSTER_IMPORT_INTERNAL'"
EXPORTING
IV_HANDLE = "
IV_OBJECT = "
* IV_TESTRUN = ' ' "
IV_ORDER = "

TABLES
TT_TABLES_KEYS = "

EXCEPTIONS
CLIENT_REFERENCE = 1 NO_CLIENTINDEP_AUTH = 10 INVALID_ACTION = 11 SAVING_CORRECTION_FAILED = 12 UNKNOWN_FIELD_IN_DBA_SELLIST = 13 MISSING_CORR_NUMBER = 14 ENQ_SYSTEM_FAILURE = 15 IMPORT_FATAL_ERROR = 16 FOREIGN_LOCK = 2 VIEWCLUSTER_NOT_FOUND = 3 VIEWCLUSTER_IS_INCONSISTENT = 4 MISSING_GENERATED_FUNCTION = 5 NO_UPD_AUTH = 6 NO_SHOW_AUTH = 7 OBJECT_NOT_FOUND = 8 NO_TVDIR_ENTRY = 9
.



IMPORTING Parameters details for VIEWCLUSTER_IMPORT_INTERNAL

IV_HANDLE -

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

IV_OBJECT -

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

IV_TESTRUN -

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

IV_ORDER -

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

TABLES Parameters details for VIEWCLUSTER_IMPORT_INTERNAL

TT_TABLES_KEYS -

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

EXCEPTIONS details

CLIENT_REFERENCE -

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

NO_CLIENTINDEP_AUTH -

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

INVALID_ACTION -

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

SAVING_CORRECTION_FAILED -

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

UNKNOWN_FIELD_IN_DBA_SELLIST -

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

MISSING_CORR_NUMBER -

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

ENQ_SYSTEM_FAILURE -

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

IMPORT_FATAL_ERROR -

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

FOREIGN_LOCK -

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

VIEWCLUSTER_NOT_FOUND -

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

VIEWCLUSTER_IS_INCONSISTENT -

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

MISSING_GENERATED_FUNCTION -

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

NO_UPD_AUTH -

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

NO_SHOW_AUTH -

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

OBJECT_NOT_FOUND -

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

NO_TVDIR_ENTRY -

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

Copy and paste ABAP code example for VIEWCLUSTER_IMPORT_INTERNAL 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_iv_handle  TYPE SLCTR_HANDLE, "   
lt_tt_tables_keys  TYPE STANDARD TABLE OF SLCTR_TABLES_KEYS, "   
lv_client_reference  TYPE SLCTR_TABLES_KEYS, "   
lv_no_clientindep_auth  TYPE SLCTR_TABLES_KEYS, "   
lv_invalid_action  TYPE SLCTR_TABLES_KEYS, "   
lv_saving_correction_failed  TYPE SLCTR_TABLES_KEYS, "   
lv_unknown_field_in_dba_sellist  TYPE SLCTR_TABLES_KEYS, "   
lv_missing_corr_number  TYPE SLCTR_TABLES_KEYS, "   
lv_enq_system_failure  TYPE SLCTR_TABLES_KEYS, "   
lv_import_fatal_error  TYPE SLCTR_TABLES_KEYS, "   
lv_iv_object  TYPE SLCTR_OBJECT, "   
lv_foreign_lock  TYPE SLCTR_OBJECT, "   
lv_iv_testrun  TYPE C, "   ' '
lv_viewcluster_not_found  TYPE C, "   
lv_iv_order  TYPE E070-TRKORR, "   
lv_viewcluster_is_inconsistent  TYPE E070, "   
lv_missing_generated_function  TYPE E070, "   
lv_no_upd_auth  TYPE E070, "   
lv_no_show_auth  TYPE E070, "   
lv_object_not_found  TYPE E070, "   
lv_no_tvdir_entry  TYPE E070. "   

  CALL FUNCTION 'VIEWCLUSTER_IMPORT_INTERNAL'  "
    EXPORTING
         IV_HANDLE = lv_iv_handle
         IV_OBJECT = lv_iv_object
         IV_TESTRUN = lv_iv_testrun
         IV_ORDER = lv_iv_order
    TABLES
         TT_TABLES_KEYS = lt_tt_tables_keys
    EXCEPTIONS
        CLIENT_REFERENCE = 1
        NO_CLIENTINDEP_AUTH = 10
        INVALID_ACTION = 11
        SAVING_CORRECTION_FAILED = 12
        UNKNOWN_FIELD_IN_DBA_SELLIST = 13
        MISSING_CORR_NUMBER = 14
        ENQ_SYSTEM_FAILURE = 15
        IMPORT_FATAL_ERROR = 16
        FOREIGN_LOCK = 2
        VIEWCLUSTER_NOT_FOUND = 3
        VIEWCLUSTER_IS_INCONSISTENT = 4
        MISSING_GENERATED_FUNCTION = 5
        NO_UPD_AUTH = 6
        NO_SHOW_AUTH = 7
        OBJECT_NOT_FOUND = 8
        NO_TVDIR_ENTRY = 9
. " VIEWCLUSTER_IMPORT_INTERNAL




ABAP code using 7.40 inline data declarations to call FM VIEWCLUSTER_IMPORT_INTERNAL

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_iv_testrun) = ' '.
 
 
"SELECT single TRKORR FROM E070 INTO @DATA(ld_iv_order).
 
 
 
 
 
 
 


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!