2008 Sep 22 12:21 PM
Hi,
i'm looking for a complete list of object types which can have the PGMID R3TR or LIMU. Is there any table holding this combinations? I tried to geth this via F4-Help, but didnt hat success.
2008 Sep 22 12:29 PM
Hi Rainer,
Check FM TRINT_PGMID_OBJECT_SELECT_F4
Also check FM TRINT_OBJECT_TABLE
Thanks
Lakshman
Edited by: Lakshman Tandra on Sep 22, 2008 1:30 PM
2008 Sep 22 12:23 PM
2008 Sep 22 12:26 PM
Tadir shows up the object names, not the object types. I#M not interest in objects and their object type/pgmid, i would like to have a list of all pgmid/object types
2008 Sep 22 12:29 PM
Hi Rainer,
Check FM TRINT_PGMID_OBJECT_SELECT_F4
Also check FM TRINT_OBJECT_TABLE
Thanks
Lakshman
Edited by: Lakshman Tandra on Sep 22, 2008 1:30 PM
2008 Sep 22 12:52 PM
Take a look at what search help SCTSOBJECT does to obtain the complete list. The types are not stored in just one single table.
Thomas
2008 Sep 22 12:58 PM
hi,
I think you can refer the table E071.This might help you to overcome the problem.
Best Wishes,
Varghese.K.Oommen
2008 Sep 22 1:17 PM
Here we go:
REPORT ZCA_OBJTYPES.
data:
it_out type standard table of KO100.
FIELD-SYMBOLS:
<p> type KO100.
CALL FUNCTION 'TRINT_OBJECT_TABLE'
EXPORTING
IV_COMPLETE = 'X'
* IMPORTING
* EV_LINES_FOUND =
* EV_LINES_NOTFOUND =
TABLES
* TT_TYPES_IN =
tt_types_out = it_out.
.
loop at it_out ASSIGNING <p>.
write:/ <p>-pgmid, <p>-object, <p>-text.
endloop.
2008 Sep 22 1:19 PM
Quite interesting that SAP is actually hard coding a lot of these values in include LTR_OBJECTSF02, isn't it?
Cheers
Thomas