Can we have an Enform query which lists only few records from the file
like we have in Sql
List_count 2;
Select * from emp where empno = 10;
It will fetch only 2 rows, so to have the same in for Enscribe file,
is there any command
e.g. List where empno = 10 ?????
Thanks
Go look up the option variables @DISPLAY-COUNT, @READS, @PAGES, and @TARGET-RECORDS in the ENFORM manual (start at docs.hp.com, page down to the NonStop Technical Library heading, click on H-Series, G-Series, or J-Series, depending on your system type, and look for the ENFORM manual).
@DISPLAY-COUNT probably is the closest to being like LIST_COUNT, but you might find the others useful in some situations.
Hi Keith,
Appreciate your help, I found it in the doc
Thanks