NODX

NODX (no index) reports are ones which either do not have obvious index values, or which are very short and do not need to be broken up into documents. The GROUPMAXPAGES parameter can be used to determine the number of pages included in each segment. If no GROUPMAXPAGES value is specified, the default is 100 (pages).

The indexes defined for the Content Manager OnDemand application group must be as follows:
First Index
Must be defined as Segment Number. Must be defined as an integer. The 390 indexer assigns values to this index by sequentially counting each segment (document) as it is created.
Second Index
Must be defined as Report Date. Must be defined as a string of length 8 (eight). The 390 indexer assigns this value, based on the Posting Date of the report. The value will have the format of MM/DD/YY. A separate index defined on Posting Date with a data type of DATE should also be defined. This index should be marked as being the segment field for the application group
Third Index
Must be the start value for a GROUPRANGE index on Page Number. Must be defined as an integer. The value for the third index is set by the 390 indexer by counting the pages as they are stored, not from values extracted from the report data.
Fourth Index
Must be the end value for the GROUPRANGE index on Page Number. Must be defined as an integer. The value for the fourth index is set by the 390 indexer by counting the pages as they are stored, not from values extracted from the report data.
Additional indexes
Can be defined, but cannot be GROUPRANGE or GROUPRANGE2 indexes.
The following example lists typical indexing parameters and values for NODX reports. Indexing parameters are specified on the Indexer Information page in the Content Manager OnDemand application.
FILEFORMAT=RECORD,90
GROUPMAXPAGES=50
TRIGGER1=*,1,X'F1',(TYPE=GROUP)  /* 1 */
FIELD1=0,83,8,(TRIGGER=1,BASE=0)
INDEX1=X'E2C5C7D4C5D5E36DD5E4D4C2C5D9',FIELD1,(TYPE=GROUP,BREAK=NO)  /* SEGMENT_NUMBER */
INDEX2=X'D9C5D7D6D9E36DC4C1E3C5',FIELD1,(TYPE=GROUP,BREAK=NO)  /* REPORT_DATE */
INDEX3=X'D7C1C7C56DD5E4D4C2C5D9',FIELD1,(TYPE=GROUPRANGE)  /* PAGE_NUMBER */
INDEX4=X'D7D6E2E3C9D5C76DC4C1E3C5',FIELD1,(TYPE=GROUP,BREAK=NO)  /* POSTING_DATE */
INDEXSTYLE=NODX
Remember:
  • The FIELDn value pointed to by the INDEX1, INDEX2, and INDEX3 indexes are needed to meet the syntax checking requirements of the graphical indexer, but are not used by the 390 indexer. Any validFIELDn value can be specified for these indexes.
  • The GROUPRANGE specification for INDEX3 will cause the beginning page number value to be stored in the third application group index field, while the ending page number value gets stored in the fourth application group index field. INDEX4 (posting date from preceding information) gets stored in the fifth application group index field.