Can anyone advise me on this error?
Asked
Active
Viewed 6,770 times
0

Sandra Rossi
- 11,934
- 5
- 22
- 48

H.K
- 138
- 7
- 17
-
7References 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 Aug 19 '16 at 22:10
1 Answers
4
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.

Suncatcher
- 10,355
- 10
- 52
- 90

Gert Beukema
- 2,510
- 1
- 17
- 18