<?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: Regarding views in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100451#M437823</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anji&lt;/P&gt;&lt;P&gt;   Thanks for your reply.&lt;/P&gt;&lt;P&gt;What are the changes you did for this select statement.&lt;/P&gt;&lt;P&gt;Because i am not able to find any changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Apr 2007 05:51:16 GMT</pubDate>
    <dc:creator>sreeramkumar_madisetty</dc:creator>
    <dc:date>2007-04-10T05:51:16Z</dc:date>
    <item>
      <title>Regarding views</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100449#M437821</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;   I was developed a report and in that I am using the mara and makt tables.&lt;/P&gt;&lt;P&gt;Using the following I am fetching the data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a&lt;SUB&gt;matnr c&lt;/SUB&gt;werks b&lt;SUB&gt;maktx b&lt;/SUB&gt;spras&lt;/P&gt;&lt;P&gt;         a&lt;SUB&gt;matkl a&lt;/SUB&gt;mtart   a&lt;SUB&gt;meins   a&lt;/SUB&gt;ersda&lt;/P&gt;&lt;P&gt;  INTO TABLE i_mara&lt;/P&gt;&lt;P&gt;  FROM ( mara AS a INNER JOIN makt AS b&lt;/P&gt;&lt;P&gt;  ON a&lt;SUB&gt;matnr = b&lt;/SUB&gt;matnr )&lt;/P&gt;&lt;P&gt;  INNER JOIN marc AS c&lt;/P&gt;&lt;P&gt;  ON a&lt;SUB&gt;matnr = c&lt;/SUB&gt;matnr&lt;/P&gt;&lt;P&gt;  WHERE a~matnr IN s_matnr&lt;/P&gt;&lt;P&gt;  AND a~matkl IN s_matkl&lt;/P&gt;&lt;P&gt;  AND a~mtart IN s_mtart&lt;/P&gt;&lt;P&gt;  AND a~ersda IN s_ersda&lt;/P&gt;&lt;P&gt;  AND b~spras = 'EN'&lt;/P&gt;&lt;P&gt;  AND c~werks IN s_werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But Client is not happy with the above statement's execution time so I need to reduce the execution time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone help me that any Existed View is there for this purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's little bit urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 14:05:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100449#M437821</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-04-09T14:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding views</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100450#M437822</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 think, you have to limit the Material Type and Material Group with some restrictions on the selection screen. give No extensions.&lt;/P&gt;&lt;P&gt;little changes for the select statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a&lt;SUB&gt;matnr c&lt;/SUB&gt;werks b&lt;SUB&gt;maktx b&lt;/SUB&gt;spras&lt;/P&gt;&lt;P&gt;a&lt;SUB&gt;matkl a&lt;/SUB&gt;mtart a&lt;SUB&gt;meins a&lt;/SUB&gt;ersda&lt;/P&gt;&lt;P&gt;INTO TABLE i_mara&lt;/P&gt;&lt;P&gt;FROM ( mara AS a INNER JOIN marc AS c&lt;/P&gt;&lt;P&gt;ON a&lt;SUB&gt;matnr = c&lt;/SUB&gt;matnr )&lt;/P&gt;&lt;P&gt;INNER JOIN makt AS b&lt;/P&gt;&lt;P&gt;ON a&lt;SUB&gt;matnr = b&lt;/SUB&gt;matnr&lt;/P&gt;&lt;P&gt;WHERE a~matnr IN s_matnr&lt;/P&gt;&lt;P&gt;AND a~matkl IN s_matkl&lt;/P&gt;&lt;P&gt;AND a~mtart IN s_mtart&lt;/P&gt;&lt;P&gt;AND a~ersda IN s_ersda&lt;/P&gt;&lt;P&gt;AND c~werks IN s_werks&lt;/P&gt;&lt;P&gt;AND b~spras = 'EN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check this statement and restrict MTART and MATKL accordingly.&lt;/P&gt;&lt;P&gt;reward points if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ANJI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 14:11:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100450#M437822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T14:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding views</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100451#M437823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anji&lt;/P&gt;&lt;P&gt;   Thanks for your reply.&lt;/P&gt;&lt;P&gt;What are the changes you did for this select statement.&lt;/P&gt;&lt;P&gt;Because i am not able to find any changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 05:51:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100451#M437823</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-04-10T05:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding views</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100452#M437824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just observe the sequence of data fetching.&lt;/P&gt;&lt;P&gt;first join MARA and MARC then MAKT.&lt;/P&gt;&lt;P&gt;and in the where condition also changed the sequence of fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points for useful answers&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 05:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100452#M437824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T05:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding views</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100453#M437825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have also replied to your previous thread &lt;/P&gt;&lt;P&gt;just check&lt;/P&gt;&lt;P&gt;V_MATNR or&lt;/P&gt;&lt;P&gt;V_MATNR_HU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;views if they are satisfying that or not? have checked these?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 06:16:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100453#M437825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T06:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding views</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100454#M437826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  It's Answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 07:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-views/m-p/2100454#M437826</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-23T07:49:31Z</dc:date>
    </item>
  </channel>
</rss>

