SAP SUMO_SPDD_TABL Function Module for
SUMO_SPDD_TABL is a standard sumo spdd tabl 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 sumo spdd tabl FM, simply by entering the name SUMO_SPDD_TABL into the relevant SAP transaction such as SE37 or SE38.
Function Group: SUMO
Program Name: SAPLSUMO
Main Program: SAPLSUMO
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SUMO_SPDD_TABL 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 'SUMO_SPDD_TABL'".
EXPORTING
TABNAME = "Name of table to be adjusted
* VERSNO1 = '99999' "Number under which SAP version in version database
* VERSNO2 = '00000' "Number under which customer vers.in vers.database
* IS_TRANSP = 'X' "Is table expected as transparent
* AUFGABE = ' ' "Task for objects adjusted in SPDD
* NO_DIALOG = ' ' "Flag for no dialog
* LEVEL = 1 "Level of detail of analysis log
* TIMER_ON = ' ' "Flag if time measurement is activated
IMPORTING
AUFGABE = "Task for objects adjusted in SPDD
CANCELLED = "Was already cancelled in warning popup
NECESSARY = "Is/was an adjustment necessary
IMPORTING Parameters details for SUMO_SPDD_TABL
TABNAME - Name of table to be adjusted
Data type: DD02V-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
VERSNO1 - Number under which SAP version in version database
Data type: VRSD-VERSNODefault: '99999'
Optional: Yes
Call by Reference: No ( called with pass by value option)
VERSNO2 - Number under which customer vers.in vers.database
Data type: VRSD-VERSNODefault: '00000'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IS_TRANSP - Is table expected as transparent
Data type: DDREFSTRUC-FLAGDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
AUFGABE - Task for objects adjusted in SPDD
Data type: E070-TRKORRDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
NO_DIALOG - Flag for no dialog
Data type: DDREFSTRUC-FLAGDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
LEVEL - Level of detail of analysis log
Data type: SY-TABIXDefault: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)
TIMER_ON - Flag if time measurement is activated
Data type: DDREFSTRUC-FLAGDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SUMO_SPDD_TABL
AUFGABE - Task for objects adjusted in SPDD
Data type: E070-TRKORROptional: No
Call by Reference: No ( called with pass by value option)
CANCELLED - Was already cancelled in warning popup
Data type: DDREFSTRUC-FLAGOptional: No
Call by Reference: No ( called with pass by value option)
NECESSARY - Is/was an adjustment necessary
Data type: DDREFSTRUC-FLAGOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SUMO_SPDD_TABL 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_aufgabe | TYPE E070-TRKORR, " | |||
| lv_tabname | TYPE DD02V-TABNAME, " | |||
| lv_versno1 | TYPE VRSD-VERSNO, " '99999' | |||
| lv_cancelled | TYPE DDREFSTRUC-FLAG, " | |||
| lv_versno2 | TYPE VRSD-VERSNO, " '00000' | |||
| lv_necessary | TYPE DDREFSTRUC-FLAG, " | |||
| lv_is_transp | TYPE DDREFSTRUC-FLAG, " 'X' | |||
| lv_aufgabe | TYPE E070-TRKORR, " ' ' | |||
| lv_no_dialog | TYPE DDREFSTRUC-FLAG, " ' ' | |||
| lv_level | TYPE SY-TABIX, " 1 | |||
| lv_timer_on | TYPE DDREFSTRUC-FLAG. " ' ' |
|   CALL FUNCTION 'SUMO_SPDD_TABL' " |
| EXPORTING | ||
| TABNAME | = lv_tabname | |
| VERSNO1 | = lv_versno1 | |
| VERSNO2 | = lv_versno2 | |
| IS_TRANSP | = lv_is_transp | |
| AUFGABE | = lv_aufgabe | |
| NO_DIALOG | = lv_no_dialog | |
| LEVEL | = lv_level | |
| TIMER_ON | = lv_timer_on | |
| IMPORTING | ||
| AUFGABE | = lv_aufgabe | |
| CANCELLED | = lv_cancelled | |
| NECESSARY | = lv_necessary | |
| . " SUMO_SPDD_TABL | ||
ABAP code using 7.40 inline data declarations to call FM SUMO_SPDD_TABL
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 TRKORR FROM E070 INTO @DATA(ld_aufgabe). | ||||
| "SELECT single TABNAME FROM DD02V INTO @DATA(ld_tabname). | ||||
| "SELECT single VERSNO FROM VRSD INTO @DATA(ld_versno1). | ||||
| DATA(ld_versno1) | = '99999'. | |||
| "SELECT single FLAG FROM DDREFSTRUC INTO @DATA(ld_cancelled). | ||||
| "SELECT single VERSNO FROM VRSD INTO @DATA(ld_versno2). | ||||
| DATA(ld_versno2) | = '00000'. | |||
| "SELECT single FLAG FROM DDREFSTRUC INTO @DATA(ld_necessary). | ||||
| "SELECT single FLAG FROM DDREFSTRUC INTO @DATA(ld_is_transp). | ||||
| DATA(ld_is_transp) | = 'X'. | |||
| "SELECT single TRKORR FROM E070 INTO @DATA(ld_aufgabe). | ||||
| DATA(ld_aufgabe) | = ' '. | |||
| "SELECT single FLAG FROM DDREFSTRUC INTO @DATA(ld_no_dialog). | ||||
| DATA(ld_no_dialog) | = ' '. | |||
| "SELECT single TABIX FROM SY INTO @DATA(ld_level). | ||||
| DATA(ld_level) | = 1. | |||
| "SELECT single FLAG FROM DDREFSTRUC INTO @DATA(ld_timer_on). | ||||
| DATA(ld_timer_on) | = ' '. | |||
Search for further information about these or an SAP related objects