<?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: Selection Screen type-ahead search in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666404#M2016038</link>
    <description>&lt;P&gt;I guess you have searched for answers and blog posts in the forum, and you have found an existing search help for material, so please tell us where you're stuck?&lt;/P&gt;</description>
    <pubDate>Tue, 25 Apr 2023 18:13:02 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2023-04-25T18:13:02Z</dc:date>
    <item>
      <title>Selection Screen type-ahead search</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666403#M2016037</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
  &lt;P&gt;I have one requirement that in selection screen I have three field batch material and plant in a tabular format and &lt;/P&gt;
  &lt;P&gt;Material Id will be displayed depending of batch, Material Id and description are automatically displayed. If batch value is empty then no material Id and description is displayed.&lt;/P&gt;
  &lt;P&gt;How I can achieve this functionality in module pool program?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 15:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666403#M2016037</guid>
      <dc:creator>former_member852009</dc:creator>
      <dc:date>2023-04-25T15:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen type-ahead search</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666404#M2016038</link>
      <description>&lt;P&gt;I guess you have searched for answers and blog posts in the forum, and you have found an existing search help for material, so please tell us where you're stuck?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 18:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666404#M2016038</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-25T18:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen type-ahead search</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666405#M2016039</link>
      <description>&lt;P&gt;I didn't find that much related on it . Actually without pressing enter or any action it will be display after entering batch number and plant&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 09:58:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666405#M2016039</guid>
      <dc:creator>former_member852009</dc:creator>
      <dc:date>2023-04-26T09:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen type-ahead search</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666406#M2016040</link>
      <description>&lt;P&gt;IF (and it's a big "if") your batch number is unique (SAP uses both number and material as batches' primary key), you can code something in the AT SELECTION-SCREEN OUTPUT event. Something like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen output.&lt;BR /&gt;if p_batch is not initial.&lt;BR /&gt;  select single matnr&lt;BR /&gt;    from mcha&lt;BR /&gt;    where charg =  @p_batch&lt;BR /&gt;    into  @p_material.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Work your way from this hint.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 07:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666406#M2016040</guid>
      <dc:creator>VXLozano</dc:creator>
      <dc:date>2023-04-27T07:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen type-ahead search</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666407#M2016041</link>
      <description>&lt;P&gt;Many ways to do it. I created a Search Help and it's proposing. I don't get what issue you have in finding answers.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2162645-image.png" /&gt;&lt;/P&gt;&lt;P&gt;Google:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;selection screen search help site:blogs.sap.com&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2162646-image.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 17:19:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666407#M2016041</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-27T17:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen type-ahead search</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666408#M2016042</link>
      <description>&lt;P&gt;Thank you for your valuable input. Actually It's not the same. My requirement I have table control in selection screen where three column is there like batch, plant, material. there in batch section If I give batch number then in material section material ID along with material description will be display.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 10:19:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666408#M2016042</guid>
      <dc:creator>former_member852009</dc:creator>
      <dc:date>2023-04-28T10:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen type-ahead search</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666409#M2016043</link>
      <description>&lt;P&gt;Material ID along with material description will be display depending upon batch.If we don't enter any batch then no material ID and description will be display.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 10:23:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666409#M2016043</guid>
      <dc:creator>former_member852009</dc:creator>
      <dc:date>2023-04-28T10:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen type-ahead search</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666410#M2016044</link>
      <description>&lt;P&gt;You are saying Table Control, so I guess you are talking about a General Screen, not about a Selection Screen. If you say Selection Screen, people will understand that you want to use statements like PARAMETERS or SELECT-OPTIONS to generate the screen dynamically.&lt;/P&gt;&lt;P&gt;You'd better share a screenshot to clarify.&lt;/P&gt;&lt;P&gt;Also, "type-ahead" makes think that you wanted to use the "Type-Ahead Search" feature, but in the end I guess your question is about how to display the material/description in a Dynpro screen right after typing the batch number BUT without pressing Enter or a function key.&lt;/P&gt;&lt;P&gt;It's not possible in Dynpro but you can achieve it via the ALV Grid control by using the delay event.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 17:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-type-ahead-search/m-p/12666410#M2016044</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-28T17:59:15Z</dc:date>
    </item>
  </channel>
</rss>

