Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


whn do i get soc7 abend while moving alphanumeric to
numeric or while moving numeric to aplhanumeric please
reply ASAP?

Answers were Sorted based on User's Feedback



whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / b.rajesh

SOC7 abend error will occur when we pass ALPHANUMERIC to
NUMERIC
ex:-
01 a pic x(6) value 'rajesh'.
01 b pic 9(6).
procedure division.
move a to b.
it shows SOC7 error.
SOC7 abend error will NOT occur when we pass NUMERIC to
ALPHANUMERIC
ex:-
01 a pic 9(6) value '901090'.
01 b pic x(6).
procedure division.
move a to b.

Is This Answer Correct ?    14 Yes 4 No

whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / y.prasanthi

When we provide invalid data i.e, alphanumeric to numeric
bcz alphanumeric contains characters also but numeric
contains only numbers.

Is This Answer Correct ?    5 Yes 0 No

whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / adarsha

i agree a bit with Y.prasanthi's answer..

> when we move any value say date from numeric to alpha
numeric.. SOC7 will not occur.. but when you do any
logical/arithmetic calculations on it.. SOC7 will appear !

Is This Answer Correct ?    7 Yes 2 No

whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / himanshu mistry

ASAP == As Soon As Possible..

Is This Answer Correct ?    2 Yes 2 No

whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / murthy

adarsha is 100% correct
tnq adarsha

Is This Answer Correct ?    0 Yes 0 No

whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / nishu

No soc7 error is not for moving numeric to alphanumeric and vice-versa, soc7 means 'bad data',it means if u are providing any arithmetic operator in place of numeric or alphanumeric data.
If you move numeric to alphanumeric value than it wont show any error,but it will give unpredictable results.

Is This Answer Correct ?    0 Yes 0 No

whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / raju

What is ASAP(what does it mean) ?

Is This Answer Correct ?    0 Yes 1 No

whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / lalitha

Alphanumeric to numeric - provided the alphanumeric field
has charachters also in it.

Is This Answer Correct ?    1 Yes 5 No

whn do i get soc7 abend while moving alphanumeric to numeric or while moving numeric to aplhanumer..

Answer / adithya

SOC 7 ABEND WIL GET WHN WE PASS NON-NUMERIC TO NUMERIC DATA TYPE

IT IS NOT POSSIBLE TO PASS NUMERIC TO ALPHANUMERIC

Is This Answer Correct ?    3 Yes 7 No

Post New Answer

More COBOL Interview Questions

what is Reentrancy and Quasi-reentrancy?

1 Answers  


Can a Search can be done on a table with or without Index?

0 Answers  


what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C

3 Answers   TCS,


How do you submit JCL via a Cobol program?

5 Answers   IBM,


what are decleratives in cobol?

0 Answers   GGG, Satyam,


How to display the index.(displacement from an array)

4 Answers   IBM,


if a file has 1000 recods how copy the records from 1 to 100 records using sort

4 Answers   IBM,


can we read records in a file from botom to top. if possible how can we read

12 Answers   ACS,


I HAVE FOLLOWING DECLARATION. 02. A PIC X(10) VALUE 'XXXXXXXXXX'. 02. B REDEFINES A. 05. C PIC X(3). 05. D PIC X(3). 05. E PIC 9(3). IN MY PROG, I HAVE MOVE 1 TO E. DISPLAY A. WHAT WILL BE DISPLAYED AS A RESULT OF THIS? PLEASE EXPLAIN THE ANSWER. THANKS.

7 Answers   Amdocs,


What is the difference between PIC 9.99 and PIC9v99?

0 Answers  


what is the difference between Plan & package

3 Answers   IBM,


when COMP-3 is preferrable?

3 Answers   Patni,


Categories