cancel
Showing results for 
Search instead for 
Did you mean: 

Error "E:Field "G_S_MINFO-LOGSYS" is unknown. "

Former Member
0 Kudos

Hi Expert,

I have migrated a transfer rule and update rules of emulated datasource to BI 7.Update rules migrated correctly but transfer rule dnt migrated correctly.Actually transfer rule having sap defined code in the transfer rule of one infoobject.While migration abap code is not migrated correctly to bi 7, It giving an error "E:Field "G_S_MINFO-LOGSY is unknown". It is giving synax error. Now how correct it and can any one suggest any thing.

Thanks

Vinod

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member205352
Active Contributor
0 Kudos

Go to your field level routine where you get the error :

In the routine part :

Insert the below in the Global part of your routine declaration :


types:begin of rssm_s_minfo.
        include structure rsminfohead.
types:  end   of rssm_s_minfo.

Now in clude in the code part just above your actual code :


DATA:  g_s_minfo     TYPE rssm_s_minfo.
...

Hope this helps.

Former Member
0 Kudos

Check if you are using the Infoobject 0LOGSYS.

And see if the Routine contained in the Infoobject needs any changes.