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: 

How to view data in transparent table

Former Member
0 Kudos

How can I view data in transprent tables like HRHAP.

Thanks.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi use the fm to get the values from table ..

HRHAP_DOCUMENT_GET_DETAIL

HRHAP_DOCUMENT_GET_LIST

regards,

venakt

5 REPLIES 5

Former Member
0 Kudos

Hi,

don't think there's an easy way. If you've a developer key, no problem, just create a 4 line report.

TABLES: HRHAP.

SELECT * FROM HRHAP.

WRITE:/01 HRHAP.

ENDSELECT.

rgrds,

Bip.

0 Kudos

I tried through select statement, its empty. Can any one please help out with this.

Former Member
0 Kudos

If HRHAP is NOT a Clustered table, you can use SE11 or SE16.

Former Member
0 Kudos

hi,

Write down a sample code to view the same ..


  start-of-selection.

  select * from hrhap into table it_hrhap.
  if sy-subrc = 0.
    loop at it_hrhap.
      write : it_hrhap-plan_version,
              it_hrhap-appraisal_id.
    endloop.
  endif. 

Former Member
0 Kudos

hi use the fm to get the values from table ..

HRHAP_DOCUMENT_GET_DETAIL

HRHAP_DOCUMENT_GET_LIST

regards,

venakt