unidatau2uniquery

UniQuery LIST without page breaks


This should be simple but it's just not working. I have a list of records that I want to display in the terminal without anything besides the list of record keys. No Headers, page gaps, etc. The problem is I can't get rid of the page gaps that keep chopping up my list.

SORT INVENTORY HDR.SUPP COL.HDR.SUPP NO.PAGE NO.SPLIT COUNT.SUP


Solution

  • You need to change your TERM settings, ignore the 'type' option. Increase the TERM 'B' (HELP TERM) to the total number of records you are returning.

    For example if the report contains 100 records, you enter:

    : TERM [to get default settings]

    : TERM 80,100,132,60

    : run LIST/SORT

    : TERM A,B,C,D [ use values from first TERM ]

    You need to run the term command prior to running your select.