<?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 Re: webdynpro in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/webdynpro/m-p/4047730#M967595</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are missing the period(.) in this first statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;V_TEXT = W_LIST-EBELN .  &amp;lt;&amp;lt;---- Add the period here
Wd_Context-&amp;gt;Set_Attribute( exporting value = v_Text Name = 'VIEWTEXT' ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 21:12:20 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2008-07-09T21:12:20Z</dc:date>
    <item>
      <title>webdynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/webdynpro/m-p/4047729#M967594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to develop a dynpro application and i have written some code in it .when i try to activate it its giving me an error. I am giving code and error below.&lt;/P&gt;&lt;P&gt;The code is:&lt;/P&gt;&lt;P&gt;method WDDOINIT .&lt;/P&gt;&lt;P&gt;data:v_element type ref to if_wd_context_element,&lt;/P&gt;&lt;P&gt;     Items_node type ref to If_wd_context_node,&lt;/P&gt;&lt;P&gt;     v_Index type I,&lt;/P&gt;&lt;P&gt;     v_Text type STRING,&lt;/P&gt;&lt;P&gt;     itemlist type standard table of if_mainview=&amp;gt;element_radiogroup,&lt;/P&gt;&lt;P&gt;     w_list like line of itemlist.&lt;/P&gt;&lt;P&gt;*Appending items to itemlist&lt;/P&gt;&lt;P&gt;w_list-ebeln = 'Blue'.&lt;/P&gt;&lt;P&gt;append w_list to itemlist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; w_list-ebeln = 'yellow'.&lt;/P&gt;&lt;P&gt;append w_list to itemlist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_list-ebeln = 'red'.&lt;/P&gt;&lt;P&gt;append w_list to itemlist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_list-ebeln = 'magenta'.&lt;/P&gt;&lt;P&gt;append w_list to itemlist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    w_list-ebeln = 'White'.&lt;/P&gt;&lt;P&gt;append w_list to itemlist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_list-ebeln = 'Black'.&lt;/P&gt;&lt;P&gt;append w_list to itemlist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Items_node = wd_context-&amp;gt;get_child_node( NAME = 'RADIOGROUP').&lt;/P&gt;&lt;P&gt;Items_node-&amp;gt;bind_table( itemlist ).&lt;/P&gt;&lt;P&gt;Items_node-&amp;gt;SET_LEAD_SELECTION_INDEX( 3 ).&lt;/P&gt;&lt;P&gt;V_Index = Items_node-&amp;gt;GET_LEAD_SELECTION_INDEX( ).&lt;/P&gt;&lt;P&gt;CLEAR W_LIST.&lt;/P&gt;&lt;P&gt;READ TABLE ITEMLIST INTO W_LIST INDEX V_INDEX.&lt;/P&gt;&lt;P&gt;V_TEXT = W_LIST-EBELN&lt;/P&gt;&lt;P&gt;Wd_Context-&amp;gt;Set_Attribute( exporting value = v_Text  Name = 'VIEWTEXT' ).&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Error is :&lt;/P&gt;&lt;P&gt;Incorrect Airthmetic or bit expression. Instead of &lt;/P&gt;&lt;P&gt;Wd_Context-&amp;gt;SET_ATTRIBUTE(", an operator (+,-,*,/,....or BIT-AND, BIT-XOR, BIT-OR) was expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 20:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/webdynpro/m-p/4047729#M967594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T20:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: webdynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/webdynpro/m-p/4047730#M967595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are missing the period(.) in this first statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;V_TEXT = W_LIST-EBELN .  &amp;lt;&amp;lt;---- Add the period here
Wd_Context-&amp;gt;Set_Attribute( exporting value = v_Text Name = 'VIEWTEXT' ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 21:12:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/webdynpro/m-p/4047730#M967595</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-07-09T21:12:20Z</dc:date>
    </item>
  </channel>
</rss>

