Hello,
this is the page you posted to the communit to display your data. It is ok except the inner most loop.
<BR> <bdm:module id="WiWBrowse"><BR> <bdm:browse module="WiWBrowse" document="wiwdoc" pagesize="10"><BR> <bdm:if condition="exist" select="/wiw-artikel/EinWortLemma" ><BR> <font size=5 color="00FF00">Kookkurrenzen2</font><BR> <table><BR> <bdm:loop module="WiWBrowse" document="wiwdoc" select="/wiw-artikel/EinWortLemma/Kookkurrenz" iterate="MWKook" targetbase="Kook2" ><BR> <tr><BR> <bdm:choice type="TXTobj" select="." ><BR> <bdm:loop module="WiWBrowse" document="wiwdoc" select="." iterate="TXTobj" base="Kook2" targetbase="Kook3" ><BR> <td><BR> <bdm:display select="." /><BR> </td><BR> </bdm:loop><BR> </bdm:choice><BR> </tr><BR> </bdm:loop><BR> </table><BR> </bdm:if><BR> </bdm:browse><BR> <input type="submit" value="Zurueck" > <BR> </bdm:module><BR></pre><BR><BR>The reason for your problem is the choice request for the MWKook element. The element itself is not a choice, but it contains a list of choices. <BR><pre class="ip-ubbcode-code-pre"><BR> <!ELEMENT <B>Kookkurrenz</B> (Sign?, ... , <B>MWKook</B>*, ... , AngabeZusatz?) ><BR> <!ELEMENT <B>MWKook</B> (TXTobj | AngabeZusatz)* ><BR> </pre><BR><BR>An MWKook of the form<BR><BR><pre class="ip-ubbcode-code-pre"><BR><MWKook><BR> <TXTobj>...</TXTobj><BR> <AngabeZusatz>...</AngabeZusatz><BR> <TXTobj>...</TXTobj><BR> <TXTobj>...</TXTobj><BR> <AngabeZusatz>...</AngabeZusatz><BR></MWKook><BR></pre><BR><BR>is possible.<BR><BR>Therefore, the loop tag and the choice tag should be switched.<BR><BR><pre class="ip-ubbcode-code-pre"><BR><bdm:loop module="WiWBrowse" document="wiwdoc" select="." iterate="TXTobj AngabeZusatz" base="Kook2" targetbase="Kook3" ><BR> <bdm:choice type="TXTobj" select="." ><BR> <td><BR> <bdm:display select="." /><BR> </td><BR> </bdm:choice><BR></bdm:loop> <BR>
I hope, this solves your problem.
Bye,
Christian.
#webMethods#Tamino#API-Management