cancel
Showing results for 
Search instead for 
Did you mean: 

Transfering multiple fields from help in table control

Former Member
0 Kudos

Hi everyone.

I have a table control in a dynpro.

The table control has many fields: x, y, z ...

I have a module in PROCESS ON VALUE REQUEST for a field "x".

The module calls a function to search values for field "x" and for field "y".

How can I transfer the value of field "y" to the screen?

I know that I can use the function DYNP_VALUES_UPDATE but it updates the field "y" in the wrong position of the table.

Thanks so much for your help.

Accepted Solutions (1)

Accepted Solutions (1)

nablan_umar
Active Contributor
0 Kudos

Does it updates the first row on the screen for field "y"? You need to update the internal table which contains column "y". You need to update the correct row of the internal table when you are doing Process On Value Request.

If it still does not work, please post your POV codes in this forum.

Former Member
0 Kudos

Umar, thanks so much for attending my message but I can resolve the problem with Sedar's help.

ssimsekler
Active Contributor
0 Kudos

Hi Sara

It seems you are a new member; welcome to SDN forums. According to SDN customs, you can assign points to posts to thank people. You can do this by clicking the yellow star icon at header of each post. You can assign;

- one 10 points (solved)

- two 6 points (very helpful answer)

- many 2 points (helpful answer)

Kind regards...

*--Serdar

Former Member
0 Kudos

Hi Sara,

I gave Serdar 10 points on your behalf for answering your question and helping explain how to give points.

Cheers,

Linda

Answers (1)

Answers (1)

ssimsekler
Active Contributor
0 Kudos

Hi Sara

Never tried before but your problem should be about the step loop while processing the screen. Try setting it into a variable before you call dynamic update function and then pass it through the relevant parameter to the function.

<b>"GET_CURSOR FIELD ..."</b> and <b>"SET_CURSOR FIELD ..."</b> statements may be used.

*--Serdar

Former Member
0 Kudos

Thanks so much Serdar.

I used this the get cursor instruction (I never has been used this) and it is working.