Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a section access set up where the user is identified by NT name.
I move the application between servers and that has caused me problems of accessing the application since the NT name is not the same in different environments. And in the future i'm not the only onw that should be able to access the appliacation but i don't know who will.
So my question is, what do i do to be sure that someone can access the application (in terms of developing) in the future?
//A.
if that application is internal you dont need NT Name. just use USERNAME
Problem is that it's not internal.
how you are loading the users . Are you pulling them from an excel sheet. if that is the case use two excel sheets thenwrite your script in such a way it pulls the different excel sheets based on the environment . Hope this helps.
The minimum section-access consists out of the role (ADMIN or USER) and the NT-name. Thus for each collegue you need to define, whether he shall have rights as administrator or user.
Section Access;
LOAD
*
INLINE [ACCESS, NTNAME
ADMIN, John
USER, Sylvia
USER, Chris];
Section Application;
HTH
Peter
Hi,
one way would be to add new local account in Section Access table, that will have ADMIN value for ACCESS field and set USERID and PASSWORD fields (+ other fields set to *). That account should have User CAL assigned.
regards