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

While issuing print ch ids(/) the record is having dots(.)


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Hariharan Sukumar

New User


Joined: 14 Mar 2011
Posts: 14
Location: India

PostPosted: Mon Mar 14, 2011 6:05 pm
Reply with quote

Hi,

I'm working with vsam in cobol. let me brief my doubt.

I'm having a KSDS cluster which is having records in the following format
01 ksdsrec.
02 eno pic x(4).
02 f pic x(2).
02 ename pic x(15).
02 f pic x(2).
02 esal pic 9(5)v99.
02 f pic x(50).

while i'm trying to rewrite a record using cobol pgm, the fields are getting updated. But while issuing print ch ids(/) the record is having dots(.) in place of filler.

E006..HARIHARAN.S ..2500000..............................................

What i need to do to avoid the dots or need to move spaces in place of DOTS.
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Mon Mar 14, 2011 6:13 pm
Reply with quote

Move spaces to the fillers
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Mon Mar 14, 2011 6:18 pm
Reply with quote

A dot in a printout usually means a non-printing character. Depending upon your LE run-time options, it is quite possible that LOW-VALUES (X'00') are being used for your FILLER. Move SPACES (X'40') to your 01 before populating the variables and writing the record, as Nic said.
Back to top
View user's profile Send private message
Hariharan Sukumar

New User


Joined: 14 Mar 2011
Posts: 14
Location: India

PostPosted: Tue Mar 15, 2011 11:21 am
Reply with quote

Thanks,

It had worked......!
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts FINDREP - Only first record from give... DFSORT/ICETOOL 3
No new posts To find whether record count are true... DFSORT/ICETOOL 6
No new posts Validating record count of a file is ... DFSORT/ICETOOL 13
Search our Forums:

Back to Top