2020 Oct 07 12:14 PM
2020 Oct 07 12:22 PM
What class do you use for creating your ALV ?
What / where / when do you want to change this field ?
2020 Oct 07 2:20 PM
2020 Oct 08 2:49 PM
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)