IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

GDG Error - SECURITY VERIFICATION FAILED


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
vikirum

New User


Joined: 26 Apr 2007
Posts: 30
Location: Chennai

PostPosted: Mon Jun 11, 2007 12:35 pm
Reply with quote

Folks:

I tried to create a GDG today and I got a rather funny error mesage and I wonder why. Could you please help me figure out why I get this error?

JCL Used:
Code:

//STEP1   EXEC PGM=IDCAMS                       
//SYSPRINT  DD  SYSOUT=*                       
//SYSUDUMP  DD  SYSOUT=*                       
//SYSIN     DD  *                               
 DEFINE GDG (NAME(U142914.IBLTOP05.POLICY) -   
 LIMIT(30) SCRATCH NOEMPTY)                     
//*                                             
//STEP2  EXEC PGM=IEFBR14                       
//MODEL1 DD   DSN=U142914.IBLTOP05.MODEL,       
//            DISP=(NEW,KEEP,DELETE),           
//            UNIT=SYSDA,                       
//            SPACE=(TRK,0),                   
//            DCB=(LRECL=80,RECFM=FB)           
//*                                             


Error Message is:



    IDCAMS SYSTEM SERVICES TIME: 12:27:13

    DEFINE GDG (NAME(U142914.IBLTOP05.POLICY) -
    LIMIT(30) SCRATCH NOEMPTY)
    IDC3018I SECURITY VERIFICATION FAILED
    IDC3009I ** VSAM CATALOG RETURN CODE IS 56 - REASON CODE IS IGG0CLFT-6
    IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12

    IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 12


Thanks much

Vik Rajagopalan
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Mon Jun 11, 2007 2:31 pm
Reply with quote

What do the error messages tell you,

IDC3018I & IDC3009I
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Mon Jun 11, 2007 3:18 pm
Reply with quote

Hi,

After changing the HLQ of GDG tried your JCL & it worked fine for me.
SYSPRINT message is:
Code:

IDCAMS  SYSTEM SERVICES                                           TIME: 02:16:16
                                                                               
   DEFINE GDG (NAME(HLQ.IBLTOP05.POLICY) -                          00050000
   LIMIT(30) SCRATCH NOEMPTY)                                           00060000
IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 0                       
                                                                               
IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 0               


May be the HLQ you are using is not acceptable in that environment where you are creating GDG, try after changing it.
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Mon Jun 11, 2007 8:34 pm
Reply with quote

Hello,

As your diagnostic info shows and as Expat posted, you need to verify what those error messages tell you (IDC3018I & IDC3009I).

As a hint, there is nothing wrong with your syntax.
Back to top
View user's profile Send private message
haikiran

New User


Joined: 08 May 2007
Posts: 4
Location: hyderabad

PostPosted: Mon Jun 11, 2007 11:27 pm
Reply with quote

Vikirum, Your TSO id does not have access to create the GDG starting with U142914.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Mon Jun 11, 2007 11:31 pm
Reply with quote

Quote:
Vikirum, Your TSO id does not have access to create the GDG starting with U142914

Or perhaps you do not have access to define a GDG base.
Back to top
View user's profile Send private message
vikirum

New User


Joined: 26 Apr 2007
Posts: 30
Location: Chennai

PostPosted: Tue Jun 12, 2007 7:11 am
Reply with quote

Thanks much. I am not a mainframe guy and I wondered what that meant. I will ask the Network folks to see if they can help me with this problem.

As always, thanks very much to all for your patience and help me in finding a solution.


Have a good day

Vik Rajagopalan
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Tue Jun 12, 2007 8:22 am
Reply with quote

You're welcome - good luck icon_smile.gif
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Thu Dec 27, 2007 6:28 pm
Reply with quote

Bit confusing for me, I tried to allocate a GDG with my production Qualifier in Test region, for which My RACF didn't have the access. I found that even File-Aid calls IDCAMS in back-end.

Following were the warning messages:

Code:
ICH408I USER(MyRACFID ) GROUP(XXX     ) NAME(DHAWAN, ANUJ        ) 
  CATALOG.MCATAN CL(DATASET ) VOL(MCATAN)                         
  INSUFFICIENT ACCESS AUTHORITY                                   
  FROM CATALOG.MCAT%% (G)                                         
  ACCESS INTENT(UPDATE )  ACCESS ALLOWED(READ   )                 
***                                                               

Following were the error messages

Code:
IDCAMS  SYSTEM SERVICES                                           TIME: 05:51:5
8        12/27/07     PAGE      1                                             
MARGINS(1 2000)                                                               
IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 0                     
DEFINE GENERATIONDATAGROUP (NAME(XX.TEST.PS)  LIMIT(10) OWNER(MyRACFID) SCRATCH
FOR(10  ))                                                                     
IDC3018I SECURITY VERIFICATION FAILED                                         
IDC3009I ** VSAM CATALOG RETURN CODE IS 56 - REASON CODE IS IGG0CLFT-6         
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12                             
IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 12             


I think now I've rights to ask ..Are you sure about this...
Quote:
but the catch is that when I am using the same High level qualifier in file-aid, I am able to create the GDGs with TLI0
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Thu Dec 27, 2007 6:48 pm
Reply with quote

Quote:
but the catch is that when I am using the same High level qualifier in file-aid, I am able to create the GDGs with TLI0


Are You doing it interactively from TSO....

Once upon a time at a customer location somebody ( to save time, I guess )
defined about 600 dataset using a rexx under tso...
but he forgot about the prefix setting and....
and the batch daily run was completely messed up ... meditate... meditate...


maybe with fileaid under TSO you are allocating with Your high level qualifier ???
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Error to read log with rexx CLIST & REXX 11
No new posts Error when install DB2 DB2 2
No new posts CLIST - Virtual storage allocation error CLIST & REXX 5
No new posts DFHPI1008 JSON generation failed COBOL Programming 0
No new posts Error while running web tool kit REXX... CLIST & REXX 5
Search our Forums:

Back to Top