2022 Sep 28 4:41 AM
Hello All,
I just want detailed info on whether I can add a new field or fields using the t-code iw64 and if yes please answer with an example/ examples for better understanding.
Hello All,
I just want detailed info on whether I can add a new field or fields using the t-code iw64 and if yes please answer with an example/ examples for better understanding.
2022 Sep 28 6:20 AM
2022 Sep 28 7:21 AM
Hi,
I checked for you the proposed user-exit IWOC0004 .
This allows you to change several ALV-specific settings including the field catalog. But you do not have direct access to the internal table with the output data. I would suggest the following steps to solve this requirement:
ASSIGN ('(RIAUFK20)OBJECT_DATA') TO <lt_data>.
CHECK sy-subrc = 0.
LOOP AT <lt_data> ASSIGNING FIELD-SYMBOL(<ls_data>)
" Fill the additional fields
ENDLOOP.I hops this helps you as step-by-step guide.
Kind regards
Jens
2022 Sep 29 10:22 AM
Hello Jens,
Thank you for your answer but i specifically need to know where i can add the new code in the RIQMEL60 to add the new fields using IW64
2022 Sep 29 10:39 AM
Hi,
that is exactly what I described for you in my answer.
KR
Jens