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

IEB705I INVALID KEYWORD error


IBM Mainframe Forums -> ABENDS & Debugging
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
ybhavesh
Warnings : 1

New User


Joined: 17 Feb 2007
Posts: 46
Location: mumbai

PostPosted: Fri Jul 13, 2007 10:00 am
Reply with quote

Hi all,

Can any one solve this error,I i will be thank full to him.

jes2 log

********************************* TOP OF DATA **********************************
J E S 2 J O B L O G -- S Y S T E M B Y 2 1 -- N O D E L T B

JOB06568 ---- FRIDAY, 13 JUL 2007 ----
JOB06568 IRR010I USERID BCB1O IS ASSIGNED TO THIS JOB.
JOB06568 ICH70001I BCB1O LAST ACCESS AT 09:33:44 ON FRIDAY, JULY 13, 2007
JOB06568 $HASP373 OUTPUT3 STARTED - INIT 13 - CLASS Y - SYS BY21
JOB06568 IEF403I OUTPUT3 - STARTED - TIME=09.35.52
JOB06568 - --TIMINGS (MINS.)--
JOB06568 -JOBNAME STEPNAME PROCSTEP RC EXCP CONN TCB SRB CLOCK
JOB06568 -OUTPUT3 STEP1 08 95 29 .00 .00 .0
JOB06568 IEF404I OUTPUT3 - ENDED - TIME=09.35.52
JOB06568 -OUTPUT3 ENDED. NAME- TOTAL TCB CPU TIME= .00
JOB06568 $HASP395 OUTPUT3 ENDED
S2 JOB STATISTICS ------
2007 JOB EXECUTION DATE
31 CARDS READ
76 SYSOUT PRINT RECORDS
0 SYSOUT PUNCH RECORDS
5 SYSOUT SPOOL KBYTES
.01 MINUTES EXECUTION TIME



jcl


