ASNA Wings and Mobile RPG includes a very handy spool file viewer. It lets you view, delete, or download spool files as PDFs.

This video provides an overview of the ASNA Wings/Mobile RPG Spool File Viewer. The article that follows the video provides the written instructions for installing the Spool File Viewer.

Pressing F4 invokes the Spool File Viewer

A list of spool files

Showing the contents of a single spool file.

To install the Spool File Viewer library on your IBM i

Step 1. Download the Spool File Viewer

The Spool File Viewer binary can be downloaded at asna.com/us/tech/downloads. Get the version that corresponds to your version of Wings or Mobile RPG. You need a free asna.com account to get to the downloads page. See this article for how to create an account.

Step 2. Unzip the downloaded file to the folder of your choice.

For this article, that was unzipped to the

folder.

Step 3. Open a DOS command box on your PC

Open a DOS command box and change its current directory to the folder where you unzipped the downloaded file. This directory should have a directory named AsnaSplf10 and three files:

The AsnaSplf10 directory gets added to any Wings/Mobile RPG project with which you want to use the Spool File Viewer. The SPLF10SAVF is a savefile that provides a small IBM i library that needs to be installed on your IBM i. More information on both of these follows.

Step 4. Create a target savefile on the IBM i

Step 5. Upload the savefile

From the DOS box you opened in Step 3, issue these commands

This GIF shows these steps in action:

These steps populate the save file you created in step 4.

Step 6. Restore the library the save file provided

This puts the ASNASPLF10 library on your IBM i. It has four objects:

You’ll use the LISTSPLF CMD object to launch the spool file list view. Although you’re not likely to use it directly, the VIEWSPLF command object launches a single spool file viewer. These commands launch the respective program object.

It is strongly recommended that you always use the commands to launch the spool file lister and spool file viewer. Using these command interfaces protects your code against any changes that may occur in the two program objects.

The ASNASPLF10 library must be in the library list.

The LISTSPLF command:

The VIEWSPLF command:
These screen images are shown here to display each command parameter. However, remember that these commands cannot be run from a green-screen. They depend on ASNA Wings or Mobile RPG for their display output–they will not work from the command line.

A very important step!

With the ASNASPLF10 library installed, it is very important that you change the LISTSPLF and VIEWSPLF commands to reference your DataGate library. To do so, use the CHGCMD as shown below: CHGCMD CMD(ASNASPLF10/LISTSPLF) CURLIB(<your DataGate library>) and CHGCMD CMD(ASNASPLF10/VIEWSPLF) CURLIB(<your DataGate library>) where <your DataGate library> is the name of your DataGate library. If you’re not sure of what your DataGate library name is, see this article for help. Anytime you change your DataGate library, you’ll need to use CHGCMD as shown here for the LISTSPLF and VIEWSPLF commands to ensure they are referencing the correct DataGate library.

To use the spool file viewer in your ASNA Wings or Mobile Project.

Step 1. Add the AsnaSplf10 folder (provided in the Spool File Viewer download) and its contents to the root of your Wings or Mobile RPG project. This provides the browser-based display files necessary for listing and viewing spool files. Step 2. Modify your RPG program to launch the spool file lister. To launch the Spool File Viewer you need to use the LISTSPLF command in the ASNASPLF10 library. RPG can’t issue commands directly, but that’s easy to do through RPG’s Command Exec interface. To do this first delete two variables: Shown with fixed-RPG D specs, this code is: Use this RPG code to issue the LISTSPLF command through RPG’s Command Exec interface: The code above is typically launched as a result of a function key being pressed. By default the spool viewer shows spool files for the current user. However, don’t forget that the ASNASPLF10 library must be in the library list.