<?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: Can I filter functional locations by using a view, or open sql? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919098#M1963694</link>
    <description>&lt;P&gt;may I ask above sql is open sql or native sql? the syntax of open SQL shouldnt be:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; table.field&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;table~field&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i dont think your sql run. it should be:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM zapmflocs
UP TO 50000 ROWS
INTO CORRESPONDING FIELDS OF TABLE &amp;lt;fs_result&amp;gt;
WHERE objnr NOT IN ( SELECT f~objnr FROM zapmflocs AS f LEFT OUTER JOIN jest AS j ON f~objnr = j~objnr
                     WHERE j~stat = 'I0076' AND j~inact &amp;lt;&amp;gt; 'X' )&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 31 May 2019 00:33:59 GMT</pubDate>
    <dc:creator>DoanManhQuynh</dc:creator>
    <dc:date>2019-05-31T00:33:59Z</dc:date>
    <item>
      <title>Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919095#M1963691</link>
      <description>&lt;P&gt;I have a view that I am using that contains fields on IFLOT, ILOA, and IFLOTX.&lt;/P&gt;
  &lt;P&gt;The view is called ZAPMFLOCS.&lt;/P&gt;
  &lt;P&gt;I want to be able to exclude functional locations with the deletion flag set.&lt;/P&gt;
  &lt;P&gt;I was able to figure out the SQL to exclude records.&lt;/P&gt;
  &lt;P&gt;This is my code without variables substituted.&lt;/P&gt;
  &lt;P&gt;SELECT (selectpart) FROM (lv_from) UP TO lv_rowcount ROWS INTO CORRESPONDING FIELDS OF TABLE &amp;lt;fs_result&amp;gt; WHERE (wherepart_modified). &lt;/P&gt;
  &lt;P&gt;This is what it would look like with the substitutions:&lt;/P&gt;
  &lt;P&gt;SELECT * FROM ZAPMFLOCS UP TO 50000 ROWS INTO CORRESPONDING FIELDS OF TABLE &amp;lt;fs_result&amp;gt; WHERE &lt;STRONG&gt;OBJNR not in ( select f.OBJNR from ZAPMFLOCS f left outer join JEST j on f.OBJNR = j.OBJNR where j.STAT = 'I0076' and j.INACT &amp;lt;&amp;gt; 'X' )&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;But this fails, I'm guessing my where clause is too complicated to use with open sql.&lt;BR /&gt;&lt;/P&gt;
  &lt;P&gt;I'm wondering if there is a way to either alter the view or the code to be able to exclude functional locations with the deletion flag set?&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://answers.sap.com/storage/temp/1691628-sql-error.jpg"&gt;sql-error.jpg&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 18:54:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919095#M1963691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-05-29T18:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919096#M1963692</link>
      <description>&lt;P&gt;Depending on your ABAP version, there may be different restrictions.&lt;/P&gt;&lt;P&gt;So first, make sure the substituted SELECT is valid at compile time and at run time.&lt;/P&gt;&lt;P&gt;If it doesn't work, you may also try to switch to the strict mode syntax, because it may accept more complex SQL (adding @ and change order of blocks):&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT (selectpart) FROM (lv_from)
WHERE (wherepart_modified)
INTO CORRESPONDING FIELDS OF TABLE @&amp;lt;fs_result&amp;gt;
UP TO @lv_rowcount ROWS.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 May 2019 06:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919096#M1963692</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-05-30T06:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919097#M1963693</link>
      <description>&lt;P&gt;Thanks Sandra!&lt;/P&gt;&lt;P&gt;I'm getting:&lt;BR /&gt;@LV_ROWCOUNT may not be converted into a number. number.&lt;/P&gt;&lt;P&gt;It is declared as:&lt;/P&gt;&lt;P&gt;lv_rowcount TYPE i.&lt;/P&gt;&lt;P&gt;Am I missing something?&lt;/P&gt;&lt;P&gt;Looking at the up to documentation:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abapselect_up_to_offset.htm"&gt;&lt;/A&gt;&lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abapselect_up_to_offset.htm" target="test_blank"&gt;https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abapselect_up_to_offset.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The addition UP TO limits the number of rows in the results set of a SELECT statement to n. n expects a host variable prefixed by an escape character @, a host expression or literal of type i that can represent all non-negative numbers from the value range of i except its maximum value +2,147,483,647. In the strict mode from Release 7.51, n must have the types b, s, i, or int8. Furthermore, a literal or constant specified for n cannot have the value 0 in this strict mode. The content of n must match the data type i in accordance with the rules for a lossless assignment. A host variable should be prefixed by the escape character @.&lt;/P&gt;&lt;P&gt;Our system has "SAP_BASIS" = "740" maybe that means we don't have the required stuff for strict mode in ABAP?&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 11:35:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919097#M1963693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-05-30T11:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919098#M1963694</link>
      <description>&lt;P&gt;may I ask above sql is open sql or native sql? the syntax of open SQL shouldnt be:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; table.field&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;table~field&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i dont think your sql run. it should be:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM zapmflocs
