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

Dynamic transformation call name

Former Member
0 Likes
503

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

2 REPLIES 2
Read only

brad_bohn
Active Contributor
0 Likes
455

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...

Read only

Former Member
0 Likes
455

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.