RBDSEUI is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RBDSEUI into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CUID - Distribution of Interface Designs
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: VCUI = Interface Design
Title: Distribution of Interface Design for Variant Configuration
Text Symbol: 001 = Problems Generating IDocs
Text Symbol: 002 = No Interface Design Found for the Selection Criteria!
Text Symbol: 003 = Interface Design:
Text Symbol: 004 = Name:
Text Symbol: 005 = Logical System
Text Symbol: 006 = Display Result
Text Symbol: 007 = Name
Text Symbol: 008 = IDoc Number
Text Symbol: 009 = Number of Objects/IDocs:
Text Symbol: 010 = Communication IDoc(s) Generated for Message Type VCUI_SAVEM
Text Symbol: 011 = Distribution to all logical systems?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = TEXT-005 text_question = TEXT-011 icon_button_1 = ' ' icon_button_2 = ' ' default_button = '2' display_cancel_button = 'X' popup_type = 'ICON_MESSAGE_WARNING' IMPORTING answer = lv_answer.
BAPI_UI_GETDETAIL CALL FUNCTION 'BAPI_UI_GETDETAIL' EXPORTING DESIGNNAME = lv_vcui IMPORTING RETURN = ls_return TABLES CHARGROUPS = lt_chargroups CHARGROUPSLANG = lt_chargroupslang CHARS = lt_chars FRAMES = lt_frames FRAMESLANG = lt_frameslang.
ALE_UI_SAVEM CALL FUNCTION 'ALE_UI_SAVEM' * EXPORTING * OBJ_TYPE = 'BUS1401' * SERIAL_ID = '0' TABLES DESIGNNAME = lt_vcui_idoc CHARGROUPS = lt_chargroups_idoc CHARGROUPSLANG = lt_chargroupslang_idoc CHARS = lt_chars_idoc FRAMES = lt_frames_idoc FRAMESLANG = lt_frameslang_idoc RECEIVERS = lt_receiver COMMUNICATION_DOCUMENTS = lt_comm * APPLICATION_OBJECTS = EXCEPTIONS ERROR_CREATING_IDOCS = 1 OTHERS = 2.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.