Do you have any question about this error?
Message type: E = Error
Message class: SPRX - Proxy Generation
Message number: 072
Message text: Item is part of recursion (see long text for additional information)
The type contains recursions. This means that a type references itself
(possibly indirectly).
Example:
A packing unit is described by its length, width, height, and content.
The content can also consist of packing units.
<complexType name="PackingUnit">
<sequence>
<element name="length" type="int"/>
<element name="width" type="int"/>
<element name="height" type="int"/>
<element name="content" type="PackingUnit"
maxOccurs="unbounded"/>
</sequence>
</complexType>
In ABAP, recursively defined structures are not possible.
Currently, the only solution is to replace a recursive reference by a
reference to the data element XSDANY, so that the structure looks like
this:
Dictionary structure PACKING_UNIT
Field LENGTH TYPE INT4
Field WIDTH TYPE INT4
Field HEIGHT TYPE INT4
Field CONTENT TYPE PACKING_UNIT_CONTENT_TAB
Dictionary table type PACKING_UNIT_CONTENT_TAB
Line type XSDANY (not TYPE PACKING_UNIT)
The system issues an error message and will not allow you to continue with this transaction until the error is resolved.
The programmer must fill this XSDANY field correctly. For moreThe system displays a warning for each type which is part of a
recursion. The type cannot be activated if the DDIC type to be
generatedalso contains a recursion.
To be able to activate the proxy you have to "break" the recursion by
mapping at least on chain of each recursion to XSDANY. This is done by
setting the flag <DS:DE.PRX_USE_XSDANY>Untyped mapping</> in the detail
vie of the corrosponding data type.
Error message extract from SAP system. Copyright SAP SE.
Get instant SAP help. Start your 7-day free trial now.
Feature | Free Access | Free Trial |
---|---|---|
Basic SAP error explanation | ![]() |
![]() |
Step-by-Step Usage Guide | ![]() |
![]() |
Interactive SAP Coach Assistance | ![]() |
![]() |
AI Troubleshooting for T-Code Errors | ![]() |
![]() |
SPRX071 Keys and uniqueness relationships ignored
What causes this issue? The interface description uses one of the following lan...
SPRX070 Avoid using tables without surrounding tag for individual lines
What causes this issue? The interface description defined a repetition group (a...
SPRX073 Object not (yet) activated (DDIC log => detail button)
What causes this issue? There were activation errors in the DDIC.System Respons...
SPRX074 Object still being used; cannot delete object
What causes this issue? Unable to delete object because references still exist....
SAP messages fall into 3 different categories: Error messages
(message type = E), Warnings (W) or Informational (I) messages.
An error message will prevent you from continuing your work - it is a hard stop and you need to fix the error before you can proceed. A warning message will stop your work, however, you can then bypass the warning by pressing the Enter key on your keyboard. That said, it is still good practice to investigate the cause of the warning message and address it. An information message will not stop your work and is truly just for informational purposes.
Click on this link to search all SAP messages.