<?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: dialog problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422814#M202821</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please do the following :-&lt;/P&gt;&lt;P&gt;In PAI of screen '500'(MODULE USER_COMMAND_0500 INPUT)&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;    when 'EXE'.&lt;/P&gt;&lt;P&gt;      get the values from DB .&lt;/P&gt;&lt;P&gt;      store it in a local var.&lt;/P&gt;&lt;P&gt;      leave to screen 600.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;In the PBO event of screen '600'(MODULE USER_COMMAND_0600 OUTPUT)  &lt;/P&gt;&lt;P&gt;Assign the values stored in the local variables to corresponding screen field belonging to screen '600'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve your problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anirban.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Jul 2006 12:18:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-06T12:18:21Z</dc:date>
    <item>
      <title>dialog problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422809#M202816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one query regarding dialog prog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two normal screen 500 &amp;amp; 600. In screen 500(input screen) i entered the customer no. Now i wanted to know when i press execute button i wanted to go to screen 600 &amp;amp; it will display the same customer no as in screen 500 &amp;amp; customer's land.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anybody will tell me how to do it??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 10:31:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422809#M202816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T10:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: dialog problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422810#M202817</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;  To navigate from scr 500 to 600, you need to write LEAVE TO SCREEN 600 in PAI of 500, the logic to retrieve the Customer land from the customer number ( Select query ) also to be written in PAI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI - 500,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE LAND1 &lt;/P&gt;&lt;P&gt;  FROM KNA1&lt;/P&gt;&lt;P&gt;  WHERE KUNNR = P_KUNNR ( Screen customer ),&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    leave to screen 600.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 10:36:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422810#M202817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T10:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: dialog problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422811#M202818</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;1. &lt;/P&gt;&lt;P&gt;in PAI of cren 500 MODULE USER_COMMAND_0500 INPUT&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'EXE'.&lt;/P&gt;&lt;P&gt;get the values from DB .&lt;/P&gt;&lt;P&gt;store it in a local var.&lt;/P&gt;&lt;P&gt;assign it to screen fields of screen 600 in PBO MODULE STATUS_0600 OUTPUT&lt;/P&gt;&lt;P&gt;call screen 600.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sumit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: sumit kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 10:36:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422811#M202818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T10:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: dialog problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422812#M202819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Give the same name to the customer number fields on both the screens.&lt;/P&gt;&lt;P&gt;When the user enters the value in screen 500, the same value will be retained by that variable and you can see the same in screen 600 if the field name is the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 10:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422812#M202819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T10:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: dialog problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422813#M202820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. In the PBO of screen 500, copy the value of Customer Number field in a global field before going ot screen 600.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN PAI of screen 600, populate this value on your customer number field. Extract Land Info from Customer Master Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PBO_screen_500.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'EXIT'.&lt;/P&gt;&lt;P&gt;  g_cust_no = customer_no.&lt;/P&gt;&lt;P&gt;  leave to screen 600.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI_screen_600.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single land1 from kna1&lt;/P&gt;&lt;P&gt;                     where kunnr eq g_cust_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customer_no = g_cust_no.&lt;/P&gt;&lt;P&gt;country = kna1-land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(assuming customer_no and country are the rspective field names for cust no and country on screen 600.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 10:39:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422813#M202820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T10:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: dialog problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422814#M202821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please do the following :-&lt;/P&gt;&lt;P&gt;In PAI of screen '500'(MODULE USER_COMMAND_0500 INPUT)&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;    when 'EXE'.&lt;/P&gt;&lt;P&gt;      get the values from DB .&lt;/P&gt;&lt;P&gt;      store it in a local var.&lt;/P&gt;&lt;P&gt;      leave to screen 600.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;In the PBO event of screen '600'(MODULE USER_COMMAND_0600 OUTPUT)  &lt;/P&gt;&lt;P&gt;Assign the values stored in the local variables to corresponding screen field belonging to screen '600'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve your problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anirban.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jul 2006 12:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-problem/m-p/1422814#M202821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-06T12:18:21Z</dc:date>
    </item>
  </channel>
</rss>

