home *** CD-ROM | disk | FTP | other *** search
/ Sams Cobol 24 Hours / Sams_Cobol_24_Hours.iso / Cobol32 / PowerDTA / DataTool.z / Readedit.txt < prev    next >
Text File  |  1997-05-09  |  6KB  |  176 lines

  1.   All Rights Reserved, Copyright(c) Fujitsu Ltd. 1994-1997
  2. *************************************************************************
  3. **                                                                     **
  4. **                   Software Release Guide                            **
  5. **                                                                     **
  6. **                Fujitsu Data Editor V3.0 L10                         **
  7. **                                                                     **
  8. **                                                                     **
  9. *************************************************************************
  10.  
  11.  This document contains information regarding use, usage notes and
  12.  reference information for Data Editor.
  13.  
  14.  
  15. Registered trademarks:
  16.  
  17.   Microsoft, Windows are the registered trademarks of Microsoft Corporation.
  18.   Windows NT is a trademark of U.S.A. Microsoft Corporation.
  19.  
  20.  
  21. In this software release guide, product names are abbreviated as follows:
  22.  
  23.   Microsoft (R) Windows (R) Operating System Version 3.1 > Windows 3.1
  24.   Microsoft (R) Windows (R) 95 Operating System > Windows 95
  25.   Microsoft (R) Windows NT (TM) Workstation Operating System > Windows NT
  26.   Microsoft (R) Windows NT (TM) Server Network Operating System > Windows NT
  27.  
  28.  
  29. This software release guide is structured as follows:    
  30.  
  31.   1. Product overview
  32.   2. Main features
  33.   3. Software requirement
  34.   4. Usage notes and limitations
  35.   5. Sample data information
  36.  
  37.  
  38. 1. Product overview
  39.  
  40.  Data Editor is a tool which enables the user to create, update and browse 
  41.  data files, viewing them as they appear in your COBOL programs based on 
  42.  the data description.
  43.  
  44.  The Data Editor enables the user to see data using the same structures 
  45.  as are in COBOL programs.  It allows users to set values for testing 
  46.  particular program conditions and to verify updated data.  Data Editor is 
  47.  a valuable tool, and can assist users in the testing process.
  48.  
  49.  Data Editor supports the following COBOL file formats:
  50.  
  51.    -  Sequential 
  52.    -  Line Sequential 
  53.    -  Index
  54.    -  Relative
  55.  
  56.   Data Editor is a 32 bit application which runs on the following systems:
  57.  
  58.     - Windows 95
  59.     - Windows NT 3.51
  60.     - Windows NT 4.0
  61.  
  62.  
  63. 2. Main features
  64.  
  65.    - Displays elementary data items based on the data description
  66.  
  67.    - Edit based on PICTURE description or in hexadecimal format
  68.  
  69.    - Select which items to View/Edit
  70.  
  71.    - Redefine record descriptions
  72.  
  73.    - Switch data display from Record view or Table view. Data Editor 
  74.      provides two ways of looking at the data:  
  75.      -- Record View where one record is displayed at a time
  76.      -- Table View where records are displayed in spreadsheet-like style 
  77.         with one record per row.
  78.  
  79.   - Automatically saves file information
  80.  
  81.   - Provides a link to Data Converter.  Data Editor provides a link to 
  82.     Data Converter so the user can convert their files to different formats 
  83.     after updates are applied.
  84.  
  85.  
  86. 3. Software requirement
  87.  
  88.    Fujitsu COBOL85 V30 or Fujitsu COBOL85 runtime system V30 is required 
  89.    to run Data Editor.
  90.    
  91.  
  92. 4. Usage notes and limitations
  93.  
  94.  
  95.    - Data Editor supports Fujitsu COBOL data files by analyzing a COBOL 
  96.      library file containing the record description to be edited or browsed.
  97.  
  98.      The data description must follow the syntax of Fujitsu COBOL data 
  99.      description entry.
  100.  
  101.      Following is the sample of the data description in COBOL library.
  102.  
  103.             01  RECORD-A.
  104.               03  ITEM-A         PIC  X(10).
  105.               03  ITEM-B.
  106.                 05  SUB-ITEM-1   PIC  9(2).
  107.                 05  SUB-ITEM-2   PIC  9(3).
  108.  
  109.  
  110.     - COBOL library for data description must have no syntax error.
  111.  
  112.  
  113.     - The data description entry must begin with 01 level item.
  114.       If the 01 level item is missing, dummy 01 level item is added 
  115.       automatically and then analyze the modified library.
  116.  
  117.  
  118.     - If the library description contains another description than data 
  119.       description entry (such as, FD statement or BLOCK CONTAINS 
  120.       clause) Data Editor cannot analyze this library.
  121.  
  122.  
  123.     - The data item name must not have pseudo-text.
  124.  
  125.  
  126.     - Following language elements regarding data entry description are not 
  127.       supported. If these elements exist, an analysis error will occur:
  128.  
  129.           OCCURS  DEPENDING ON clause
  130.           USAGE  COMP-X clause
  131.  
  132.  
  133.   * Refer to the help for additional Data Editor details.
  134.  
  135.  
  136.  
  137. 5. Use of sample data
  138.  
  139.  
  140.    The sample data (DATA1.CBL, DATA1.DAT) is provide to assist the user 
  141.    to understand how Data Editor can be used. Follow the sequence of actions:
  142.  
  143.   (1) Select the shortcut and activate Data Editor.
  144.  
  145.      While using the sample file, specify the COBOL Analysis Options
  146.      in the Environment Setup dialog box.
  147.  
  148.           Tab code          : Expand tabs to 8 bytes boundaries
  149.           Character code    : ASCII
  150.           Case sensitive    : Unchecked
  151.           Source program    : Variable length
  152.           Library           : Variable length
  153.  
  154.   (2) Select Open data file from File menu and specify the DATA1.DAT in 
  155.       sample directory. Select Data File dialog box is then opened.
  156.  
  157.   (3) Clicking Data File Setup button, Data File Setup dialog box is then 
  158.      opened.
  159.  
  160.   (4) Click Analyze Library button and specify DATA1.CBL in sample directory.
  161.  
  162.   (5) Respond OK to the Analyze the Library <library-name>? message.
  163.  
  164.   (6) When the file is analyzed, Data Editor displays the file name and 
  165.       record length in the Data File Setup dialog box.
  166.  
  167.   (7) Click the OK button from the Select Data File dialog box.
  168.       Record format screen is displayed.
  169.  
  170.   (8) Clicking the right mouse button and selecting the "table format" 
  171.       in pop-up menu, the screen is changed to spread sheet type screen. 
  172.       You can change the screen type back and forth by clicking the right 
  173.       button at any time.
  174.  
  175.  
  176.