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

read data from SAP R/3 Class-System

Former Member
0 Likes
780

Hello,

first of all sorry when I posted this into the wrong subforum, but I wasn't sure about that. My Question is how to read data from the Classystem I have specified in my ABAP report.

The goal is to read data from my individual class-system as well as data from MM and write them to a table that is to be read by another report. But right now I can't find information about the class system and abap. Maybe you know some tutorials or blogs about right that topic you can suggest?

Hello,

first of all sorry when I posted this into the wrong subforum, but I wasn't sure about that. My Question is how to read data from the Classystem I have specified in my ABAP report.

The goal is to read data from my individual class-system as well as data from MM and write them to a table that is to be read by another report. But right now I can't find information about the class system and abap. Maybe you know some tutorials or blogs about right that topic you can suggest?

4 REPLIES 4
Read only

Sm1tje
Active Contributor
0 Likes
740

What class system have you specified in your report?

Normally a class can be used by declaring a variable of type of the class in question, if this class can be instantiated this is. If your class can't be instantiated, but it has only class methods, you can call this method directly.

But there is a lot more to this ABAP Object Oriented Programming, than just this short explanation. Search on SDN for some ABAP OO Tutorials.

some links:

http://help.sap.com/saphelp_nw2004s/helpdata/en/c3/225b5654f411d194a60000e8353423/frameset.htm

http://www.sapgenie.com/abap/OO/

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b6cae890-0201-0010-ef8b-f970a9c4...

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1591ec90-0201-0010-3ba8-cdcd500b...

Transacation ABAPDOCU.

Read only

uwe_schieferstein
Active Contributor
0 Likes
740

Hello Daniel

Function group CLBP ( Class BAPIs ) may be useful for you. It contains lots of BAPIs, e.g.:

BAPI_CLASS_GETLIST
BAPI_CLASS_GETDETAIL
BAPI_CLASS_GETSTATUS
BAPI_CLASS_READ

and many more.

Regards

Uwe

Read only

0 Likes
740

Hi,

maybe there is a misunderstanding. I meant transaction CL02 by class system. In German it is called like that.

I want to know how to get access to the features specified here.

regards

Read only

0 Likes
740

Ah - that's not an ABAP Objects question - you'd be better off posing your question in the general development forum.

matt