Do you have any question about this error?
Message type: E = Error
Message class: SPRX - Proxy Generation
Message number: 072
Message text: Le type fait partie d'une récursivité (cf. texte descr. pr plus d'infos).
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)
Le système émet un message d'erreur et ne vous permettra pas de poursuivre cette transaction tant que l'erreur n'est pas résolue.
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.
Extrait du message d'erreur du système SAP. Copyright SAP SE.
SPRX072
- Le type fait partie d'une récursivité (cf. texte descr. pr plus d'infos). ?Get instant SAP help. Start your 7-day free trial now.
SPRX071
Les clés et les relations d'unicité sont ignorées.
Quelle est la cause de ce problème? The interface description uses one of the following language elements: <key> <keyref> <unique>...
SPRX070
Evitez d'utiliser des tables sans balise encadrant chaque ligne.
Quelle est la cause de ce problème? The interface description defined a repetition group (a strictly table-type structure): <sequence maxOcxurs=...
SPRX073
Objet pas (encore) activé (journal DDIC => bouton "Détails")
Quelle est la cause de ce problème? There were activation errors in the DDIC.Réponse du système Le système émet un message d'erreur et ne vous...
SPRX074
Cet objet est encore utilisé et ne peut donc pas être supprimé.
Quelle est la cause de ce problème? Unable to delete object because references still exist.Réponse du système The object in question (type/name)...
Cliquez sur ce lien pour rechercher tous les messages SAP.