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

Empty Tables

Former Member
0 Likes
2,707

Hi,

A few days ago as I enter the MINI SAP, all programs that seek data from any table when selecting such as: " PA_CARRID = 'AA' *, is triggered a message saying " No Tables entries found for especified key ", whether in time of perform or SE11

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,583

Hi Jose,

It may be both the way.

The table may not contain the entries with 'AA',

or the selection criteria may be wrong if you specify clearly I can tell u in detail.

Regards,

Sudheer.

12 REPLIES 12
Read only

Former Member
0 Likes
2,584

Hi Jose,

It may be both the way.

The table may not contain the entries with 'AA',

or the selection criteria may be wrong if you specify clearly I can tell u in detail.

Regards,

Sudheer.

Read only

0 Likes
2,583

Hi, I´ll put part of the code, than you´ll see that something in the tables are wrong,

data: wa type table of sbook with header line,

it_t like sorted table of wa with

non-unique key carrid.

parameters: pa_tab type s_carr_id as listbox default 'AA'

visible length 15.

parameters: book_1 type sbook-bookid,

book_2 type sbook-bookid.

select carrid connid fldate bookid custtype smoker

customid order_date agencynum cancelled

invoice class loccuram loccurkey

into corresponding fields of table it_t

from sbook where carrid = pa_tab

and bookid >= book_1

and bookid <= book_2.

Well, I don't know if this bit of code could help you for you help me, but this is not just what you can see, to this bit code I´m just using one table, but in the ABAP WORKBENCH -> UTILITIES -> ABAPDOCU - example library -> ABAP DataBase Access -> Open SQL -> Read Data -> Individual columns of several lines, the command EXECUTE do not run nothing, the message is the same. Recalling once more this occurs in all examples´s program that using other table. I hope that you understanding what I write you.

Greetings

Read only

Former Member
0 Likes
2,583

NOT Unanswered

Read only

0 Likes
2,583

Hi,

Go to SBOOK table using transaction SE16

And see if there is any data exist for the search criteria you have given.

Regards,

Atish

Read only

0 Likes
2,583

Hi,

Thank you, but your suggestion do not work, the problem insist, I think that these tables for anything reason are empty, I don´t know what are happen. However, my license key are expiring until some days.

Kind Regards

Read only

Former Member
0 Likes
2,583

Hi,

First of all execute the table in SE11 without giving any values...or click on button "Number of entries" and check total entries in table. then proceed with giving one value at a time. say 'AA'.

Do tell me if it works

Read only

Former Member
0 Likes
2,583

Hello All,

Who has installed the MINI SAP NetWeaver 7?, so, some people did answers, but anyone was satisfactory to me, I think that the problem are in the DB, how can I do to put data in the tables?, remember the Version that I´m using is 7.00

Greetings

Read only

Former Member
0 Likes
2,583

Just check the entry in flight details data table such as sflight , sbook ,spfli

I think it has to be in that table

Or try with diff.client logon like 000

Read only

Former Member
0 Likes
2,583

NotAnswered

Read only

Former Member
0 Likes
2,583

Not Answered

Read only

Former Member
0 Likes
2,583

ok

Read only

0 Likes
2,583

run program SAPBC_DATA_GENERATOR.