<?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 smartform in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434200#M207191</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all including RAM,&lt;/P&gt;&lt;P&gt;          i've declared'DATA: LVBDKA TYPE TABLE OF VBDKA' IN THE INITIALIZATION TAB OF GLOAL DEFINITIONS OF SMARTFORM BUILDER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          BUT IT IS RETURNING AN ERROR MSG. L_VBDKA IS NOT AN STRUCTURE OR INTERNAL TABLE WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PLZ HELP TO SOLVE THIS PROBLEM ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  THNKS IN ADVANCE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KIND REGARDS,&lt;/P&gt;&lt;P&gt;VINAY.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 07:51:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-20T07:51:46Z</dc:date>
    <item>
      <title>smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434200#M207191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all including RAM,&lt;/P&gt;&lt;P&gt;          i've declared'DATA: LVBDKA TYPE TABLE OF VBDKA' IN THE INITIALIZATION TAB OF GLOAL DEFINITIONS OF SMARTFORM BUILDER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          BUT IT IS RETURNING AN ERROR MSG. L_VBDKA IS NOT AN STRUCTURE OR INTERNAL TABLE WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PLZ HELP TO SOLVE THIS PROBLEM ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  THNKS IN ADVANCE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KIND REGARDS,&lt;/P&gt;&lt;P&gt;VINAY.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 07:51:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434200#M207191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T07:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434201#M207192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF you need a variable you should declare the internal table in the Global Data tab. If you want to have table, then you should refer it to a table type in the data dcitonary. So, search if VBDKA is used in a table type, if yes use that to declare a table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 07:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434201#M207192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T07:55:19Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434202#M207193</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;The declaration you're using creates an internal table without header line, if you need it you should use the options WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: LVBDKA TYPE TABLE OF VBDKA WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 07:58:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434202#M207193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T07:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434203#M207194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vinay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: LVBDKA TYPE TABLE OF VBDKA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using this variable in otherwindows and pages of same form, you should declare it in the global definations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you simply used it in local routines like FORM routines, then you should declare them in the FORM ROUTINES only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might needed it just for work area. So just create as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: LVBDKA TYPE VBDKA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if you have any questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:08:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434203#M207194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434204#M207195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;you should declare it in the global data declaration..&lt;/P&gt;&lt;P&gt;have you done it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:15:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434204#M207195</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-06-20T08:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434205#M207196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinay,&lt;/P&gt;&lt;P&gt;        Do not do any declaration in initialization tab.Do the declaration as types in the type tab and after that declare it in global definiton.&lt;/P&gt;&lt;P&gt;Example : &lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;BEGIN OF it_list_type,&lt;/P&gt;&lt;P&gt;PAYER_name1 LIKE IDWTFIDOC-US_PAYER_NAME1,&lt;/P&gt;&lt;P&gt;END OF it_list_type.&lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;it_list_table type it_list_type OCCURS 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the global definition declare your internal table as type of this it_list_table.Use this format.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mukesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 08:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform/m-p/1434205#M207196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T08:16:17Z</dc:date>
    </item>
  </channel>
</rss>

