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

Checking decimal value in the numeric field.


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

New User


Joined: 10 Mar 2011
Posts: 45
Location: india

PostPosted: Wed Jan 28, 2015 10:33 am
Reply with quote

Iam having a numeric field "23.456" or "238.768" and have to read the data from right to left.

While reading the numeric field the fourth byte should always contain "." . if the "." is not present in the fourth byte we need to display an error message.

Could you please let me know what is the approach to complete this requirement.

Thanks for the help.
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: Wed Jan 28, 2015 1:11 pm
Reply with quote

Code:
01  a-nice-name..
    05  name-for-first-part-of-number PIC X(3).
    05  FILLER PIC X. 
         88  field-has-decimal-point VALUE ".".
    05  name-for-second-part-of-number PIC X(3).

IF field-has-decimal-point
AND name-for-first-part-of-number NUMERIC
AND name-for-second-part-of-number NUMERIC
    do your stuff
END-IF
Back to top
View user's profile Send private message
dharmaraok

New User


Joined: 10 Mar 2011
Posts: 45
Location: india

PostPosted: Sat Jan 31, 2015 12:32 pm
Reply with quote

Thanks Bill,

how can we check for S9(2)V999 Comp-3 field. The above logic will applies.
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: Sat Jan 31, 2015 1:31 pm
Reply with quote

No. There is nothing to check for a COMP-3/PACKED-DECIMAL field, as you cant have an explicit decimal-point (.) there, only an implicit one (V).
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 Issues Converting From ZD to Signed N... DFSORT/ICETOOL 4
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts Join 2 files according to one key field. JCL & VSAM 3
No new posts Need Help with Packed Decimal Signs DFSORT/ICETOOL 4
Search our Forums:

Back to Top