Need to allow certain users to delete members from a CA Panvalet library
search cancel

Need to allow certain users to delete members from a CA Panvalet library

book

Article ID: 10127

calendar_today

Updated On:

Products

Panvalet

Issue/Introduction

Need to allow certain administrative users delete members from a CA Panvalet library. 

The CA Panvalet Option for ISPF panel PSPIPOPT has the $SF050 variable set to N preventing general users from deleting PANLIB members. This delete restriction needs to remain in place.

Environment

Release: PVALET00200-14.6-Panvalet
Component:

Resolution

In the PSPIPOPT options panel, code IF statements to set the $SF050 and $SF051 variables to a Y for the user id's of the users to need delete capabilities:

 

/*                                                            14.5*/ 

/*               *** UTILITY P.3 DELETE   ***                 14.5*/ 

/*                                                            14.5*/ 

&SF050 = 'N' /* N= DO NOT ALLOW DELETES                       14.5*/ 

             /* Y= ALLOW DELETES                              14.5*/ 

IF (&ZUSER = 'ADMIN01') /* Admin User1 can delete */              

  &SF050 = 'Y'                                                       

IF (&ZUSER = 'ADMIN02') /* Admin User2 can delete */

  &SF050 = 'Y'               

/*                                                                */

&SF051 = 'N' /* N= DO NOT ALLOW DELETES OF PRODUCTION MEMBERS 14.5*/

             /* Y= ALLOW DELETES OF PRODUCTION MEMBERS        14.5*/ 

IF (&ZUSER = 'ADMIN01') /* Admin User1 can delete */              

  &SF051 = 'Y'                                                       

IF (&ZUSER = 'ADMIN02') /* Admin User2 can delete */                    

  &SF051 = 'Y'                                                      

/*                                                                */