<?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: Value from Program to Selection screen using pushbutton on Selection Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996195#M1606195</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;Got your problem..  I think you are updating select options., the thing you missed is  &lt;STRONG&gt;append&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do like this.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_GTENT_N-low = V_GTENT_N.&lt;/P&gt;&lt;P&gt;append S_GTENT_N.&lt;/P&gt;&lt;P&gt;S_TR_CODE-low = V_TR_CODE.&lt;/P&gt;&lt;P&gt;append  S_TR_CODE&lt;/P&gt;&lt;P&gt;S_TRUCK_NO-low = V_TRUCK_NO.&lt;/P&gt;&lt;P&gt;append  S_TRUCK_N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps u.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Jun 2011 09:25:15 GMT</pubDate>
    <dc:creator>Kiran_Valluru</dc:creator>
    <dc:date>2011-06-04T09:25:15Z</dc:date>
    <item>
      <title>Value from Program to Selection screen using pushbutton on Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996192#M1606192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am creating a Selection screen for update some fields using selection screen. I have 6 fields on screen. First 3 Fields are mendaotry for fetching the data to dispay last 3 fields. I have create a push button for fetch the last 3 fields using first 3 fields.&lt;/P&gt;&lt;P&gt;So Plz guide me how to do that. I have used At Selection Screen with user command. but result is zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  IF sscrfields-ucomm = 'FETCH'.&lt;/P&gt;&lt;P&gt;      IF AGSLNO-LOw is NOT INITIAL.&lt;/P&gt;&lt;P&gt;          SELECT SINGLE A&lt;SUB&gt;GATE_ENTRY_NUM B&lt;/SUB&gt;TRANSPORTER_CODE  B~TRUCK_NO&lt;/P&gt;&lt;P&gt;                  INTO (V_GTENT_N, V_TR_CODE, V_TRUCK_NO)&lt;/P&gt;&lt;P&gt;                  FROM ZGATEOUT AS A&lt;/P&gt;&lt;P&gt;            INNER JOIN ZGATE_IN AS B ON A&lt;SUB&gt;GATE_ENTRY_NUM = B&lt;/SUB&gt;GATE_ENTRY_NUM&lt;/P&gt;&lt;P&gt;                                 AND A&lt;SUB&gt;WERKS = B&lt;/SUB&gt;WERKS&lt;/P&gt;&lt;P&gt;                                 AND A&lt;SUB&gt;TRANSPORTER_CODE = B&lt;/SUB&gt;TRANSPORTER_CODE&lt;/P&gt;&lt;P&gt;            INNER JOIN ZTRPTR_REQ AS C ON A&lt;SUB&gt;WERKS = C&lt;/SUB&gt;WERKS&lt;/P&gt;&lt;P&gt;                                 AND A&lt;SUB&gt;TRANSPORTER_CODE = C&lt;/SUB&gt;TRANSPORTER_CODE&lt;/P&gt;&lt;P&gt;            WHERE C~AGSLNO = AGSLNO-LOW.&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_GTENT_N-low = V_GTENT_N.&lt;/P&gt;&lt;P&gt;          S_TR_CODE-low = V_TR_CODE.&lt;/P&gt;&lt;P&gt;          S_TRUCK_NO-low = V_TRUCK_NO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 08:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996192#M1606192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-04T08:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Value from Program to Selection screen using pushbutton on Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996193#M1606193</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;did you assigned user command to push button..!! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put a break point at  IF sscrfields-ucomm = 'FETCH'. and check whether at selection screen event is triggered or not. and check the ucomm value .  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this help  for reference: &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba81635c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba81635c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps u.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 08:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996193#M1606193</guid>
      <dc:creator>Kiran_Valluru</dc:creator>
      <dc:date>2011-06-04T08:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Value from Program to Selection screen using pushbutton on Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996194#M1606194</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;&lt;/P&gt;&lt;P&gt;I have checked , Values are coming from above query but doensnt display on Selection Screen and debug also after at selection screen , go to at selection screen output event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 09:12:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996194#M1606194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-04T09:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Value from Program to Selection screen using pushbutton on Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996195#M1606195</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;Got your problem..  I think you are updating select options., the thing you missed is  &lt;STRONG&gt;append&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do like this.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_GTENT_N-low = V_GTENT_N.&lt;/P&gt;&lt;P&gt;append S_GTENT_N.&lt;/P&gt;&lt;P&gt;S_TR_CODE-low = V_TR_CODE.&lt;/P&gt;&lt;P&gt;append  S_TR_CODE&lt;/P&gt;&lt;P&gt;S_TRUCK_NO-low = V_TRUCK_NO.&lt;/P&gt;&lt;P&gt;append  S_TRUCK_N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps u.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 09:25:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996195#M1606195</guid>
      <dc:creator>Kiran_Valluru</dc:creator>
      <dc:date>2011-06-04T09:25:15Z</dc:date>
    </item>
    <item>
      <title>Re: Value from Program to Selection screen using pushbutton on Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996196#M1606196</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks dude. Really .Problem  has been resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2011 09:34:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-from-program-to-selection-screen-using-pushbutton-on-selection-screen/m-p/7996196#M1606196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-04T09:34:43Z</dc:date>
    </item>
  </channel>
</rss>

