MACROS 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 MACROS 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: WF: Simplifying language elements
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SWD_DYNPRO_FIELD_GET call function 'SWD_DYNPRO_FIELD_GET' exporting struc = &1 field = &2 index = space repid = repid dynnr = dynnr importing value = &3 exceptions others = 0.
SWD_DYNPRO_FIELD_SET call function 'SWD_DYNPRO_FIELD_SET' exporting struc = &1 field = &2 index = space value = &3 exceptions others = 0.
SWD_DYNPRO_FIELD_GET call function 'SWD_DYNPRO_FIELD_GET' exporting struc = &1 field = &2 index = &3 repid = repid dynnr = dynnr importing value = &4 exceptions others = 0.
SWD_DYNPRO_FIELD_SET call function 'SWD_DYNPRO_FIELD_SET' exporting struc = &1 field = &2 index = &3 value = &4 exceptions others = 0.
SWD_DYNPRO_FIELDS_SEND call function 'SWD_DYNPRO_FIELDS_SEND' exporting repid = repid dynnr = dynnr exceptions others = 0.
SWD_MESSAGE_SEND call function 'SWD_MESSAGE_SEND' exporting arbgb = &1 msgnr = &2 msgv1 = &3 msgv2 = &4 msgv3 = &5 msgv4 = &6 exceptions others = 0.
SWD_MESSAGE_SEND call function 'SWD_MESSAGE_SEND' exporting arbgb = &1 msgnr = &2 msgv1 = &3 msgv2 = &4 msgv3 = &5 msgv4 = &6 percentage = &7 exceptions others = 0.
SWD_TEXT_ABBREVIATE call function 'SWD_TEXT_ABBREVIATE' exporting max_length = &2 changing to_be_processed = &1 exceptions others = 0.
SWU_REPLACE_AMPERCENT call function 'SWU_REPLACE_AMPERCENT' exporting * AMPERSAND = '&' variable = &2 changing string = &1 exceptions others = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.