2012 May 29 1:01 PM
Hi
I use OCX from ABAP and call method it works but nothing return and give after execute class dump
"Use of local result variables in a Control/Automation call"
CALL METHOD CALL_METHOD
EXPORTING
method = 'MyMethod,'
p1 = '1'
p_count = 1
IMPORTING
result = im_result
EXCEPTIONS
OTHERS = 1.
2012 May 29 1:05 PM
Declare im_result as a global variable. Hope this helps.
Thanks,
Shambu
2012 May 29 1:05 PM
Declare im_result as a global variable. Hope this helps.
Thanks,
Shambu