<?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: To fetch data based on materials or company code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067604#M1969804</link>
    <description>&lt;P&gt;User Inner joins on tables mentioned, single SELECT will not work&lt;/P&gt;</description>
    <pubDate>Fri, 27 Sep 2019 03:46:23 GMT</pubDate>
    <dc:creator>Nag_05</dc:creator>
    <dc:date>2019-09-27T03:46:23Z</dc:date>
    <item>
      <title>To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067589#M1969789</link>
      <description>&lt;P&gt;I have kept materials and company code as parameters on selection screen.&lt;/P&gt;
  &lt;P&gt;Now I want to fetch data based on materials or company code.&lt;/P&gt;
  &lt;P&gt;If material is given on selection screen then that material should be displayed for all available company codes. &lt;/P&gt;
  &lt;P&gt;If company code is given then all materials under that company code should be displayed. &lt;/P&gt;
  &lt;P&gt;If both are given only that material and company code should be displayed. &lt;/P&gt;
  &lt;P&gt;Please guide me through this.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 03:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067589#M1969789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-09-24T03:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067590#M1969790</link>
      <description>&lt;P&gt;The tables readed is not the good one.&lt;/P&gt;&lt;P&gt;Plant --&amp;gt; T001W-WERKS  --&amp;gt; T001W-BWKEY --&amp;gt; T001k-BWKEY --&amp;gt; T001K-BUKRS &amp;lt;--  company code &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Plant + Material --&amp;gt; MARC-WERKS &amp;amp; MATNR&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 05:16:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067590#M1969790</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2019-09-24T05:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067591#M1969791</link>
      <description>&lt;P&gt;You Are right, i understood it other way.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 06:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067591#M1969791</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2019-09-24T06:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067592#M1969792</link>
      <description>&lt;P&gt;I find it over complex without a real reason, to be honest, and it lacks the information material - company code.&lt;/P&gt;&lt;P&gt;A simple join (T001K - T001W-MARC) will work better, cleaner, without the big IF chunk and would avoid the FOR ALL ENTRIES which can result into a longer execution time.&lt;/P&gt;&lt;P&gt;Plus you are considering only plant level, not sales organization, for instance.&lt;/P&gt;&lt;P&gt;The OP should explain better what he means with "for the company", but it's a simple join, nothing so hard: he just has to check the external keys of Material main tables and he'll be fine.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 11:20:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067592#M1969792</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2019-09-24T11:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067593#M1969793</link>
      <description>Well &lt;A href="https://answers.sap.com/users/1327/simonemilesi.html"&gt;Simone Milesi&lt;/A&gt;, Not always the requirements are real in nature. I think you did not went through the maintenance view V_T001K_ASSIGN, which is eventually getting data from the tables T001K - T001W etc. Moreover, regarding the IF chunk, which you mentioned above to set the narrative you find it difficult to understand, is mainly because of his question in the first place, i.e. in case he just gives the material on the selection screen, then material should be displayed for all available company codes. and getting data from MARC for either condition will require that clauses.In case you have a good solution, paste your code here rather than downvoting and demotivating the individuals. Cheers.</description>
      <pubDate>Tue, 24 Sep 2019 12:59:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067593#M1969793</guid>
      <dc:creator>mohit_dev</dc:creator>
      <dc:date>2019-09-24T12:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067594#M1969794</link>
      <description>&lt;P&gt;No, sorry, I perfectly understand both the FM and the IF, for this reason I'm saying a single JOIN will do the work, perfectly and accessing the DB less times than your solution.&lt;BR /&gt;I find odd and redundant to call a FM to read a view without filters and then filter the results &lt;EM&gt;after the selection&lt;/EM&gt; with a loop logically wrong: if in your select option for Company Code I use a partial search it with '*', &lt;STRONG&gt;it will not work at all&lt;/STRONG&gt;. Try it and tell me the result &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1731748-cc1.png" /&gt;&lt;/P&gt;&lt;P&gt;So, I am sorry if you find my remarks demotivating, I gave all the reasons 
