Hi Carsten,
Now that is easy but requires some work on your side.
If you build up a structure (internal table) to be used in ALV, you have to make sure that you use your OWN field definitions.
Example:
Do not use MATNR LIKE MARA-MATNR (this triggers F4 capabillity with the field).
Use instead:
TYPE: TY_MATNR(18) TYPE c
DATA: ...
MATNR TYPE TY_MATNR,
...
If you do this, NO F4 buttons will appear behind the fields. So you can also do it selectively.
Regards,
Rob.
Add a comment