SAP /DSD/ME_GL_OPENITEMS Function Module for Get Open Items









/DSD/ME_GL_OPENITEMS is a standard /dsd/me gl openitems SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Open Items 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 /dsd/me gl openitems FM, simply by entering the name /DSD/ME_GL_OPENITEMS into the relevant SAP transaction such as SE37 or SE38.

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



Function /DSD/ME_GL_OPENITEMS 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 '/DSD/ME_GL_OPENITEMS'"Get Open Items
EXPORTING
* I_MEUSER = "DSD Cockpit: Mobile Engine User
* I_MEMBLID = "DSD Connector: Mobile Engine Mobile ID
* I_TOURID = "DSD Connecter: Tour ID

IMPORTING
RETURN = "Return Parameter

TABLES
T_OPEN_ITEMS = "DSD Connector: Open item header structure
.



IMPORTING Parameters details for /DSD/ME_GL_OPENITEMS

I_MEUSER - DSD Cockpit: Mobile Engine User

Data type: /DSD/ME_TRANS_T51-MEUSER
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_MEMBLID - DSD Connector: Mobile Engine Mobile ID

Data type: /DSD/ME_TRANS_T51-MEMBLID
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TOURID - DSD Connecter: Tour ID

Data type: /DSD/ME_TRANS_T51-SHIPMENT
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for /DSD/ME_GL_OPENITEMS

RETURN - Return Parameter

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

TABLES Parameters details for /DSD/ME_GL_OPENITEMS

T_OPEN_ITEMS - DSD Connector: Open item header structure

Data type: /DSD/ME_OPITM_HEADER
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for /DSD/ME_GL_OPENITEMS 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_return  TYPE BAPIRET2, "   
lv_i_meuser  TYPE /DSD/ME_TRANS_T51-MEUSER, "   
lt_t_open_items  TYPE STANDARD TABLE OF /DSD/ME_OPITM_HEADER, "   
lv_i_memblid  TYPE /DSD/ME_TRANS_T51-MEMBLID, "   
lv_i_tourid  TYPE /DSD/ME_TRANS_T51-SHIPMENT. "   

  CALL FUNCTION '/DSD/ME_GL_OPENITEMS'  "Get Open Items
    EXPORTING
         I_MEUSER = lv_i_meuser
         I_MEMBLID = lv_i_memblid
         I_TOURID = lv_i_tourid
    IMPORTING
         RETURN = lv_return
    TABLES
         T_OPEN_ITEMS = lt_t_open_items
. " /DSD/ME_GL_OPENITEMS




ABAP code using 7.40 inline data declarations to call FM /DSD/ME_GL_OPENITEMS

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 MEUSER FROM /DSD/ME_TRANS_T51 INTO @DATA(ld_i_meuser).
 
 
"SELECT single MEMBLID FROM /DSD/ME_TRANS_T51 INTO @DATA(ld_i_memblid).
 
"SELECT single SHIPMENT FROM /DSD/ME_TRANS_T51 INTO @DATA(ld_i_tourid).
 


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!