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: 

After Enter, How to Change a field OO ALV

0 Kudos

I want to change a field.

3 REPLIES 3

FredericGirod
Active Contributor

What class do you use for creating your ALV ?

What / where / when do you want to change this field ?

Abinathsiva
Active Contributor
0 Kudos

Hi, Make question precise so community can answer quickly

raymond_giuseppi
Active Contributor
0 Kudos

Use statement MOVE in a module executed in the PAI logic of the dynpro is an answer to your question. (Add some code to insure ENTER was pressed and not another function key)

PROCESS AFTER INPUT.
  MODULE CHANGE_A_FIELD.

MODULE CHANGE_A_FIELD INPUT.
  MOVE 'value' to fieldname.
  fieldname = 'value'.
ENDMODULE.                 " CHANGE_A_FIELD  INPUT<br>

(You really should rephrase your question)