Determine File Properties
Micro Focus Data File Scan & Analyze
  Table of Contents  v-16.01.01 - mfdata01.htm 
  Introduction
  What it Does
  Program Overview and Logic Diagram
  How to Use
  Prepare, Create a List of Names & Properties
  Execute, Scan the non-Relational Data Files
  Review the Results
  Output File, Data Set Names & Properties
  SYSOUT with File Names & Properties
  Reference Materials
  Keyword Tags for ABEND
  Summary
  Software Agreement and Disclaimer
  Downloads and Links
  Current Server or Internet Access
  Internet Access Required
  Glossary of Terms
  Comments or Feedback
  Company Overview
The SimoTime Home Page 

Table of Contents Previous Section Next Section Introduction

The purpose of this program is to examine the first part of a data file to determine if it has a Micro Focus header record that defines the characteristics (or properties) of the file. If it is determined that a Micro Focus header record exist then information about the file is posted to an output file.

A file header is a block of 128 bytes at the start of the file. Indexed files, record sequential files with variable length records and relative files with variable length records all contain file headers.

This document describes the functions provided by the MFDATASA program that does the actual data file "Scan and Analyze".

Link to Internet   Link to Server   Explore a higher-level perspective of the catalog migration process for the Micro Focus environment.


We have made a significant effort to ensure the documents and software technologies are correct and accurate. We reserve the right to make changes without notice at any time. The function delivered in this version is based upon the enhancement requests from a specific group of users. The intent is to provide changes as the need arises and in a timeframe that is dependent upon the availability of resources.

Copyright © 1987-2024
SimoTime Technologies and Services
All Rights Reserved

Table of Contents Previous Section Next Section What it Does

This program will read an ASCII/Text file containing a list of fully-qualified file names (drive:\directory\filename.ext). The program will scan each file in the list to determine if the file has a Micro Focus header record. If a Micro Focus header record is found then further analysis is done to determine the file properties or characteristics. Once the Scanning and Analysis is complete a record is written to an ASCII/Text output file using a Comma-Separated-Values (CSV) format for the individual records.

Table of Contents Previous Section Next Section Program Overview and Logic Diagram

The following is a diagram of the logic flow for a job that executes the "Scan and Analyze" Utility program using a Windows command file.

             
Entry Point
Windows
   
MFDATAW1
cmd
Submit or start the Job
   
IF Exist
statement
Delete previously created output files
   
LISTFILE
lseq
   
   
MFDATASA
cbl
   
   
INFOFILE
lseq
Read list of file names, scan named files, write file properties information
   
   
   
DATAFILE
user
   
   
   
   
   
SYSOUT
lseq
Read user data file, post messages to SYSOUT
   
EOJ
End-Of-Job
 
Overview of the Scan and Analyze Utility Program for Micro Focus Files

