Application Development 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: 

The dicitionary structure or table is either not active or does not exit

Former Member
0 Kudos

Hi all,

I had been working with SAP Netweaver and JAVA Stack for a program, and i've used Dictionary Tables (to use OpenSQL) and deployed to portal and everything works as i expected.

But now, i'm trying to learn ABAP stack, i've entered ABAP Workbench (SE80) and created a simple Program that tries to count the number of registries of one of my dictionary tables deployed via SAP Netweaver.

&----


*& Report YNPEREIRA_TEST1

*&

&----


*&

*&

&----


REPORT YNPEREIRA_TEST1.

TABLES: TIMESHEET_TSHEET.

SELECT COUNT(*) from TIMESHEET_TSHEET

END SELECT.

ULINE.

NEW-PAGE.

When i compile the ABAP code there is a message saying:

"The Dictionary structure or table "TIMESHEET_TSHEET" is either not active or does not exit".

I've tried then to use SE16N to search for the table and the table doesn't really exist.

But on the Portal side the data are being saved and loaded successfully.

I think i'm pointing to another place or client somewhere.

How can i see my table on ABAP side?

Thank you

1 ACCEPTED SOLUTION

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

The Java Stack and ABAP stack in a dual stack system are completely sepearate database schema. Therefore database objects created in one system are never visble to the other. If you want this database table to be in the ABAP system, then you need to create it there using the ABAP data dictionary tools.

P.S. I moved your thread from the Web Dynpro ABAP forum to the ABAP general forum. Please only use the Web Dynpro ABAP forum for Web Dynpro related questions.

2 REPLIES 2

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

The Java Stack and ABAP stack in a dual stack system are completely sepearate database schema. Therefore database objects created in one system are never visble to the other. If you want this database table to be in the ABAP system, then you need to create it there using the ABAP data dictionary tools.

P.S. I moved your thread from the Web Dynpro ABAP forum to the ABAP general forum. Please only use the Web Dynpro ABAP forum for Web Dynpro related questions.

Former Member
0 Kudos

Thank you and i'm sorry for the wrong place for this topic.