| Derek,
Per user:
<write change profil user = "schollaert" , vmsusr = ""
More permanent:
ALL-IN-1 V3.0 : Creating a Single ALL-IN-1 Account for Several VMS Accounts
COPYRIGHT (c) 1988, 1989, 1990 by Digital Equipment Corporation.
ALL RIGHTS RESERVED. No distribution except as provided under contract.
PROBLEM/SOLUTION ARTICLE OUTLINE
-------------------------------------------------------------------------------
BRIEF PROBLEM OUTLINE:
Creating a Single ALL-IN-1 Account for Several VMS Accounts and is unable
to blank the VMS account name.
PRODUCT: VMS, Version 5.4-2
LAYERED PRODUCT: ALL-IN-1, Version 3.0
DATE: 28-MAY-1992
SYMPTOMS/PROBLEM:
A customer was trying to follow the instructions in the Management Guide to
create a single ALL-IN-1 account for several VMS accounts (4-42 to 4-43).
When he tried to delete the VMS account name it would not let him. Brought
up the message:
"Field may not be left blank - re-enter"
ANALYSIS:
The named data appeared to be too restrictive. There is a /VALID qualifier
that does not allow blank fields for the field VMSUSR.
SOLUTION:
Alter the named data on the form SM$PROFILE from:
;;VMSUSR;;
/PRE='GET #SM_VMS_INITIAL = VMSUSR'
/HARD=OA$_SM_HRD_VMS_ACCOUNT
/RECOG=UAF:.USERNAME
/VALID=UAF:.USERNAME
/POST='.IF #SM_VMS_INITIAL NES VMSUSR THEN GET #SM_VMS_CHANGE = "1"'
To:
;;VMSUSR;;
/PRE='GET #SM_VMS_INITIAL = VMSUSR'
/HARD=OA$_SM_HRD_VMS_ACCOUNT
/RECOG=UAF:.USERNAME
/VALID=UAF:.USERNAME/OPTIONAL
/POST='.IF #SM_VMS_INITIAL NES VMSUSR THEN GET #SM_VMS_CHANGE = "1"'
It is also necessary to move the whole form set live.
i.e SM$PROFILE, SM$PROFILE2, SM$PROFILE3, SM$PROFILE4, SM$PROFILE5,
SM$PROFILE6.
|