cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to pass a field symbol as parameter from any method of view?

Former Member
0 Kudos

Hi

Is it possible to pass a field symbol as an importing parameter to teh globally declared attribute??

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Yes you can pass field symbol to the importing parameter, But the types must be same for the

field symbol and the parameter.

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

While it is true that you can pass field symbols, they must be fully typed at the time you pass them and they will be passed by value, not by reference. If you want to pass generically typed variables use a data reference (TYPE REF TO) instead.