<?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 selection-screen adjusting the parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-adjusting-the-parameters/m-p/1497912#M230962</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my report I have my selection screen as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
selection-screen begin of block B1 with frame title text-d01.
selection-screen SKIP 3.
parameters : p_lifnr    type lifnr.
parameters : p_kunnr    type kunnr.
parameters : p_count(2) type n.
selection-screen SKIP 3.
selection-screen end of block B1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to move the three parameters little bit towards right (center) of the screen so that it looks something like below in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
           Vendor             _________
           Customer           _________
           Count              _________
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 27 Aug 2006 17:39:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-27T17:39:31Z</dc:date>
    <item>
      <title>selection-screen adjusting the parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-adjusting-the-parameters/m-p/1497912#M230962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my report I have my selection screen as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
selection-screen begin of block B1 with frame title text-d01.
selection-screen SKIP 3.
parameters : p_lifnr    type lifnr.
parameters : p_kunnr    type kunnr.
parameters : p_count(2) type n.
selection-screen SKIP 3.
selection-screen end of block B1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to move the three parameters little bit towards right (center) of the screen so that it looks something like below in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
           Vendor             _________
           Customer           _________
           Count              _________
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Aug 2006 17:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-adjusting-the-parameters/m-p/1497912#M230962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-27T17:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen adjusting the parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-adjusting-the-parameters/m-p/1497913#M230963</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 can use Position option of Selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN COMMENT 10(20) TEXT-001&lt;/P&gt;&lt;P&gt;                   FOR FIELD PARM.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN POSITION POS_LOW.&lt;/P&gt;&lt;P&gt;  PARAMETERS PARM LIKE SAPLANE-PLANETYPE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code displays a 20-byte long comment followed by the parameter at the normal position ( POS_LOW ) on the same line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Aug 2006 17:45:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-adjusting-the-parameters/m-p/1497913#M230963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-27T17:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen adjusting the parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-adjusting-the-parameters/m-p/1497914#M230964</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;selection-screen begin of block B1 with frame title text-d01.&lt;/P&gt;&lt;P&gt;selection-screen SKIP 3.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 10.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 11(10) text-001. "Vendor&lt;/P&gt;&lt;P&gt;parameters : p_lifnr    type lifnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 10.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 11(10) text-002. "Customer&lt;/P&gt;&lt;P&gt;parameters : p_kunnr    type kunnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION 10.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 11(10) text-003. "Count&lt;/P&gt;&lt;P&gt;parameters : p_count(2) type n.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen SKIP 3.&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;Adjust the position according to your screen.&lt;/P&gt;&lt;P&gt;Also create the text elements..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Aug 2006 17:55:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-adjusting-the-parameters/m-p/1497914#M230964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-27T17:55:32Z</dc:date>
    </item>
  </channel>
</rss>

