30.1.11

SAP Note 19960 - LIS: Changing/deleting an info structure is not possible

Symptom:

If you transported an info structure, it may happen that you can neither delete nor change it. You nevertheless want to change the info structure but receive the following error message:
M2091 Not possible to change info structure

Key words: MC22

Cause and prerequisites

Info structures may only be changed in the client in which they were created. It is possible that the client in which an info structure was created no longer exists.

Solution
The following report sets the creation client for the info structure you specify to the client in which you are starting the report:

REPORT ZMNDTSET.

TABLES: TMC1, TMC4.

PARAMETERS: MCINF LIKE TMC4-MCINF.

SELECT SINGLE * FROM TMC4 WHERE MCINF = MCINF.

SELECT SINGLE * FROM TMC1 WHERE GSTRU = TMC4-GSTRU.

TMC1-SMAND = SY-MANDT.

UPDATE TMC1.

After having executed the report you can change the info structure.

No comments:

Post a Comment