View previous topic :: View next topic |
Author |
Message |
boddupalli1975 Beginner
Joined: 01 Feb 2005 Posts: 5 Topics: 3
|
Posted: Tue Feb 01, 2005 7:47 am Post subject: Grant access for PDS |
|
|
How to grant access my PDS to other users? Please let me know the command using option 6 from ISPF main menu. |
|
Back to top |
|
|
superk Advanced
Joined: 19 Dec 2002 Posts: 684 Topics: 5
|
Posted: Tue Feb 01, 2005 8:06 am Post subject: |
|
|
Are you maybe looking for the PERMIT command?:
Code: |
PERMIT 'DSN' ID(USERID) ACCESS(read)
|
|
|
Back to top |
|
|
boddupalli1975 Beginner
Joined: 01 Feb 2005 Posts: 5 Topics: 3
|
Posted: Tue Feb 01, 2005 8:25 am Post subject: |
|
|
Thanks for the response.
After processing the command it says "Dataset not defined to RACF" even though the dataset it is present. |
|
Back to top |
|
|
programmer1 Beginner
Joined: 18 Feb 2004 Posts: 138 Topics: 14
|
Posted: Tue Feb 01, 2005 8:58 am Post subject: |
|
|
boddupalli1975,
Try using
PERMIT 'DSN' ACCESS(read) ID(USERID) GENERIC _________________ Regards,
Programmer |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Tue Feb 01, 2005 9:04 am Post subject: |
|
|
boddupalli1975,
Here is a detailed explanation of the error you are getting.
Code: |
ICH06004I profile-name NOT DEFINED TO RACF
Explanation: The specified profile name is not defined to RACF.
Note: If you enter the PERMIT command for a fully qualified
generic profile (one whose name has no generic
characters), but you do not specify the GENERIC operand,
RACF issues this message. This occurs because, without
the GENERIC operand, RACF looks for a discrete profile of
that name. For example, if there is a fully qualified
generic profile named ABC.DATA, and you enter the
following command:
PERMIT 'ABC.DATA' ACCESS(READ) ID(JOE)
RACF looks for a discrete profile named ABC.DATA and, if
there is none, issues this message (ICH06004I ABC.DATA
NOT DEFINED TO RACF). To identify for RACF the generic
profile, specify the GENERIC operand as follows:
PERMIT 'ABC.DATA' ACCESS(READ) ID(JOE) GENERIC
Likewise, when using the FROM operand to copy an access
list from a fully qualified generic profile, specify the
FGENERIC operand to identify the fully qualified generic
profile to RACF.
System Action: Command processing stops.
|
Hope this helps...
Cheers
kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
rishikesh_u Beginner
Joined: 26 Jul 2004 Posts: 5 Topics: 3
|
Posted: Mon Mar 07, 2005 4:41 am Post subject: |
|
|
Try this,
Type RACF from command promt
then select the option 1 . DATA SET PROFILES
then again select option 1 Add a profile then type the profile name as the PDS which you want to give the access
and fill in the other details.. and press Enter and your PDS can be accessed.
Hope this helps. |
|
Back to top |
|
|
Manas Biswal Intermediate
Joined: 29 Nov 2002 Posts: 382 Topics: 27 Location: Chennai, India
|
Posted: Mon Mar 07, 2005 3:23 pm Post subject: |
|
|
Use TSO ADDSD to define your dataset to RACF before using TSO PERMIT. Pls do a TSO H ADDSD on your TSO session to know the exact syntax of ADDSD. I have forgotten the exact syntax of the command.
Thanks,
Manas |
|
Back to top |
|
|
|
|