‎2007 Oct 11 9:18 PM
I am trying to call a RFC in R/3 system from SCM system . I am getting the error field 'func1' unknown. How can i correct this ?
call function func1 destination 'r/3dest'
exporting
itab1 = itab1.
‎2007 Oct 11 9:24 PM
Hi,
Have you created RFC Destination (SM59) for R/3 system in SCM system?
Regards,
Ferry Lianto
‎2007 Oct 11 9:25 PM
i didnt keep func1 in single quotes, that was the problem . Thanks anyway.
‎2007 Oct 11 9:28 PM
Is func1 uppercase and in single quotes? IE :
call function 'FUNC1'
destination 'r/3dest'
exporting
itab1 = itab1.Rob