Hello community,
Output Catch is a small SAP server application to catch text on the presentation server from ABAP on the application server. You can send text direct to the editor of output catch, to a specific log file on the client, to a Windows debugger or to the Windows event protocol of the client.
It is very easy to use Output Catch:
- Register the Destination OUTPUTCATCH with the TAC SM59.
- Start the program OutputCatchU.exe.
- Fill the connection parameters.
- Register the functions and use one of the output or log variants.
Now you can e.g. send with the code
CallFunction'OUTPUT'Destination'OUTPUTCATCH'
ExportingTEXT='Hello World'SEP=0UNAME=sy-uname
Exceptions Others= 1.
the TEXT Hello World to the editor in the tab Output. It works with background and dialog processes. The communication to an SAP system is via librfc32u.dll, the classic unicode RFC library. If the SAP GUI for Windows is present on your presentation server, you can use Output Catch without any additional libraries.
I use Output Catch inter alia to monitor interface parameters of background processes.
Output Catch is free and you can find it here.
Cheers
Stefan