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

Difference Between Business Object And Class Object

Former Member
0 Likes
1,047

Hi all,

Can any one tel me the difference between business object and class Object....

...

Thanks...

..Ashish

Hi all,

Can any one tel me the difference between business object and class Object....

...

Thanks...

..Ashish

2 REPLIES 2
Read only

uwe_schieferstein
Active Contributor
0 Likes
617

Hello Ashish

A business object is a sematic term whereas a class (object) is a technical term.

Business objects are all important objects within R/3 e.g. sales order, customer, invoice, etc.

The business objects are defined in the BOR (transaction SWO1). The have so-called "methods" like

BusinessObject.Create
BusinessObject.GetDetail
BusinessObject.Change

which are implemented (usually) by BAPIs, e.g.:

Business Object = User
User.Create => BAPI_USER_CREATE1
User.GetDetail => BAPI_USER_GET_DETAIL

CONCLUSION: Business Object >< Class (Object)

Regards

Uwe

Read only

Former Member
0 Likes
617

THANKS