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

remove single quotes from input data file using JCLs


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

New User


Joined: 11 May 2013
Posts: 6
Location: canada

PostPosted: Tue Jul 02, 2013 11:13 pm
Reply with quote

I'm getting data fro user throgh EXCEL sheet. every field is in single quote. some fields had comma also with in text. comma is after every field. e.g
'abcd','main, area','23456','','','abcdef,klm'

I want to handle thsi through JCL or cobol program only in mainframe.
Can anyone has solution???
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


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

PostPosted: Tue Jul 02, 2013 11:22 pm
Reply with quote

1. JCL cannot handle this. JCL does nothing but execute programs. If you had wanted to do this with SORT or IEBGENER or one of the other utility programs that can be executed with JCL, that may have been possible.

2. COBOL can handle the data although you may have to use reference modification since there are commas in the data as well as being used as delimiters. Find a quote mark and everything until the next quote mark belongs to the data variable you are handling.
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Tue Jul 02, 2013 11:23 pm
Reply with quote

What should the output corresponding to this input look like?
Back to top
View user's profile Send private message
jasorn
Warnings : 1

Active User


Joined: 12 Jul 2006
Posts: 191
Location: USA

PostPosted: Sun Jul 07, 2013 7:50 pm
Reply with quote

Assuming 'through JCL' means with JCL and commonly installed utility programs, and you have dfsort installed, I suggest you skim through srttrck.pdf from ftp.software.ibm.com/storage/dfsort/mvs/

In particular look for 'findrep', how to process delimited files, and how to process variable width files.

I also wrote a cobol program to do this but find that often dfsort is more appropriate.

bashir ahmad wrote:
I'm getting data fro user throgh EXCEL sheet. every field is in single quote. some fields had comma also with in text. comma is after every field. e.g
'abcd','main, area','23456','','','abcdef,klm'

I want to handle thsi through JCL or cobol program only in mainframe.
Can anyone has solution???
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 save SYSLOG as text data via P... All Other Mainframe Topics 2
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts TRIM everything from input, output co... DFSORT/ICETOOL 1
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Store the data for fixed length COBOL Programming 1
Search our Forums:

Back to Top