cancel
Showing results for 
Search instead for 
Did you mean: 

Does anyone know where I could find Trans Table for Awards, Honors...?

Former Member
0 Kudos

Hi guys,

On PA30 there's an Infty=35 and Subty=3 for Awards, honors, and Distinctions. PCL1 is not enough, maybe there's another table that has a link to PCL1 and could display the detail.

Anyone has an idea? Thanks!

Accepted Solutions (0)

Answers (1)

Answers (1)

suresh_datti
Active Contributor
0 Kudos

Hi,

As far as I know, you can only get it from the PCL1 cluster.. you can use the following code.. and modify it to suit your needs..


report  zp_pa_0035_read_notes.
tables:
 pernr.
infotypes:
 0035.
* internal tables
data:  key like pskey.
data: begin of ptext occurs 200.
data:   line(78).
data: end of ptext.

selection-screen begin of block abc.
parameters:
               p_pernr like pernr-pernr,
               p_date like sy-datum.
selection-screen end of block abc.


rp-read-infotype p_pernr 0035 p0035 p_date p_date.
loop at p0035 where subty = '02'
                and itxex eq 'X'.
  refresh ptext.
  move-corresponding p0035 to key.

  import ptext from database pcl1(tx) id key.

  loop at ptext.
    write 😕 p_pernr,ptext-line.
  endloop.
endloop.

Regards,

Suresh Datti

Former Member
0 Kudos

Thanks Suresh! I'll do this on monday. Anyway, do you think there's a SAP installer for PC alone? So I could pratice myself at home.

suresh_datti
Active Contributor
0 Kudos

Have you tried the Sneak Preview edition <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/cfc19866-0401-0010-35b2-">here ?</a>

Regards,

Suresh Datti