Hello All:
I am particularily interested in knowing how can i decode the values to match it the way it shows over the user details (user.edituser)
KUAF.GroupID (Int) >> Department ( Default Infor Technology Group --etc format)
KUAF.TimeZone (Int) >> Time Zone (GMT-08:00 Pacific -- etc format)
KUAF.UserPrivileges (Int) >> Privileges (Log-In enabled,......system administration rights etc format)?
So far my query look like this for SQL 2008 , LL 9.7.1 based application.
select KUAF.Name "Log-in Name",KUAF.GroupID as "Department",
KUAF.LastName + ', ' + KUAF.FirstName "User Name",KUAF.Title "Title",
KUAF.MailAddress "E-mail" ,KUAF.OfficeLocation "Office Location",
KUAF.TimeZone "Time Zone", KUAF.UserPrivileges "Privileges" from KUAF where Type = 0
Many thanks for your inputs!
Mukesh Giri