FCJWBF00_MESSAGES_WRITE_TO_BAP is a standard ABAP INCLUDE 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 FCJWBF00_MESSAGES_WRITE_TO_BAP 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
MESSAGE_ADD CALL FUNCTION 'MESSAGE_ADD' EXPORTING msgid = 'CJ' msgno = 001 msgty = 'S' msgv1 = loc_msgstrg.
MESSAGES_GIVE CALL FUNCTION 'MESSAGES_GIVE' TABLES t_mesg = loc_mesg.
MESSAGE_ADD CALL FUNCTION 'MESSAGE_ADD' EXPORTING msgid = tmp_mesg-arbgb msgno = loc_msgnr msgty = tmp_mesg-msgty msgv1 = tmp_mesg-msgv1 msgv2 = tmp_mesg-msgv2.
MESSAGE_ADD CALL FUNCTION 'MESSAGE_ADD' EXPORTING msgid = loc_mesg-arbgb msgno = loc_msgnr msgty = loc_mesg-msgty msgv1 = loc_mesg-msgv1 msgv2 = loc_mesg-msgv2 msgv3 = loc_mesg-msgv3 msgv4 = loc_mesg-msgv4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.