1

Is there any default created data type / element for destination? I know that I can use string, but string is very wide open. Is there any limit in destinations name?

DATA: dest type ???.

CALL FUNCTION 'NAME'
    DESTINATION dest.
Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
Niklas
  • 23,674
  • 33
  • 131
  • 170

2 Answers2

3

It is common to use the data element RFCDEST for this.

vwegert
  • 18,371
  • 3
  • 37
  • 55
0

Why not just STRING? I usualy use STRING.

Alexander_P
  • 88
  • 3
  • 6
  • Well there could be a limitation in a RFC Destination and since `string` has no limitation, it's not a good practice and some errors / missunderstandings could occur. – Niklas Oct 31 '13 at 07:50