Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How to move a character into all bytes of a CHAR field..?

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL
Author Message
mail_ssb

New User


Joined: 26 Mar 2005
Posts: 14

PostPosted: Fri Apr 15, 2005 7:45 am    Post subject: How to move a character into all bytes of a CHAR field..?
Reply with quote

Hi,

10 WS-V-LINE PIC X(80)

I want all 80 bytes to contain hyphen (-). I know there is a way to assign all bytes of a variable in the declaration itself, but i cant seem to recall it now.

Something like "MOVE ALL" or PIC x(80) VALUES '-' ALL

But this gives compiler error. Any help..? Thanks for suggestions.
Back to top
View user's profile Send private message
References
sinusam

New User


Joined: 06 Jan 2004
Posts: 18

PostPosted: Fri Apr 15, 2005 10:29 am    Post subject: Re: How to move a character into all bytes of a CHAR field..
Reply with quote

Hi,


Please try the following.

Code:
MOVE ALL '-' to var.

OR

01  var                  PIC X(80) VALUE ALL '-'.


? think, the above will work. Otherwise, please tell me your compiler details.
Back to top
View user's profile Send private message
sinusam

New User


Joined: 06 Jan 2004
Posts: 18

PostPosted: Fri Apr 15, 2005 10:33 am    Post subject: Re: How to move a character into all bytes of a CHAR field..
Reply with quote

Sorry, I missed one more thing.

Sometimes your compiler options may be set only to accept " instead of '.
Compiler Options
" <- QUOTE
' <- APOST


So, Try with ALL "-" too.

Regards,
Sinu
Back to top
View user's profile Send private message
mail_ssb

New User


Joined: 26 Mar 2005
Posts: 14

PostPosted: Sat Apr 16, 2005 5:36 am    Post subject: Re: How to move a character into all bytes of a CHAR field..
Reply with quote

Thanks Sinu....

ALL '-' worked....appreciate your suggestions...
Back to top
View user's profile Send private message
ralhi2004

New User


Joined: 23 Feb 2005
Posts: 2

PostPosted: Tue May 03, 2005 3:23 pm    Post subject: insert 1 character
Reply with quote

how i can insert a character in 200,000 record file ie, iam increasing a char from 223 to 224 . how can i do it?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL All times are GMT + 6 Hours
Page 1 of 1