cancel
Showing results for 
Search instead for 
Did you mean: 

adding the 'Infotype text modules' to the IT0219-coding needed?

Former Member
0 Kudos

Hi experts,

I am new to HCM ABAP and have the following task:

I need to enable the infotype text modules to for the infotype 219.I have followed the link (http://help.sap.com/erp2005_ehp_03/helpdata/EN/4f/d52656575e11d189270000e8322f96/content.htm) and added the three lines of text to the IT screen.When I open the IT219 in PA30,I can see the three fields added.But my question is:

Is there any abap coding I have to do additionally?If yes,can somebody help with procedure/pseudo code?

regards,

Bhupesh

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Bhupesh,

The text module functionality is standard provided by SAP. hence from infotype point of view you dont need to do any additional coding. The text you have entered will be automaticly saved in PCl1 clstr and retreived when you want to edit it again.

If you want to fetch this text in any of your ABP reports then you need to code as Volker specified.

Rgds...Sameer

former_member226519
Active Contributor
0 Kudos

text is stored in cluster PCL1.

if you want to read the text with ABAP see example mfor infotype 0019:

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.