cancel
Showing results for 
Search instead for 
Did you mean: 

Automatically assign classification class while creating Equipment (IE01)

Former Member
0 Kudos

Hello,

Our customer wants an automatically assingment of an equipment with the classification class whilte creating an equipment with transaction IE01.

I've tried user-exit CLFM0001, but did not succeed.

Do you have a solution ??

Regards,

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Were you able to find a solution to your problem? We have a similar requirement.

Former Member
0 Kudos

Hi Prasoon,

Did not find a solution in an exit or BAPI.

Added some customer code in include:MIEQ0F50

FORM set_rm63e_equnr.                              "new with ALRK076759

   IF x_xaktyp = yakh.

     IF equi-equnr IS INITIAL.                               "AL0K062536

*     normal case: equi no not yet drawn (to be done on save) "0K062536

       MOVE y_tmequi TO rm63e-equnr.                         "AL0K062536

       MOVE yx TO ind_equnr_is_temporary.                    "AL0K062536

*{   INSERT         YZDK930449                                        1

* wanneer een equipment aangelegd wordt van het type M(MIB)

* of R(referentieEquipment) moet de klasse default gevuld worden.

       IF sy-tcode eq 'IE01'.

         IF equi-eqtyp eq 'M' or equi-eqtyp eq 'R'.

            rm63e-klasse = 'MIB'.

            rm63e-KLASSENART = '002'.

         ENDIF.

       ENDIF.

*}   INSERT

     ELSE.         

Hopefully this will help you.

Regards,

GJ