SAP PD_OBJECTS_MOVE Function Module for Move Objects
PD_OBJECTS_MOVE is a standard pd objects move SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Move Objects 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 pd objects move FM, simply by entering the name PD_OBJECTS_MOVE into the relevant SAP transaction such as SE37 or SE38.
Function Group: PDPC
Program Name: SAPLPDPC
Main Program:
Appliation area: H
Release date: 21-Jun-1995
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PD_OBJECTS_MOVE 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 'PD_OBJECTS_MOVE'"Move Objects.
EXPORTING
* CALLBACK_PROGRAM = "
* CALLBACK_OBJECTS = "
IMPORTING
FOCUS = "
REFRESH = "
QUIT = "
TABLES
RETURN_OBJECTS = "
CHANGED_OBJECTS = "
TEXTS = "
EXCEPTIONS
NO_ACTION = 1
IMPORTING Parameters details for PD_OBJECTS_MOVE
CALLBACK_PROGRAM -
Data type: TRDIR-NAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
CALLBACK_OBJECTS -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for PD_OBJECTS_MOVE
FOCUS -
Data type: GSUX-FLAGOptional: No
Call by Reference: No ( called with pass by value option)
REFRESH -
Data type: GSUX-FLAGOptional: No
Call by Reference: No ( called with pass by value option)
QUIT -
Data type: GSUX-FLAGOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for PD_OBJECTS_MOVE
RETURN_OBJECTS -
Data type: GSUOBJCOptional: No
Call by Reference: No ( called with pass by value option)
CHANGED_OBJECTS -
Data type: GSUOBJCOptional: No
Call by Reference: No ( called with pass by value option)
TEXTS -
Data type: GSUDISPOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ACTION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for PD_OBJECTS_MOVE 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_focus | TYPE GSUX-FLAG, " | |||
| lv_no_action | TYPE GSUX, " | |||
| lt_return_objects | TYPE STANDARD TABLE OF GSUOBJC, " | |||
| lv_callback_program | TYPE TRDIR-NAME, " | |||
| lv_refresh | TYPE GSUX-FLAG, " | |||
| lt_changed_objects | TYPE STANDARD TABLE OF GSUOBJC, " | |||
| lv_callback_objects | TYPE GSUOBJC, " | |||
| lv_quit | TYPE GSUX-FLAG, " | |||
| lt_texts | TYPE STANDARD TABLE OF GSUDISP. " |
|   CALL FUNCTION 'PD_OBJECTS_MOVE' "Move Objects |
| EXPORTING | ||
| CALLBACK_PROGRAM | = lv_callback_program | |
| CALLBACK_OBJECTS | = lv_callback_objects | |
| IMPORTING | ||
| FOCUS | = lv_focus | |
| REFRESH | = lv_refresh | |
| QUIT | = lv_quit | |
| TABLES | ||
| RETURN_OBJECTS | = lt_return_objects | |
| CHANGED_OBJECTS | = lt_changed_objects | |
| TEXTS | = lt_texts | |
| EXCEPTIONS | ||
| NO_ACTION = 1 | ||
| . " PD_OBJECTS_MOVE | ||
ABAP code using 7.40 inline data declarations to call FM PD_OBJECTS_MOVE
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 FLAG FROM GSUX INTO @DATA(ld_focus). | ||||
| "SELECT single NAME FROM TRDIR INTO @DATA(ld_callback_program). | ||||
| "SELECT single FLAG FROM GSUX INTO @DATA(ld_refresh). | ||||
| "SELECT single FLAG FROM GSUX INTO @DATA(ld_quit). | ||||
Search for further information about these or an SAP related objects