Difference between revisions of "Source file"

From MidrangeWiki
Jump to: navigation, search
m (created page with some details, still Template:stub though)
 
m (Record length)
Line 11: Line 11:
 
**Date field is 6 bytes
 
**Date field is 6 bytes
 
**Source statement field is 100 bytes
 
**Source statement field is 100 bytes
 +
 +
==Hints & Tips==
 +
QSYS/QADBXREF, the IBM-supplied system cross reference physical file, can be filtered to create a list of just source files.
 +
*WRKQRY record selection
 +
<pre>
 +
AND/OR  Field            Test  Value
 +
        DBXATR            EQ    'PF' 
 +
AND    DBXTYP            EQ    'S' 
 +
</pre>
  
 
{{stub}}
 
{{stub}}

Revision as of 19:34, 7 November 2006

Source file is a type of physical file which contains additional fields to contain source code. It is created with the CRTSRCPF command.

Record length

  • OPM source is 92 bytes
    • Sequence number field is 6 bytes
    • Date field is 6 bytes
    • Source statement field is 80 bytes
  • ILE source is 112 bytes
    • Sequence number field is 6 bytes
    • Date field is 6 bytes
    • Source statement field is 100 bytes

Hints & Tips

QSYS/QADBXREF, the IBM-supplied system cross reference physical file, can be filtered to create a list of just source files.

  • WRKQRY record selection
AND/OR  Field             Test   Value 
        DBXATR            EQ     'PF'  
 AND    DBXTYP            EQ     'S'   


This article is a stub. You can help by editing it.