Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ECC 6.0 related syntax error

Former Member
0 Likes
625

Hello Folks,

My self Chetan , I am working in ABAP. I am on project, Now we are moving to ECC 6.0 from 4.7 and I am facing problem in some program regarding syntax error. I want remove the syntax error. Currently I am facing two problem.

1. In one program there are three standards includes but they are not define so program is giving error include not found. then how can I remove this error.

2. In second program it's giving error CCR1S table does not have BUKRS field but in 4.7 it BUKRS field is present .

Can any bode please guide me in this issue.

Thanks

Chetan Chauhan.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
582

Hi

1. In one program there are three standards includes but they are not define so program is giving error include not found. then how can I remove this error.

If the program is a custom program as copy of std one, u should check the std program of rel. ecc 6.00 and find out how now the includes are called.

If the program is std, u should active the version of release 6.00

2. In second program it's giving error CCR1S table does not have BUKRS field but in 4.7 it BUKRS field is present .

U should change the program in order to delete the code using that field, if u can't do it u should create a new structure ZCCR1S including CCR1S and add the field BUKRS, then use this new structure instead of std one.

Max

Hello Folks,

My self Chetan , I am working in ABAP. I am on project, Now we are moving to ECC 6.0 from 4.7 and I am facing problem in some program regarding syntax error. I want remove the syntax error. Currently I am facing two problem.

1. In one program there are three standards includes but they are not define so program is giving error include not found. then how can I remove this error.

2. In second program it's giving error CCR1S table does not have BUKRS field but in 4.7 it BUKRS field is present .

Can any bode please guide me in this issue.

Thanks

Chetan Chauhan.

3 REPLIES 3
Read only

Former Member
0 Likes
583

Hi

1. In one program there are three standards includes but they are not define so program is giving error include not found. then how can I remove this error.

If the program is a custom program as copy of std one, u should check the std program of rel. ecc 6.00 and find out how now the includes are called.

If the program is std, u should active the version of release 6.00

2. In second program it's giving error CCR1S table does not have BUKRS field but in 4.7 it BUKRS field is present .

U should change the program in order to delete the code using that field, if u can't do it u should create a new structure ZCCR1S including CCR1S and add the field BUKRS, then use this new structure instead of std one.

Max

Read only

Former Member
0 Likes
582

Hi,

For first problem : Delcare the Standard includes in the program

Eg:

INCLUDE vttkdata. "Shipment Header

INCLUDE vttsdata. "Shipment Segment

For second problem

You need to find out the tables that linked with CCR1S so that you can get the BUKRS.

Reward if useful,

Thankz,

Aditya

Read only

Former Member
0 Likes
582

For second problem:

Regenerate the REPORT PAINTER (tx GRR2)