<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Error by binding a table to context node in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-by-binding-a-table-to-context-node/m-p/7431627#M1550477</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I try to bind a table of strings, there comes the error:&lt;/P&gt;&lt;P&gt;"Dynamic type conflict during the assignment of references."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my coding:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;METHOD fill_cssref_data .
  "Stores the references to the css
  DATA: lt_cssref TYPE TABLE OF string,
        wb_cssref LIKE LINE OF lt_cssref.

  DATA: lo_nd_cssref TYPE REF TO if_wd_context_node.

  DATA: wb_messages LIKE LINE OF lt_messages.

  lo_nd_cssref = wd_context-&amp;gt;get_child_node( wd_this-&amp;gt;wdctx_cssref_data ).

  LOOP AT lt_messages INTO wb_messages.
    CONCATENATE 'https://gtp.wdf.sap.corp/sap/bc/webdynpro/qce/msg_gui_edit?sap-language=E&amp;amp;csinsta='
                  wb_messages-installno '&amp;amp;mnumm=' wb_messages-problemno '&amp;amp;myear=' wb_messages-pyear
    INTO wb_cssref.

    APPEND wb_cssref TO lt_cssref.
  ENDLOOP.

  lo_nd_cssref-&amp;gt;bind_table( lt_cssref ).

endmethod.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The node "CSSREF_DATA" contains just one attribute "CSSREF" type string, so I don't know why there's a problem binding a table of strings to this node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried the method "lo_nd_cssref-&amp;gt;bind_elements( lt_cssref )", but the result was the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know where my mistake is?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Lennart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Nov 2010 13:15:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-22T13:15:59Z</dc:date>
    <item>
      <title>Error by binding a table to context node</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-by-binding-a-table-to-context-node/m-p/7431627#M1550477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I try to bind a table of strings, there comes the error:&lt;/P&gt;&lt;P&gt;"Dynamic type conflict during the assignment of references."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my coding:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;METHOD fill_cssref_data .
  "Stores the references to the css
  DATA: lt_cssref TYPE TABLE OF string,
        wb_cssref LIKE LINE OF lt_cssref.

  DATA: lo_nd_cssref TYPE REF TO if_wd_context_node.

  DATA: wb_messages LIKE LINE OF lt_messages.

  lo_nd_cssref = wd_context-&amp;gt;get_child_node( wd_this-&amp;gt;wdctx_cssref_data ).

  LOOP AT lt_messages INTO wb_messages.
    CONCATENATE 'https://gtp.wdf.sap.corp/sap/bc/webdynpro/qce/msg_gui_edit?sap-language=E&amp;amp;csinsta='
                  wb_messages-installno '&amp;amp;mnumm=' wb_messages-problemno '&amp;amp;myear=' wb_messages-pyear
    INTO wb_cssref.

    APPEND wb_cssref TO lt_cssref.
  ENDLOOP.

  lo_nd_cssref-&amp;gt;bind_table( lt_cssref ).

endmethod.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The node "CSSREF_DATA" contains just one attribute "CSSREF" type string, so I don't know why there's a problem binding a table of strings to this node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried the method "lo_nd_cssref-&amp;gt;bind_elements( lt_cssref )", but the result was the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know where my mistake is?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Lennart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Nov 2010 13:15:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-by-binding-a-table-to-context-node/m-p/7431627#M1550477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-22T13:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error by binding a table to context node</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-by-binding-a-table-to-context-node/m-p/7431628#M1550478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the problem is the string type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with some fiexed length type (for example text132 or more if you need it like text1024 or text2048)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Nov 2010 15:38:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-by-binding-a-table-to-context-node/m-p/7431628#M1550478</guid>
      <dc:creator>franois_henrotte</dc:creator>
      <dc:date>2010-11-29T15:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Error by binding a table to context node</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-by-binding-a-table-to-context-node/m-p/7431629#M1550479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem was, that the string table had not the same name as the context node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Lennart&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Nov 2010 15:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-by-binding-a-table-to-context-node/m-p/7431629#M1550479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-29T15:53:25Z</dc:date>
    </item>
  </channel>
</rss>