//OUTPUT3 JOB 'OUTPUT IN 3 OUTPUT ',NOTIFY=BCB1O,
// CLASS=Y,MSGCLASS=X,MSGLEVEL=(1,1),PRTY=14
//STEP1 EXEC PGM=IEBDG
//************************************************************
//* 3 DIFFERENT OUTPUT IN 3 DIFFERENT DATASET
//************************************************************
//SYSPRINT DD SYSOUT=*
//PAROUT1 DD DSN=OSSY.BCB1O.PARSET(FIRST),UNIT=3390,
// DISP=(OLD,KEEP),
// VOL=SER=WRK501,SPACE=(TRK,(2,2,2)),
// DCB=(RECFM=FB,LRECL=80,BLKSIZE=800)
//PAROUT2 DD DSN=OSSY.BCB1O.PARSET(SECOND),
// UNIT=AFF=PAROUT1,
// VOL=SER=WRK501,DISP=(OLD),
// DCB=(RECFM=FB,LRECL=80,BLKSIZE=800)
//PAROUT3 DD DSN=OSSY.BCB1O.PARSET(THIRD),
// UNIT=AFF=PAROUT1,
// VOL=SER=WRK501,DISP=(OLD),
// DCB=(RECFM=FB,LRECL=80,BLKSIZE=800)
//SYSIN DD DATA
DSD OUTPUT=(PAROUT1)
FD NAME=FIELD1,LENGTH=20,FORMAT=AL,ACTION=SL
FD NAME=FIELD2,LENGTH=20,FORMAT=ZD
FD NAME=FIELD3,LENGTH=20,FORMAT=AL,ACTION=SR
FD NAME=FIELD4,LENGHT=10,FORMAT=AN
CREATE QUANTITY=4,NAME=(FIELD1,FIELD3,FIELD2)
END
DSD OUTPUT=(PAROUT2)
CREATE QUANTITY=4,NAME=(FIELD2,(COPY=3,FIELD3))
END
DSD OUTPUT=(PAROUT3)
CREATE QUANTITY=4,NAME=(FIELD4,FIELD1)
END
/*



JESYSMSG

ICH70001I BCB1O LAST ACCESS AT 09:33:44 ON FRIDAY, JULY 13, 2007
IEF236I ALLOC. FOR OUTPUT3 STEP1
IEF237I JES2 ALLOCATED TO SYSPRINT
IEF237I 0718 ALLOCATED TO PAROUT1
IEF237I 0718 ALLOCATED TO PAROUT2
IEF237I 0718 ALLOCATED TO PAROUT3
IEF237I JES2 ALLOCATED TO SYSIN
IEF142I OUTPUT3 STEP1 - STEP WAS EXECUTED - COND CODE 0008
IEF285I BCB1O.OUTPUT3.JOB06568.D0000102.? SYSOUT
IEF285I OSSY.BCB1O.PARSET KEPT
IEF285I VOL SER NOS= WRK501.
IEF285I OSSY.BCB1O.PARSET KEPT
IEF285I VOL SER NOS= WRK501.
IEF285I OSSY.BCB1O.PARSET KEPT
IEF285I VOL SER NOS= WRK501.
IEF285I BCB1O.OUTPUT3.JOB06568.D0000101.? SYSIN
IEF373I STEP/STEP1 /START 2007194.0935
IEF374I STEP/STEP1 /STOP 2007194.0935 CPU 0MIN 00.07SEC SRB 0MIN 00.00S
IEF375I JOB/OUTPUT3 /START 2007194.0935
IEF376I JOB/OUTPUT3 /STOP 2007194.0935 CPU 0MIN 00.07SEC SRB 0MIN 00.00S

SYSPRINT

********************************* TOP OF DATA **********************************
Code:
1                              DATA GENERATOR OUTPUT FOR CONTROL CARDS AND MESSAGES
              DSD OUTPUT=(PAROUT1)                                             
              FD NAME=FIELD1,LENGTH=20,FORMAT=AL,ACTION=SL                     
              FD NAME=FIELD2,LENGTH=20,FORMAT=ZD                               
              FD NAME=FIELD3,LENGTH=20,FORMAT=AL,ACTION=SR                     
              FD NAME=FIELD4,LENGHT=10,FORMAT=AN                               
 IEB727I                     ERROR                                             
 IEB705I INVALID KEYWORD,POSSIBLE IMBEDDED COMMA                               
              CREATE QUANTITY=4,NAME=(FIELD1,FIELD3,FIELD2)                     
              END                                                               
              DSD OUTPUT=(PAROUT2)                                             
              CREATE QUANTITY=4,NAME=(FIELD2,(COPY=3,FIELD3))                   
              END                                                               
              DSD OUTPUT=(PAROUT3)                                             
              CREATE QUANTITY=4,NAME=(FIELD4,FIELD1)                           
 IEB727I                              ERROR       
IEB707I FD NAME ON CREATE CARD IS NOT PREVIOUSLY DEFINED BY AN FD CARD OR IS NOT ASSOCIATED WITH CORRECT DCB
              END                                       
1IEB700I                     DATA GENERATION HAS BEEN              COMPLETED COMPLETION CODE IS EIGHT 

icon_redface.gif


regards ,

Bhavesh
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Fri Jul 13, 2007 11:40 am
Reply with quote

The problem is not the 705 error, look at the IEB727I ERROR
Explanation: This message immediately follows an error message and pinpoints the location of syntax errors, incompatible keywords, and other control statement coding errors. In most cases, the "E" of ERROR falls directly below the point at which the error was detected in the preceding control statement.
and notice where the "E" of ERROR falls.....
LENGTH is not spelled LENGHT.... icon_wink.gif
Back to top
View user's profile Send private message
ybhavesh
Warnings : 1

New User


Joined: 17 Feb 2007
Posts: 46
Location: mumbai

PostPosted: Fri Jul 13, 2007 12:14 pm
Reply with quote

Thanks William

You realy have a sharp eye
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Fri Jul 13, 2007 12:28 pm
Reply with quote

ybhavesh wrote:
You realy have a sharp eye
Not really, I just looked up the message and once I rapped "code" around the messages, it just stood out like a sore thumb.... icon_biggrin.gif
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 -> ABENDS & Debugging

 


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 Error while running web tool kit REXX... CLIST & REXX 5
No new posts Getting Error while trying to establi... DB2 3
Search our Forums:

Back to Top