<?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: Need Logic in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076023#M974612</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 problem here is, it is a maintance view, so we cannot use select statement or read statement .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jul 2008 04:20:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-02T04:20:06Z</dc:date>
    <item>
      <title>Need Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076021#M974610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have some records in a internal table which has fields like country, start_date etc... I need to find a record in a view, where the country field in the view must be match to country fielld in the internal table record. if it the record is there in the view, i need to update remaining fields of the view. can we compare a internal table record with the record in the view. If so, Could you pls sugest me how to do..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shyam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 02:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076021#M974610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T02:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076022#M974611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Shyam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at internal_table into wa_area.&lt;/P&gt;&lt;P&gt;read table view_table with key wa_area-country_key.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;modify view_table from wa_area where wa_area-country_key.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try with this logic. It might help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 03:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076022#M974611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T03:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076023#M974612</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 problem here is, it is a maintance view, so we cannot use select statement or read statement .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 04:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076023#M974612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T04:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Need Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076024#M974613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, we can compare a internal table record with the record in the view. But we can not modify/insert record in the view.&lt;/P&gt;&lt;P&gt;Goto SE11 -&amp;gt; View -&amp;gt; Display -&amp;gt; Table/join conditions&lt;/P&gt;&lt;P&gt;There are one or more tables in block 'Tables'. May be you need update fields of those tables ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 05:42:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076024#M974613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T05:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need Logic</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076025#M974614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shyam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can directly maintain/upadate table using insert/modify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no need to update maintainance view.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 10:10:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-logic/m-p/4076025#M974614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T10:10:18Z</dc:date>
    </item>
  </channel>
</rss>

