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

ABAP Programs are Stored in ....!

Former Member
0 Likes
3,570

hi,

generally we write several programs in abap editor ,before writing a program we save that program , I want to know where it is stored actually whether it is stored in a table or in some other memory location ?

can anyone give me the answer.....!

thanks

prasad

1 ACCEPTED SOLUTION
Read only

former_member69765
Contributor
0 Likes
1,389

Hi Lakshmi prasad..

The programs are stored in table REPOSRC.

You can also find the reply here :

http://www.abaplearning.com/index.php?option=com_fireboard&Itemid=2&func=view&id=1&view=flat&catid=2

hi,

generally we write several programs in abap editor ,before writing a program we save that program , I want to know where it is stored actually whether it is stored in a table or in some other memory location ?

can anyone give me the answer.....!

thanks

prasad

3 REPLIES 3
Read only

Former Member
0 Likes
1,389

Hi,

All the ABAP program names are stored in REPOSRC table.

Reward if it is helpful.

Regards,

Read only

former_member69765
Contributor
0 Likes
1,390

Hi Lakshmi prasad..

The programs are stored in table REPOSRC.

You can also find the reply here :

http://www.abaplearning.com/index.php?option=com_fireboard&Itemid=2&func=view&id=1&view=flat&catid=2

Read only

JoffyJohn
Active Contributor
0 Likes
1,389

All ABAP programs reside inside the SAP database. They are not stored in separate external files like Java or C++ programs. In the database all ABAP code exists in two forms: source code, which can be viewed and edited with the ABAP Workbench tools, and generated code, a binary representation somewhat comparable with Java bytecode. ABAP programs execute under the control of the runtime system, which is part of the SAP kernel. The runtime system is responsible for processing ABAP statements, controlling the flow logic of screens and responding to events (such as a user clicking on a screen button). A key component of the ABAP runtime system is the Database Interface, which turns database-independent ABAP statements ("Open SQL") into statements understood by the underlying DBMS ("Native SQL").