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

SE16: Syntax error in program "/1BCDWB/DB "

Former Member
0 Likes
5,051

I am facing one problem with SE16 transaction code. I am getting a dump saying 'Syntax error in program "/1BCDWB/DB<Z table name> ". SE16 is giving dump only for few Z tables and not for all.

We have created another transaction code ZSE16 which resembles SE16 but with few authorizations.

I am getting similar dump with ZSE16 also. But this time for all tables Z tables and standard tables.

This had happened after the system upgrade to 7.1

The dump says :

The following syntax error occurred in program "/1BCDWB/DB<table name> " in

include "/1BCDWB/DB<table name> " in

line 1060:

"The field "%_ENQU_<table name>" is unknown.

This is occurring in so many boxes with different landscapes.

In some boxes it is working fine. The program "/1BCDWB/DB<table name> " has no field starting with %_ENQU. Instead at line 1060 the field is %_K<table name> which was defined.

Can anybody please help me in solving this? Thanks in advance.

Venkat

I am facing one problem with SE16 transaction code. I am getting a dump saying 'Syntax error in program "/1BCDWB/DB<Z table name> ". SE16 is giving dump only for few Z tables and not for all.

We have created another transaction code ZSE16 which resembles SE16 but with few authorizations.

I am getting similar dump with ZSE16 also. But this time for all tables Z tables and standard tables.

This had happened after the system upgrade to 7.1

The dump says :

The following syntax error occurred in program "/1BCDWB/DB<table name> " in

include "/1BCDWB/DB<table name> " in

line 1060:

"The field "%_ENQU_<table name>" is unknown.

This is occurring in so many boxes with different landscapes.

In some boxes it is working fine. The program "/1BCDWB/DB<table name> " has no field starting with %_ENQU. Instead at line 1060 the field is %_K<table name> which was defined.

Can anybody please help me in solving this? Thanks in advance.

Venkat

6 REPLIES 6
Read only

Sandra_Rossi
Active Contributor
0 Likes
3,044

contact sap support

Read only

DavidLY
Product and Topic Expert
Product and Topic Expert
0 Likes
3,044

Hello,

Check and apply SAP note 1170673.

Rrgards,

David

Read only

Former Member
0 Likes
3,044

use SE16N

Read only

Former Member
0 Likes
3,044

Actually our system was upgraded and this ZSE16 is a older one. Its not generating the program properly for the table to be displayed. We copied SE16 and customized for our requirement again.

Read only

Former Member
0 Likes
3,044

Hi venkat

1) No, If you do the changes in the custom table any thing then you should adjust the table from the In se11 transaaction, utilities-> Database object->Database Utility

2) then, click on Activate and adjust database.

The above two points should do before the transport has to be move from Development to Quality Server.

If the above cases will not work then you should regenerate the TMG View and  do the above two points then you will not get any errors or short dumps.

I hope, the above two points are clear to you.

Thanks,

Ravi

Read only

0 Likes
3,044

the problem is that the structure dd02l in the include LSETBF10 is empty, this in z transactions, please include the following code at the beginning of form generate_report and the problem will be solved.

IF SY-TCODE = 'ZTRANSA'.
select * from dd02l
where tabname = TABNAME
and as4local = 'A'.
exit.
endselect.
ENDIF.