<?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 Exclude one field from Logical Database's dynamic selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692368#M1102912</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to amend a program to exclude the document number field (bsik-belnr) from the dynamic selection-screen of the logical database KDF(Vendor Database) so that the program will not filter according to the document number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have use the below syntax in my zprogram.&lt;/P&gt;&lt;P&gt;  selection-screen exclude select-options: doc-no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I get syntax error "The addition EXCLUDE is only allowed in INCLUDE DBKDFSEL".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Fung&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Nov 2008 07:59:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-07T07:59:55Z</dc:date>
    <item>
      <title>Exclude one field from Logical Database's dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692368#M1102912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement to amend a program to exclude the document number field (bsik-belnr) from the dynamic selection-screen of the logical database KDF(Vendor Database) so that the program will not filter according to the document number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have use the below syntax in my zprogram.&lt;/P&gt;&lt;P&gt;  selection-screen exclude select-options: doc-no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I get syntax error "The addition EXCLUDE is only allowed in INCLUDE DBKDFSEL".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Fung&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 07:59:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692368#M1102912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T07:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude one field from Logical Database's dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692369#M1102913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fung,&lt;/P&gt;&lt;P&gt;You need to use the Statement EXCLUDE in the below manner. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF VERSION vers text. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN EXCLUDE {PARAMETERS para} &lt;/P&gt;&lt;P&gt;                       | {SELECT-OPTIONS selcrit} &lt;/P&gt;&lt;P&gt;                       | {RADIOBUTTON GROUPS radi} &lt;/P&gt;&lt;P&gt;                       | {BLOCKS block} &lt;/P&gt;&lt;P&gt;                       | {IDS id}. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF VERSION vers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These statements define a version vers of the standard selection screen for the logical database.&lt;/P&gt;&lt;P&gt;You must specify a positive figure a maximum of three characters in length for vers, and for text,&lt;/P&gt;&lt;P&gt;a text symbol from the database program in the form text-###, where ### represents the three-character&lt;/P&gt;&lt;P&gt;ID of the text symbol. You can only make SELECTION-SCREEN statements that have EXCLUDE additions, and these only within the first and last statements. &lt;/P&gt;&lt;P&gt;I think you are getting that error because you have not done it this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 08:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692369#M1102913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T08:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude one field from Logical Database's dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692370#M1102914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, can u advice step by step how can I locate the selection screen version from the logical database? How can I know the doc-no field is from which version? In this Include program DBKDFSEL(for Logical DB KDF), I find part of code as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of version 900 text-900.&lt;/P&gt;&lt;P&gt;  selection-screen exclude select-options: kd_augdt.&lt;/P&gt;&lt;P&gt;selection-screen end   of version 900.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this is not the field that I want to exclude. I need to exclude bsik-belnr field from the dynamic selection screen. Where can I find the selection technical name for this document number field(bsik-belnr)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Fung&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 09:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692370#M1102914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T09:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude one field from Logical Database's dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692371#M1102915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The selection part of the logical database defines input fields for selecting data.&lt;/P&gt;&lt;P&gt;          The runtime environment displays these on the selection screen when you run an executable program linked to the logical database.&lt;/P&gt;&lt;P&gt;          Include called DB&amp;lt;ldbname&amp;gt;SEL.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SELECTION-SCREEN BEGIN OF VERSION ver TEXT-xxx.&lt;/P&gt;&lt;P&gt;                                                                SELECTION-SCREEN EXCLUDE ... .&lt;/P&gt;&lt;P&gt;                                                                .......................&lt;/P&gt;&lt;P&gt;                                                SELECTION-SCREEN END OF VERSION ver.&lt;/P&gt;&lt;P&gt; Defines a selection screen version (with a three-character name ver ). Between BEGIN OF VERSION and END OF VERSION , you can exclude selection screen objects for the version ver , i.e. remove them from the selection screen with SELECTION-SCREEN EXCLUDE.&lt;/P&gt;&lt;P&gt;          SELECTION-SCREEN DYNAMIC SELECTIONS FOR TABLE dbtab&lt;/P&gt;&lt;P&gt;If one of these tables is active in the report (i.e. it is declared under TABLES or lies somewhere on the path from the root of the database hierarchy to a table declared with TABLES ), a pushbutton called 'Dynamic selections' appears on the selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 09:29:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exclude-one-field-from-logical-database-s-dynamic-selection-screen/m-p/4692371#M1102915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T09:29:57Z</dc:date>
    </item>
  </channel>
</rss>

