<?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: help on screen fields input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838747#M923005</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  PUSHBUTTON 2(10) push  USER-COMMAND fcode ,&lt;/P&gt;&lt;P&gt;                  POSITION 16.&lt;/P&gt;&lt;P&gt;PARAMETERS: zint TYPE i, zval(20).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN:&lt;/P&gt;&lt;P&gt;                  END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;push = 'PUSH'.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'FCODE'.&lt;/P&gt;&lt;P&gt;  IF zint = 1.&lt;/P&gt;&lt;P&gt;zval = '1234'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward points if dis helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 May 2008 08:13:04 GMT</pubDate>
    <dc:creator>former_member188827</dc:creator>
    <dc:date>2008-05-12T08:13:04Z</dc:date>
    <item>
      <title>help on screen fields input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838743#M923001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am making a program where i have to use screen with 2 text input box,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to give int values to textbox1 and it should display the values into another text box when i click on button1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so can you help me how i can get input of the text box and display that result on another text box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;jagrut bharatkumar shukla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 07:32:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838743#M923001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T07:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: help on screen fields input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838744#M923002</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;&lt;/P&gt;&lt;P&gt;Use the Function  Module &lt;STRONG&gt;'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/STRONG&gt; to Achieve your Requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Check the following Sample Code&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : v_return LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_plant1 FOR &lt;/P&gt;&lt;P&gt;zaw_pol_plan-plant MODIF ID chg NO-EXTENSION NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_plant1-low .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT werks INTO TABLE i_t001w&lt;/P&gt;&lt;P&gt;FROM t001w.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'WERKS'&lt;/P&gt;&lt;P&gt;dynpprog = ws_repid&lt;/P&gt;&lt;P&gt;dynpnr = sy-dynnr&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = i_t001w&lt;/P&gt;&lt;P&gt;return_tab = v_return&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;parameter_error = 1&lt;/P&gt;&lt;P&gt;no_values_found = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO &lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_plant1-low = v_return-fieldval.&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;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 07:36:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838744#M923002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T07:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: help on screen fields input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838745#M923003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IN the PBO of screen give the input i mean default value to the first textinput.&lt;/P&gt;&lt;P&gt;and then while selecting the button right.&lt;/P&gt;&lt;P&gt;Hope you have given F-code to that push button after pressing that you need to display the value of first input field needs to get papulate in second one right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE THE CODE IN PAI of your screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'DISPL'   " YOUR FUNCTION CODE OF PUSH BUTTON&lt;/P&gt;&lt;P&gt;TEXT2 = TEXT1.&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;hope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 07:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838745#M923003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T07:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: help on screen fields input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838746#M923004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for your valuable reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but still i need without any itab or table ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to input manually and what are the attributes  helps us to change the input text values or text of text field&lt;/P&gt;&lt;P&gt;thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;jagrut bharatkuamar shukla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 07:59:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838746#M923004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T07:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: help on screen fields input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838747#M923005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  PUSHBUTTON 2(10) push  USER-COMMAND fcode ,&lt;/P&gt;&lt;P&gt;                  POSITION 16.&lt;/P&gt;&lt;P&gt;PARAMETERS: zint TYPE i, zval(20).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN:&lt;/P&gt;&lt;P&gt;                  END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;push = 'PUSH'.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;if sy-ucomm = 'FCODE'.&lt;/P&gt;&lt;P&gt;  IF zint = 1.&lt;/P&gt;&lt;P&gt;zval = '1234'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz reward points if dis helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 08:13:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-screen-fields-input/m-p/3838747#M923005</guid>
      <dc:creator>former_member188827</dc:creator>
      <dc:date>2008-05-12T08:13:04Z</dc:date>
    </item>
  </channel>
</rss>

