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

SQL in ABAP

Former Member
0 Likes
454

Hi!

Someone can explain me the process to read database tables with sql in abap, and where can i see this tables.

Thanks. Bty.

3 REPLIES 3
Read only

venkata_ramisetti
Active Contributor
0 Likes
421

Hi,

If you want to see the table definition in SAP, go to transaction SE11 and give your table name and click Display.

If you want to see the data in the table, go to transction SE16 and give your table name and click Table contents and execute.

You can use select statement in ABAP to fect data from database tables.

Click the below link to know more in the SAP Help Documentation.

http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3969358411d1829f0000e829fbfe/frameset.htm

Thanks,

Ramakrishna

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
421

You can see these tables via SE11 and SE16(data browser). In ABAP, we use Open SQL, which is an abstraction of the native SQL.

http://help.sap.com/saphelp_nw2004s/helpdata/en/c9/5472f9787f11d194c90000e8353423/frameset.htm

Regards,

Rich Heilman

Read only

0 Likes
421

Ok!!!

Thanks everybody.