<?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: Code meaning in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832985#M663216</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;ur select statement fetches data from dtabaser table marc into internal table table ITAB_MAT_MARC with fields as MATNR WERKS MATGR PRCTR based on a condition &lt;/P&gt;&lt;P&gt;i.e&lt;/P&gt;&lt;P&gt;the values which u gave in internal table ITAB_ALL_MAT[ for any field this is some thing similar to join based on the values of internal table in ITAB_ALL_MAT , the records from marc are fetched for u with input values].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;condition part:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRCTR = ITAB_ALL_MAT-PRCTR AND&lt;/P&gt;&lt;P&gt;werks = itab_all_mat-werks AND&lt;/P&gt;&lt;P&gt;MATGR &amp;lt;&amp;gt; ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Oct 2007 08:53:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-01T08:53:36Z</dc:date>
    <item>
      <title>Code meaning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832982#M663213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im BW-Consultant. Can anyone tell me the meaning of the below code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SELECT MATNR WERKS MATGR PRCTR&lt;/P&gt;&lt;P&gt;       INTO CORRESPONDING FIELDS OF TABLE ITAB_MAT_MARC FROM MARC&lt;/P&gt;&lt;P&gt;           FOR ALL ENTRIES IN ITAB_ALL_MAT&lt;/P&gt;&lt;P&gt;          WHERE PRCTR = ITAB_ALL_MAT-PRCTR AND&lt;/P&gt;&lt;P&gt;                werks = itab_all_mat-werks AND&lt;/P&gt;&lt;P&gt;                MATGR &amp;lt;&amp;gt; ' '.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will assing the points&lt;/P&gt;&lt;P&gt;kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 08:32:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832982#M663213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T08:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Code meaning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832983#M663214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey its simple..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code fetches the feilds MATNR WERKS MATGR PRCTR from table MARC for every entry from another internal table ITAB_ALL_MAT in the internal table &lt;/P&gt;&lt;P&gt;ITAB_MAT_MARC with the conditions on MARC table as PRCTR = ITAB_ALL_MAT-PRCTR AND&lt;/P&gt;&lt;P&gt;werks = itab_all_mat-werks AND&lt;/P&gt;&lt;P&gt;MATGR &amp;lt;&amp;gt; ' '.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 08:35:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832983#M663214</guid>
      <dc:creator>abdulazeez12</dc:creator>
      <dc:date>2007-10-01T08:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Code meaning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832984#M663215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select fields  MATNR WERKS MATGR PRCTR&lt;/P&gt;&lt;P&gt;From database table MARC&lt;/P&gt;&lt;P&gt;into internal table ITAB_MAT_MARC (but this table may have more field so select fields and place into internal table with same field name)&lt;/P&gt;&lt;P&gt;Before placing Check ITAB_ALL_MAT&lt;/P&gt;&lt;P&gt;                              internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;such that from MARC table&lt;/P&gt;&lt;P&gt;            value of  PRCTR should be present in ITAB_ALL_MAT with field name PRCTR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; value of  WERKS should be present in ITAB_ALL_MAT with field name WERKS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt; value of  MATGR should&amp;lt;b&amp;gt; not&amp;lt;/b&amp;gt; be blank (no data)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if useful..............&lt;/P&gt;&lt;P&gt;Minal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 08:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832984#M663215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T08:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: Code meaning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832985#M663216</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;ur select statement fetches data from dtabaser table marc into internal table table ITAB_MAT_MARC with fields as MATNR WERKS MATGR PRCTR based on a condition &lt;/P&gt;&lt;P&gt;i.e&lt;/P&gt;&lt;P&gt;the values which u gave in internal table ITAB_ALL_MAT[ for any field this is some thing similar to join based on the values of internal table in ITAB_ALL_MAT , the records from marc are fetched for u with input values].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;condition part:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRCTR = ITAB_ALL_MAT-PRCTR AND&lt;/P&gt;&lt;P&gt;werks = itab_all_mat-werks AND&lt;/P&gt;&lt;P&gt;MATGR &amp;lt;&amp;gt; ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 08:53:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-meaning/m-p/2832985#M663216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T08:53:36Z</dc:date>
    </item>
  </channel>
</rss>

