RVBTCMSG 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 RVBTCMSG into the relevant SAP transactions such as SE38 or SE80
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.
Title: Messages in SD sales order in BTCI
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GET_MESSAGES CALL FUNCTION 'GET_MESSAGES' TABLES MESSAGES = XMESSTAB.
SD_MESSAGE_HANDLING CALL FUNCTION 'SD_MESSAGE_HANDLING' TABLES MESS_TAB = XMESSTAB.
MESSAGE_TEXT_BUILD CALL FUNCTION 'MESSAGE_TEXT_BUILD' EXPORTING MSGID = XMESSTAB-MSGID MSGNR = XMESSTAB-MSGNR MSGV1 = XMESSTAB-MSGV1 MSGV2 = XMESSTAB-MSGV2 MSGV3 = XMESSTAB-MSGV3 MSGV4 = XMESSTAB-MSGV4 IMPORTING MESSAGE_TEXT_OUTPUT = TEXT.
FORMAT_TEXTLINES CALL FUNCTION 'FORMAT_TEXTLINES' TABLES LINES = PTLINES.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.