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

Why do we activate programs in ABAP?

Former Member
0 Likes
1,508

Subject changed by moderator. Please use meangingful subjects in future.

Moved to correct forum by moderator.

hello frinds,

My question is why we active a program in abap.

Edited by: Matt on Nov 13, 2008 11:28 AM

5 REPLIES 5
Read only

ThomasZloch
Active Contributor
0 Likes
735

One major advantage of separating saving/importing and activating of development objects (not only programs) is due to the many circular dependencies between these objects. This way, applications consisting of many objects can be imported into a system and be collectively activated without errors ("object ... does not exist") in a second step.

In your specific example, you can hack away on your program and save your work, only activating later when all dependent objects are available (otherwise: syntax errors).

Thomas

Read only

Former Member
0 Likes
735

The program a developer writes within development client 1 is only visible to this developer as long as the program is not activated.

[refer this|http://searchsap.techtarget.com/tip/0,289483,sid21_gci1261821,00.html]

Plz search before you make a post.

Regards,

Srinivas

Read only

Former Member
0 Likes
735

Hi:

By activating the program, the required changes have been overwritten to the executable mode/source.

Regards

Shashi

Read only

rthoodi
Active Participant
735

hi,

Without activation object cann't copeid or created in data base layer rather they still exists in appliaction server itself, when we made any changes , that changes are reflected in database server only if we activate the object.

Thanks

RK

Read only

Former Member
735

Any object (programs, tables, domains, etc)without activating cant be accessed by other dependent objects in SAP. The reason is, until the object is activated, it is not written to the database. For the modifications to reflect, you will have to activate the program.