- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2015 11:28 AM
In our Purchase Order form we want to select an approver from the User table who has the proper approval authority. We have an integer field in user that indicates authority level and want our PO form Approver choice field to show only users with the proper level of authority. Can anyone point me in the right direction?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2015 06:29 AM
Hi Tim, try this:
javascript: 'u_approval_amount>=' + current.total_cost
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2015 12:53 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2015 01:29 PM
Hi Tim, I believe what you're doing is right. Would you mind removing the ^EQ and give it a try?
Also... make sure you have not misspelled your column names
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2015 06:08 AM
It didn't work. Is it not working because the Reference Qualifier points to the user table while the condition is trying to point to the PO table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2015 06:29 AM
Hi Tim, try this:
javascript: 'u_approval_amount>=' + current.total_cost
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2015 07:24 AM
That worked like magic! Thanks!