dave25
dave25

Reputation: 171

How to assign text symbols in ABAP Screen Painter?

Does anybody know how to display in a screen a text symbol? It is necessary because of translation.

Upvotes: 0

Views: 822

Answers (1)

phil soady
phil soady

Reputation: 11348

The reason what you are trying to doesnt work is because of how the "Binding" in SAP Screens to Program works.

The screen-vars are bound to Program global variables using the identical names at PBO time.

So just set the global from the text-elements pool variable :

data gs_xyz type zbla. gs_xyz-my_field = text-001. "set screen variable from text elements

And place gs_xyz-my_field on the dynrpo.

Now it will work.

Upvotes: 1

Related Questions