‎2008 Nov 12 9:23 AM
How to call a value which i got in one form - endform to another form - endform. Kindly give some clues
thanks
‎2008 Nov 12 9:27 AM
‎2008 Nov 12 9:29 AM
Make the variable that you want to pass to one subroutine to another subroutine as global i mean do not declare the variable inside the subroutine that you want to use in different subroutine and do not pass the PASS BY VALUE
‎2008 Nov 12 9:30 AM
‎2008 Nov 12 9:29 AM
‎2008 Nov 12 9:31 AM
Hi,
Try to use chnaging parameter for form.
Ex:
form form_name changing value type value_type.
‎2008 Nov 12 9:34 AM
Hi.
I think using changing parameters.
data: g_data(10) type c.
g_data = '100' .
perform aa changing g_data.
perform bb.
form aa changing g_p.
g_p = '500'.
endform. " aa
form bb.
write: g_data.
endform. " bb
regards.
- ly