cancel
Showing results for 
Search instead for 
Did you mean: 

0PROFIT_CTR hierarchy load "Missing Messages"

former_member214693
Participant
0 Kudos

Hi Experts,

I am trying to load Hierarchy data for 0PROFIT_CTR to Bw.

In the monitoring(left hand side) QM status is green saying that the load is successfull and on the right hand side QMStatus is also Green.

But in the Details Tab(right hand side) the overall Status is red and it's giving a warning message for overall status "Errors occured: or: Missing messages".

*Requests (messages): Everything OK

   Data request arranged

   Confirmed with: OK

*Extraction (messages): Everything OK

   Data request received

   Data selection scheduled

   444 Records sent ( 444 Records received )

   Data selection ended

*Transfer (IDocs and TRFC): Missing messages(QMStatus is red)

*Processing (data packet): Everything OK

  *Data Package 1 ( Records ) : Everything OK

    *Transfer rules ( 444  Records ) : No errors

      *Hierarchies for master data received. Processing being started.

      *Transfer 444 data records in communication structure

    *Update ( 0 new / 0 changed ) : No errors

    *Data saved successfully

     *Processing end : No errors

       *Data successfully transferred to the update

What does this mean?? Why? This is still running on 3.5, would it help to upgrade to a 7x transformation?

Thanks,

Regards,

Sofie H

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sofie,

Looks like idocs are not transferred to BW from ECC (source system).

In the infopacakge monitor screen-->environment -->transact RFC-->in source system-->enter you source system credentials-->then choose the appropriate date (Display period) on when this hierarchy error-ed out.

if you see any idocs.. execute them (F6), once idocs are cleared, come back to infopackage and refresh the monitor.

former_member214693
Participant
0 Kudos

There are no iDocs displayed...

I tried to merge the existing 3.5 hierarchy dataflow for 0PROFIT_CTR to 7x, but now I receive another error message:

Message no. RH211

...

The nodes NODEID = 7, 00000006 have the same node names NODENAME = . This is not allowed because both nodes are leaves and are child nodes of the same parent node NODEID = 00000003.

Note that a maximum of 50 characters is available for message variables. The node name NODENAME =  might not be displayed in its full length.

....

The same message several times, refering to different nodeid and always nodename = .
I check the PSA and nodename is always present and never with the same value twice.

Former Member
0 Kudos

Hi Sofie,

are you trying to migrate the 3.x flow to 7.x ? have you created transformations ? and map them node wise? and when did you get the above error message? when activating transformations? or when executing DTP?

RafkeMagic
Active Contributor
0 Kudos

check the transformation for Source Segments > Hierarchy nodes

your mappings for 0CO_AREA & 0PROFIT_CTR should not be 1 - 1

(you can check in debugging that profit centers values come in concatenated with the controlling area)

for 0CO_AREA you could write the following routine:

     IF SOURCE_FIELDS_3-IOBJNM = '0PROFIT_CTR'.

       RESULT = SOURCE_FIELDS_3-NODENAME+0(4).

     ENDIF.

for 0PROFIT_CTR you could write the following routine:

     IF SOURCE_FIELDS_3-IOBJNM = '0PROFIT_CTR'.

       RESULT = SOURCE_FIELDS_3-NODENAME+4(10).

     ENDIF.

former_member214693
Participant
0 Kudos

Hi,

This is solved! Just as Raf suggests I mapped Hierarchy nodes in transformation NODENAME to 0PROFIT_CTR and 0CO_AREA using rule type "Hierarchy Split". Then I just uncommented the start routine code delivered by SAP...

Thanks!

Answers (0)