cancel
Showing results for 
Search instead for 
Did you mean: 

IT0035

Former Member
0 Kudos

Hi !

I'm a technical guy(ABAP + Integration Consultant) lookin for the table which stores some special data from infotype 35.

I need the comments that are up to be inserted new information, these comments where we input some information(structure RP50M-TEXT1 + TEXT2 + TEXT3) aren't in the PA0035 and either in a customized table(as T"XYZ"), i'm quite tired after debug many times w/out success on finding that table.

Does someone could help me ?

Accepted Solutions (1)

Accepted Solutions (1)

suresh_datti
Active Contributor
0 Kudos

Hi Andre,

The texts are stored in the PCL1 cluster & you will have to read form there in your Program. YOu can use the following code & modify it to suit your needs..


data:  key like pskey.
data: begin of ptext occurs 200.
data:   line(78).
data: end of ptext.

rp-read-infotype p_pernr 0035 p0035 p_date p_date.
loop at p0035 where 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

Answers (1)

Answers (1)

Former Member
0 Kudos

Tks Suresh, you got the point ! I've been doing these changings and they're running on !

tks again !

[]'s

Andre