<?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: At user command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135900#M745112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;        simply write in PBO.&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;         if sy-ucomm = 'SAVE'.&lt;/P&gt;&lt;P&gt;           var2 = var1.&lt;/P&gt;&lt;P&gt;         endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Dec 2007 06:38:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-11T06:38:37Z</dc:date>
    <item>
      <title>At user command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135894#M745106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have two fields when enter some value in one field and press save button i should populate the other field also with the same value and display the whole screen again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where do i write this PBO or PAI please help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2007 02:55:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135894#M745106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-08T02:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: At user command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135895#M745107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can write this in the PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CASE OK_CODE.
  WHEN 'SAVE'. 
     FLD2 = FLD1.
ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Dec 2007 04:01:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135895#M745107</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-12-08T04:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: At user command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135896#M745108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am doing that but the value is not getting displayed on the screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 01:47:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135896#M745108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T01:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: At user command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135897#M745109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do an extended check on the module pool... and make sure the screen fields have the same name and format as global variables you have defined in you "top" include... the dynpro just acts as a window into your global memory, so if you fill the fields correctly then they should display OK... a break-point in PBO and one in PAI will confirm this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 03:45:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135897#M745109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T03:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: At user command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135898#M745110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Actaully the problem is before displaying the screen it executes PBO, and here the field2 value will be refresh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN PBO module.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;temp_var = field1. " you have to define a variale temp_var.&lt;/P&gt;&lt;P&gt;When others.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN PBO module.&lt;/P&gt;&lt;P&gt;If temp_var = ' '.&lt;/P&gt;&lt;P&gt;field2 = temp_var.&lt;/P&gt;&lt;P&gt;clear temp_var.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 13:43:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135898#M745110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T13:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: At user command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135899#M745111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Write the code in the PAI but be sure that the screen or fields are not getting  &lt;/P&gt;&lt;P&gt;   refreshed in the PBO because if the screen or fields are getting the refreshed in &lt;/P&gt;&lt;P&gt;   the  PBO then even though you populate the field in the PAI but after PAI when  &lt;/P&gt;&lt;P&gt;   the processing goes to PBO the value will get refreshed. So if you have the logic&lt;/P&gt;&lt;P&gt;  of clearing data in the PBO you should built the logic such that the clearing part &lt;/P&gt;&lt;P&gt;  is not triggered if SAVE button is clicked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Reward points if this resolves ur query&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Dec 2007 15:02:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135899#M745111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-10T15:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: At user command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135900#M745112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;        simply write in PBO.&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;         if sy-ucomm = 'SAVE'.&lt;/P&gt;&lt;P&gt;           var2 = var1.&lt;/P&gt;&lt;P&gt;         endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 06:38:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135900#M745112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T06:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: At user command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135901#M745113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;         AND ALSO MAKE SURE,YOU ARE CALLING THIS PBO MODULE IN SCREEN FLOW!!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 06:44:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-user-command/m-p/3135901#M745113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T06:44:04Z</dc:date>
    </item>
  </channel>
</rss>