Color Associations: The  light-green  boxes are unique to SIMOTIME Technologies using an IBM Mainframe System or Micro Focus Enterprise Developer. The  light-red  boxes are unique to the SIMOTIME Technologies using a Linux, UNIX or Windows System and COBOL Technologies such as Micro Focus. The  light-yellow  boxes are SIMOTIME Technologies, Third-party Technologies, decision points or program transitions in the processing logic or program generations. The  light-blue  boxes identify the input/output data structures such as Documents, Spreadsheets, Data Files, VSAM Data Sets, Partitioned Data Set Members (PDSM's) or Relational Tables. The  light-gray  boxes identify a system function or an informational item.

Table of Contents Previous Section Next Section How to Use

Prior to executing the "Scan and Analyze" program it will be necessary to prepare a list of the file names. The list may contain a single file name or hundreds of file names.

Once the list of file names is complete the Scan and Analyze utility program may be executed. The following describes the preparation and execution steps in more detail.

Table of Contents Previous Section Next Section Prepare, Create a List of Names & Properties

If the requirement is to scan a couple of files it may be easy to simply type the file names into a file using a text editor such as NotePad. However, if a large number of files are in a directory it would be much easier to programmatically create the list.

The following Windows command file (MFDATAW8.cmd) shows how to create a list of file names.

@echo OFF
rem  * *******************************************************************
rem  *               MFDATAW8.CMD - a Windows Command File               *
rem  *         This program is provided by SimoTime Technologies         *
rem  *           (C) Copyright 1987-2015 All Rights Reserved             *
rem  *             Web Site URL:   http://www.simotime.com               *
rem  *                   e-mail:   helpdesk@simotime.com                 *
rem  * *******************************************************************
rem  *
rem  * Text   - Preparation, build a list of file names.
rem  * Author - SimoTime Technologies
rem  * Date   - January 24, 1996
rem  *
rem  * *******************************************************************
rem  *
     set CmdName=MFDATAW8
     call ..\Env1BASE %CmdName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
rem  *
     call SimoNOTE "*******************************************************%CmdName%"
     call SimoNOTE "Starting CmdName %CmdName%"
rem  *
     call SimoNOTE "Preparation, Build a List of File Names"
     set DATALIBR=C:\SIMOSAM1\DEVL\DATA\APPL
     set LISTFILE=%BaseLib1%\DATA\WRK1\LISTFILE.TXT
     set WORKFILE=%BaseLib1%\DATA\WRK1\WORKFILE.TXT
     if exist %LISTFILE% del %LISTFILE%
     if exist %WORKFILE% del %WORKFILE%
     dir /B %DATALIBR%\*.DAT>%WORKFILE%
     for /F %%i in (%WORKFILE%) do echo %DATALIBR%\%%i>>%LISTFILE%
     call SimoNOTE "Finished JobName %CmdName%"
     pause

Table of Contents Previous Section Next Section Execute, Scan the non-Relational Data Files

The following Windows command file (MFDATAW1.cmd) shows how to execute the "Scan and Analyze" utility program.

@echo OFF
rem  * *******************************************************************
rem  *               MFDATAW1.CMD - a Windows Command File               *
rem  *         This program is provided by SimoTime Technologies         *
rem  *           (C) Copyright 1987-2015 All Rights Reserved             *
rem  *             Web Site URL:   http://www.simotime.com               *
rem  *                   e-mail:   helpdesk@simotime.com                 *
rem  * *******************************************************************
rem  *
rem  * Text   - Read a file containing a list of file names.
rem  * Author - SimoTime Technologies
rem  * Date   - January 24, 1996
rem  *
rem  * The job will read an ASCII/Text file containing a list of fully-
rem  * qualified file names (drive:\directory\filename.ext).
rem  *
rem  * The program will scan each file in the list to determine if the
rem  * file has a Micro Focus header record. If a Micro Focus header
rem  * record is found then further analysis is done to determine the
rem  * file properties or characteristics.
rem  *
rem  * Once the Scan and Analyze is complete a record is written to an
rem  * ASCII/Text output file using a Comma-Separated-Values (CSV) format
rem  * for the individual records.
rem  *
rem  * *******************************************************************
rem  *
     set CmdName=MFDATAW1
     call ..\Env1BASE %CmdName%
     if "%SYSLOG%" == "" set syslog=c:\SimoLIBR\LOGS\SimoTime.LOG
rem  *
     call SimoNOTE "*******************************************************%CmdName%"
     call SimoNOTE "Starting CmdName %CmdName%"
rem  *
     call SimoNOTE "Execute the File Scan and Analyze Program"
     set LISTFILE=%BaseLib1%\DATA\WRK1\LISTFILE.TXT
     set INFOFILE=%BaseLib1%\DATA\WRK1\INFOFILE.CSV
     if exist %INFOFILE% erase %INFOFILE%
     run MFDATASA
     if not ERRORLEVEL = 0 set JobStatus=0010
     if not %JobStatus% == 0000 goto :EojNok
     call SimoNOTE "DataTake %LISTFILE%"
     call SimoNOTE "DataMake %INFOFILE%"
     if exist %INFOFILE% goto :EojAok
     set JobStatus=0020
     goto :EojNok
rem  *
rem  * *******************************************************************
rem  *
:EojAok
     call SimoNOTE "Finished JobName %CmdName%, Job Status is %JobStatus%"
     goto :End
:EojNok
     call SimoNOTE "ABENDING JobName %CmdName%, Job Status is %JobStatus%"
:End
     if not "%1" == "nopause" pause

An output record is written for each file in the list of names. The record structure for the output file is a Comma-Separated-Value (or CSV) format. The following shows the format for an Excel Spreadsheet that is used to maintain information about the data files.

The following is the column structure for an Excel spreadsheet to be used as a starting point to populate the catalog.

* HTMGENER
Column - Label Description
A - Level Number This should be a "1" for the primary file definition information. A zero (0) is used to define the row that is used for column headers.
B - DSN This is a text string with a maximum length of forty-four (44) characters. It is the fully-qualified MVS Data Set Name (DSN) or VSAM Cluster Name
C - DD Name This is a text string with a maximum length of eight (8) characters. It is the DD Name.
D - DSORG This is the Data Set Organization.
E - RECFM This is the Record Format.
F - lrecl-MIN This is a numeric string with a maximum length of five (5) digits. It is the minimum or average record length.
G - lrecl-MAX This is a numeric string with a maximum length of five (5) digits. It is the maximum record length.
H - KeyPos This is a numeric string with a maximum length of five (5) digits. It is the key starting position. The first position in a record is 1
I - KeyLen This is a numeric string with a maximum length of five (5) digits. It is for the length of the key.
J - VSAM Data Name This is a text string with a maximum length of forty-four (44) characters. It is the VSAM Data Name for KSDS and ESDS
K - VSAM Index Name This is a text string with a maximum length of forty-four (44) characters. It is the VSAM Index Name for KSDS
L - Override Job This is a text string with a maximum length of eight (8) characters. It is the JCL Member name that will be used to override the generated JCL that is used to create the catalog entry.
M - User Job 1 This is a text string with a maximum length of eight (8) characters. It is the JCL Member name for a job that will be submitted to the internal reader after the catalog creation process is complete.
N - User Job 2 This is a text string with a maximum length of eight (8) characters. It is the JCL Member name for a job that will be submitted to the internal reader after the previous steps are completed.
O - Extended S1 This is a text string with a maximum length of four (4) characters. The content varies.
If DSORG=PO then this field contains the extension of the PDSM that is used for a dynamic PDS.
P - Extended S2 This is a text string with a maximum length of four (4) characters. The content varies.
Q - Extended M1 This is a text string with a maximum length of sixteen (16) characters. The content varies, refer to Note-1
R - Extended M2 This is a text string with a maximum length of sixteen (16) characters. The content varies, refer to Note-1
S - Extended M3 This is a text string with a maximum length of sixteen (16) characters. The content varies, refer to Note-1
T - Extended M4 This is a text string with a maximum length of sixteen (16) characters. The content varies, refer to Note-1
U - Extended X1 This is a text string with a maximum length of 256 characters. It is the path to the directory that contains the Members for a Job Override, User Job 1 and/or User Job 2.
V - Extended X2 This is a text string with a maximum length of 256 characters. The content varies.
If DSORG=PO then this field contains the path to the directory that contains the PDS Members.
Note-1: The Extended M1 trhough M4 fields are sixteen (16) byte fields. The content varies.
If DSORG=GDG the following values are accepted:
 LIMIT(nnn) where nnn is the number of active generations
 SCRATCH or NOSCRATCH, SCRATCH will physically delete the generation, NOSCRATCH will uncatalog the latest generation
 NOEMPTY or EMPTY, This specifies, what action is to be taken when the GDG becomes full base on the number in the LIMIT.
  Format of an Excel Spread Sheet

Note:  The "Scan and Analyze" utility program currently writes to columns A-I.

Table of Contents Previous Section Next Section Review the Results

The MFDATASA program reads an ASCII/Text file that contains a list of file names. For each file name a group of records are written to SYSOUT and a record is written to the INFOFILE with file properties if the file had a Micro Focus header.

Table of Contents Previous Section Next Section Output File, Data Set Names & Properties

The following line sequential file is created by the MFDATASA program. The Comma-Separated-Values format is used for the record structure. This format serves two purposes. First, it is easily imported into an Excel spread sheet and provides instant documentation that can be easily viewed and updated. Second, it may be used by the MFCATPOP utility program to generate and submit JCL to populate a catalog for use by Micro Focus Enterprise Server.

The following shows how the INFOFILE may be viewed and edited with NotePad. The text strings (or fields) are separated by a comma. The first text string (or Column-A) is the status indicator. If this field contains a "1" then a Micro Focus header was found and the file properties are written to the INFOFILE. If this field is ZERO then a Micro Focus header record was not found or could not be processed.

0,MFSYSMOD.DATA.DATA80G1,DATA80G1,NOHEADER,
0,MFSYSMOD.DATA.DATA80G2,DATA80G2,NOHEADER,
0,MFSYSMOD.DATA.DATA80G3,DATA80G3,NOHEADER,
0,MFSYSMOD.DATA.DATA80P1,DATA80P1,NOHEADER,
0,MFSYSMOD.DATA.DATA80P2,DATA80P2,NOHEADER,
0,MFSYSMOD.IVPTEST.DATA0001,DATA0001,NOHEADER,
0,MFSYSMOD.IVPTEST.DATA0002,DATA0002,NOHEADER,
0,MFSYSMOD.IVPTEST.JDDSDATA,JDDSDATA,NOHEADER,
0,SIMOTIME.CICSAOK.RDRTEST1,RDRTEST1,FAILSIZE,
0,SIMOTIME.DATA.BINBITTX,BINBITTX,NOHEADER,
0,SIMOTIME.DATA.BYTE80RA,BYTE80RA,NOHEADER,
0,SIMOTIME.DATA.BYTE80RE,BYTE80RE,NOHEADER,
0,SIMOTIME.DATA.COLLATE1,COLLATE1,NOHEADER,
0,SIMOTIME.DATA.COLLATE2,COLLATE2,NOHEADER,
0,SIMOTIME.DATA.COLLATE3,COLLATE3,NOHEADER,
0,SIMOTIME.DATA.COLLATE4,COLLATE4,NOHEADER,
0,SIMOTIME.DATA.COMPLOGS,COMPLOGS,NOHEADER,
0,SIMOTIME.DATA.CONCATD1,CONCATD1,NOHEADER,
0,SIMOTIME.DATA.CONCATD2,CONCATD2,NOHEADER,
0,SIMOTIME.DATA.CONCATD3,CONCATD3,NOHEADER,
0,SIMOTIME.DATA.CONCATD4,CONCATD4,NOHEADER,
0,SIMOTIME.DATA.CONCATD5,CONCATD5,NOHEADER,
1,SIMOTIME.DATA.CUS512D2,CUS512D2,KS,V,0000012,0000512,0000001,0000012,
1,SIMOTIME.DATA.CUS512D3,CUS512D3,KS,V,0000012,0000512,0000001,0000012,
0,SIMOTIME.DATA.CUSRA512,CUSRA512,NOHEADER,
0,SIMOTIME.DATA.CUSRE512,CUSRE512,NOHEADER,
0,SIMOTIME.DATA.CUST0080,CUST0080,NOHEADER,
1,SIMOTIME.DATA.CUSTMAST,CUSTMAST,KS,F,0000512,0000512,0000001,0000012,
0,SIMOTIME.DATA.CUSTRCSV,CUSTRCSV,NOHEADER,
0,SIMOTIME.DATA.CUSTS080,CUSTS080,NOHEADER,
0,SIMOTIME.DATA.CUSTW080,CUSTW080,NOHEADER,
1,SIMOTIME.DATA.DATFMTD2,DATFMTD2,KS,V,0000004,0000080,0000001,0000004,
1,SIMOTIME.DATA.DATFMTD3,DATFMTD3,PS,V,0000001,0000080,
0,SIMOTIME.DATA.DIFFDATE,DIFFDATE,NOHEADER,
0,SIMOTIME.DATA.DIFFDAYS,DIFFDAYS,NOHEADER,
0,SIMOTIME.DATA.FILECODE,FILECODE,NOHEADER,
0,SIMOTIME.DATA.FNAMEF01,FNAMEF01,NOHEADER,
0,SIMOTIME.DATA.FNAMEM01,FNAMEM01,NOHEADER,
0,SIMOTIME.DATA.GDG2RSEQ,GDG2RSEQ,NOHEADER,
1,SIMOTIME.DATA.GDMKSDS1,GDMKSDS1,KS,V,0000012,0000512,0000001,0000012,
0,SIMOTIME.DATA.HEXDECB1,HEXDECB1,NOHEADER,
0,SIMOTIME.DATA.HEXDSPB1,HEXDSPB1,NOHEADER,
1,SIMOTIME.DATA.ITEMMAST,ITEMMAST,KS,V,0000012,0000512,0000001,0000012,
0,SIMOTIME.DATA.ITEMSQ01,ITEMSQ01,NOHEADER,
1,SIMOTIME.DATA.IVKSD128,IVKSD128,KS,V,0000012,0000128,0000001,0000012,
1,SIMOTIME.DATA.IVKSD256,IVKSD256,KS,V,0000014,0000256,0000003,0000012,
1,SIMOTIME.DATA.IVKSDS80,IVKSDS80,KS,V,0000007,0000080,0000001,0000007,
0,SIMOTIME.DATA.JUSTGET1,JUSTGET1,NOHEADER,
0,SIMOTIME.DATA.JUSTPUT1,JUSTPUT1,NOHEADER,
0,SIMOTIME.DATA.LASTNAME,LASTNAME,NOHEADER,
1,SIMOTIME.DATA.LOGHBX01,LOGHBX01,PS,V,0000064,0001051,
0,SIMOTIME.DATA.MAILSORT,MAILSORT,NOHEADER,
0,SIMOTIME.DATA.MAILTEMP,MAILTEMP,NOHEADER,
0,SIMOTIME.DATA.NBRBS080,NBRBS080,NOHEADER,
0,SIMOTIME.DATA.NBRBSCSV,NBRBSCSV,NOHEADER,
0,SIMOTIME.DATA.NBRBSTOT,NBRBSTOT,NOHEADER,
0,SIMOTIME.DATA.NBRBU080,NBRBU080,NOHEADER,
0,SIMOTIME.DATA.NBRBUCSV,NBRBUCSV,NOHEADER,
0,SIMOTIME.DATA.NBRBUTOT,NBRBUTOT,NOHEADER,
0,SIMOTIME.DATA.NBRPS080,NBRPS080,NOHEADER,
0,SIMOTIME.DATA.NBRPSCSV,NBRPSCSV,NOHEADER,
0,SIMOTIME.DATA.NBRPSTOT,NBRPSTOT,NOHEADER,
0,SIMOTIME.DATA.NBRPU080,NBRPU080,NOHEADER,
0,SIMOTIME.DATA.NBRPUCSV,NBRPUCSV,NOHEADER,
0,SIMOTIME.DATA.NBRPUTOT,NBRPUTOT,NOHEADER,
0,SIMOTIME.DATA.NBRZS080,NBRZS080,NOHEADER,
0,SIMOTIME.DATA.NBRZSCSV,NBRZSCSV,NOHEADER,
0,SIMOTIME.DATA.NBRZSTOT,NBRZSTOT,NOHEADER,
0,SIMOTIME.DATA.NBRZU080,NBRZU080,NOHEADER,
0,SIMOTIME.DATA.NBRZUCSV,NBRZUCSV,NOHEADER,
0,SIMOTIME.DATA.NBRZUTOT,NBRZUTOT,NOHEADER,
0,SIMOTIME.DATA.OBF1RSEQ,OBF1RSEQ,NOHEADER,
0,SIMOTIME.DATA.OBFCTL80,OBFCTL80,NOHEADER,
0,SIMOTIME.DATA.POSTCODE,POSTCODE,NOHEADER,
0,SIMOTIME.DATA.QSAM080A,QSAM080A,NOHEADER,
0,SIMOTIME.DATA.QSAM080E,QSAM080E,NOHEADER,
0,SIMOTIME.DATA.QSAMHEXA,QSAMHEXA,NOHEADER,
0,SIMOTIME.DATA.QSAMHEXB,QSAMHEXB,NOHEADER,
0,SIMOTIME.DATA.QSAMHEXE,QSAMHEXE,NOHEADER,
0,SIMOTIME.DATA.RA12GET1,RA12GET1,NOHEADER,
0,SIMOTIME.DATA.RA12PUT1,RA12PUT1,NOHEADER,
0,SIMOTIME.DATA.RPT080D1,RPT080D1,NOHEADER,
0,SIMOTIME.DATA.RPT080D2,RPT080D2,NOHEADER,
0,SIMOTIME.DATA.RPT133D1,RPT133D1,NOHEADER,
0,SIMOTIME.DATA.RPT133D2,RPT133D2,NOHEADER,
0,SIMOTIME.DATA.RRDS0080,RRDS0080,FAILSIZE,
0,SIMOTIME.DATA.RS80ASC1,RS80ASC1,NOHEADER,
0,SIMOTIME.DATA.RS80EBC1,RS80EBC1,NOHEADER,
0,SIMOTIME.DATA.RTNTOTD1,RTNTOTD1,NOHEADER,
0,SIMOTIME.DATA.RXDATA80,RXDATA80,NOHEADER,
1,SIMOTIME.DATA.STATEPUT,STATEPUT,PS,V,0000004,0000128,
0,SIMOTIME.DATA.STATETBL,STATETBL,NOHEADER,
0,SIMOTIME.DATA.STREET01,STREET01,NOHEADER,
0,SIMOTIME.DATA.STRING80,STRING80,NOHEADER,
0,SIMOTIME.DATA.SYSHEXT1,SYSHEXT1,NOHEADER,
0,SIMOTIME.DATA.SYSHEXT2,SYSHEXT2,NOHEADER,
1,SIMOTIME.DATA.SYSLOG,SYSLOGME,PS,V,0000064,0001051,
1,SIMOTIME.DATA.SYSLOGT1,SYSLOGT1,PS,V,0000064,0001051,
1,SIMOTIME.DATA.SYSLOGT3,SYSLOGT3,PS,V,0000064,0001051,
0,SIMOTIME.DATA.SYSOUTU1,SYSOUTU1,NOHEADER,
0,SIMOTIME.DATA.TEXT0512,TEXT0512,NOHEADER,
0,SIMOTIME.DATA.TXTNGET1,TXTNGET1,NOHEADER,
0,SIMOTIME.DATA.TXTNPUT1,TXTNPUT1,NOHEADER,
0,SIMOTIME.DATA.UVFILE01,UVFILE01,NOHEADER,
0,SIMOTIME.DATA.UVFILES1,UVFILES1,NOHEADER,
1,SIMOTIME.DATA.VKSD0080,VKSD0080,KS,V,0000006,0000080,0000001,0000006,
1,SIMOTIME.ESDS.ESDSC01K,ESDSC01K,ES,V,0000005,0001028,0000001,0000004,
1,SIMOTIME.ESDS.ESDSC128,ESDSC128,ES,V,0000005,0000132,0000001,0000004,
1,SIMOTIME.ESDS.ESDSC350,ESDSC350,ES,V,0000005,0000354,0000001,0000004,
0,SIMOTIME.NUMBVS.COMPCNTL,COMPCNTL,NOHEADER,
1,SIMOTIME.NUMBVS.SYSLOG,SYSLOGME,PS,V,0000001,0001051,
0,SIMOTIME.NUMBVU.COMPCNTL,COMPCNTL,NOHEADER,
1,SIMOTIME.NUMBVU.SYSLOG,SYSLOGME,PS,V,0000001,0001051,
1,SIMOTIME.UTIL.APMASTER,APMASTER,KS,V,0001024,0001024,0000001,0000018,
1,SIMOTIME.UTIL.FPMASTER,FPMASTER,KS,F,0001024,0001024,0000003,0000054,
0,SIMOTIME.UTIL.FPRFFLD1,FPRFFLD1,NOHEADER,
0,SIMOTIME.UTIL.FPRFFLD2,FPRFFLD2,NOHEADER,
0,SIMOTIME.UTIL.GDGLIST1,GDGLIST1,NOHEADER,
0,SIMOTIME.UTIL.GDGTRACE,GDGTRACE,NOHEADER,
0,SIMOTIME.UTIL.IVKLIST1,IVKLIST1,NOHEADER,
0,SIMOTIME.UTIL.IVKTRACE,IVKTRACE,NOHEADER,
0,SIMOTIME.UTIL.KSDLIST1,KSDLIST1,NOHEADER,
0,SIMOTIME.UTIL.KSDTRACE,KSDTRACE,NOHEADER,
0,SIMOTIME.UTIL.MSGXFILE,MSGXFILE,NOHEADER,
1,SIMOTIME.UTIL.MSGXKSDS,MSGXKSDS,KS,V,0000004,0000080,0000001,0000004,
0,SIMOTIME.UTIL.PDSLIST1,PDSLIST1,NOHEADER,
0,SIMOTIME.UTIL.PDSTRACE,PDSTRACE,NOHEADER,
0,SIMOTIME.UTIL.SEQLIST1,SEQLIST1,NOHEADER,
0,SIMOTIME.UTIL.SEQTRACE,SEQTRACE,NOHEADER,
0,SIMOTIME.UTIL.X10LIST1,X10LIST1,NOHEADER,
0,SIMOTIME.UTIL.X10TRACE,X10TRACE,NOHEADER,
0,SIMOTIME.WORK.DATA10,DATA10ME,FAILSIZE,
0,SIMOTIME.WORK.DATA20,DATA20ME,NOHEADER,
0,SIMOTIME.WORK.DATA30,DATA30ME,NOHEADER,

Table of Contents Previous Section Next Section SYSOUT with File Names & Properties

The information written to SYSOUT provides additional detail about the Micro Focus structure of the data files.

* MFDATASA ********************************************************************
* MFDATASA Starting, Scan Data File Header Records    http://www.microfocus.com
* MFDATASA ********************************************************************
* MFDATASA Scan the Data File Header Records  v12.03.27      www.microfocus.com
* MFDATASA © 2012 Micro Focus (US), Inc. and/or affiliates  All Rights Reserved
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\MFSYSMOD.DATA.DATA80G1.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\MFSYSMOD.DATA.DATA80G2.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\MFSYSMOD.DATA.DATA80G3.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\MFSYSMOD.DATA.DATA80P1.DAT
* MFDATASA File Size ................. 000000000000000720
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\MFSYSMOD.DATA.DATA80P2.DAT
* MFDATASA File Size ................. 000000000000000720
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\MFSYSMOD.IVPTEST.DATA0001.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\MFSYSMOD.IVPTEST.DATA0002.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\MFSYSMOD.IVPTEST.JDDSDATA.DAT
* MFDATASA File Size ................. 000000000000016384
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.CICSAOK.RDRTEST1.DAT
* MFDATASA File Size ................. 000000000000000080
* MFDATASA Organization .............. FAILSIZE
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.BINBITTX.DAT
* MFDATASA File Size ................. 000000000000000160
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.BYTE80RA.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.BYTE80RE.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.COLLATE1.DAT
* MFDATASA File Size ................. 000000000000007600
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.COLLATE2.DAT
* MFDATASA File Size ................. 000000000000007600
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.COLLATE3.DAT
* MFDATASA File Size ................. 000000000000007600
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.COLLATE4.DAT
* MFDATASA File Size ................. 000000000000007600
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.COMPLOGS.DAT
* MFDATASA File Size ................. 000000000000015872
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CONCATD1.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CONCATD2.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CONCATD3.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CONCATD4.DAT
* MFDATASA File Size ................. 000000000000000720
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CONCATD5.DAT
* MFDATASA File Size ................. 000000000000000800
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUS512D2.DAT
* MFDATASA File Size ................. 000000000024361032
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000512
* MFDATASA Minimum Record Length ..... 000000000000000012
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000012
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUS512D3.DAT
* MFDATASA File Size ................. 000000000024361032
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000512
* MFDATASA Minimum Record Length ..... 000000000000000012
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000012
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUSRA512.DAT
* MFDATASA File Size ................. 000000000023040000
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUSRE512.DAT
* MFDATASA File Size ................. 000000000023040000
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUST0080.DAT
* MFDATASA File Size ................. 000000000000002160
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUSTMAST.DAT
* MFDATASA File Size ................. 000000054110065664
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Fixed
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000512
* MFDATASA Minimum Record Length ..... 000000000000000512
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000012
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUSTRCSV.DAT
* MFDATASA File Size ................. 000000000046080000
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUSTS080.DAT
* MFDATASA File Size ................. 000000000000002240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.CUSTW080.DAT
* MFDATASA File Size ................. 000000000000002240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.DATFMTD2.DAT
* MFDATASA File Size ................. 000000000000003424
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000080
* MFDATASA Minimum Record Length ..... 000000000000000004
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000004
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.DATFMTD3.DAT
* MFDATASA File Size ................. 000000000000000380
* MFDATASA Organization .............. Sequential
* MFDATASA Format .................... PS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000080
* MFDATASA Minimum Record Length ..... 000000000000000001
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.DIFFDATE.DAT
* MFDATASA File Size ................. 000000000000000880
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.DIFFDAYS.DAT
* MFDATASA File Size ................. 000000000000002640
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.FILECODE.DAT
* MFDATASA File Size ................. 000000000000008160
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.FNAMEF01.DAT
* MFDATASA File Size ................. 000000000000136704
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.FNAMEM01.DAT
* MFDATASA File Size ................. 000000000000038976
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.GDG2RSEQ.DAT
* MFDATASA File Size ................. 000000000000000480
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.GDMKSDS1.DAT
* MFDATASA File Size ................. 000000000000003592
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000512
* MFDATASA Minimum Record Length ..... 000000000000000012
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000012
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.HEXDECB1.DAT
* MFDATASA File Size ................. 000000000000021520
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.HEXDSPB1.DAT
* MFDATASA File Size ................. 000000000000021520
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.ITEMMAST.DAT
* MFDATASA File Size ................. 000000000000007752
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000512
* MFDATASA Minimum Record Length ..... 000000000000000012
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000012
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.ITEMSQ01.DAT
* MFDATASA File Size ................. 000000000000002240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.IVKSD128.DAT
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.IVKSD128.IDX
* MFDATASA File Size ................. 000000000000003072
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-3
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000128
* MFDATASA Minimum Record Length ..... 000000000000000012
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000012
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.IVKSD256.DAT
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.IVKSD256.IDX
* MFDATASA File Size ................. 000000000000003072
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-3
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000256
* MFDATASA Minimum Record Length ..... 000000000000000014
* MFDATASA 1. Key Position ........... 000000000000000003
* MFDATASA 1. Key Length ............. 000000000000000012
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.IVKSDS80.DAT
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.IVKSDS80.IDX
* MFDATASA File Size ................. 000000000000003072
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-3
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000080
* MFDATASA Minimum Record Length ..... 000000000000000007
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000007
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.JUSTGET1.DAT
* MFDATASA File Size ................. 000000000000003360
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.JUSTPUT1.DAT
* MFDATASA File Size ................. 000000000000003520
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.LASTNAME.DAT
* MFDATASA File Size ................. 000000000000602816
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.LOGHBX01.DAT
* MFDATASA File Size ................. 000000000000003504
* MFDATASA Organization .............. Sequential
* MFDATASA Format .................... PS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001051
* MFDATASA Minimum Record Length ..... 000000000000000064
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.MAILSORT.DAT
* MFDATASA File Size ................. 000000000010980000
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.MAILTEMP.DAT
* MFDATASA File Size ................. 000000000010980000
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRBS080.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRBSCSV.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRBSTOT.DAT
* MFDATASA File Size ................. 000000000000001210
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRBU080.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRBUCSV.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRBUTOT.DAT
* MFDATASA File Size ................. 000000000000001210
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRPS080.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRPSCSV.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRPSTOT.DAT
* MFDATASA File Size ................. 000000000000001210
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRPU080.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRPUCSV.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRPUTOT.DAT
* MFDATASA File Size ................. 000000000000001210
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRZS080.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRZSCSV.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRZSTOT.DAT
* MFDATASA File Size ................. 000000000000001210
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRZU080.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRZUCSV.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.NBRZUTOT.DAT
* MFDATASA File Size ................. 000000000000001210
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.OBF1RSEQ.DAT
* MFDATASA File Size ................. 000000000012800000
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.OBFCTL80.DAT
* MFDATASA File Size ................. 000000000000000400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.POSTCODE.DAT
* MFDATASA File Size ................. 000000000003385040
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.QSAM080A.DAT
* MFDATASA File Size ................. 000000000000002080
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.QSAM080E.DAT
* MFDATASA File Size ................. 000000000000002080
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.QSAMHEXA.DAT
* MFDATASA File Size ................. 000000000000008640
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.QSAMHEXB.DAT
* MFDATASA File Size ................. 000000000000010800
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.QSAMHEXE.DAT
* MFDATASA File Size ................. 000000000000008640
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RA12GET1.DAT
* MFDATASA File Size ................. 000000000000001200
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RA12PUT1.DAT
* MFDATASA File Size ................. 000000000000004800
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RPT080D1.DAT
* MFDATASA File Size ................. 000000000000000800
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RPT080D2.DAT
* MFDATASA File Size ................. 000000000000001120
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RPT133D1.DAT
* MFDATASA File Size ................. 000000000000001330
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RPT133D2.DAT
* MFDATASA File Size ................. 000000000000001862
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RRDS0080.DAT
* MFDATASA File Size ................. 000000000000000000
* MFDATASA Organization .............. FAILSIZE
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RS80ASC1.DAT
* MFDATASA File Size ................. 000000000000008480
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RS80EBC1.DAT
* MFDATASA File Size ................. 000000000000008480
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RTNTOTD1.DAT
* MFDATASA File Size ................. 000000000000000640
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.RXDATA80.DAT
* MFDATASA File Size ................. 000000000000000320
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.STATEPUT.DAT
* MFDATASA File Size ................. 000000000000006728
* MFDATASA Organization .............. Sequential
* MFDATASA Format .................... PS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000128
* MFDATASA Minimum Record Length ..... 000000000000000004
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.STATETBL.DAT
* MFDATASA File Size ................. 000000000000006400
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.STREET01.DAT
* MFDATASA File Size ................. 000000000000003232
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.STRING80.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.SYSHEXT1.DAT
* MFDATASA File Size ................. 000000000000003200
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.SYSHEXT2.DAT
* MFDATASA File Size ................. 000000000000002560
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.SYSLOG.DAT
* MFDATASA File Size ................. 000000000000001640
* MFDATASA Organization .............. Sequential
* MFDATASA Format .................... PS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001051
* MFDATASA Minimum Record Length ..... 000000000000000064
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.SYSLOGT1.DAT
* MFDATASA File Size ................. 000000000000001748
* MFDATASA Organization .............. Sequential
* MFDATASA Format .................... PS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001051
* MFDATASA Minimum Record Length ..... 000000000000000064
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.SYSLOGT3.DAT
* MFDATASA File Size ................. 000000000000000992
* MFDATASA Organization .............. Sequential
* MFDATASA Format .................... PS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001051
* MFDATASA Minimum Record Length ..... 000000000000000064
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.SYSOUTU1.DAT
* MFDATASA File Size ................. 000000000000005566
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.TEXT0512.DAT
* MFDATASA File Size ................. 000000000000002560
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.TXTNGET1.DAT
* MFDATASA File Size ................. 000000000000000640
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.TXTNPUT1.DAT
* MFDATASA File Size ................. 000000000000004096
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.UVFILE01.DAT
* MFDATASA File Size ................. 000000000000000480
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.UVFILES1.DAT
* MFDATASA File Size ................. 000000000000000480
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.DATA.VKSD0080.DAT
* MFDATASA File Size ................. 000000000000005536
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000080
* MFDATASA Minimum Record Length ..... 000000000000000006
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000006
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.ESDS.ESDSC01K.DAT
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.ESDS.ESDSC01K.IDX
* MFDATASA File Size ................. 000000000000001536
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... ESDS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001028
* MFDATASA Minimum Record Length ..... 000000000000000005
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000004
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.ESDS.ESDSC128.DAT
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.ESDS.ESDSC128.IDX
* MFDATASA File Size ................. 000000000000001536
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... ESDS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000132
* MFDATASA Minimum Record Length ..... 000000000000000005
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000004
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.ESDS.ESDSC350.DAT
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.ESDS.ESDSC350.IDX
* MFDATASA File Size ................. 000000000000001536
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... ESDS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000354
* MFDATASA Minimum Record Length ..... 000000000000000005
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000004
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.NUMBVS.COMPCNTL.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.NUMBVS.SYSLOG.DAT
* MFDATASA File Size ................. 000000000000002316
* MFDATASA Organization .............. Sequential
* MFDATASA Format .................... PS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001051
* MFDATASA Minimum Record Length ..... 000000000000000001
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.NUMBVU.COMPCNTL.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.NUMBVU.SYSLOG.DAT
* MFDATASA File Size ................. 000000000000002316
* MFDATASA Organization .............. Sequential
* MFDATASA Format .................... PS
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001051
* MFDATASA Minimum Record Length ..... 000000000000000001
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.APMASTER.DAT
* MFDATASA File Size ................. 000000000000925392
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001024
* MFDATASA Minimum Record Length ..... 000000000000001024
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000018
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.FPMASTER.DAT
* MFDATASA File Size ................. 000000000000030920
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Fixed
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000001024
* MFDATASA Minimum Record Length ..... 000000000000001024
* MFDATASA 1. Key Position ........... 000000000000000003
* MFDATASA 1. Key Length ............. 000000000000000054
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.FPRFFLD1.DAT
* MFDATASA File Size ................. 000000000001686016
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.FPRFFLD2.DAT
* MFDATASA File Size ................. 000000000000025600
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.GDGLIST1.DAT
* MFDATASA File Size ................. 000000000000006144
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.GDGTRACE.DAT
* MFDATASA File Size ................. 000000000000008880
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.IVKLIST1.DAT
* MFDATASA File Size ................. 000000000000004096
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.IVKTRACE.DAT
* MFDATASA File Size ................. 000000000000006000
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.KSDLIST1.DAT
* MFDATASA File Size ................. 000000000000007168
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.KSDTRACE.DAT
* MFDATASA File Size ................. 000000000000036720
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.MSGXFILE.DAT
* MFDATASA File Size ................. 000000000000010640
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.MSGXKSDS.DAT
* MFDATASA File Size ................. 000000000000017936
* MFDATASA Organization .............. Indexed
* MFDATASA Format .................... IDX-8
* MFDATASA Recording Mode ............ Variable
* MFDATASA Compression ............... N
* MFDATASA Maximum Record Length ..... 000000000000000080
* MFDATASA Minimum Record Length ..... 000000000000000004
* MFDATASA 1. Key Position ........... 000000000000000001
* MFDATASA 1. Key Length ............. 000000000000000004
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.PDSLIST1.DAT
* MFDATASA File Size ................. 000000000000008192
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.PDSTRACE.DAT
* MFDATASA File Size ................. 000000000000007840
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.SEQLIST1.DAT
* MFDATASA File Size ................. 000000000000010240
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.SEQTRACE.DAT
* MFDATASA File Size ................. 000000000000016640
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.X10LIST1.DAT
* MFDATASA File Size ................. 000000000000004096
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.UTIL.X10TRACE.DAT
* MFDATASA File Size ................. 000000000000005040
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.WORK.DATA10.DAT
* MFDATASA File Size ................. 000000000000000080
* MFDATASA Organization .............. FAILSIZE
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.WORK.DATA20.DAT
* MFDATASA File Size ................. 000000000000000160
* MFDATASA Organization .............. NOHEADER
* MFDATASA C:\SIMOSAM1\DEVL\DATA\APPL\SIMOTIME.WORK.DATA30.DAT
* MFDATASA File Size ................. 000000000000000240
* MFDATASA Organization .............. NOHEADER
* MFDATASA 000000134 - Line count for LISTFILE
* MFDATASA 000000000 - Line count for INFOFILE
* MFDATASA Complete, Scan Data File Header Records    http://www.microfocus.com

Table of Contents Previous Section Next Section Reference Materials

This section provides additional details about the informational and error messages that may be encountered when scanning and analyzing the user data files.

Table of Contents Previous Section Next Section Keyword Tags for ABEND

The following table shows a list of the keywords returned when the scan and analyze could not determine the file organization.

Keyword Description
FAILOPEN A file name obtained from the list of files could not be opened.
FAILREAD A file name obtained from the list of files could not be read.
FAILSIZE A file name obtained from the list of files has a file size less than 128 bytes. Therefore, it cannot have a Micro Focus header record.
NOHEADER A file name obtained from the list of files was scanned and a Micro Focus header record was not found. The file properties will need to be explicitly defined.
UNKNOWN A file name obtained from the list of files was scanned and a possible Micro Focus header record was found. However, the analysis could not determine the file organization. The file properties will need to be explicitly defined.
  Keywords for File Organization for ABEND

Table of Contents Previous Section Next Section Summary

this program is to examine the first part of a data file to determine if it has a Micro Focus header record that defines the characteristics (or properties) of the file. If it is determined that a Micro Focus header record exist then information about the file is posted to an output file. This document may be used as a tutorial for new programmers or as a quick reference for experienced programmers

In the world of programming there are many ways to solve a problem. This documentation and software were developed and tested on systems that are configured for a SIMOTIME environment based on the hardware, operating systems, user requirements and security requirements. Therefore, adjustments may be needed to execute the jobs and programs when transferred to a system of a different architecture or configuration.

SIMOTIME Services has experience in moving or sharing data or application processing across a variety of systems. For additional information about SIMOTIME Services or Technologies please contact us using the information in the  Contact, Comment or Feedback  section of this document.

Table of Contents Previous Section Next Section Software Agreement and Disclaimer

Permission to use, copy, modify and distribute this software, documentation or training material for any purpose requires a fee to be paid to SimoTime Technologies. Once the fee is received by SimoTime the latest version of the software, documentation or training material will be delivered and a license will be granted for use within an enterprise, provided the SimoTime copyright notice appear on all copies of the software. The SimoTime name or Logo may not be used in any advertising or publicity pertaining to the use of the software without the written permission of SimoTime Technologies.

SimoTime Technologies makes no warranty or representations about the suitability of the software, documentation or learning material for any purpose. It is provided "AS IS" without any expressed or implied warranty, including the implied warranties of merchantability, fitness for a particular purpose and non-infringement. SimoTime Technologies shall not be liable for any direct, indirect, special or consequential damages resulting from the loss of use, data or projects, whether in an action of contract or tort, arising out of or in connection with the use or performance of this software, documentation or training material.

Table of Contents Previous Section Next Section Downloads and Links

This section includes links to documents with additional information that are beyond the scope and purpose of this document. The first group of documents may be available from a local system or via an internet connection, the second group of documents will require an internet connection.

Note: A SimoTime License is required for the items to be made available on a local system or server.

Table of Contents Previous Section Next Section Current Server or Internet Access

The following links may be to the current server or to the Internet.

Link to Internet   Link to Server   Explore a higher-level perspective of the catalog migration process for the Micro Focus environment.

Link to Internet   Link to Server   Explore How to Create Catalog Entries for non-Relational Data Files and Structures and document the process.

Link to Internet   Link to Server   Explore The ASCII and EBCDIC Translation Tables. These tables are provided for individuals that need to better understand the bit structures and differences of the encoding formats.

Link to Internet   Link to Server   Explore The File Status Return Codes that are used to interpret the results of accessing VSAM data sets and/or QSAM files.

Table of Contents Previous Section Next Section Internet Access Required

The following links will require an internet connect.

A good place to start is The SimoTime Home Page for access to white papers, program examples and product information. This link requires an Internet Connection

Explore The Micro Focus Web Site for more information about products (including Micro Focus COBOL) and services available from Micro Focus. This link requires an Internet Connection.

Table of Contents Previous Section Next Section Glossary of Terms

Link to Internet   Link to Server   Explore the Glossary of Terms for a list of terms and definitions used in this suite of documents and white papers.

Table of Contents Previous Section Next Section Comments or Feedback

This document was created and is maintained by SimoTime Technologies. If you have any questions, suggestions, comments or feedback please use the following contact information.

1. Send an e-mail to our helpdesk.
1.1. helpdesk@simotime.com.
2. Our telephone numbers are as follows.
2.1. 1 415 763-9430 office-helpdesk
2.2. 1 415 827-7045 mobile

 

We appreciate hearing from you.

Table of Contents Previous Section Next Section Company Overview

SimoTime Technologies was founded in 1987 and is a privately owned company. We specialize in the creation and deployment of business applications using new or existing technologies and services. We have a team of individuals that understand the broad range of technologies being used in today's environments. Our customers include small businesses using Internet technologies to corporations using very large mainframe systems.

Quite often, to reach larger markets or provide a higher level of service to existing customers it requires the newer Internet technologies to work in a complementary manner with existing corporate mainframe systems. We specialize in preparing applications and the associated data that are currently residing on a single platform to be distributed across a variety of platforms.

Preparing the application programs will require the transfer of source members that will be compiled and deployed on the target platform. The data will need to be transferred between the systems and may need to be converted and validated at various stages within the process. SimoTime has the technology, services and experience to assist in the application and data management tasks involved with doing business in a multi-system environment.

Whether you want to use the Internet to expand into new market segments or as a delivery vehicle for existing business functions simply give us a call or check the web site at http://www.simotime.com


Return-to-Top
Determine File Properties, Micro Focus Data File Scan and Analyze
Copyright © 1987-2024
SimoTime Technologies and Services
All Rights Reserved
When technology complements business
http://www.simotime.com