Summary
When opening the Import dialog in @ptitude Analyst, the following error message may appear:
“Browse functionality is not supported for this user. Please contact the Administrator.”
This issue occurs when the user does not have access permissions to the folder previously configured as the default import location.
For example, the issue can occur if the default import path is set to the root of the C:\ drive and the user does not have the required access rights to that location.
Solution
The easiest solution is to remove and recreate the user, which resets the import path to the default location.
Alternatively, you can update the user settings directly in the Analyst database using an SQL query:
- Replace <Analyst username> with the Analyst user name.
- Replace <full path to valid folder> with a valid folder path that the user can access.
Note: Before making manual changes to the Analyst database, create a backup of the database.
update rt set PARAMVALUE = '<full path to valid folder>'
from skfuser1.RESTORETBL as rt inner join skfuser1.USERTBL as ut on ut.USERID = rt.USERID
where PARAMKEY = 'ImportPath' and LOGINNAME = '<Analyst username>'
For example:
For example:
update rt set PARAMVALUE = 'C:\TEMP\'
from skfuser1.RESTORETBL as rt inner join skfuser1.USERTBL as ut on ut.USERID = rt.USERID
where PARAMKEY = 'ImportPath' and LOGINNAME = 'ADMIN'Contacting SKF Technical Support Group
For further assistance please open a support case using the Technical Support group's self-help portal at www.skf.com/cm/tsg. Once your support case is submitted, a technician will contact you to begin working on your issue. For urgent issues we are available at these times by phone:
- Monday through Friday, 5:00 a.m. to 4 p.m. Pacific Time -
Phone: +1 800 523 7514 within the US or +1 858 496 3627 outside the US. - Monday through Friday, 8:00 a.m. to 4:00 p.m. Central European Time -
Phone: +46 31 337 65 00. - Monday through Friday, 7:30 a.m. to 4:30 p.m. India Standard Time -
Phone: +60 16 699 9506.
Comments
0 comments
Please sign in to leave a comment.