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

group variable not working in IF clause.


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

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Mon Feb 17, 2014 8:19 pm
Reply with quote

hi,

my declaration is as below.

01 WS-VIRT-VND.
05 WS-VNDR-A PIC 9(06) VALUE ZEROS.
05 WS-VNDR-B PIC 9(02) VALUE ZEROS.
05 WS-VNDR-C PIC 9(01) VALUE ZEROS.
01 WS-VIRT-VNDR REDEFINES WS-VIRT-VND PIC 9(09).

after moving 123456789 to WS-VIRT-VND if i use WS-VIRT-VND in IF clause it is not working. That is

IF WS-VIRT-VND > 999999 is resulting as false where as WS-VIRT-VNDR >999999 is resulting as true.

What is the reason?
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Mon Feb 17, 2014 8:33 pm
Reply with quote

Why do you want to do this?

One is comparing a numeric field to a numeric literal, the other is comparing a group item to a numeric literal which is shorter than the group item.

I'm sure if you consult the manual it will reveal why it is doing a character compare.

Can't say I ever have done such a thing, or would ever consider doing it. Even if it "worked" (if the literal was the same length as the field) would the next person along realise the danger of shortening the literal?
Back to top
View user's profile Send private message
vinuseba

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Mon Feb 17, 2014 8:39 pm
Reply with quote

hi Bill,

The variable WS-VIRT-VND is rading a number and the IF clause is to make sure the read number is greater than 999999 for further processing.
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: Mon Feb 17, 2014 9:11 pm
Reply with quote

As you were told, using the group name in the IF statement may give you erroneous results. Do NOT use the group variable name in your IF statement.
Back to top
View user's profile Send private message
pongi

New User


Joined: 21 Aug 2006
Posts: 4
Location: US

PostPosted: Tue Feb 18, 2014 1:40 am
Reply with quote

Please follow the Robert Insturctions. But, thought to post my thoughts.

WS-VIRT-VND > 999999 ==> This will be the Alpha Numeric Comparision. So, First 6 chracters will be compared 123456789 > 999999. - So, it is gave False, since char by char will be compared.

WS-VIRT-VNDR >999999 == Numeric comparison which will work as arithmatic comparison.
Back to top
View user's profile Send private message
vinuseba

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Tue Feb 18, 2014 9:18 am
Reply with quote

Thanks everyone for the explanation
Back to top
View user's profile Send private message
Terry Heinze

JCL Moderator


Joined: 14 Jul 2008
Posts: 1249
Location: Richfield, MN, USA

PostPosted: Tue Feb 18, 2014 7:53 pm
Reply with quote

Displaying the values of WS-VIRT-VND and WS-VIRT-VNDR before executing your IF statement would have shown you why. It's handy to keep a short test program around for researching problems like this.
Back to top
View user's profile Send private message
vinuseba

New User


Joined: 17 Feb 2014
Posts: 19
Location: India

PostPosted: Wed Feb 19, 2014 9:12 am
Reply with quote

thats cool Terry.... Thank you
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 Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts PD not working for unsigned packed JO... DFSORT/ICETOOL 5
No new posts Def PD not working for unsigned packe... JCL & VSAM 3
No new posts Variable Output file name DFSORT/ICETOOL 8
No new posts To search DB2 table based on Conditio... DB2 1
Search our Forums:

Back to Top