for them, I exploited an error in your code and added the hints needed to complete such task in a better way, 
with less access to DB, less code lines, more cleaner way. And working.&lt;BR /&gt;Is this demotivating? Again, I'm sorry, I am just trying to help everyone to improve for the little I can.&lt;/P&gt;&lt;P&gt;But I'm not used to spoonfeed anyone: I prefer to give people the tools and then let them to use and try and find the solution because I think it's the best way to improve and, personally, I find it way more satisfactory finding myself the solution.&lt;BR /&gt;So, no, i'm sorry, I'll not post my code, &lt;EM&gt;but&lt;/EM&gt; if Akshay needs more hints I'll be happy to help and  if you want the code to compare, sure, add me here and i'll send the 20 lines via PM.&lt;BR /&gt;If i can suggest, try to change your solution to what I'm suggesting and do a performance comparison and you'll see the results.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 13:22:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067594#M1969794</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2019-09-24T13:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067595#M1969795</link>
      <description>&lt;P&gt;Development is a tipical kind of job where everybody learn something from someone (and a lot of time from begginer). &lt;/P&gt;&lt;P&gt;Mohit: Make a little test of your code with the value E EQ (something) in your company code select-option for example. &lt;/P&gt;&lt;P&gt;(Exclude Equal (value from your system) )&lt;/P&gt;&lt;P&gt;Simone: Several SELECT does not means several access to the database, especialy with the customizing table. (I do not say, I am agree with the code)&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 13:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067595#M1969795</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2019-09-24T13:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067596#M1969796</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;frdric.girod&lt;/SPAN&gt; but for all entries yes since it works in chunks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 13:33:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067596#M1969796</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2019-09-24T13:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067597#M1969797</link>
      <description>&lt;P&gt;Thanks &lt;A href="https://answers.sap.com/users/153394/frdricgirod.html"&gt;Frederic Girod&lt;/A&gt;, I agree with you that we do learn something from someone. &lt;/P&gt;&lt;P&gt;Regarding the code, I will check again. No offense.&lt;/P&gt;&lt;P&gt;Regarding the several SELECT statement of yours, I humbly request you to please see my code again. Those selects are in some condition and only one of them actually executes, based on some condition. &lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 13:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067597#M1969797</guid>
      <dc:creator>mohit_dev</dc:creator>
      <dc:date>2019-09-24T13:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067598#M1969798</link>
      <description>&lt;P&gt;It's false, sorry, the FM VIEW_GET_DATA access the db with a select otherwise it wouldn't able to extract the values, right?&lt;BR /&gt;Why did you use&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; LOOP AT s_bukrs.
    READ TABLE lt_view INTO ls_view WITH KEY bukrs = s_bukrs-low BINARY SEARCH.
    IF sy-subrc = 0.
      lv_index = sy-tabix.
      LOOP AT lt_view INTO ls_view FROM lv_index.
        IF ls_view-bukrs &amp;lt;&amp;gt; s_bukrs-low.
          EXIT.
        ELSE.
          APPEND ls_view TO lt_view_tmp.
        ENDIF.
      ENDLOOP.
    ENDIF.
  ENDLOOP.