UP TO 50000 ROWS
INTO CORRESPONDING FIELDS OF TABLE &amp;lt;fs_result&amp;gt;
WHERE objnr NOT IN ( SELECT f~objnr FROM zapmflocs AS f LEFT OUTER JOIN jest AS j ON f~objnr = j~objnr
                     WHERE j~stat = 'I0076' AND j~inact &amp;lt;&amp;gt; 'X' )&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2019 00:33:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919098#M1963694</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-05-31T00:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919099#M1963695</link>
      <description>&lt;P&gt;As I said, &lt;STRONG&gt;first, make sure the substituted SELECT is valid at compile time and at run time&lt;/STRONG&gt;. Unfortunately, you probably didn't do it, cf &lt;A href="https://answers.sap.com/users/36313/quynhdoanmanh.html"&gt;Quynh Doan Manh&lt;/A&gt; answer.&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 05:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919099#M1963695</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-05-31T05:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919100#M1963696</link>
      <description>&lt;P&gt;The &lt;A href="https://help.sap.com/http.svc/rc/abapdocu_753_index_htm/7.53/en-US/index.htm?file=abenopensql_strict_modes.htm"&gt;strict mode&lt;/A&gt; is valid from 7.40 SP 2.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" The syntax of this program is valid in 7.52, and it works at runtime too.


DATA: selectpart         TYPE string VALUE '*',
      lv_from            TYPE string VALUE 'SCARR',
      lv_rowcount        TYPE i,
      wherepart_modified TYPE string,
      fs_result          TYPE TABLE OF scarr.


" if strict mode is NOT used, it's NOT possible to have a JOIN in the nested SELECT
SELECT * FROM scarr UP TO lv_rowcount ROWS
  INTO CORRESPONDING FIELDS OF TABLE fs_result
  WHERE carrid NOT IN ( SELECT carrid FROM scarr ).


" if strict mode is used, it's possible to have a JOIN in the nested SELECT
SELECT * FROM scarr UP TO @lv_rowcount ROWS
  INTO CORRESPONDING FIELDS OF TABLE @fs_result
  WHERE carrid NOT IN ( SELECT f~carrid FROM scarr AS f LEFT OUTER JOIN spfli 
        AS j ON f~carrid = j~carrid WHERE j~airpfrom = 'JFK' ).


" the dynamic variant works at runtime only if the strict mode is used
wherepart_modified = |carrid not in ( select f~carrid from scarr as f left outer |
                  &amp;amp;&amp;amp; |join spfli as j on f~carrid = j~carrid where j~airpfrom = 'JFK' )|.
SELECT (selectpart) FROM (lv_from)
  UP TO @lv_rowcount ROWS
  INTO CORRESPONDING FIELDS OF TABLE @fs_result
  WHERE (wherepart_modified).&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2019 06:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919100#M1963696</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-05-31T06:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919101#M1963697</link>
      <description>&lt;P&gt;Great answer!  I still have a compile problem.  I didn't think changing the wherepart would affect the compile problem but I did it anyway.  Still have the compile problem, but good to know how to fix the wherepart.&lt;/P&gt;&lt;P&gt;I decided to try to run your program as-is, since I couldn't figure out my compile problems.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;With your program I get:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;"@LV_ROWCOUNT" may not be converted into a number. number.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I tried changing to:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;lv_rowcount        TYPE i VALUE 50000,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;But I still got:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;"@LV_ROWCOUNT" may not be converted into a number. number.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;So I tried hardcoding:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM scarr UP TO 50000 ROWS&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;And then I got:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;No fields from the right-hand table of a LEFT OUTER JOIN may appear in&lt;/P&gt;&lt;P&gt;the WHERE condition: "J~AIRPFROM".&lt;/P&gt;&lt;P&gt;On Installed Software Component Versions I see:&lt;/P&gt;&lt;P&gt;SAP_BASIS&lt;BR /&gt;Release 740&lt;/P&gt;&lt;P&gt;SP-Level 0004&lt;/P&gt;&lt;P&gt;Is that the correct place to be looking?&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 11:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919101#M1963697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-05-31T11:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919102#M1963698</link>
      <description>&lt;P&gt;I guess it's just because J~AIRPFROM would be better in the ON because it's an outer join: "on f~carrid = j~carrid and j~airpfrom ='JFK'" (WHERE not used)&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 12:05:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919102#M1963698</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-05-31T12:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919103#M1963699</link>
      <description>&lt;P&gt;Did your code run for you?&lt;BR /&gt;&lt;BR /&gt;I tried altering to use as you did with (WHERE not used)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT * FROM scarr UP TO 50000 ROWS
  INTO CORRESPONDING FIELDS OF TABLE @fs_result
  WHERE carrid NOT IN ( SELECT f~carrid FROM scarr AS f LEFT OUTER JOIN spfli 
        AS j ON f~carrid = j~carrid AND j~airpfrom = 'JFK' ).
