2010 Jul 15 12:21 PM
Hello,
It is possible to set the name of abap transformation in dynamic way ?
For example:
PERFORM call_t USING 'Z_TRANS_01'.
FORM call_t USING l_name.
CALL TRANSFORMATION l_name
...
ENDFORM.
Thanks .
EDIT: solved.
Edited by: Daniel Duras on Jul 15, 2010 1:56 PM
Hello,
It is possible to set the name of abap transformation in dynamic way ?
For example:
PERFORM call_t USING 'Z_TRANS_01'.
FORM call_t USING l_name.
CALL TRANSFORMATION l_name
...
ENDFORM.
Thanks .
EDIT: solved.
Edited by: Daniel Duras on Jul 15, 2010 1:56 PM
2010 Jul 15 2:01 PM
If you solve your own question, then post the answer and mark the post as answered. Someone might have the same question later - don't expect others to help you if you won't help them...
2010 Jul 15 2:33 PM
Hi Brad.
Yes, you're right.
Answer for this problem we can find in the documentation.
There is just need to write
CALL TRANSFORMATION (VAR_NAME) Regards.