<?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 cascade search help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/cascade-search-help/m-p/11023522#M1898109</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; First of all sorry if my Question is stupid but i am new to SAP Abap. I want to have cascade search help.&lt;/P&gt;&lt;P&gt;say there are three select option A B C... C depends on B and B depends on A.&lt;/P&gt;&lt;P&gt;A to B&amp;nbsp; has many to many relation and B to C has also one to many relation.&lt;/P&gt;&lt;P&gt;if use enter value in A then relative value should be shown in search help for B and C.&lt;/P&gt;&lt;P&gt;but now if User directly enters value in B then search help for A and C should also show relative value(related to value entered&amp;nbsp; in B).&lt;/P&gt;&lt;P&gt;if user enters value in C then also A and B search help should have relative entry(related to value entered&amp;nbsp; in C).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so there is no specific order in which user enters number.&lt;/P&gt;&lt;P&gt;how to implement this?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Apr 2015 08:15:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-04-17T08:15:19Z</dc:date>
    <item>
      <title>cascade search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cascade-search-help/m-p/11023522#M1898109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; First of all sorry if my Question is stupid but i am new to SAP Abap. I want to have cascade search help.&lt;/P&gt;&lt;P&gt;say there are three select option A B C... C depends on B and B depends on A.&lt;/P&gt;&lt;P&gt;A to B&amp;nbsp; has many to many relation and B to C has also one to many relation.&lt;/P&gt;&lt;P&gt;if use enter value in A then relative value should be shown in search help for B and C.&lt;/P&gt;&lt;P&gt;but now if User directly enters value in B then search help for A and C should also show relative value(related to value entered&amp;nbsp; in B).&lt;/P&gt;&lt;P&gt;if user enters value in C then also A and B search help should have relative entry(related to value entered&amp;nbsp; in C).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so there is no specific order in which user enters number.&lt;/P&gt;&lt;P&gt;how to implement this?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2015 08:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cascade-search-help/m-p/11023522#M1898109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-17T08:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: cascade search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cascade-search-help/m-p/11023523#M1898110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Zubin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Design like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION SCREEN ON VALUE-REQUEST FOR so_a-low.&lt;/P&gt;&lt;P&gt;&amp;nbsp; select a from table1 into itab1.&lt;/P&gt;&lt;P&gt;&amp;nbsp; CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORTING&amp;nbsp;&amp;nbsp; itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;AT SELECTION SCREEN ON VALUE-REQUEST FOR so_b-low.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; select b from table2 into itab2 where a = s_a-low.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORTING&amp;nbsp;&amp;nbsp; itab2.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;AT SELECTION SCREEN ON VALUE-REQUEST FOR so_c-low.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; select c from table3 into itab3 where b = s_b-low.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORTING&amp;nbsp;&amp;nbsp; itab3.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;regards,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Archer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2015 08:45:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cascade-search-help/m-p/11023523#M1898110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-17T08:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: cascade search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/cascade-search-help/m-p/11023524#M1898111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@&lt;STRONG style="font-size: 11px; color: #333333;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="48087" data-externalid="" data-presence="null" data-userid="567390" data-username="dengyong.zhang" href="https://answers.sap.com/people/dengyong.zhang" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; text-decoration: underline !important; color: #3778c7;"&gt;Dengyong Zhang&lt;/A&gt;&lt;/STRONG&gt; : what if user wants to enter value in B first then enter values in C and then in A. in that case search help should be working. there is no specific order in which user enters the value.. is it possible to implement this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Apr 2015 10:59:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/cascade-search-help/m-p/11023524#M1898111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-25T10:59:43Z</dc:date>
    </item>
  </channel>
</rss>

