cancel
Showing results for 
Search instead for 
Did you mean: 

Error in TP Abap Objects Programs to MiniWAS 6.20

Former Member
0 Kudos

Hello,

I have install the MiniWAS 6.20 to my pc and I am trying to transport the ABAP OBJECTS programs by following the instractions. Unfortunately, the tp ended with error code 8 and the message is:

Program S_ITAB_ACCESS: Syntax error in line 000060

You cannot specify the component 'TABLE_LINE' fora generic line type in the current statement. allo

Can someone tell me what to do in order to complete this transport?

Thanks in advance

Accepted Solutions (0)

Answers (1)

Answers (1)

Peter_Inotai
Active Contributor
0 Kudos

You can ignore this message, S_ITAB_ACCESS has a syntax error (you can check in se38).

In 46C the syntax was a little bit different:

when you paste this code to a 46C system, the syntax check will be ok.

In higher release it won't be ok. So if you copy it to a customer namerange eg ZS_ITAB_ACCESS and modify like this, it will be ok.

Since you cannot change program S_ITAB_ACCESS, there is not much you can do with the transport.

*      READ TABLE tab WITH TABLE KEY table_line = key
    READ TABLE tab WITH KEY table_line = key

Incho