<?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: Selection screen design in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018936#M960287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;And to be more clear about this go through it,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;LOOP AT SCREEN [INTO wa]. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The statements LOOP AT SCREEN ... ENDLOOP define a loop around a statement block. For every screen element of the current dynpro, to which a dynpro field is assigned, one loop pass is executed. After the LOOP statement either the predefined workarea screen or the workarea wa (when using INTO) contains the properties of the respective screen element. wa must have the same data type as screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While processing a table control or a step loop (that is, within a LOOP loop of the dynpro flow logic), for its screen elements the current properties are determined in the current row or group. Outside of the processing of a table control or step loop, for its screen elements the statically predefined properties of all rows or groups are determined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table below shows the components of screen and their assignment to the field properties in the dynpro. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Component Length Type Attribute Description &lt;/P&gt;&lt;P&gt;name 132 c Name Name &lt;/P&gt;&lt;P&gt;group1 3 c Group1 Modification group &lt;/P&gt;&lt;P&gt;group2 3 c Group2 Modification group &lt;/P&gt;&lt;P&gt;group3 3 c Group3 Modification group &lt;/P&gt;&lt;P&gt;group4 3 c Group4 Modification group &lt;/P&gt;&lt;P&gt;required 1 c Required-entry field Mandatory field &lt;/P&gt;&lt;P&gt;input 1 c Input input-enabled field &lt;/P&gt;&lt;P&gt;output 1 c Output display field &lt;/P&gt;&lt;P&gt;intensified 1 c Intensified intensified field &lt;/P&gt;&lt;P&gt;invisible 1 c Invisible invisible element &lt;/P&gt;&lt;P&gt;length 1 x visLength Field length &lt;/P&gt;&lt;P&gt;active 1 c Input/Output/Invisible active field &lt;/P&gt;&lt;P&gt;display_3d 1 c Two-dimensional Box &lt;/P&gt;&lt;P&gt;value_help 1 c Input help Input help key &lt;/P&gt;&lt;P&gt;request 1 c - Input exists &lt;/P&gt;&lt;P&gt;values_in_combo 1 c Dropdown listbox Value help exists &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The component name in the loop contains the name of the current dynpro field. The components group1 to group4 can contain three-character IDs, which were assigned to the current screen element in its definition. These IDs allow you to combine the screen elements in up to four different modification groups. In the statement block after LOOP AT SCREEN, these can be queried in logical expressions in order to process several elements in the same way. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other components of table screen represent the display properties of the current screen element. With the exception of length, they can contain 0 or 1, where 1 is "active" and 0 is "inactive". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Except active, all components of structure screen directly correspond to one attribute of the current screen element. The component active has no match in the attributes. If you change its content with MODIFY SCREEN, this affects the attributes Input, Output and Invisible and thus the components input, output and invisible of structure screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;As of release 6.20, structure screen is described by data type SCREEN in the ABAP Dictionary. With release 6.10, it was determined by type syscr_screen of type group SYSCR. Before release 6.10, it was created system-internally with a bound data type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement LOOP AT SCREEN behaves similarly to the statement LOOP in a loop on an internal table with header line, where instead of an internal table a system table is used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Murali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2008 05:58:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-19T05:58:42Z</dc:date>
    <item>
      <title>Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018934#M960285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        I need your valuable suggestions to understand about NO-DISPLAY addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In selection screen event I have declared a parameter as like below &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk2 WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_layout TYPE slis_vari NO-DISPLAY,&lt;/P&gt;&lt;P&gt;            p_matnr TYPE matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         So when we execute our program we can see only the p_matnr in the output selection screen, (p_layout will not be displayed due to the addition NO-DISPLAY). But I want to display the parameter p_layout In the output screen (with the addition NO-DISPLAY). &lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;         If we press F1 help on no-display, it is saying that using call-function we can display the parameter p_layout in the output display. i dont know which Function module can handle this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         If any one knows how to display the parameter p_layout in the output screen please give me the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: I am just trying whether it is possible or not. (calling some other screen or removing no-display we can solve this problem but i like to find out the the function module which can display the parameter p_layout ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Manikumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 05:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018934#M960285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T05:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018935#M960286</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;I think u have to use loop at screen statement screen is an itab which stores ur screen contents, and u can change the attributes of contents like IO field in your case .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and that field visible attribute has to set 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 05:55:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018935#M960286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T05:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018936#M960287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;And to be more clear about this go through it,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;LOOP AT SCREEN [INTO wa]. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;The statements LOOP AT SCREEN ... ENDLOOP define a loop around a statement block. For every screen element of the current dynpro, to which a dynpro field is assigned, one loop pass is executed. After the LOOP statement either the predefined workarea screen or the workarea wa (when using INTO) contains the properties of the respective screen element. wa must have the same data type as screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While processing a table control or a step loop (that is, within a LOOP loop of the dynpro flow logic), for its screen elements the current properties are determined in the current row or group. Outside of the processing of a table control or step loop, for its screen elements the statically predefined properties of all rows or groups are determined. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table below shows the components of screen and their assignment to the field properties in the dynpro. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Component Length Type Attribute Description &lt;/P&gt;&lt;P&gt;name 132 c Name Name &lt;/P&gt;&lt;P&gt;group1 3 c Group1 Modification group &lt;/P&gt;&lt;P&gt;group2 3 c Group2 Modification group &lt;/P&gt;&lt;P&gt;group3 3 c Group3 Modification group &lt;/P&gt;&lt;P&gt;group4 3 c Group4 Modification group &lt;/P&gt;&lt;P&gt;required 1 c Required-entry field Mandatory field &lt;/P&gt;&lt;P&gt;input 1 c Input input-enabled field &lt;/P&gt;&lt;P&gt;output 1 c Output display field &lt;/P&gt;&lt;P&gt;intensified 1 c Intensified intensified field &lt;/P&gt;&lt;P&gt;invisible 1 c Invisible invisible element &lt;/P&gt;&lt;P&gt;length 1 x visLength Field length &lt;/P&gt;&lt;P&gt;active 1 c Input/Output/Invisible active field &lt;/P&gt;&lt;P&gt;display_3d 1 c Two-dimensional Box &lt;/P&gt;&lt;P&gt;value_help 1 c Input help Input help key &lt;/P&gt;&lt;P&gt;request 1 c - Input exists &lt;/P&gt;&lt;P&gt;values_in_combo 1 c Dropdown listbox Value help exists &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The component name in the loop contains the name of the current dynpro field. The components group1 to group4 can contain three-character IDs, which were assigned to the current screen element in its definition. These IDs allow you to combine the screen elements in up to four different modification groups. In the statement block after LOOP AT SCREEN, these can be queried in logical expressions in order to process several elements in the same way. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other components of table screen represent the display properties of the current screen element. With the exception of length, they can contain 0 or 1, where 1 is "active" and 0 is "inactive". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Except active, all components of structure screen directly correspond to one attribute of the current screen element. The component active has no match in the attributes. If you change its content with MODIFY SCREEN, this affects the attributes Input, Output and Invisible and thus the components input, output and invisible of structure screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;As of release 6.20, structure screen is described by data type SCREEN in the ABAP Dictionary. With release 6.10, it was determined by type syscr_screen of type group SYSCR. Before release 6.10, it was created system-internally with a bound data type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement LOOP AT SCREEN behaves similarly to the statement LOOP in a loop on an internal table with header line, where instead of an internal table a system table is used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Murali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 05:58:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018936#M960287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T05:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018937#M960288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just use loop at screen and check in the IF statement if it is your no display parameter , just make it active as belo .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME EQ PARAMETER.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;modify Screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 06:00:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018937#M960288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T06:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen design</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018938#M960289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manikumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/dba6aa35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/dba6aa35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hiding Input Fields&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;To suppress the display of the input field on the selection screen, you use the following syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS p ...... NO-DISPLAY ......&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although parameter p is declared, it is not displayed on the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the parameter belongs to the standard selection screen, you can assign a value to it either by using the DEFAULT addition when you declare it, or during the INITIALIZATION event. If you call the executable program using the SUBMIT statement, the calling program can also pass the value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you use user-defined selection screens, you can assign a value to the parameter at any time before calling the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to display a parameter only in certain cases, for example, depending on the values entered by the user in other input fields of the selection screen, you cannot use the NO-DISPLAY addition. If you use NO-DISPLAY, the parameter actually is an element of the interface for program calls, but not an element of the selection screen. As a result, you cannot make it visible using the MODIFY SCREEN statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To hide a parameter that is an element of the selection screen, you must declare it without the NO-DISPLAY addition and suppress its display using the MODIFY SCREEN statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 06:00:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-design/m-p/4018938#M960289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T06:00:01Z</dc:date>
    </item>
  </channel>
</rss>

