I am not familiar with max sal on the AS400,
A PF has two maximum values.
1. Max Size - Which determines that maximum number of records
2. Max Mbrs - Which determines the maximum number of members in a PF. This is usually 1.
Please let use know where you found this max sal displayed and we will be able to help you out.
Last Wiki Answer Submitted: January 18, 2010 6:29 pm by CharlieBrowne32,915 pts.
All Answer Wiki Contributors: CharlieBrowne32,915 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
Perhaps a column named Sal (salary) in a table named ??? employee???
You can use SQL query for that purpose.
1. Select * from employee _table where salary = ( Select max(Salary) from
employee_table)
2 Select Max(salary) from employee_table
SELECT MAX(SALARY) FROM LIBRARY/PFILE
here salary is your field name in PFILE