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

Check alphanumeric(X) values in is numeric clause condition


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

New User


Joined: 01 Apr 2005
Posts: 8

PostPosted: Fri Apr 01, 2005 2:15 pm
Reply with quote

if u check alphanumeric(X) values in is numeric clause condition what will happen?

for example

1) ws-data pic x(4) value "123".
IF ws-data is numeric
display "sangar"
else
display "gan".
what is the display value?

2) ws-data pic x(4) value "1234".
IF ws-data is numeric
display "sangar"
else
display "gan".
what is the display value?
Back to top
View user's profile Send private message
sivatechdrive

Active User


Joined: 17 Oct 2004
Posts: 191
Location: hyderabad

PostPosted: Mon Apr 04, 2005 5:38 pm
Reply with quote

Hi Sangar

the IS numeric clause can be used with alphanumeric field

i suppose

the ist results in "gan". as 123 is passed & the last byte is padded with space

the 2nd result in "sangar"



thanks
siva
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Tue Apr 05, 2005 6:21 am
Reply with quote

An A/N field will test positive for NUMERIC if it only contains the digits
0-9, that is, X'F0' thru X'F9'.

Any other values will result in a failed NUMERIC test.
Back to top
View user's profile Send private message
prasad_yadav20

New User


Joined: 12 Mar 2005
Posts: 13
Location: hyderabad

PostPosted: Tue Apr 05, 2005 6:00 pm
Reply with quote

hi.
if i deleted dataset phisically in 1st step of one proc ,if i want to access same dataset which i am delete in 2nd step then what abend i will get?
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 INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
Search our Forums:

Back to Top