Assembler error ASMA254I trying to re-assemble usermod UM99901
search cancel

Assembler error ASMA254I trying to re-assemble usermod UM99901

book

Article ID: 208779

calendar_today

Updated On:

Products

ACF2

Issue/Introduction

During a re-assemble usermod UM99901, the output shows this Assembler error: 

 3033(L3:@CFDE,404)

Environment

Release : 16.0

Component : CA ACF2 for z/OS

Cause

Further review of the output shows:

** ASMA254I *** MNOTE ***          3033+     12,xxxxx    IS A DUPLICATE WITH DIFFERENT ATTRIBUTES 

Resolution

Check the assembly listing for a duplicate entry for xxxxx.  There cannot be duplicate names in the assembly.  Correct one of them.  For example this is the error:

@CFDE FIELD1,USRACCT,CHAR,ALTER=ACCOUNT+SECURITY,LIST=ALL,GROUP=1    
@CFDE FIELD1,GRPNUMBR,CHAR,ALTER=ACCOUNT+SECURITY,LIST=ALL-USER,GROUP=3  
* ASMA254I *** MNOTE ***          3033+     12,FIELD1    IS A DUPLICATE WITH DIFFERENT ATTRIBUTES   

FIELD1 cannot be used twice.  Change one of the @CFDE entry names:

@CFDE FIELD1,USRACCT,CHAR,ALTER=ACCOUNT+SECURITY,LIST=ALL,GROUP=1    
@CFDE FIELD2,GRPNUMBR,CHAR,ALTER=ACCOUNT+SECURITY,LIST=ALL-USER,GROUP=3