How do you resolve UFO Error - TR100 E IOX WRONG DATA SPACE?
Panel could not be found in the IOX data space.
The job below will list information from the IOX data set.
You will need to modify the JCL for your environment.
You can identify possible IOX data sets in a couple of ways.
You can usually find the IOX datasets in use (there can be multiple) by looking in either the CICS startup JCL or in the RDO definitions for the CICS session.
If you do not see the IOX data sets in the startup JCL, check all the possible RDO definitions for that CICS instance.
If the FILE definitions in the RDO's contain a DSNAME parameter, they will not be in the startup JCL and are dynamically allocated.
You can modify the JCL to select the objects you want to list. The slashes are wild cards.
Specify something like PAN///// to list all items that begin with PAN.
//*------------------------------------------------------------------*
//* This job produces lists of objects for the purpose of *
//* identifying the objects to be copied to a different IOX file *
//* *
//* DD USRIOX is the source the action commands will search *
//*------------------------------------------------------------------*
//*
//STEP1 EXEC PGM=OXEXPORT
//STEPLIB DD DISP=SHR,DSN=hlq.UFO.LOADLIB
//USRIOXI DD DISP=SHR,DSN=hlq.USRIOX.INDEX
//USRIOXR DD DISP=SHR,DSN=hlq.USRIOX.REPOS
//SYSPRINT DD SYSOUT=*
//SYSLST DD SYSOUT=*
//* -----------------------------------------------------------------
//* ACB= produces DDS, DDX, PDS, DSD, FLV
//* DDS= produces all the DDS and continuation screens
//* DSD= the DSD and any FLV entries
//* PDS= includes all forms continuations by default
//* -----------------------------------------------------------------
//SYSIN DD *
OPTION=LISTONLY
LIBRARY=USRIOX
PASSWORD=********
ACB=////////
HELP=////////
MENU=////////
PANEL=////////
RUN=////////
VIEW=////////
/*
//*------------------------------------------------------------------*
//