&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And got:&lt;/P&gt;&lt;P&gt;The field "@FS_RESULT" is unknown, but there is a field with the&lt;/P&gt;&lt;P&gt;similar name "FS_RESULT". "FS_RESULT".&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 12:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919103#M1963699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-05-31T12:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919104#M1963700</link>
      <description>&lt;P&gt;Here is the complete code listing for the ABAP program with your code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  Z_FLOC_OPEN_SQL_TEST
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*


REPORT Z_FLOC_OPEN_SQL_TEST.

*DATA: T_TABLE TYPE TABLE OF ZAPM_TYP_ZSZAPMFLOCS.
*
*SELECT * FROM zapmflocs
*UP TO 50000 ROWS
*INTO CORRESPONDING FIELDS OF TABLE @T_TABLE
*WHERE objnr NOT IN ( SELECT f~objnr FROM zapmflocs AS f LEFT OUTER JOIN jest AS j ON f~objnr = j~objnr
*                     WHERE j~stat = 'I0076' AND j~inact &amp;lt;&amp;gt; 'X' ).

DATA: selectpart         TYPE string VALUE '*',
      lv_from            TYPE string VALUE 'SCARR',
      lv_rowcount        TYPE i VALUE 50000,
      wherepart_modified TYPE string,
      fs_result          TYPE TABLE OF scarr.

" if strict mode is NOT used, it's NOT possible to have a JOIN in the nested SELECT
SELECT * FROM scarr UP TO lv_rowcount ROWS
  INTO CORRESPONDING FIELDS OF TABLE fs_result
  WHERE carrid NOT IN ( SELECT carrid FROM scarr ).

" if strict mode is used, it's possible to have a JOIN in the nested SELECT
SELECT * FROM scarr UP TO 50000 ROWS
  INTO CORRESPONDING FIELDS OF TABLE @fs_result
  WHERE carrid NOT IN ( SELECT f~carrid FROM scarr AS f LEFT OUTER JOIN spfli 
        AS j ON f~carrid = j~carrid AND j~airpfrom = 'JFK' ).

" the dynamic variant works at runtime only if the strict mode is used
wherepart_modified = |carrid not in ( select f~carrid from scarr as f left outer |
                  &amp;amp;&amp;amp; |join spfli as j on f~carrid = j~carrid where j~airpfrom = 'JFK' )|.
SELECT (selectpart) FROM (lv_from)
  UP TO @lv_rowcount ROWS
  INTO CORRESPONDING FIELDS OF TABLE @fs_result
  WHERE (wherepart_modified).
&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2019 12:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919104#M1963700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-05-31T12:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919105#M1963701</link>
      <description>&lt;P&gt;Yes it works for ABAP 7.52. But the order I used is a little bit incorrect. Maybe only the correct order is accepted in 7.40 (INTO and UP TO at the end):&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT (selectpart) 
  FROM (lv_from)
  WHERE (wherepart_modified)
  INTO CORRESPONDING FIELDS OF TABLE @fs_result
  UP TO @lv_rowcount ROWS.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2019 12:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919105#M1963701</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-05-31T12:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919106#M1963702</link>
      <description>&lt;P&gt;That one gives me:&lt;/P&gt;&lt;P&gt;Couldn't find Error Message: E SELECT 473 because the system is running&lt;BR /&gt;with the database objects from release 740. The system has not&lt;BR /&gt;completely upgraded to release 742.&lt;/P&gt;&lt;P&gt;p.s Thanks so much for all of your help!&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 13:16:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919106#M1963702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-05-31T13:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919107#M1963703</link>
      <description>&lt;P&gt;Unfortunately, it seems impossible to work well with your version. It seems that you need to upgrade the kernel, at least. Or you have to find a workaround by yourself (try all possible ways until something works...)&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 13:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919107#M1963703</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-05-31T13:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can I filter functional locations by using a view, or open sql?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919108#M1963704</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/users/36076/derek.morin.html"&gt;Derek Morin &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;U&gt;&lt;/U&gt;&lt;SUB&gt;&lt;/SUB&gt;&lt;SUP&gt;&lt;/SUP&gt;&lt;DEL&gt;&lt;/DEL&gt;for your information, my system is 7.4 SP 14 and your code work for me.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2019 00:28:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/can-i-filter-functional-locations-by-using-a-view-or-open-sql/m-p/11919108#M1963704</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-06-03T00:28:11Z</dc:date>
    </item>
  </channel>
</rss>

