<?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 Dialog programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712246#M1106858</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 need some of your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dynpro where i am typing value in one of  fields  then i need to concatenate this value with a consecutive number and  set the result in other field definied like output field, I want to make this action without press enter key. Some one knows some event to do this,   that is to say,  just a click ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Mar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Nov 2008 16:23:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-13T16:23:39Z</dc:date>
    <item>
      <title>Dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712246#M1106858</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 need some of your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a dynpro where i am typing value in one of  fields  then i need to concatenate this value with a consecutive number and  set the result in other field definied like output field, I want to make this action without press enter key. Some one knows some event to do this,   that is to say,  just a click ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Mar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2008 16:23:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712246#M1106858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-13T16:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712247#M1106859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do that with a module chain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2008 16:31:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712247#M1106859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-13T16:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712248#M1106860</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;as you want this without pressing enter , so try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like if you have input field as &amp;lt;field1&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the other is output field &amp;lt;field2&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use FM DYNP_VALUES_READ to read the contents of &amp;lt;field1&amp;gt; and then do the processing.&lt;/P&gt;&lt;P&gt;see the sample code:&lt;/P&gt;&lt;P&gt;____________________________________________________________________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:   i_dynpfields TYPE STANDARD TABLE OF dynpread, " Screen Values&lt;/P&gt;&lt;P&gt;  wa_dynpfields LIKE LINE OF i_dynpfields,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MOVE: &amp;lt;pass name of field1 in caps within quotes&amp;gt; TO wa_dynpfields-fieldname.&lt;/P&gt;&lt;P&gt;  APPEND wa_dynpfields TO i_dynpfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname               = sy-cprog&lt;/P&gt;&lt;P&gt;      dynumb               = sy-dynnr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields           = i_dynpfields&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;         ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE i_dynpfields INTO wa_dynpfields INDEX 1.&lt;/P&gt;&lt;P&gt; **here u will get the value on screen in  wa_dynpfields-fieldvalue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 08:17:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712248#M1106860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T08:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712249#M1106861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marisol,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the solutions mentioned above are OK but they all require on basic even to be trigerred for being successfull and i.e. PAI. &lt;/P&gt;&lt;P&gt;Do the following:&lt;/P&gt;&lt;P&gt;      Assign a command to your input field on the screen. (The command/ok code should be there in the attrbutes of the field on the screen).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when you enter any value in your input field and say you click any where on your screen outside the input field system will trigger the PAI. Now in the PAI you can write code to process the value of the input field and put that in the output field.&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;Prakash Pandey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 08:37:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712249#M1106861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T08:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712250#M1106862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I too have a similar problem!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 09:46:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/4712250#M1106862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T09:46:51Z</dc:date>
    </item>
  </channel>
</rss>

