Application Development 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: 

combinations of R3TR/LIMU und object types

rainer_hbenthal
Active Contributor
0 Kudos

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.

1 ACCEPTED SOLUTION

Lakshmant1
Active Contributor
0 Kudos

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

7 REPLIES 7

GauthamV
Active Contributor
0 Kudos

hi,

TADIR table.

0 Kudos

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

Lakshmant1
Active Contributor
0 Kudos

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

ThomasZloch
Active Contributor
0 Kudos

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

Former Member
0 Kudos

hi,

I think you can refer the table E071.This might help you to overcome the problem.

Best Wishes,

Varghese.K.Oommen

rainer_hbenthal
Active Contributor
0 Kudos

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.

0 Kudos

Quite interesting that SAP is actually hard coding a lot of these values in include LTR_OBJECTSF02, isn't it?

Cheers

Thomas