<?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 selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655347#M612281</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two fields on the selection screen. If the user fill the first field I have to write a logic to fill the second field..like if the user enter the kunnr i have to fill the name1...how can i do that....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Aug 2007 13:32:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-10T13:32:45Z</dc:date>
    <item>
      <title>selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655347#M612281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two fields on the selection screen. If the user fill the first field I have to write a logic to fill the second field..like if the user enter the kunnr i have to fill the name1...how can i do that....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 13:32:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655347#M612281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T13:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655348#M612282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Paramters: P_KUNNR type KUNNR,&lt;/P&gt;&lt;P&gt;                 P_name  like KNA1-Name1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;If not P_KUNNR is initial.&lt;/P&gt;&lt;P&gt;Select single name into P_NAME from KNA1 where kunnr = P_kunnr.&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 13:35:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655348#M612282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T13:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655349#M612283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ZTESTP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_first(10) type c,&lt;/P&gt;&lt;P&gt;             p_second(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_first is not initial.&lt;/P&gt;&lt;P&gt;p_second = 'second'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 13:39:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655349#M612283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T13:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655350#M612284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;take two parameters:&lt;/P&gt;&lt;P&gt;parameters:p_f1 type kna1-kunnr,&lt;/P&gt;&lt;P&gt;                 p_f2 type kna1-name1.&lt;/P&gt;&lt;P&gt;data:begin of it_kna1 occurs 0,&lt;/P&gt;&lt;P&gt;       name1 type kna1-name1,&lt;/P&gt;&lt;P&gt;       kunnr type kna1-kunnr,&lt;/P&gt;&lt;P&gt;end of it_kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not p_f1 is initial.&lt;/P&gt;&lt;P&gt;select name1 from kna1&lt;/P&gt;&lt;P&gt;      into table it_kna1 where kunnr = p_f1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2007 13:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/2655350#M612284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-10T13:41:57Z</dc:date>
    </item>
  </channel>
</rss>

