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: 

IQ01 – Force ‘Description’ field value

Former Member
0 Kudos

At the creation of an equipment by mean of transaction IQ01, after the equipment is saved, we need to force the value of field  ‘Description’ with a default value, different from the value previously inserted by the user.

We tried to use component EXIT_SAPMIEQ0_001 unsuccesfully.

Have you got any suggestions  to solve the problem?

Thanks a lot.

marco

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Marco,

You may try the exit EXIT_SAPMIEQ0_002. In this, there is a export structure for the equipment short text EQKT.

Cheers

~Niranjan

2 REPLIES 2

Former Member
0 Kudos

Hi Marco,

You may try the exit EXIT_SAPMIEQ0_002. In this, there is a export structure for the equipment short text EQKT.

Cheers

~Niranjan

0 Kudos

Hi Niranjan,

thanks for the reply. I solved the problem with these instructions:

FIELD-SYMBOLS: <f1> TYPE eqkt-eqktx.

ASSIGN ('(SAPMIEQ0)EQKT-EQKTX') TO <f1>.

<f1> = t370k_t-eartx.

UNASSIGN <f1>.

thanks a lot

marco