<?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: Some help with sm30 table. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447998#M212375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Somebody know how to refresh sm30 table???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jun 2006 05:35:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-29T05:35:09Z</dc:date>
    <item>
      <title>Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447985#M212362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;i'm trying to insert some lines into table whice i crated&lt;/P&gt;&lt;P&gt;but always it give me one line although the shipment number have more than one line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the code i write in the screen of the table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT  *&lt;/P&gt;&lt;P&gt;      FROM VTTK JOIN vttp  ON VTTK&lt;SUB&gt;TKNUM = vttp&lt;/SUB&gt;TKNUM&lt;/P&gt;&lt;P&gt;      JOIN likp ON vttp&lt;SUB&gt;vbeln = likp&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;      Join KNA1 ON likp&lt;SUB&gt;kunnr  = KNA1&lt;/SUB&gt;kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   INTO CORRESPONDING FIELDS OF Zplatform&lt;/P&gt;&lt;P&gt;      WHERE vttk~TKNUM = Zplatform-TKNUM .&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zpaltform is the name of the table and the code above give one line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i even try  with internal table but it give me nothing.&lt;/P&gt;&lt;P&gt;i'll be more then happy the get some help here.&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 11:19:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447985#M212362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T11:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447986#M212363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change your SELECt to this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;FROM VTTK JOIN vttp ON VTTK&lt;SUB&gt;TKNUM = vttp&lt;/SUB&gt;TKNUM&lt;/P&gt;&lt;P&gt;JOIN likp ON vttp&lt;SUB&gt;vbeln = likp&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;Join KNA1 ON likp&lt;SUB&gt;kunnr = KNA1&lt;/SUB&gt;kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF Zplatform&lt;/P&gt;&lt;P&gt;WHERE vttk~TKNUM = Zplatform-TKNUM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;append zplatform.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;FROM VTTK JOIN vttp ON VTTK&lt;SUB&gt;TKNUM = vttp&lt;/SUB&gt;TKNUM&lt;/P&gt;&lt;P&gt;JOIN likp ON vttp&lt;SUB&gt;vbeln = likp&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;Join KNA1 ON likp&lt;SUB&gt;kunnr = KNA1&lt;/SUB&gt;kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF &amp;lt;b&amp;gt; table &amp;lt;/b&amp;gt; Zplatform&lt;/P&gt;&lt;P&gt;WHERE vttk~TKNUM = Zplatform-TKNUM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your values are not getting appended to the table.&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>Wed, 28 Jun 2006 11:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447986#M212363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T11:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447987#M212364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first break the Join and check . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 11:30:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447987#M212364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T11:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447988#M212365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well the code you gave me didn't help,&lt;/P&gt;&lt;P&gt;Zplatform is the table i've created in se11 with maintenance (sm30) now when write this one&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;FROM VTTK JOIN vttp ON VTTK&lt;SUB&gt;TKNUM = vttp&lt;/SUB&gt;TKNUM&lt;/P&gt;&lt;P&gt;JOIN likp ON vttp&lt;SUB&gt;vbeln = likp&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;Join KNA1 ON likp&lt;SUB&gt;kunnr = KNA1&lt;/SUB&gt;kunnr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTO CORRESPONDING FIELDS OF Zplatform&lt;/P&gt;&lt;P&gt;WHERE vttk~TKNUM = Zplatform-TKNUM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append zplatform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the abap editor tell me that : "TO itab." expected after "ZPLATFORM".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea plz...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 11:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447988#M212365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T11:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447989#M212366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) u  have   to  select  data  into  internal table.&lt;/P&gt;&lt;P&gt;2) after  this insert data  into ztable from internal table using  insert or  modify command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u  cant  directly  use select statement  to  insert data into dbtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 11:49:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447989#M212366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T11:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447990#M212367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whichever program you are writing this select statement, you will have to declare a internal table like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ZPLATFORM TYPE TABLE OF ZPLATFORM WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then it will NOT give a syntax error.&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>Wed, 28 Jun 2006 11:53:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447990#M212367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T11:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447991#M212368</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 This&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT *
