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

Return value from perform

Former Member
0 Likes
2,483

hi all

how can i return the value back from the perform?

example

PERFORM transform(ZABC_RESULT) USING value1 value2 .

after the performation, i expect a value to be pass back to my report. How can i pass the value back from the PERFORM?

3 REPLIES 3
Read only

Former Member
0 Likes
1,756

PERFORM transform(ZABC_RESULT) USING value1 value2 CHANGING value3

but you must also declare it in the form self the using and changing parameter !!

kind regards

arthur

Message was edited by:

A. de Smidt

Read only

0 Likes
1,756

how to delcare in the

example

FORM transform USING value1 TYPE ANY value2 TYPE ANY ?

thk

what is the sytnax for return the value3 back to the

PERFORM transform(ZABC_RESULT) USING value1 value2 CHANGING value3

Read only

0 Likes
1,756

here an example

FORM DISPLAY_CHANGE_MAINTENANCE_ORD USING    P_AUFNR
                                             P_VORNR
                                             P_ACTIVITY type c
                                    CHANGING P_TRANSACTION_CODE
                                               like sy-tcode.

kind regards

arthur