cancel
Showing results for 
Search instead for 
Did you mean: 

Import TE Version <> TE version of this report

Former Member
0 Kudos

Hi All,

When I try to access the trip using PRTE transaction, I am getting the following error message. "Import TE version <> TE version of this report. See release note for 4.0". Do anyone know why this error message comes?.

Thnaks,

Selva.

Accepted Solutions (1)

Accepted Solutions (1)

Lukas_Weigelt
Active Contributor
0 Kudos

Hi Selva,

this message is thrown from Text Symbol Z43. Check Include RPRWRITE Form IMPORT_TE.

Also, if you check the data overhead...

DATA: BEGIN OF ote-version.            "TE-Version auf PCL1
         INCLUDE STRUCTURE ptk01.
DATA: END OF ote-version.

DATA: BEGIN OF te-version,             "TE-Version Datenbeschreibung
         saprl LIKE ote-version-saprl,
*       numbr like ote-version-numbr value '01',     "version till 2.2Z
*       numbr like ote-version-numbr value '02',     "version till 3.1Z
         numbr LIKE ote-version-numbr VALUE '03',     "version for 4.0
       END OF te-version.

you see, that here the version that originates from OTE will be checked against Version '03' for Release 4.0.

Maybe there has been an upgrade in your system and some old cluster data still has an older version than the present version.

Cheers, Lukas

Former Member
0 Kudos

Thanks Lukas for your update. The issue is with the data cluster update. I have resolved this issue by myself.

Thanks again,

Selva.

Lukas_Weigelt
Active Contributor
0 Kudos

Hi Selva,

it would be nice if you could explain shortly what was the root cause and how you relsoved it, then set the discussion "answered". This would help others who have a similar problem and stumble upon this post.

Cheers, Lukas

Answers (3)

Answers (3)

Former Member
0 Kudos

Selva, Thanks a lot for your reply!!!

Former Member
0 Kudos

Hi TIki,

We did the cluster update wrongly through one of the custom programs which caused this issue for us.

We recreated the cluster data again that resolved the issue.

Former Member
0 Kudos

Hi Selva,

I am facing the same issue. Could you please tell me how did you resolve the issue.

Thanks.