cancel
Showing results for 
Search instead for 
Did you mean: 

IT0019

Former Member
0 Kudos

Hi,

I am creating a record in IT0019 thru PA30 transaction.

I have a block called 'comments' on the screen.These comments are not getting stored in the table PA0019.

I just wanted to know where those particular block values are stored.

Thanks,

Satya

Accepted Solutions (1)

Accepted Solutions (1)

former_member226519
Active Contributor
0 Kudos

the text is stored in cluster PCL1.

simple coding to display texts in ABAP (specify log.database PNP in report attributes):

REPORT YDVB0001.

TABLES: PERNR,

RP50M,

PCL1.

INCLUDE FP50MTXT.

INFOTYPES: 0019.

GET PERNR.

LOOP AT P0019.

MOVE-CORRESPONDING P0019 TO TX-KEY.

RP-IMP-C1-TX.

LOOP AT PTEXT.

WRITE: / PTEXT.

ENDLOOP.

ULINE.

ENDLOOP.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Satya,

Press F1 on the comment lines and click on Technical Information, its storing in RP50M, not in PA0019.

Correct me if am wrong.

Thanks & Regards

Bharathi

Former Member
0 Kudos

Hi Bharathi,

RP50M is a structure rite?

It is not a table, so it wont store those values.

Thanks,

Satya

Former Member
0 Kudos

Hi Satish,

Yours is a genuine query i have tried but not able to get the exact text where it gets stored.

In PA0019 it only stores the indicator which says whether the text is maintained or not (i.e. Text exists Yes/No, Field name-ITXEX).

According to SAP the funda behind this is :

You can enter a user-defined comment text in this field. This entry is not checked by the system.

Award points if useful.

Regards,

Bhupesh