2007 Jul 16 5:40 PM
Hi,
I have to modfy user-exit EXIT_SAPMM07M_004
For me necceassry is field GOHEAD-LFSNR but it is
edit box and when customer fill this field i need to get
the information from this field.
There is question how to in module EXIT_SAPMM07M_004
I can read infromation from structure GOHEAD ?
Any suggestions ?
Please help.
Regards,
Greg.
2007 Jul 17 10:58 AM
Hi,
You can read data and modify it from another program using assign.
Here's an example of modifying in internal table from another program in CRM
FIELD-SYMBOLS : <fieldcat> TYPE slis_fieldcat_alv,
<links> TYPE crmt_kw_document_change.
ASSIGN ('(SAPLCRM_KW_SERVICE)gt_link[]') TO <links>.
With the above assign you can alter the data
Kind regards, Rob Dielemans