FROM VTTK JOIN vttp ON VTTK~TKNUM = vttp~TKNUM
JOIN likp ON vttp~vbeln = likp~vbeln
Join KNA1 ON likp~kunnr = KNA1~kunnr

INTO CORRESPONDING FIELDS OF TABLE Zplatform
WHERE vttk~TKNUM = Zplatform-TKNUM .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 11:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447991#M212368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T11:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447992#M212369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well i tryng anything ( or maybe not) and still it's not work.&lt;/P&gt;&lt;P&gt;this is the last code i write :&lt;/P&gt;&lt;P&gt;  SELECT *&lt;/P&gt;&lt;P&gt;   FROM VTTK JOIN vttp ON VTTK&lt;SUB&gt;TKNUM = vttp&lt;/SUB&gt;TKNUM&lt;/P&gt;&lt;P&gt;             JOIN likp ON vttp&lt;SUB&gt;vbeln = likp&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;             Join KNA1 ON likp&lt;SUB&gt;kunnr = KNA1&lt;/SUB&gt;kunnr&lt;/P&gt;&lt;P&gt;   INTO CORRESPONDING FIELDS OF table WA_Zplatform&lt;/P&gt;&lt;P&gt;   WHERE vttk~TKNUM = lv_tknum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  INSERT INTO zplatform VALUES WA_Zplatform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zplatform is the table i created in se 11.&lt;/P&gt;&lt;P&gt;WA_Zplatform  i declare like this:&lt;/P&gt;&lt;P&gt; BEGIN OF wa_Zplatform occurs 0,&lt;/P&gt;&lt;P&gt;        wa_Zplatform like Zplatform,&lt;/P&gt;&lt;P&gt; END OF wa_Zplatform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 12:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447992#M212369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T12:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447993#M212370</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;if you want to store table of values , change the insert statement like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : WA_Zplatform like Zplatform occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT (dbtabname) FROM TABLE itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT  zplatform FROM TABLE WA_Zplatform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laxman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 12:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447993#M212370</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-06-28T12:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447994#M212371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK but my itab don't fill with data and this is stange.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 12:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447994#M212371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T12:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447995#M212372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGE YOUR INSERT STATEMENT TO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT ZPLATFORM FROM TABLE WA_ZPLATFORM.&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>Wed, 28 Jun 2006 12:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447995#M212372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T12:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447996#M212373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data: izplatform type table of zplatform.

SELECT * INTO CORRESPONDING FIELDS OF table iZplatform
    FROM VTTK 
        inner JOIN vttp 
            ON VTTK~TKNUM = vttp~TKNUM
        inner JOIN likp 
            ON vttp~vbeln = likp~vbeln
        inner Join KNA1
            ON likp~kunnr = KNA1~kunnr
                     WHERE vttk~TKNUM = lv_tknum.

loop at izplatform.
insert zplatform from izplatform.
endloop.

&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, 28 Jun 2006 12:38:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447996#M212373</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-28T12:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447997#M212374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Rich Heilman&amp;lt;/b&amp;gt; your post was very helpful.&lt;/P&gt;&lt;P&gt;one litttle thing is how can i refersh the sm 30 table &lt;/P&gt;&lt;P&gt;so after i type shipment number and then enter the records that was added in the background will be visible to the user.&lt;/P&gt;&lt;P&gt;no after i use the code of Rich Heilman the records are visible just if i exit the sm 30 and enter again.&lt;/P&gt;&lt;P&gt;thanks very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 14:38:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447997#M212374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T14:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Some help with sm30 table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447998#M212375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Somebody know how to refresh sm30 table???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 05:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/some-help-with-sm30-table/m-p/1447998#M212375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T05:35:09Z</dc:date>
    </item>
  </channel>
</rss>

