<?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: Table Structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402102#M194292</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jose,&lt;/P&gt;&lt;P&gt;you cannot fetch data from structure instead it is used to hold data at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables mara."defining structure or interface workarea..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters p_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from mara where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**the above select query fetches the data from the table MARA and place it in the structure MARA iteself.&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>Mon, 19 Jun 2006 03:17:48 GMT</pubDate>
    <dc:creator>abdul_hakim</dc:creator>
    <dc:date>2006-06-19T03:17:48Z</dc:date>
    <item>
      <title>Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402100#M194290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm little confused on how table structure works. But how can I fetch a dat from the table structure AFVGD?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 03:10:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402100#M194290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T03:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402101#M194291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A structure can be used to hold data only during the runtime of aprogram. you cannot fetch data as it is not a table.&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 03:12:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402101#M194291</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-06-19T03:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402102#M194292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jose,&lt;/P&gt;&lt;P&gt;you cannot fetch data from structure instead it is used to hold data at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables mara."defining structure or interface workarea..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters p_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from mara where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**the above select query fetches the data from the table MARA and place it in the structure MARA iteself.&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>Mon, 19 Jun 2006 03:17:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402102#M194292</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-06-19T03:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402103#M194293</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;Use Pattern button in ur program,Check &amp;lt;b&amp;gt; Structured data obj &amp;lt;/b&amp;gt; -&amp;gt; fields from structure. Select the fields u want.Enter the name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will create a structe with the needed fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF i_sub &amp;lt;b&amp;gt; occurs 0 &amp;lt;/b&amp;gt;,&lt;/P&gt;&lt;P&gt;        mandt TYPE afvgd-mandt,&lt;/P&gt;&lt;P&gt;        aufpl TYPE afvgd-aufpl,&lt;/P&gt;&lt;P&gt;      END OF i_sub.&lt;/P&gt;&lt;P&gt;Add occurs 0. Now your Internal table is ready.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Jothi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 03:18:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402103#M194293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T03:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402104#M194294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adrian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure cannot hold data as structure is just used for data definition purpose.&lt;/P&gt;&lt;P&gt; You can store data in an internal table declared like a structure but not in structure directly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 03:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402104#M194294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T03:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402105#M194295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But how can I retrieve the data from the structure AFVGD? That's my problem for now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 03:46:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402105#M194295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T03:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402106#M194296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like you are dealing with a user exit / function which has a paramter of the type AFVGD. Is my assumption, right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes, the structure will have data when the function / exit is being executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else, you need to find the concerned table and get the data. If you are looking for work order data look at AFKO, AFVC tables or VIAUFKST view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 03:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402106#M194296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T03:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402107#M194297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jose,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;again you cant retrive data from structure you can only retrieve it from the table...&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 03:53:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402107#M194297</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-06-19T03:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402108#M194298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adrian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If your structure have a value, then fetch the data using  &amp;lt;stucture Name&amp;gt;-&amp;lt;Field name&amp;gt;.&lt;/P&gt;&lt;P&gt;In ur case,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AFVGD-&amp;lt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;Field name&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / AFVGD-&amp;lt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt;Field name&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Selvapandian Arunachalam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 03:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402108#M194298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T03:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402109#M194299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field that I'm looking is not in AFKO or AFVC. I even look at the hierarchy and can't found it. I' looking for the fields xmnga, lmnga and rmnga.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2006 05:17:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402109#M194299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-19T05:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402110#M194300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to retrieve the production order operations and I'm having diffulty in finding what table they resides.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jun 2006 06:23:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402110#M194300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-22T06:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Table Structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402111#M194301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;could you open a new thread for this question.&lt;/P&gt;&lt;P&gt;mark all useful answers in this thread.&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>Thu, 22 Jun 2006 06:26:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-structure/m-p/1402111#M194301</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-06-22T06:26:03Z</dc:date>
    </item>
  </channel>
</rss>

