Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

field of a dynpro Multi value

Former Member
0 Kudos

Like a value goes on from a badi to a field of a dynpro? The field of the dynpro is Multi value (low-high)

2 REPLIES 2

Former Member
0 Kudos

Hi Paola,

i'm not quite sure, but i guess, i saw this question in another forum already. I don't know who moved your question to this forum, but this is definitely the wrong target

Please rephrase your question in the <a href="https://www.sdn.sap.com/sdn/collaboration.sdn?node=linkFnode2-3&contenttype=url&content=https%3A%2F%2Fforums.sdn.sap.com%2Fforum.jspa%3FforumID%3D50">ABAP forum</a>

Regards, Stefan

Former Member
0 Kudos

If the field is a select-option, and you want to move it from the Badi to the screen, the select-option is supported by an internal table. So if the name is SO_MINE, the do the following:

CLEAR SO_MINE.
REFRESH SO_MINE.

SO_MINE-LOW  = BADI_VALUE.
SO_MINE-SIGN = 'I'.
SO_MINE-OPTION = 'EQ'.

APPEND SO_MINE.

Is this what you needed?