Hi All,
we got replay from SAP, they suggested note: 1997720. we implemented this note in ecc side and issue resolved from source side.
Thanks & Regards,
Kumar
Hi, Is it for only a few G/L accounts or all? And did you check with other hierarichies (HIENM) ?
-
Regards,
Mgande
Hi Mgande,
I've checked 0GLACCEXT hierarchy.
0GLACCEXT hierarchy also same problem. Field and FS Item are not updating in rsa3/PSA.
Before update this fields are updating.
Any settings we need to do. are any sap notes are available to resolve this.
Regards,
Varaprasad.
Ok. Try with SAP note : 2190545.
-
Regards,
Mgande
Hi Mgande,
Thank you very much for your support.
I've checked the sap note, I think this note is applicable on BW system. But we are not getting data from ECC it self.
Regards,
Kumar
Hi Kumar,
I had the same issue. I found OSS note 1946613 - 0GL_ACCOUNT: Load Hierarchy Error RH211 and Interval Issue.
It explains about changing the transfer method in the transfer rules of the datasource related to the hierarchy from PSA to Idoc. Additionally I had to change a setting in the Infopackage as well. In the Processing tab I had to change it to ALE Inbox and Infoobject. But don't know whether this is applicable to your situation as well.
After these two minor changes the load of the hierarchy works fine again. I tested it by deleting the entire hierarchy before loading it.
Hope it helps!
Best regards,
Jos Verschure
Did anybody found a solution for this. We face the same problem with 0GL_ACCOUNT_T011_HIER. Unfortunatly I also get an error when I want to activate when I want change to IDOC so I cannot go this way for the moment. Many thanks for any reply on this.
Best regards!
Frank Thierfeldt
I also have the same problem. The note doesn't work for me. We are already using 7.x... I think the problem is that the 0GL_ACCOUNT infoobject is set for intervals, but the datasource is not., so the "hierarchy split" solution doesn't work... I might be wrong... Still looking into it.
Here is how I fixed it.
Modify the code in Target Segment: Hierarchy Structure.
0CHRT_ACCTS:
if source_fields_3-iobjnm = '0GL_ACCOUNT'.
result = source_fields_3-nodename+0(4).
endif.
0GL_ACCOUNT:
if source_fields_3-iobjnm = '0GL_ACCOUNT'.
result = source_fields_3-nodename+4(10).
endif.
Add comment