Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Form & endform

Former Member
0 Likes
785

How to call a value which i got in one form - endform to another form - endform. Kindly give some clues

thanks

6 REPLIES 6
Read only

Former Member
0 Likes
749

What forms are you speaking could you elebrate!!

Regards

S

Read only

bpawanchand
Active Contributor
0 Likes
749

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

Read only

0 Likes
749

yes got it. I did it the same way thanks

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
749

Check the ABAP keyword documentation on "perform" statement.

Read only

Former Member
0 Likes
749

Hi,

Try to use chnaging parameter for form.

Ex:

form form_name changing value type value_type.

Read only

Former Member
0 Likes
749

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