<?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: Internal table update in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039063#M1610602</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;This question already solved but another problem is that when i retrieve records from both table by using left outer join then records are coming with cross product of both i.e if left table match 4 record and right table match 5 record to a given condition then total records retrieves 20 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i want those records which are only in left table which match or not match with the right table.If match corresponding data will come from right table otherwise that field will blank if not match with right table.&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;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jul 2011 11:13:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-07T11:13:15Z</dc:date>
    <item>
      <title>Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039060#M1610599</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 created a structure in se11 and using that structure i have created one table type variable.&lt;/P&gt;&lt;P&gt;This table type variable,i am using in my function module as export parameter .In my import parameter i am taken one a field type of my structure .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In source code i have written the select statement which retrieve records as per my requirement but problem is that,&lt;/P&gt;&lt;P&gt;one fileld which is blank in some cases where records r not in the database.I have fill that blank filed with corresponding data for another same type fileld. How it is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help anyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 06:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039060#M1610599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-07T06:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039061#M1610600</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 replace one field of a line with data from another field of that line, you have to loop at the internal table.&lt;/P&gt;&lt;P&gt;If you want to fill the field with a fixed value you could use "MODYFY itab FROM wa TRANSPORTING field WHERE cond".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Oliver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 07:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039061#M1610600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-07T07:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039062#M1610601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just loop at your internal table and make use of field symbol. &lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab assigning &amp;lt;fs_itab&amp;gt; where field eq space.&lt;/P&gt;&lt;P&gt;   &amp;lt;fs_itab&amp;gt;-field = value. &lt;/P&gt;&lt;P&gt;Endloop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, update your database table if necessary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 09:30:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039062#M1610601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-07T09:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039063#M1610602</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;This question already solved but another problem is that when i retrieve records from both table by using left outer join then records are coming with cross product of both i.e if left table match 4 record and right table match 5 record to a given condition then total records retrieves 20 records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i want those records which are only in left table which match or not match with the right table.If match corresponding data will come from right table otherwise that field will blank if not match with right table.&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;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 11:13:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039063#M1610602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-07T11:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039064#M1610603</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;so isn't a INNER JOIN what you are looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Oliver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Oliver Hütköper on Jul 7, 2011 2:21 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 12:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039064#M1610603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-07T12:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039065#M1610604</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 want thsi type of results .I used inner join but that is not properly coming . So any syntax if you know please inform me so that i can get the proper result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 12:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039065#M1610604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-07T12:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039066#M1610605</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;please post your select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 13:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039066#M1610605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-07T13:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039067#M1610606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;left inner join is what you should be going for, but until we see your select statement we cant tell you where you go wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 13:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039067#M1610606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-07T13:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table update</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039068#M1610607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;but that is not properly coming&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I have not got enough visionary ability.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jul 2011 21:41:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-update/m-p/8039068#M1610607</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-07-07T21:41:29Z</dc:date>
    </item>
  </channel>
</rss>

