2010 May 11 3:19 PM
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
2010 May 11 9:35 PM
2010 May 12 3:36 AM
2010 Jun 07 7:14 PM
2011 Feb 09 1:19 PM
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.
2013 Apr 19 7:14 AM
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
2019 Nov 07 7:39 PM
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.