<?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: How to do dynamic selection for fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323394#M166157</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;Use this tip to make a dynamic table copy from a production system to a test system. The solution consists of two programs -- a function-module named z_bcsag_tablecopy_remote and a report named zbcsag_tablecopy. In the report you can specify the name of the table to be copied and the destination, which is used to get the connection to the productive system. In order to get it to work on your system, you first have to create the two programs in your test system. &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------" /&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;This addition is allowed only for report-specific SELECT-OPTIONS which refer to a field f belonging to a table dbtab of the logical database. Here, the selections entered by the user are not passed directly to the logical database unless the logical database supports dynamic selections for dbtab (if dynamic selections for dbtab are not supported, the addition has no effect. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This addition can be useful if you only want the selections entered by the user for this SELECT-OPTION to be effective under certain conditions. However, you should be careful when using it: Since the selections have to be checked with CHECK after the records have been read, this has a considerable effect on performance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 14&lt;/P&gt;&lt;P&gt;... VALUE-REQUEST &lt;/P&gt;&lt;P&gt;Addition 15&lt;/P&gt;&lt;P&gt;... VALUE-REQUEST FOR LOW/HIGH &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;This addition is allowed only for database-specific SELECT-OPTIONS in the include program DBxyzSEL (where xyz = logical database name). It allows you to implement self-programmed value help. (To implement self-programmed value help for report-specific SELECT-OPTIONS , you can use the event key word AT SELECTION-SCREEN ON VALUE-REQUEST FOR ... .) If you specify only VALUE-REQUEST (without FOR ... ), the value help refers to both input/output fields of the SELECT-OPTION (i.e. to sel-LOW and sel-HIGH). Otherwise, it refers only to the specified field. The addition has two effects: &lt;/P&gt;&lt;P&gt;The affected input/output fields are displayed on the selection screen with the pushbutton for F4 (possible entries). &lt;/P&gt;&lt;P&gt;When the user presses this button or F4 , this triggers the FORM routine sel-LOW_VAL or sel-HIGH_VAL in the database access program SAPDBxyz (if it exists). If this addition is specified - and even if the SELECT-OPTION with FOR points to a Dictionary field - this FORM routine is executed when the user presses F4 and the check table or the fixed values of the Dictionary field are not displayed. You can, for example, branch from the routine sel-LOW_VAL or sel-HIGH_VAL to a function module which offers a selection list of possible values. At the end of this FORM routine, the contents of the field sel-LOW or sel-HIGH are copied to the appropriate input/output field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INCLUDE DBXYZSEL&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_PTYPE FOR SAPLANE-PLANETYPE VALUE-REQUEST FOR LOW.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT SAPDBXYZ DEFINING DATABASE XYZ.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;TABLES SAPLANE.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;FORM S_PTYPE-LOW_VAL.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;  CALL FUNCTION '...'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 16&lt;/P&gt;&lt;P&gt;... HELP-REQUEST &lt;/P&gt;&lt;P&gt;Addition 17&lt;/P&gt;&lt;P&gt;... HELP-REQUEST FOR LOW/HIGH &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;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 May 2006 03:47:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-23T03:47:58Z</dc:date>
    <item>
      <title>How to do dynamic selection for fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323393#M166156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you please help me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am adding the custom fields to the standard trasactions CJI3, CJI4, CJI5 for dispalying the line items. For this I am using COOMEP01 CO-OM: Information system -&amp;gt; line item reports enhancement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am displaying the custom fileds for line items.&lt;/P&gt;&lt;P&gt;The problem is...In all three t.codes I am having dynamic selection icon. user wants, selection is based on my custom fields...How to get my custom fileds on the selection screen?&lt;/P&gt;&lt;P&gt;Please assist me as soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2006 00:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323393#M166156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-23T00:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to do dynamic selection for fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323394#M166157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;Use this tip to make a dynamic table copy from a production system to a test system. The solution consists of two programs -- a function-module named z_bcsag_tablecopy_remote and a report named zbcsag_tablecopy. In the report you can specify the name of the table to be copied and the destination, which is used to get the connection to the productive system. In order to get it to work on your system, you first have to create the two programs in your test system. &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------" /&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;This addition is allowed only for report-specific SELECT-OPTIONS which refer to a field f belonging to a table dbtab of the logical database. Here, the selections entered by the user are not passed directly to the logical database unless the logical database supports dynamic selections for dbtab (if dynamic selections for dbtab are not supported, the addition has no effect. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This addition can be useful if you only want the selections entered by the user for this SELECT-OPTION to be effective under certain conditions. However, you should be careful when using it: Since the selections have to be checked with CHECK after the records have been read, this has a considerable effect on performance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 14&lt;/P&gt;&lt;P&gt;... VALUE-REQUEST &lt;/P&gt;&lt;P&gt;Addition 15&lt;/P&gt;&lt;P&gt;... VALUE-REQUEST FOR LOW/HIGH &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;This addition is allowed only for database-specific SELECT-OPTIONS in the include program DBxyzSEL (where xyz = logical database name). It allows you to implement self-programmed value help. (To implement self-programmed value help for report-specific SELECT-OPTIONS , you can use the event key word AT SELECTION-SCREEN ON VALUE-REQUEST FOR ... .) If you specify only VALUE-REQUEST (without FOR ... ), the value help refers to both input/output fields of the SELECT-OPTION (i.e. to sel-LOW and sel-HIGH). Otherwise, it refers only to the specified field. The addition has two effects: &lt;/P&gt;&lt;P&gt;The affected input/output fields are displayed on the selection screen with the pushbutton for F4 (possible entries). &lt;/P&gt;&lt;P&gt;When the user presses this button or F4 , this triggers the FORM routine sel-LOW_VAL or sel-HIGH_VAL in the database access program SAPDBxyz (if it exists). If this addition is specified - and even if the SELECT-OPTION with FOR points to a Dictionary field - this FORM routine is executed when the user presses F4 and the check table or the fixed values of the Dictionary field are not displayed. You can, for example, branch from the routine sel-LOW_VAL or sel-HIGH_VAL to a function module which offers a selection list of possible values. At the end of this FORM routine, the contents of the field sel-LOW or sel-HIGH are copied to the appropriate input/output field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INCLUDE DBXYZSEL&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_PTYPE FOR SAPLANE-PLANETYPE VALUE-REQUEST FOR LOW.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT SAPDBXYZ DEFINING DATABASE XYZ.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;TABLES SAPLANE.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;FORM S_PTYPE-LOW_VAL.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;  CALL FUNCTION '...'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 16&lt;/P&gt;&lt;P&gt;... HELP-REQUEST &lt;/P&gt;&lt;P&gt;Addition 17&lt;/P&gt;&lt;P&gt;... HELP-REQUEST FOR LOW/HIGH &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;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2006 03:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323394#M166157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-23T03:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to do dynamic selection for fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323395#M166158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai reddy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This example shows how different transactions codes can be used to produce different selection options for the same program. The example allows for lookups on Sales Order number, Purchase Order Number, Delivery Number or Invoice number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--- SELECTION OPTIONS -&lt;/P&gt;&lt;HR originaltext="--------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK SO WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN,"Sales order number   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               S_VBELND FOR LIKP-VBELN,"Delivery number     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               S_VBELNI FOR VBRK-VBELN,"Invoice number      &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               S_VBELNP FOR VBKD-BSTKD."PO number           &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK SO.                            &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--- EVENT AT SCREEN OUTPUT -&lt;/P&gt;&lt;HR originaltext="------------------------------" /&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;  CASE SY-TCODE.                                                  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'ZEDI6'.                                                 &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;        CASE SCREEN-GROUP4.                                       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '001'.                  "Sales order select        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '1'.       "1=Active, 0=Don't display &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '002'.                  "Delivery select           &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '003'.                  "Invoice select            &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '004'.                  "PO Select                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDCASE.                                                  &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;    WHEN 'ZEDI6D'.                     "Delivery select            &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;        CASE SCREEN-GROUP4.                                        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '001'.                  "Sales order select         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '002'.                  "Delivery select             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '1'.       "1=Active, 0=Don't display  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '003'.                  "Invoice select             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '004'.                  "PO Select                  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDCASE.                                                   &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;    WHEN 'ZEDI6I'.                     "Invoice select                   &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;        CASE SCREEN-GROUP4.                                             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '001'.                  "Sales order select              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '002'.                  "Delivery select                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '003'.                  "Invoice select                  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '1'.       "1=Active, 0=Don't display       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '004'.                  "PO Select                       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                               &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDCASE.                                                        &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;    WHEN 'ZEDI6P'.                     "PO select                   &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;        CASE SCREEN-GROUP4.                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '001'.                  "Sales order select          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '002'.                  "Delivery select             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                           &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '003'.                  "Invoice select              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '0'.       "1=Active, 0=Don't display   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          WHEN '004'.                  "PO Select                   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            SCREEN-ACTIVE = '1'.       "1=Active, 0=Don't display   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MODIFY SCREEN.                                          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ENDCASE.                                                     &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;  ENDCASE.                                                         &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 May 2006 05:19:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323395#M166158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-23T05:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to do dynamic selection for fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323396#M166159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are there any issues with modifying structure prps2_inc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,  I have created a Z* search help for &lt;/P&gt;&lt;P&gt;PRPS-USR00.  I then add this seach help to prps2_inc.  I am prompted to register the object.  Any risks to this "core mod"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2006 16:25:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323396#M166159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-18T16:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to do dynamic selection for fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323397#M166160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are there any issues with modifying structure prps2_inc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,  I have created a Z* search help for &lt;/P&gt;&lt;P&gt;PRPS-USR00.  I then add this seach help to prps2_inc.  I am prompted to register the object.  Any risks to this "core mod"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Sep 2006 16:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323397#M166160</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-18T16:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to do dynamic selection for fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323398#M166161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to build a actual line item report the look and feel of the report should be same as CJI3 but it should display the data from the ztables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As CJi3 uses PSJ logical database. I need drilldown functionality as well not to material document but to finance documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I need to modify the existinng report if so what is best way to understand where make changes (I am new to FICO), or I need to create my own report program from 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do I need to copy and modify the PSJ logical database. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be greately appriciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 17:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-dynamic-selection-for-fields/m-p/1323398#M166161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T17:46:21Z</dc:date>
    </item>
  </channel>
</rss>

