Application Development 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: 

Sap Abap hr issue : Regarding display of text in pa20/pa30 screen

Former Member
0 Kudos

Hi my issue is I have been trying to copy the comments/long text for 1 record to another for infotype 0034.I am getting pcl1 table updated with the text also itxex = 'x' is set but still comment is not getting displayed on pa20/pa30 screen.

Please help me with this.

Thanks.

1 REPLY 1

0 Kudos

Hi,

PCL1 table is using PCL1-SRTFD as key field. The KEY is built with the concatenation of Personal No+0034+some more information in Infotype 0034.

Have you checked the key in PCL1 for your new record?

You should have the same content for PCL1-CLUSTD, but with your new key linked with your new HR record.

To debug this, the point system reads the Text from PCL1 is:

Program: SAPFP50M

Include: FP50ME02

Routine: FORM init_text.

Check this line:

rp-imp-c1-tx.

This is a Macro call... the code under this is possible to find in table: TRMAC

RP-IMP-C1-TX001****************************************
RP-IMP-C1-TX002* CLUSTER TX: TEXTE FUER PREL          *
RP-IMP-C1-TX003PERFORM DO_NOTHING(SAPFP50P)
RP-IMP-C1-TX004IMPORT TEXT-VERSION                    *
RP-IMP-C1-TX005PTEXT                           *
RP-IMP-C1-TX006FROM DATABASE PCL1(TX)                 *
RP-IMP-C1-TX007ID TX-KEY                              *
RP-IMP-C1-TX008USING PCL1_EXP_IMP(SAPFP50P)
RP-IMP-C1-TX009IF SY-SUBRC NE 0
RP-IMP-C1-TX010CLEAR:   TEXT-VERSION
RP-IMP-C1-TX011CLEAR:   PTEXT
RP-IMP-C1-TX012REFRESH: PTEXT
RP-IMP-C1-TX013SY-SUBRC = 4
RP-IMP-C1-TX014ENDIF

Hope this help to you.

Regards.

Alfonso.