View previous topic :: View next topic |
Author |
Message |
mdisulaiman Beginner
Joined: 14 Nov 2003 Posts: 17 Topics: 10
|
Posted: Wed Dec 17, 2003 9:35 pm Post subject: MAXCC=12 |
|
|
hi all,
when i compile a pgm which is a part of a pds the system respons with
maxcc=12. In the spool are the cob log source listing shows the following code.
SOURCE LISTING
F & pIDENTIFICATION DIVISION.jPROGRAM-ID. SAMP.DATA DIVISION.
pWORKING-STORAGE SECTION.
AND GOES ON...
FOLLOWED BY
DFH7037I SEVERITY LINE NO
C 0001
INVALID CHARACTER
can any one help me what could be the possible cause for these invalid character.
bye |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Thu Dec 18, 2003 6:48 am Post subject: |
|
|
mdisulaiman,
I guess you are using panavalet. Panavalet has version numbers from the 72 byte. I guess you have edited the contents on the line in question(deleted some content) and there by the version numbers are pulled inside the 1-72 range which is an invalid character for the compiler.
In the sysprint it gives you the error line no:, just remove the characters from the the line in question
Hope this helps...
cheers
kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
mdisulaiman Beginner
Joined: 14 Nov 2003 Posts: 17 Topics: 10
|
Posted: Sat Dec 20, 2003 10:25 pm Post subject: |
|
|
Hi kolusu,
Sorry for the late reply. The above error occurs when i create a new member in my pds and not on editing an existing member, moreover my pgm is getting complied from other logins. Can you explain me why and what's the problem with my pds. Thanks in advance
bye _________________ sulaiman |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Mon Dec 22, 2003 12:59 pm Post subject: |
|
|
mdisulaiman,
I thinks your NUM settings which is messing it up. open the PDS member in Edit mode and type PROF on the command prompt. You should see something like this
Code: |
....DSN (FIXED - 10)....RECOVERY ON....NUMBER ON STD....................
....CAPS ON....HEX OFF....NULLS ON STD....TABS OFF....SETUNDO STG.......
....AUTOSAVE ON....AUTONUM OFF....AUTOLIST OFF....STATS OFF.............
....PROFILE UNLOCK....IMACRO NONE....PACK OFF....NOTE ON................
....HILITE DEFAULT PAREN CURSOR FIND....................................
|
Now type in NUM OFF at the command prompt and hit Enter. Now once again type PROF at the command prompt and you should see something like this
Code: |
....DSN (FIXED - 10)....RECOVERY ON....NUMBER OFF.......................
....CAPS ON....HEX OFF....NULLS ON STD....TABS OFF....SETUNDO STG.......
....AUTOSAVE ON....AUTONUM OFF....AUTOLIST OFF....STATS OFF.............
....PROFILE UNLOCK....IMACRO NONE....PACK OFF....NOTE ON................
....HILITE DEFAULT PAREN CURSOR FIND....................................
|
Hope this helps...
cheers
kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
mdisulaiman Beginner
Joined: 14 Nov 2003 Posts: 17 Topics: 10
|
Posted: Mon Dec 22, 2003 10:06 pm Post subject: |
|
|
Hai Kolusu,
Thanks kolusu for your info. Yes the num was on in the profile. After changing the state it works fine.
bye _________________ sulaiman |
|
Back to top |
|
 |
s_shivaraj Beginner

Joined: 21 Sep 2004 Posts: 140 Topics: 14 Location: Chennai, India
|
Posted: Wed Nov 17, 2004 7:10 am Post subject: |
|
|
Hi Kolusu,
With Num off also, it didnt worked for us, but we find it's working when we put pack off with Num off/ON, could you please explain how this makes the difference....
Thanks in advance.  _________________ Cheers
Sivaraj S
'Technical Skill is the Master of complexity, while Creativity is the Master of Simplicity' |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Wed Nov 17, 2004 11:08 am Post subject: |
|
|
Sivaraj,
You must keep PACK OFF because the compiler can't read ISPF packed data. It saves space in the PDS, but it can only be unpacked by ISPF. There is an ISPF utility (ISRLEMX) that could be added to the batch compile job to unpack the source prior to compile.
Regards,
Bill |
|
Back to top |
|
 |
s_shivaraj Beginner

Joined: 21 Sep 2004 Posts: 140 Topics: 14 Location: Chennai, India
|
Posted: Thu Nov 18, 2004 1:30 am Post subject: |
|
|
Kolusu,Bill
Thanks for your clarification _________________ Cheers
Sivaraj S
'Technical Skill is the Master of complexity, while Creativity is the Master of Simplicity' |
|
Back to top |
|
 |
|
|