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

Table AUSP

Former Member
0 Likes
1,568

Hello Experts,

I need to read classification data of Objects I created using CACL. As I read in another thread in this forum the information should be stored in table AUSP. My Problem is to find an overview about the table's structure, so I can see the available attributes in the table (I need their names to read them in ABAP). Do you know a website showing this?

edit: I would like to have something like that: http://sap.niraj.tripod.com/id42.html

Just for AUSP. It would be great, if you knew some sites.

Edited by: Daniel Gerne on Apr 25, 2008 9:49 AM

1 ACCEPTED SOLUTION
Read only

Lakshmant1
Active Contributor
0 Likes
1,086

Hi Daniel,

You can check the attributes of a table from transaction SE11 by specifying the table name.

Thanks

Lakshman

5 REPLIES 5
Read only

Lakshmant1
Active Contributor
0 Likes
1,087

Hi Daniel,

You can check the attributes of a table from transaction SE11 by specifying the table name.

Thanks

Lakshman

Read only

Former Member
0 Likes
1,086

I am not sure whether this can help you or not but please have a look at below link. May be helpful.

[SAP Tables|http://www.erpgenie.com/abap/tables.htm]

Thanks,

Vibha

Please mark all the useful answers

Read only

Former Member
0 Likes
1,086

Hello,

thank you for the answers now I know how to do the Select. unfortunately my code doesn't work. There are no error Messages. But there is no output to the screen.

My Code is:

tables AUSP.
Data:
BEGIN OF tempTab occurs 10,
ATWRT like AUSP-ATWRT,
*ATINN like AUSP-ATINN,
END OF tempTab.

SELECT ATWRT FROM AUSP INTO tempTab.
ENDSELECT.

loop at tempTab.
write: / tempTab-ATWRT.
ENDLOOP.

Edited by: Daniel Gerne on Apr 25, 2008 10:13 AM

Read only

0 Likes
1,086

Hi Daniel,

Your code is working, but u need to do the following minor changes in ur code to get the output displayed.

Here is your code:

TABLES ausp.

DATA:

BEGIN OF temptab OCCURS 10,

atwrt LIKE ausp-atwrt,

*ATINN like AUSP-ATINN,

END OF temptab.

SELECT atwrt

FROM ausp

INTO TABLE temptab.

LOOP AT temptab.

WRITE: / temptab-atwrt.

ENDLOOP.

Now check the result after executing it.

Regards,

Ramalakshmi.

Read only

0 Likes
1,086

thank you Ramalakshmi. It works fine now.