<?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 fetch code for input field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181610#M125927</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to retrieve the selected value from the input field on screen(module pool program) which is provided with a list down box.&lt;/P&gt;&lt;P&gt;In the fetch code of the input field i had given an id now how to validate it in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Feb 2006 08:53:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-28T08:53:11Z</dc:date>
    <item>
      <title>fetch code for input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181610#M125927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to retrieve the selected value from the input field on screen(module pool program) which is provided with a list down box.&lt;/P&gt;&lt;P&gt;In the fetch code of the input field i had given an id now how to validate it in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181610#M125927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: fetch code for input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181611#M125928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using &lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'id'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Eswar Kanakanti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181611#M125928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: fetch code for input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181612#M125929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praneeth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use case statement for validating the listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case id.&lt;/P&gt;&lt;P&gt;when '01'&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;when '02'&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:57:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181612#M125929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T08:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: fetch code for input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181613#M125930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this sample code.Similarly for validating in module pool,you have to code in PAI.&lt;/P&gt;&lt;P&gt;report z.&lt;/P&gt;&lt;P&gt;type-pools: vrm.&lt;/P&gt;&lt;P&gt;data: it_val type vrm_values,&lt;/P&gt;&lt;P&gt;      w_line like line of it_val.&lt;/P&gt;&lt;P&gt;parameters p_bukrs like t001-bukrs as listbox&lt;/P&gt;&lt;P&gt;           visible length 25 obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;  select bukrs butxt from t001 into (w_line-key, w_line-text).&lt;/P&gt;&lt;P&gt;    append w_line to it_val.&lt;/P&gt;&lt;P&gt;    check p_bukrs is initial.&lt;/P&gt;&lt;P&gt;    p_bukrs = w_line-key.&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;  call function 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            id     = 'P_BUKRS'&lt;/P&gt;&lt;P&gt;            values = it_val.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;  write: / 'Company Code:', p_bukrs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 08:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181613#M125930</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-02-28T08:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: fetch code for input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181614#M125931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi eswar!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Already i am using sy-ucomm for a button now how will the system validate between a input field and the button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2006 09:01:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetch-code-for-input-field/m-p/1181614#M125931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-28T09:01:20Z</dc:date>
    </item>
  </channel>
</rss>

