cancel
Showing results for 
Search instead for 
Did you mean: 

POWERLIST: Subnode or attribute DY_OFN already exists (termination: RABAX_STATE)

Former Member
0 Kudos

Hello,

I've made a Powerlist to show Quality notifications. It works fine, except when I click on "Change Query", the dump "ERROR: Subnode or attribute DY_OFN already exists (termination: RABAX_STATE)" appear.

DY_OFN is actually one of my selection criteria fields, and seems that when I click on change query goes on dump because the instance of this element already exists.

Any clue about how to solve this problem?

How can I do to debug when "Change query" is clicked?

Thanks in advance

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

The issue is a problem with standard SAP, a ticket has been raised. Same issue appear when calling the standard powerlist OPS-QI-POWL. Thanks

Shilpa_J_B
Employee
Employee
0 Kudos

Hi David,

Can you attach the full details of the dump?

Regards,

Shilpa

Former Member
0 Kudos

Hello,

Please find attached the dump description,

Hope it helps

ramakrishnappa
Active Contributor
0 Kudos

Hi David,

Here the issue is, you are trying to create a node in context and the logic is getting called again. As the node already exists, it cannot create the node again with the same name.

You need to put a condition to restrict the logic to execute only once.

Example:

IF FIRST_TIME = abap_true.

     " Here place your code

endif.

Hope this helps you.

Regards,

Rama