‎2008 May 07 5:28 AM
hi all..
iam having two variables in my modulepool program... like var1 and var2...declared separately in top include with type c and size 20 (same)....
here in my program some times i hav to give.....
var1 = var2... in some modules......
but i dont want to write above statement where ever i want.....i need global declaration.....if i write that statement in top include it was showing error...that staement is not accessble....
so....where i hav to declare it to applicable for entire program......
Thank you,
naveen.
‎2008 May 07 5:31 AM
hi,
Create a global perform. Put the required data in it and use this perform where ever required ...
Regards,
Santosh
‎2008 May 07 5:31 AM
hi,
Create a global perform. Put the required data in it and use this perform where ever required ...
Regards,
Santosh
‎2008 May 07 7:35 AM
hii,
use a subroutine..... pass the vales as its parameters and you can use it anywhere you like..
its my point of veiw..if helpful reawrd..
thanks....