cancel
Showing results for 
Search instead for 
Did you mean: 

transfer of business object from development server to testing server

Former Member
0 Kudos

if i want to transfer business object from development server to testing server how can i do that?

what is the system landscape?

what is business object?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Rizwan,

U can get details of Business Objects in tcode - SWO1.

Business objects are real world entities modeled as objects in an information system.

Business objects encapsulate both data structures and the functions applied to the data, but hide their full complexity from other objects. This encapsulation of data and functions makes it easier to modify program components, because you can program with the relevant entities without having to know all the implementation details. You can also reuse existing functions.

Client programs access business objects by reading their attributes, or by calling the methods that make up the objectu2019s interface:

Attributes

Attributes describe the data stored in an object through a set of properties. They provide direct read access to the data structures of objects, but client programs cannot change them from outside.

Methods

Methods provide a way to encapsulate the data structures of business objects, and to process them. When accessing an object, the client program calls a method with parameters and gets back return parameters.

Interface

The interface is the set of methods associated with a business object, and determines how an object interacts with the outside world.

The client program defines the object types to be used and, at runtime, creates object instances of those object types.