‎2007 Nov 09 9:21 AM
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?
‎2007 Nov 09 9:24 AM
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
‎2007 Nov 09 9:29 AM
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
‎2007 Nov 09 9:58 AM
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