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

How to view data in transparent table

Former Member
0 Likes
4,975

How can I view data in transprent tables like HRHAP.

Thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,095

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

HRHAP_DOCUMENT_GET_DETAIL

HRHAP_DOCUMENT_GET_LIST

regards,

venakt

How can I view data in transprent tables like HRHAP.

Thanks.

5 REPLIES 5
Read only

Former Member
0 Likes
2,095

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.

Read only

0 Likes
2,095

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

Read only

Former Member
0 Likes
2,095

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

Read only

Former Member
0 Likes
2,095

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. 

Read only

Former Member
0 Likes
2,096

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

HRHAP_DOCUMENT_GET_DETAIL

HRHAP_DOCUMENT_GET_LIST

regards,

venakt