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

Including sign in o/p file


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
khamarutheen

Active Member


Joined: 23 Aug 2005
Posts: 677
Location: NJ

PostPosted: Tue Jul 15, 2008 6:37 pm
Reply with quote

Hi all,

I was trying to extract the value from i/p which contains some - signs with values. With my Inrec condition i am not getting the exact o/p which i need. Please find the below i/p & o/p details and instruct me.

Code:
I/P file values:
    767072.000
    198000.000
   1792270.000
    -50000.000
     65000.000
CopyBook layout:
--------- FIELD LEVEL/NAME ---------- -PICTURE- -NUMBER START     END  LENGTH
5 GL-ORIG-FACE                        S9(11)V999    15     81      88       8



O/P file is coming as
0000767072.000
0000198000.000
0001792270.000
0000050000.000
0000065000.000

Inrec filed is:
Code:
110:81,8,PD,EDIT=(TTTTTTTTTT.TTT),SIGNS=(,-),
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Tue Jul 15, 2008 9:54 pm
Reply with quote

khamarutheen,

Code:

110:81,8,PD,EDIT=(TTTTTTTTTT.TTT),SIGNS=(,-),


Your SIGNS=(,-) gives a leading sign that corresponds to an S in the EDIT mask. Since you don't have an S in the edit mask, you don't get a sign. If you want a leading sign, you need an S for it:

Code:

110:81,8,PD,EDIT=(STTTTTTTTTT.TTT),SIGNS=(,-),
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 2
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top