Forgive me if you know this already, but the portability of QMF objects for storage in Endevor or in the ISPF environment, and/or 'productionalizing' their execution within a formal batch job, is facilitated by use of the QMF 'EXPORT' and 'IMPORT' commands.
For example, if from a QMF screen, assuming your TSO-ID is "USER45" and you entered these commands, the following would result
EXPORT QUERY USER45.QUERY001 TO QUERY001 ==> results in the QMF query being saved to an FB, 79 byte TSO/ISPF dataset called: USER45.QUERY001.QUERY.
EXPORT PROC USER45.PROC001 TO PROC001 ==> results in the QMF procedure being saved to an FB, 79 byte TSO/ISPF dataset called: USER45.PROC001.PROC.
EXPORT FORM USER45.FORM001 TO FORM001 ==> results in the QMF form being saved to an V, 161 byte TSO/ISPF dataset called: USER45.FORM001.FORM.
The resulting ISPF/TSO datasets can be added to Endevor, using Endevor element types that were created in the same format as these ISPF/TSO datasets. i.e. Endevor types: QMFQUERY, QMFPROC, QMFFORM
That would at least enable you to use Endevor as a change-management repository to store your QMF objects. If you want to productionalize these QMF objects to be run in batch, then your production release process should respectively have a way to migrate the Endevor items to members in production PDS libraries defined appropriately for the QMF queries, procs, and forms. Your production job that runs QMF in batch, would first execute a QMF proc that executes the QMF IMPORT command to import the desired QMF objects to the DB2 QMF environment, save those objects, and then run the QMF proc that points to these objects.
Original Message:
Sent: Jan 24, 2018 05:30 PM
From: aalvarezSBC
Subject: Anyone maintaining their QMF Procs, Queries, and Forms in Endevor?
Hi. Is anyone using QMF and maintaining their QMF Procs, Queries, and Forms using Endevor?