<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713875#M894030</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best URL for learning SAP concepts is help.sap.com.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use that. There u can search for the Selection screen concepts.&lt;/P&gt;&lt;P&gt; U'll get the entiree information for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can also use the following URL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abapprogramming.blogspot.com.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;Pavan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Apr 2008 05:34:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-24T05:34:17Z</dc:date>
    <item>
      <title>screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713872#M894027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frnds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I am new to ABAP&lt;/P&gt;&lt;P&gt;  I want to develop a report by calling different fields from different location , this i will do my using abap programming , but how to develop the screen . &lt;/P&gt;&lt;P&gt;Like for example if we go to transaction like xyz a screen gets opend and where we can give details like customer name, material number , date .... etc how to do this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to abap if any material or links available pls refer it to me . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 04:40:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713872#M894027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T04:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713873#M894028</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;you dont need to devlop any screen.&lt;/P&gt;&lt;P&gt;SAP dynamically generates a selection scree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the below example code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;PARAMETERS :&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For Company Code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            pa_mpc  LIKE t001k-bukrs OBLIGATORY,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For Reporting Date&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            pa_date TYPE dats OBLIGATORY DEFAULT sy-datum,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For Reporting Time&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            pa_time TYPE tims DEFAULT sy-uzeit.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For Dealer&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            so_dl   FOR vlcvehicle-kunnr,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For Commission Number&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            so_cn   FOR vlcvehicle-zz_commnos,&lt;/P&gt;&lt;P&gt;*For Billing Document Number&lt;/P&gt;&lt;P&gt;            so_bill FOR vlcinvoice-vbeln,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For Credit check status&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            so_crst FOR /dceur/z_crstext-cr_check.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&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;Anand Lokineni,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it is useful.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 04:45:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713873#M894028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T04:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713874#M894029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  Thanks for ur reply, can u send me a small sample programme of calling fields from other location and preparing a report just to learn , and also if possible any links or materail where i can get sample coding or learn more about abap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 04:50:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713874#M894029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T04:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713875#M894030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best URL for learning SAP concepts is help.sap.com.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use that. There u can search for the Selection screen concepts.&lt;/P&gt;&lt;P&gt; U'll get the entiree information for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can also use the following URL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;abapprogramming.blogspot.com.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;Pavan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 05:34:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713875#M894030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-24T05:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713876#M894031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_infile LIKE dxfields-longpath LOWER CASE.&lt;/P&gt;&lt;P&gt;parameters : p_r1 RADIOBUTTON GROUP group default 'X',&lt;/P&gt;&lt;P&gt;p_r2 RADIOBUTTON GROUP group .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to fetch data seelct statement can be used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ex &lt;/P&gt;&lt;P&gt;    SELECT objid begda endda FROM hrp1271 INTO TABLE it_begda_1271 WHERE objid = it_survey-object_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it_begda_1271  is an internal table in which data be stored.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reward points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2008 07:49:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen/m-p/3713876#M894031</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2008-04-24T07:49:33Z</dc:date>
    </item>
  </channel>
</rss>

