‎2010 Nov 18 5:46 PM
Hello,
I pretend do create a table which will have names of several form's. I'll select those forms names and call them inside the program.
Is it possbile to call a form using a field-symbol instead of the name ?
FIELD-SYMBOLS <fs_routine> TYPE ANY.
ASSIGN 'F_TEST' TO <fs_routine>.
PERFORM <fs_routine>.
FORM F_TEST.
BREAK-POINT.
ENDFORM.The code above is just an example of what i want to do!
Thanks!
‎2010 Nov 18 5:56 PM
It's simpler, you can do this:
data subr type string value 'F_TEST'.
perform (subr) in program ...Check F1 help for PERFORM statement for all details.
Thomas
‎2010 Nov 18 5:56 PM
It's simpler, you can do this:
data subr type string value 'F_TEST'.
perform (subr) in program ...Check F1 help for PERFORM statement for all details.
Thomas