<?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: smartform table main area error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723949#M1580368</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; still not works. even I manually put &amp;amp;Wa1-V_BUKRS&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;besides my first post, I have the following setting:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in main window/table/data, I have loop:  operand IT1 in to Wa1, in form interface and form attributes, I defined nothing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Mar 2011 05:53:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-22T05:53:58Z</dc:date>
    <item>
      <title>smartform table main area error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723946#M1580365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In global definition, I define IT1 type table of STR1, WA1 type STR1, inition, I select BUKRS from Z1 into IT1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of STr1&lt;/P&gt;&lt;P&gt;V_bukrs type Z1-BUKRS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end of STR1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the Table main area, I define a text element , but I manually input &amp;amp;V_BUKRS&amp;amp;, when I test the form, it shows V_bukrs, not the value IN01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in field list on,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I double click field name V_bukrs of  WA1 , it has no response, I think it should go to my text element definition and becomes grey out, &amp;amp;V_bukrs&amp;amp;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea, thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 03:57:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723946#M1580365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-22T03:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: smartform table main area error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723947#M1580366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;You can try your code as, &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select BUKRS from Z1 into table IT1. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then make a loop in your internal table in &lt;STRONG&gt;Table&lt;/STRONG&gt; &lt;STRONG&gt;Data&lt;/STRONG&gt;  area like IT1 into WA1.&lt;/P&gt;&lt;P&gt;In your text element give your field name as &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&amp;amp;WA1-V_BUKRS&amp;amp;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Rosaline.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 04:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723947#M1580366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-22T04:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: smartform table main area error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723948#M1580367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this.&lt;/P&gt;&lt;P&gt;IT_TAB	TYPE TABLE OF	TYPES_TABLE&lt;/P&gt;&lt;P&gt;FS_BSET	TYPE	TYPES_TABLE.&lt;/P&gt;&lt;P&gt;TYPES:&lt;/P&gt;&lt;P&gt;BEGIN OF TYPES_TABLE,&lt;/P&gt;&lt;P&gt; BELNR TYPE BSET-BELNR,&lt;/P&gt;&lt;P&gt; KSCHL TYPE BSET-KSCHL,&lt;/P&gt;&lt;P&gt; HWSTE  TYPE BSET-HWSTE,&lt;/P&gt;&lt;P&gt; KBETR  TYPE BSET-KBETR,&lt;/P&gt;&lt;P&gt; END OF TYPES_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fields display as wa_rseg-belnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 04:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723948#M1580367</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-03-22T04:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: smartform table main area error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723949#M1580368</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; still not works. even I manually put &amp;amp;Wa1-V_BUKRS&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;besides my first post, I have the following setting:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in main window/table/data, I have loop:  operand IT1 in to Wa1, in form interface and form attributes, I defined nothing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 05:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723949#M1580368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-22T05:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: smartform table main area error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723950#M1580369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;I think the problem is with your Global Definitions. You can follow the procedure below. I did some example on it and it works fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;In Global Definition / Types :&lt;/U&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES : BEGIN OF  item ,
                         v_vbeln TYPE vbak-vbeln,
                         ERNAM TYPE vbak-ERNAM,
                         ERDAT TYPE vbak-ERDAT,
                         END OF item.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;In Global Definition / Global Data :&lt;/U&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ITAB Type Table Of ITEM
WTAB Type ITEM 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;In Global Definition / Initializations :&lt;/U&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT
       vbeln
       ERNAM
       ERDAT FROM vbak INTO TABLE itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;In Main Window / Table / Data :&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Internal loop : ITAB Into Wtab&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Then &lt;STRONG&gt;In a text put field as&lt;/STRONG&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;amp;wtab-v_vbeln&amp;amp;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are not using parameters then you do not need to use Form Interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rosaline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rosaline. on Mar 23, 2011 4:44 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2011 03:42:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723950#M1580369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-23T03:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: smartform table main area error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723951#M1580370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls don't input manually, use editor!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 02:07:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-table-main-area-error/m-p/7723951#M1580370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-24T02:07:33Z</dc:date>
    </item>
  </channel>
</rss>

