<?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 input field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633030#M282379</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all&lt;/P&gt;&lt;P&gt;help me in this issue&lt;/P&gt;&lt;P&gt;in the selection screen two input parameters currency and text are there when the user enters these fields these should be update in ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Oct 2006 09:02:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-19T09:02:31Z</dc:date>
    <item>
      <title>input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633030#M282379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all&lt;/P&gt;&lt;P&gt;help me in this issue&lt;/P&gt;&lt;P&gt;in the selection screen two input parameters currency and text are there when the user enters these fields these should be update in ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 09:02:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633030#M282379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T09:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633031#M282380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;move these parameters into corresponding fields of ZTABLE and use MODIFY ZTABLE .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 09:03:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633031#M282380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T09:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633032#M282381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kiran,&lt;/P&gt;&lt;P&gt; If i have understood your question correctly ..&lt;/P&gt;&lt;P&gt;do this way ..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if not ( p_curr is initial ) or 
       ( p_text is initial ).
 ztable-field = value. 
 modify ztable.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; REgards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 09:06:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633032#M282381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T09:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633033#M282382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;move these parameters into corresponding fields of ZTABLE work area and use MODIFY ZTABLE .&lt;/P&gt;&lt;P&gt;**use key fields also for modify/update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 09:06:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633033#M282382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T09:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633034#M282383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Execute below code. It will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table ztable into wa_ztable with key &amp;lt;key1&amp;gt; = &amp;lt;value1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;  if p_curr is not initial and p_text is not initial.&lt;/P&gt;&lt;P&gt;    wa_ztable-curr = p_curr.&lt;/P&gt;&lt;P&gt;    wa_ztable-text = p_text.&lt;/P&gt;&lt;P&gt;    modify ztable from wa_ztable.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="8" type="ul"&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure currency and text fields have proper formats.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have any further queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to mark helpful answers!&lt;/P&gt;&lt;P&gt;Gaurav Parmar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 09:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633034#M282383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T09:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633035#M282384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its simple ya select those two field value using the selet statement and update the data base table accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrytyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 09:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field/m-p/1633035#M282384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T09:29:07Z</dc:date>
    </item>
  </channel>
</rss>

