cancel
Showing results for 
Search instead for 
Did you mean: 

How to check via report if a graphic exist in SE78.

Former Member
0 Kudos

How? Thanks for answers.

Accepted Solutions (1)

Accepted Solutions (1)

RichHeilman
Developer Advocate
Developer Advocate

One way would be check against table STXBITMAPS.

Regards,

Rich Heilman

Answers (3)

Answers (3)

former_member188685
Active Contributor
0 Kudos

hi,

check this ..

Regards

vijay

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Sample code....




report zrich_0001 .

data: xstxbitmaps type stxbitmaps.

parameters: p_tdname type stxbitmaps-tdname.

select single * from stxbitmaps into xstxbitmaps
            where tdobject = 'GRAPHICS'
              and tdname   = p_tdname
              and tdid     = 'BMAP'.

if sy-subrc  = 0.

  write:/ 'Yes, it exists'.
else.
  write:/ 'No, it doesnt exists'.

endif.

Regards,

Rich Heilman

athavanraja
Active Contributor
0 Kudos

just check table STXBITMAPS, this will have entry for all the grpahics of SE78

Regards

Raja