<?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: screen automatically updated in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-automatically-updated/m-p/1802645#M344540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETERS : CID TYPE ZCUSTOMERMASTER-CUSTOMERID,&lt;/P&gt;&lt;P&gt;                          PLID TYPE ZPOLICYTRANS-POLICYID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON CID.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE POLICYID INTO POLICY FROM ZCUSTOMERPLANDET WHERE&lt;/P&gt;&lt;P&gt;CUSTOMERID = CID.&lt;/P&gt;&lt;P&gt;  PLID = POLICY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if u enter the value in CID and click enter automatically PLID get filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF u r using dialog program use functioncode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give a fcode for the i/o text field.&lt;/P&gt;&lt;P&gt;In module user command write like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'fcode'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE POLICYID INTO POLICY FROM ZCUSTOMERPLANDET WHERE&lt;/P&gt;&lt;P&gt;CUSTOMERID = CID.&lt;/P&gt;&lt;P&gt;  PLID = POLICY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Dec 2006 10:29:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-07T10:29:50Z</dc:date>
    <item>
      <title>screen automatically updated</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-automatically-updated/m-p/1802643#M344538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i m having one screen which is having three I/O BOX. now when i m putting some data in first I/O box,the other two I/O box shows data automatically from database without pressing any button.&lt;/P&gt;&lt;P&gt;How can i do this......plz give me sample code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 10:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-automatically-updated/m-p/1802643#M344538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T10:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: screen automatically updated</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-automatically-updated/m-p/1802644#M344539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;parameters: vbeln like vbrk-vbeln modif id INV,&lt;/P&gt;&lt;P&gt;            date like vbrk-fkdat modif id DAT.&lt;/P&gt;&lt;P&gt;data: flag type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'INV'.&lt;/P&gt;&lt;P&gt;   if vbeln is not initial.&lt;/P&gt;&lt;P&gt;    flag = 'C'.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt;elseif screen-group1 = 'DAT'.&lt;/P&gt;&lt;P&gt;  if flag = 'C'.&lt;/P&gt;&lt;P&gt;  select single fkdat from vbrk into date&lt;/P&gt;&lt;P&gt;     where vbeln = vbeln.&lt;/P&gt;&lt;P&gt;     clear flag.&lt;/P&gt;&lt;P&gt;   modify screen.&lt;/P&gt;&lt;P&gt;   exit.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 10:22:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-automatically-updated/m-p/1802644#M344539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T10:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: screen automatically updated</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-automatically-updated/m-p/1802645#M344540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETERS : CID TYPE ZCUSTOMERMASTER-CUSTOMERID,&lt;/P&gt;&lt;P&gt;                          PLID TYPE ZPOLICYTRANS-POLICYID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON CID.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE POLICYID INTO POLICY FROM ZCUSTOMERPLANDET WHERE&lt;/P&gt;&lt;P&gt;CUSTOMERID = CID.&lt;/P&gt;&lt;P&gt;  PLID = POLICY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if u enter the value in CID and click enter automatically PLID get filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF u r using dialog program use functioncode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give a fcode for the i/o text field.&lt;/P&gt;&lt;P&gt;In module user command write like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'fcode'.&lt;/P&gt;&lt;P&gt;SELECT SINGLE POLICYID INTO POLICY FROM ZCUSTOMERPLANDET WHERE&lt;/P&gt;&lt;P&gt;CUSTOMERID = CID.&lt;/P&gt;&lt;P&gt;  PLID = POLICY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 10:29:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-automatically-updated/m-p/1802645#M344540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T10:29:50Z</dc:date>
    </item>
  </channel>
</rss>