ENDIF.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Instead of a simple&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DELETE lt_view WHERE bukrs NOT IN s_bukrs.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;if you really really really want to use that FM?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Which is the most readable option between the 2 in your opinion?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 13:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067598#M1969798</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2019-09-24T13:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067599#M1969799</link>
      <description>&lt;P&gt;the comment about the value  N EQ ...   is regarding these lines:&lt;/P&gt;&lt;P&gt;LOOPAT s_bukrs.&lt;/P&gt;&lt;P&gt;READ TABLE lt_view INTO ls_view WITHKEY bukrs = s_bukrs-low BINARYSEARCH.&lt;/P&gt;&lt;P&gt;You assume the user will only specify a list of expected values, but he could specify nothing, or everything except ...  or between value A &amp;amp; value B. &lt;/P&gt;&lt;P&gt;making a big inner join is not beautiful, but avoid playing with table &amp;amp; for all entries (always very dangerous &amp;amp; time consuming)&lt;/P&gt;&lt;P&gt;The remark concerning SELECT statement was not for you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but, if you want to check it, just make a sql trace on your code (ST05), not sure you will see all the select &lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 13:43:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067599#M1969799</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2019-09-24T13:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067600#M1969800</link>
      <description>&lt;P&gt;Since we are speaking about improving, I take this a step further: with your solution, you have to maintain 3 selects if in the future you need to add or remove a field, with the risk to forget a piece here and there. Is it a good design?&lt;/P&gt;&lt;P&gt;Yes, it's quite possible this isn't a &lt;EM&gt;real&lt;/EM&gt; requirement, but as I said, we are here to improve (I'm the first one opening questions when I do not know something), so let's think as this is productive code, so we do not fall in the bad habits &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 13:46:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067600#M1969800</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2019-09-24T13:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067601#M1969801</link>
      <description>&lt;P&gt;Akshay the tables are&lt;/P&gt;&lt;P&gt;field BUKRS --&amp;gt; table T001K --&amp;gt; field  BWKEY --&amp;gt; table T001W --&amp;gt; field WERKS --&amp;gt; table MARC --&amp;gt; field MATNR&lt;/P&gt;&lt;P&gt;but it is a point of view. because material is not directly linked to company code.&lt;/P&gt;&lt;P&gt;you need to choose by witch organiazational data you want to make the link   plant, com. org .... &lt;/P&gt;&lt;P&gt;(and please, don't remove answer, the objective is to help requestor, not to have the perfect answer)&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 13:50:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067601#M1969801</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2019-09-24T13:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067602#M1969802</link>
      <description>&lt;P&gt;How can I write a code for this ?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2019 02:20:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067602#M1969802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-09-27T02:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067603#M1969803</link>
      <description>&lt;P&gt;How can I write a code for this ?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2019 02:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067603#M1969803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-09-27T02:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067604#M1969804</link>
      <description>&lt;P&gt;User Inner joins on tables mentioned, single SELECT will not work&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2019 03:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067604#M1969804</guid>
      <dc:creator>Nag_05</dc:creator>
      <dc:date>2019-09-27T03:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067605#M1969805</link>
      <description>&lt;P&gt;Hi Akshay, You can use this code below;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: marc, t001k.
TYPES: 
BEGIN OF tt_bukrs,
  bukrs TYPE t001k-bukrs,
  END OF tt_bukrs,
BEGIN OF tt_matnr,
    matnr TYPE marc-matnr,
END OF tt_matnr.

DATA: lt_burks TYPE STANDARD TABLE OF tt_bukrs,
      lt_matnr TYPE STANDARD TABLE OF tt_matnr.


SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT (10) text-002 FOR FIELD p_mat.
SELECT-OPTIONS: p_mat FOR marc-matnr NO INTERVALS.
SELECTION-SCREEN COMMENT 50(15) text-003 FOR FIELD p_code.
SELECT-OPTIONS: p_code FOR t001k-bukrs NO INTERVALS.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b1.


START-OF-SELECTION.
IF p_matnr IS NOT INITIAL AND p_code IS INITIAL.
SELECT DISTINCT a~bukrs
      INTO TABLE lt_bukrs
      FROM t001k AS a
      INNER JOIN t001w AS b ON a~bwkey = b~bwkey
      INNER JOIN matnr AS c ON b~werks = c~werks
      WHERE c~matnr IN p_matnr.
ELSEIF p_code-low IS NOT INITIAL AND p_mat-low IS INITIAL.
SELECT a~matnr
      INTO TABLE lt_matnr
      FROM marc AS a
      INNER JOIN t001w AS b ON a~werks = b~werks
      INNER JOIN t001k AScON b~bwkey = c~bwkey
      WHERE c~bukrs IN p_code.
ELSEIF p_mat-low IS NOT INITIAL AND p_code-low IS NOT INITIAL.
"print both code and material into a table
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 09 Oct 2019 08:16:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067605#M1969805</guid>
      <dc:creator>former_member634045</dc:creator>
      <dc:date>2019-10-09T08:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067606#M1969806</link>
      <description>&lt;P&gt;You loose the advantage of using SELECT-OPTIONS instead of PARAMETER by trying to read LOW. It is really dangerous, take the example of the value  E EQ 12345678   for material, that means I want all the material but not the 12346578, what will be the result of your code ? &lt;/P&gt;&lt;P&gt;SELECT-OPTIONS --&amp;gt; IN operator   so only one SELECT statement&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 08:22:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067606#M1969806</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2019-10-09T08:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067607#M1969807</link>
      <description>&lt;P&gt;Hi Frederic,&lt;/P&gt;&lt;P&gt;Can you please elaborate your question? It would be more helpful for me to answer your question.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 08:29:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067607#M1969807</guid>
      <dc:creator>former_member634045</dc:creator>
      <dc:date>2019-10-09T08:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: To fetch data based on materials or company code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067608#M1969808</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;frdric.girod&lt;/SPAN&gt;  As I understood if I write E EQ 12345678 then why it will fetch all the materials?&lt;/P&gt;&lt;P&gt; In select option statement we pass single or multiple value of a table. If I pass single value like 12345678 then it will fetch only particular value of this 12345678. Please point it out if my understanding is wrong.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 10:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-fetch-data-based-on-materials-or-company-code/m-p/12067608#M1969808</guid>
      <dc:creator>former_member634045</dc:creator>
      <dc:date>2019-10-09T10:04:46Z</dc:date>
    </item>
  </channel>
</rss>

