‎2008 Jul 09 6:24 AM
hi everybody,
Can anybody please tell me in which table the program source code gets stored when we create a program in se38???
Thanks..
‎2008 Jul 09 6:27 AM
‎2008 Jul 09 6:27 AM
‎2008 Jul 09 6:39 AM
hi gautham,
thanks for ur reply ..
but this table exists in 6.0
can you pls tell me the table name in 4.6b???
‎2008 Jul 09 7:00 AM
Hello
I do not know tables, but for 4.6 try this:
TYPES: BEGIN OF T_TYPE,
LINE(72),
END OF T_TYPE.
DATA: PROGRAM LIKE SY-REPID VALUE 'PROGNAME',
T TYPE STANDARD TABLE OF T_TYPE WITH
NON-UNIQUE DEFAULT KEY INITIAL SIZE 500.
READ REPORT PROGRAM INTO T.
IF SY-SUBRC <> 0.
...
ENDIF.
‎2008 Jul 09 6:28 AM
hi
check the table REPOSRC ..give the name of the program name
Regards
Divya
‎2008 Jul 09 6:32 AM
‎2008 Jul 09 6:33 AM
Hi,
The program name will be saved in TRDIR table.but i don't have any idea that where will da source code be stored.I hope it may help u a bit.
‎2008 Jul 09 6:39 AM
‎2008 Jul 09 6:42 AM
check the table D010SINF Information about ABAP program source code
‎2008 Jul 09 6:55 AM
Hi,
try using
SCAN ABAP-SOURCE itab1 ...TOKENS INTO itab2
This will give you source code of a program.
‎2008 Jul 09 7:10 AM
Hello manisha,
I have checked both 4.6 and 6.0 & i found that REPOSRC is the table to find the report source code .Please try it once again in se11
Best of luck,
Bhumika
‎2008 Jul 09 7:30 AM
hi..
In 6.0 its there. But in 4.6 B Its not there ..i checked it..i want to use this in 4.6 B.. i dont want to use any read report statements and all...
‎2008 Jul 09 7:32 AM
‎2008 Jul 09 7:39 AM
hi,
I have already seen this table..this contains the attributes related info..so this is not usefull for me...
‎2008 Jul 09 7:13 AM
hiii
table REPOSRC stores source code of programs..
regards
twinkal
‎2008 Jul 09 7:24 AM
Hi,
Only REPOSRC table is there which contains the source code for z and y naming convention programs.
With Regards,
Rupinder
‎2008 Jul 09 7:32 AM
‎2008 Jul 09 7:35 AM
Hi,
check the table REPOSRC.
Everything get updated in that table only.
Thanks & Regards
Y.R.Prem Kumar
‎2008 Nov 20 11:43 AM