cancel
Showing results for 
Search instead for 
Did you mean: 

Reasons for failure of Importing cluster?

Former Member
0 Kudos

Hello all,

I have a problem in production system. When we try to store the remarks field in IT0035, it's not being stored in the cluster PCL1.

When I checked in debugging, export to the cluster was successful where as the import was failing. Even the key to import the cluster was correct.

Could somebody tell me some other probable reasons for this issue.

Thanks in advance.

RSS

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Dear RSS,

Remarks in IT0035 is not directly read from the cluster.

Try the following program. (Donot forget to assign Logical DB PNP in attributes part of the program.)


REPORT ZDILEK.
TABLES: PERNR.
INFOTYPES: 0035.
 
INCLUDE RPCLTX00.
 
GET PERNR.
MOVE-CORRESPONDING P0035 TO TX-KEY.
RP-IMP-CL-TX.
 
LOOP AT PTEXT.
WRITE: PTEXT-LINE.
ENDLOOP.
 
END-OF-SELECTION.

Best Regards,

Dilek

Former Member
0 Kudos

I 've misunderstood your requirement, I guess ..

Former Member
0 Kudos

Hi,

Yes. I am not writing any piece of code to retrieve the text from cluster. It's standard code only for IT0035. It is working in DEV but not in PRD. When i checked in debugging in PRD system, I found that the import from the cluster (RP-IMP-C1-TX) was failing. Hence, the remarks for the record are not being displayed.

So my question is, what could be the probable reasons for this issue.

Thanks,

RSS.