Application Development and Automation 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: 
Read only

IQ01 – Force ‘Description’ field value

Former Member
0 Likes
676

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
Read only

Former Member
0 Likes
620

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

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

2 REPLIES 2
Read only

Former Member
0 Likes
621

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

Read only

0 Likes
620

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