We would like to add the user login group to our constituent header info - it displays the
user (st_user) but I'm unable to find a variable for login group. Does anyone know
of a way to retrieve the Tess login group?
Thanks,
Carol
Add a column to your LP_DONOR_HEADER procedure that selects against the function dbo.fs_get_param_from_appname('ug')
Thanks, Brian. That's just what I was looking for.
Brian, I hope you don't mind one more question - the login group displays perfectly on the general tab and on the order entry screen once a customer has been selected. Before a customer is selected in order entry, the field displays all different characters strings - sometimes lumn_n (probably the word column, strange symbols or a string of numbers. The user id displays correctly even before a customer for the order is selected. Is there any way to at least have the group blank before a customer is selected?
You could change the visibility on it in Infomaker so it's only visible if customer_no>0.
Something like IF(customer_no > 0, 1, 0).
Good idea - that did the trick. Thank you!