Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
stefan_schnell
Active Contributor
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:

  1. Register the Destination OUTPUTCATCH with the TAC SM59.

  2. Start the program OutptCatch.exe.

  3. Fill the connection parameters.

  4. Register the functions and use one of the output or log variants.


Now you can e.g. send with the code

Call Function 'Output' Destination 'OUTPUTCATCH'
  Exporting TEXT = 'Hello World' SEP = 0 UNAME = 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.

17/12/29: New SAP NetWeaver RFC Library is available

  • Output Catch works fine with the new SAP NetWeaver RFC Library 7.50.


16/07/06: New version of Output Catch is available

  • Since version 7.40 the logon configuration is available in SAPUILandscape.xml file, the SAPLogon.ini is not longer supported. Output Catch supports now also SAPUILandscape.xml instead of SAPLogon.ini.


15/11/24: New version of Output Catch is available

  • Now are an x64 and x86 version available, both bases on SAP NetWeaver RFC library.

  • The version bases on Classic RFC library is not longer available.

  • Both versions checked successful on Windows 10 x64.


13/12/29: New version of Output Catch is available

  • The new version bases now on SAP NetWeaver RFC library.

  • The classic version, which bases on Classic RFC Library, is furthermore available.


Output Catch is free and you can find it here.
6 Comments