SAP Reports / Programs

RUPSPOST SAP ABAP Report - ALE Distribution Unit: Send Receipts







RUPSPOST 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 RUPSPOST 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 RUPSPOST. "Basic submit
SUBMIT RUPSPOST AND RETURN. "Return to original report after report execution complete
SUBMIT RUPSPOST 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_DATE = D .
Selection Text: P_POSTAL = D .
Selection Text: P_STPLEV = D .
Selection Text: SO_NAME = D .
Selection Text: SO_OWNER = D .
Selection Text: SO_SYS = D .
Title: ALE Distribution Unit: Send Receipts
Text Symbol: 001 = Distribution Units
Text Symbol: 002 = Settings


INCLUDES used within this REPORT RUPSPOST

INCLUDE : UPSGLOBAL.
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_POST CALL FUNCTION 'UPSCU_POST' EXPORTING IM_INSTID = unity FLG_COMMIT_AND_WAIT = kups_true FLG_MSG_COLLECT = kups_true FLG_APPL_LOG = kups_true IM_STOP_HIELEV = p_stplev IM_POST_ALL = p_postal TABLES EX_MESSAGES = ret_messages EXCEPTIONS OTHERS = 1.

UPSCU_JOB_DELETE * CALL FUNCTION 'UPSCU_JOB_DELETE' Begin of n_1427499 * EXPORTING * im_instid = unity * EXCEPTIONS * FAILING_INSTANCE = 0. End of n_1427499

UPSCU_POST_SUCCESSORS CALL FUNCTION 'UPSCU_POST_SUCCESSORS' EXPORTING im_instid = unity EXCEPTIONS others = 0.

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 RUPSPOST or its description.