Skip to Content
0
Apr 08, 2010 at 09:57 PM

Mapping activation problem PI 7.11

40 Views

Hello All,

We are using seeburger Message tracking in our Interfaces.

We are migrating from 7.0 to 7.11 i found a problem while activating mapping.

This mapping has code writeMT_details which use to write a message details in MT database . In 7.11 i am changing the mapping but while activating i get the error for java code which is used.

Error message is below:

Function writeMTDetails, Line 75:

cannot find symbol symbol : variable MTDetail location: class com.sap.xi.tf._MM_I_INVOIC02_to_A_810_V4010_WMT1_ detail.setField(MTDetail.DOC_NUMBER, docnumList<i>); ^

Function writeMTDetails, Line 76:

cannot find symbol symbol : variable MTDetail location: class com.sap.xi.tf._MM_I_INVOIC02_to_A_810_V4010_WMT1_ detail.setField(MTDetail.REFERENCES, document); ^

While same code if i change in 7.0 is activating whithout error.

Can anyone help me in identfying the issue.Please let me know if this code needs a modification so that it can be handled in 7.11.

Below is the part of code which i think is creating a problem.

MTDetailXI detail = new MTDetailXI();

detail.setField(MTDetail.DOC_NUMBER, docnumList<i>);

detail.setField(MTDetail.REFERENCES, document);

detail.setField(MTDetail.FREE10, docnumList<i>);

detail.setField(MTDetail.FREE11, document);

detail.writeRecord(messageID + "_" + docnumList<i>, ediFileID);

Regards,

Vikrant