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

RE PROGRAM RSSDOCTB

Former Member
0 Likes
389

Hi ABAP experts,

could you pls let me know details about this program in general

program name RSSDOCTB

Actually what is this program is all about i went to look at the ouput I didnt understood

Pls Bare with me I am not an ABAPer I would really appreciate your help

Actually i was looking for the Entity relationship between ProductionPlanning tables

Thanks and regards

kumar.

1 REPLY 1
Read only

Former Member
0 Likes
339

hi

good

check this steps

1-The first step is always to find out the table and field name of the screen field. With the cursor in the field you want, press F1 or click on the "?".

2-The initial help screen will give you descriptions and information about the field.

3-From there press F9 or click on [Technical info].

4-Here you can get names of the table, field and the data element.

5-If you are lucky the system gives you a transparent table name. If you're not lucky you'll get a structure name.

6-Doubleclick on the data element and search via the where used of the dictionary.

7-Failing above you can set up the TCODE or a portion of it just before screen where the field exists and then switch on SQL Trace, run the screen, turn off SQL trace and then list the Trace Log following which tables/views were hit. Obviously it is best to turn on and off the trace in the smallest time-window possible to lessen the number of Trace Log entries you have to look through.

8-Another thing to try is : run program RSSDOCTB. This gives you a list with info about the table such as fields, check tables ....

9-Or try Transaction SE84 (Repository Info System)- Select in the tree ABAP Dictionary -> Fields -> Table Fields - Insert in the Select-Option "Field name" the name of the files (E.g. CARRID and CONNID) and execute it - now you will get a list of all tables which have one or both of this fields - it's easy to identify the tables which contain both fields in the list.

10-Or start an sql trace and look at the tables that are read

11-Last resort, find the program name (click on the triangle icon at botton right t oexpand information and click on the icon right of client number) and look the ABAP code with TCODE SE38

reward point if helpful.

thanks

mrutyun^