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

About calling program


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

New User


Joined: 20 Feb 2004
Posts: 57

PostPosted: Mon Apr 19, 2004 9:54 am
Reply with quote

Hi,
I am calling prog B from prog A. In A i have intialized the variable num1 to 10 but in prog B i was change this num1 to 20. AT the time of return the program i want to num1 as 10. That means the value at prog A.
Is it possible? If so can any body expalin it with example.
Back to top
View user's profile Send private message
bluebird

Active User


Joined: 03 Feb 2004
Posts: 127

PostPosted: Mon Apr 19, 2004 5:14 pm
Reply with quote

hello,

do a move 20 to num1 Before doing your call in pgm A then after the call do a
move 10 to num1 in pgm a

in pgm b you can do a move 20 to your num1 anytime

is this what u want ?
Back to top
View user's profile Send private message
krbabu

New User


Joined: 20 Feb 2004
Posts: 57

PostPosted: Mon Apr 19, 2004 5:20 pm
Reply with quote

no no.
before call in prog A num1 is 10
and in called prog B num1 is 20. When i return the prog B to prog A i want the intial value of num1 which has intialed before the call B from A as 10.
Is it possible or not?
Back to top
View user's profile Send private message
sosu4u

New User


Joined: 02 Nov 2007
Posts: 2
Location: bangalore

PostPosted: Wed Feb 04, 2009 6:15 pm
Reply with quote

hello it is possible

if u define variable as local the value will not change in pgm b.

in pgm a:

if u declare num1 as local then before calling pgm b

display the variable.

after calling pgm b. increment num1 count to 20.

again display the cariable in pgm a. it will show same value

what value it have before because it is local variable
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Wed Feb 04, 2009 7:26 pm
Reply with quote

You seem to be little late in answering - it's been just 5-years when question was posted first.. icon_smile.gif
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 Using API Gateway from CICS program CICS 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
No new posts Calling Java method from batch COBOL ... COBOL Programming 5
No new posts Calling an Open C library function in... CICS 1
No new posts DB2 Event passed to the Application P... DB2 1
Search our Forums:

Back to Top