0
votes

Can anyone advise me on this error?

enter image description here

1
References are allowed only within the same stack/heap. You are trying to create a remote enabled Function Module and of course in this case only passing by value is allowed. If you actually do not want to enable remote capabilities, go to the attributes tab and select that this should be an ordinary function module.Jagger

1 Answers

4
votes

Follow @Jagger's advice and make your module not RFC or make all your parameters pass by value (without reference), it's the column with the heading 'Pa...'.

In RFC modules only TYPE and LIKE typing is allowed, references are prohibited.