SAP Reports / Programs

RUPSSEND SAP ABAP Report - ALE Distribution Unit: Send Messages







RUPSSEND 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 RUPSSEND into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RUPSSEND. "Basic submit
SUBMIT RUPSSEND AND RETURN. "Return to original report after report execution complete
SUBMIT RUPSSEND VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: SO_NAME = D Distribution Packet Name
Selection Text: SO_OWNER = D Owner of Packet
Selection Text: SO_SYS = D Partner System
Title: ALE Distribution Unit: Send Messages
Text Symbol: 001 = Distribution Units


INCLUDES used within this REPORT RUPSSEND

INCLUDE : UPSCHKLCK. "KAC


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

UPSCP_ASSEMBLE_EXTKEY CALL FUNCTION 'UPSCP_ASSEMBLE_EXTKEY' EXPORTING im_upsnam = wa_upshdr-upsnam im_owner = wa_upshdr-owner im_direct = wa_upshdr-direct im_logsys = wa_upshdr-logsys IMPORTING EX_EXTKEY = l_extkey.

UPSCU_CONSTRUCTOR CALL FUNCTION 'UPSCU_CONSTRUCTOR' EXPORTING im_packagename = wa_upshdr-upsnam im_owner = wa_upshdr-owner im_partner = wa_upshdr-logsys im_direction = wa_upshdr-direct IM_EDITMODE = kups_change FLG_ERROR_IF_NOT_EXIST = kups_true FLG_ERROR_IF_EXIST = kups_false FLG_APPL_LOG = kups_false FLG_MSG_COLLECT = kups_true IMPORTING EX_INSTID = unity TABLES EX_MESSAGES = ret_messages[] EXCEPTIONS OTHERS = 1.

UPSCU_SEND CALL FUNCTION 'UPSCU_SEND' EXPORTING IM_INSTID = unity FLG_MSG_COLLECT = kups_true IMPORTING EX_DOCS_CREATED = ret_docs_cre TABLES EX_MESSAGES = ret_messages[] EXCEPTIONS others = 0.

UPSCU_JOB_DELETE CALL FUNCTION 'UPSCU_JOB_DELETE' EXPORTING im_instid = unity EXCEPTIONS FAILING_INSTANCE = 0.

UPSCU_FREE CALL FUNCTION 'UPSCU_FREE' EXPORTING im_instid = unity.

DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL'.

UPSCU_FREE * CALL FUNCTION 'UPSCU_FREE' * EXPORTING * im_instid = unity.

DEQUEUE_ALL * CALL FUNCTION 'DEQUEUE_ALL'.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RUPSSEND or its description.