SAP RS_CUA_INTERNAL_MOD_INT_FETCH Function Module for Internal use: Modification - Get customer version with log









RS_CUA_INTERNAL_MOD_INT_FETCH is a standard rs cua internal mod int fetch SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Internal use: Modification - Get customer version with log 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 rs cua internal mod int fetch FM, simply by entering the name RS_CUA_INTERNAL_MOD_INT_FETCH into the relevant SAP transaction such as SE37 or SE38.

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



Function RS_CUA_INTERNAL_MOD_INT_FETCH 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 'RS_CUA_INTERNAL_MOD_INT_FETCH'"Internal use: Modification - Get customer version with log
EXPORTING
TRANSPORTKEY = "

IMPORTING
ADM = "
GTIME = "
MOD_OBJECT = "
LANGU = "
AUTHOR = "
DATE = "
TIME = "
CAUTHOR = "
CDATE = "
CTIME = "
GDATE = "

TABLES
STA = "
TIT = "
BIV = "Menu Painter: Fixed Functions on Application Toolbars
MOD_HEAD = "
MOD_MENUS = "
FUN = "
MEN = "
MTX = "
ACT = "
BUT = "
PFK = "
SET = "
DOC = "

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for RS_CUA_INTERNAL_MOD_INT_FETCH

TRANSPORTKEY -

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

EXPORTING Parameters details for RS_CUA_INTERNAL_MOD_INT_FETCH

ADM -

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

GTIME -

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

MOD_OBJECT -

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

LANGU -

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

AUTHOR -

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

DATE -

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

TIME -

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

CAUTHOR -

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

CDATE -

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

CTIME -

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

GDATE -

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

TABLES Parameters details for RS_CUA_INTERNAL_MOD_INT_FETCH

STA -

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

TIT -

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

BIV - Menu Painter: Fixed Functions on Application Toolbars

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

MOD_HEAD -

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

MOD_MENUS -

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

FUN -

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

MEN -

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

MTX -

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

ACT -

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

BUT -

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

PFK -

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

SET -

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

DOC -

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

EXCEPTIONS details

NOT_FOUND -

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

Copy and paste ABAP code example for RS_CUA_INTERNAL_MOD_INT_FETCH 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_adm  TYPE RSMPE_ADM, "   
lt_sta  TYPE STANDARD TABLE OF RSMPE_STAT, "   
lv_not_found  TYPE RSMPE_STAT, "   
lv_transportkey  TYPE TRKEY, "   
lt_tit  TYPE STANDARD TABLE OF RSMPE_TITT, "   
lv_gtime  TYPE EUDB-GZEIT, "   
lt_biv  TYPE STANDARD TABLE OF RSMPE_BUTS, "   
lv_mod_object  TYPE CL_CLM_TOOL_LOG, "   
lt_mod_head  TYPE STANDARD TABLE OF CL_CLM_TOOL_LOG, "   
lt_mod_menus  TYPE STANDARD TABLE OF CL_CLM_TOOL_LOG, "   
lt_fun  TYPE STANDARD TABLE OF RSMPE_FUNT, "   
lv_langu  TYPE EUDB-LANGU, "   
lt_men  TYPE STANDARD TABLE OF RSMPE_MEN, "   
lv_author  TYPE EUDB-AUTOR, "   
lt_mtx  TYPE STANDARD TABLE OF RSMPE_MNLT, "   
lv_date  TYPE EUDB-DATUM, "   
lt_act  TYPE STANDARD TABLE OF RSMPE_ACT, "   
lv_time  TYPE EUDB-ZEIT, "   
lt_but  TYPE STANDARD TABLE OF RSMPE_BUT, "   
lv_cauthor  TYPE EUDB-VAUTOR, "   
lt_pfk  TYPE STANDARD TABLE OF RSMPE_PFK, "   
lv_cdate  TYPE EUDB-VDATUM, "   
lt_set  TYPE STANDARD TABLE OF RSMPE_STAF, "   
lv_ctime  TYPE EUDB-VZEIT, "   
lt_doc  TYPE STANDARD TABLE OF RSMPE_ATRT, "   
lv_gdate  TYPE EUDB-GDATUM. "   

  CALL FUNCTION 'RS_CUA_INTERNAL_MOD_INT_FETCH'  "Internal use: Modification - Get customer version with log
    EXPORTING
         TRANSPORTKEY = lv_transportkey
    IMPORTING
         ADM = lv_adm
         GTIME = lv_gtime
         MOD_OBJECT = lv_mod_object
         LANGU = lv_langu
         AUTHOR = lv_author
         DATE = lv_date
         TIME = lv_time
         CAUTHOR = lv_cauthor
         CDATE = lv_cdate
         CTIME = lv_ctime
         GDATE = lv_gdate
    TABLES
         STA = lt_sta
         TIT = lt_tit
         BIV = lt_biv
         MOD_HEAD = lt_mod_head
         MOD_MENUS = lt_mod_menus
         FUN = lt_fun
         MEN = lt_men
         MTX = lt_mtx
         ACT = lt_act
         BUT = lt_but
         PFK = lt_pfk
         SET = lt_set
         DOC = lt_doc
    EXCEPTIONS
        NOT_FOUND = 1
. " RS_CUA_INTERNAL_MOD_INT_FETCH




ABAP code using 7.40 inline data declarations to call FM RS_CUA_INTERNAL_MOD_INT_FETCH

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 GZEIT FROM EUDB INTO @DATA(ld_gtime).
 
 
 
 
 
 
"SELECT single LANGU FROM EUDB INTO @DATA(ld_langu).
 
 
"SELECT single AUTOR FROM EUDB INTO @DATA(ld_author).
 
 
"SELECT single DATUM FROM EUDB INTO @DATA(ld_date).
 
 
"SELECT single ZEIT FROM EUDB INTO @DATA(ld_time).
 
 
"SELECT single VAUTOR FROM EUDB INTO @DATA(ld_cauthor).
 
 
"SELECT single VDATUM FROM EUDB INTO @DATA(ld_cdate).
 
 
"SELECT single VZEIT FROM EUDB INTO @DATA(ld_ctime).
 
 
"SELECT single GDATUM FROM EUDB INTO @DATA(ld_gdate).
 


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!