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: 

how to get information from edit box

Former Member
0 Kudos
93

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.

1 REPLY 1

former_member186746
Active Contributor
0 Kudos
58

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