<?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 accessing problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012527#M711895</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case you can get the value out of field CX_SD_ORDER-VEPVG directly because it is only a structure not a table. Make sure that the vbeln is passed into the function module correctly (in field VEPVG)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Oct 2007 14:58:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-31T14:58:51Z</dc:date>
    <item>
      <title>Table accessing problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012523#M711891</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 doing some modifications in Function Module: ZSHP_VEPVG_SELECT_01 (copy standard).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I need is to make a simple check to the item category from table VBAP from each document stored in 'CX_SD_ORDER-VEPVG' (VBELN).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't do a simple loop to table CX_SD_ORDER because i got the error saying that this CX_SD_ORDER is neither specified under TABLES nor defines as an internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing a loop by this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT CX_SD_ORDER-VEPVG TRANSPORTING NO FIELDS&lt;/P&gt;&lt;P&gt;                                 WHERE VBELN NE space.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         w_vbeln = VBELN.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now what i need is to go to table VBAP and check item category from each document. But the problem is how can i access to VBELN stored in that structure CX_SD_ORDER?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would appreciate any help.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 14:43:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012523#M711891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T14:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table accessing problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012524#M711892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is a structure, there will always only be one entry, just access the field directly (CX_SD_ORDER-VEPVG). If you can have more than one entry in that table, what is the exact declaration of CX_SD_ORDER?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 14:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012524#M711892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T14:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Table accessing problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012525#M711893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the Function Module SHP_VEPVG_SELECT_01 I have this structure defined by:&lt;/P&gt;&lt;P&gt;VALUE(CX_SD_ORDER) TYPE  SHP_VL10_SD_ORDER, and i need to access to field VBELN from this structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 14:49:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012525#M711893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T14:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table accessing problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012526#M711894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global data copied or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any standard includes are necessary for this FM?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks nad Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 14:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012526#M711894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T14:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table accessing problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012527#M711895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case you can get the value out of field CX_SD_ORDER-VEPVG directly because it is only a structure not a table. Make sure that the vbeln is passed into the function module correctly (in field VEPVG)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 14:58:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012527#M711895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T14:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Table accessing problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012528#M711896</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 have the field in CX_SD_ORDER-VEPVG[1]-VBELN... But i can't access in my program by writing that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        thor thor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 16:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012528#M711896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T16:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table accessing problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012529#M711897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CX_SD_ORDER-VEPVG is an internal table so you could loop over it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: l_wa_vepvg like line of CX_SD_ORDER-VEPVG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT CX_SD_ORDER-VEPVG into l_wa_vepvg.&lt;/P&gt;&lt;P&gt;              "now you can access l_wa_vepvg-VBELN&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 17:33:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012529#M711897</guid>
      <dc:creator>che_eky</dc:creator>
      <dc:date>2007-10-31T17:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Table accessing problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012530#M711898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Che Eky!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!! &lt;/P&gt;&lt;P&gt;You resolve my problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2007 17:35:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-accessing-problem/m-p/3012530#M711898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-31T17:35:58Z</dc:date>
    </item>
  </channel>
</rss>

