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

Viewing Database Table Entries

Former Member
0 Likes
2,325

Hi PPL.

Is there a way to view the data in the Database Table without having the access

to SE16 and without a maintenance view existing for the Table.

Regards,

Kevin Nick.

9 REPLIES 9
Read only

anversha_s
Active Contributor
0 Likes
1,858

hi,

go to se11-> give table name

then execute it

u cann see all the records.

Rgds

Anversha

Read only

0 Likes
1,858

Hi,

I dont have access to SE12 or SE11 or SE16 and there is no maintenance view

for the database table...How can i view the data present in the database table..

Read only

0 Likes
1,858

Hi there is a FM ALINK_TRANSACTION_CALL , this is used to bypass authorizations.

Jus try this

Read only

Former Member
0 Likes
1,858

Hi Kevin,

U can use the transaction SE16N or SE17 to view the contents of DB table.

N is also a t-code to view database entries which is quick start of SE16N.

Reward if useful.

Regards,

Sujatha.

Read only

Former Member
0 Likes
1,858

Hello,

try viewing data through SE11.

Or else fire select query in a report and display the data using write statement.

Read only

Former Member
0 Likes
1,858

Hi,

Write your own ABAP program to view the records of the table.

Thanks

Ravi

Read only

Former Member
0 Likes
1,858

Hi,

Use SE11.

click display

press contents (ctrl +shift + f10)

click execute (f 😎

You will be able to see all the values.

please reward points if helpful.

Thanks

Pranati

Read only

Former Member
0 Likes
1,858

Hi,

if you dont have any authorization .. write a "select * from <TAB> " and get the entries..

Try wiht se12, SE11 also else there is no other way to view that .

Assign points if it solves your probelm.

-Guarang

Read only

anversha_s
Active Contributor
0 Likes
1,858

hi,

1. creat an z program.

2. fetch all the records using a select query into an ITAB.

3. use simple write statemnts o display or use ALV

Rgds

Anversha