‎2008 Apr 25 8:48 AM
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
‎2008 Apr 25 9:01 AM
Hi Daniel,
You can check the attributes of a table from transaction SE11 by specifying the table name.
Thanks
Lakshman
‎2008 Apr 25 9:01 AM
Hi Daniel,
You can check the attributes of a table from transaction SE11 by specifying the table name.
Thanks
Lakshman
‎2008 Apr 25 9:01 AM
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
‎2008 Apr 25 9:13 AM
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
‎2008 Apr 25 9:37 AM
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.
‎2008 Apr 25 9:54 AM