<?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 Submit program with dynamic selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123234#M109477</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  In APO I am facing an issue with submiting the program /sapapo/rlcdelete. I have a radio button Category which when clicked opens up a select option where the low parameter needs to be populated with value 'AG'. This is not possible with the submit program option. Is there any solution for this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aveek Ghose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Feb 2006 11:32:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-07T11:32:16Z</dc:date>
    <item>
      <title>Submit program with dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123234#M109477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  In APO I am facing an issue with submiting the program /sapapo/rlcdelete. I have a radio button Category which when clicked opens up a select option where the low parameter needs to be populated with value 'AG'. This is not possible with the submit program option. Is there any solution for this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aveek Ghose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 11:32:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123234#M109477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-07T11:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123235#M109478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using Ranges with the submit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RANGES: R_TAB FOR MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can populate the R_TAB with required value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT REPORT1 VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;                      WITH S_MATNR IN R_TAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 11:44:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123235#M109478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-07T11:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123236#M109479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U CAN TRY LIKE THIS.&lt;/P&gt;&lt;P&gt;GIVE A NUMBER TO THE SELECTION-SCREEN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT /SAPAPO/RLCDELETE USING SELECTION-SCREEN DYNNR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 11:45:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123236#M109479</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-07T11:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123237#M109480</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 try using User command &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS show_all radiobutton  group g1 USER-COMMAND flag.&lt;/P&gt;&lt;P&gt;PARAMETERS no_show radiobutton  group g1 default 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_opt(10) TYPE c modif id bl2,&lt;/P&gt;&lt;P&gt;s_opt-low = 'AG'.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF show_all &amp;lt;&amp;gt; 'X' AND&lt;/P&gt;&lt;P&gt;       screen-group1 = 'BL2'.&lt;/P&gt;&lt;P&gt;       screen-active = '0'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 12:06:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123237#M109480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-07T12:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123238#M109481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;user command option is the right one,This was asked in an interview to me.&lt;/P&gt;&lt;P&gt;and use screen-invisible to make the fields dynamic.&lt;/P&gt;&lt;P&gt;Assign the command name  and check using sy-ucomm and give screen-invisible in that.&lt;/P&gt;&lt;P&gt;Give a modif id to the paramters to group it in a name&lt;/P&gt;&lt;P&gt;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Feb 2006 12:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123238#M109481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-07T12:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program with dynamic selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123239#M109482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The requirement is that the selection screen needs to be populated with the variant in the submit program. I am dumping the code here so that you can take a look:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Selection Screen Elements for /SAPAPO/RLCDELETE&lt;/P&gt;&lt;P&gt;DATA:        gc_radio_btn   TYPE rsscr_kind        VALUE 'R',&lt;/P&gt;&lt;P&gt;             gc_parameter   TYPE rsscr_kind        VALUE 'P',&lt;/P&gt;&lt;P&gt;            gc_sel_optn    TYPE rsscr_kind        VALUE 'S',&lt;/P&gt;&lt;P&gt;            gc_sign_i      TYPE tvarv_sign        VALUE 'I',&lt;/P&gt;&lt;P&gt;             gc_option_eq   TYPE tvarv_opti        VALUE 'EQ',&lt;/P&gt;&lt;P&gt;             gc_manual_sel  TYPE rsscr_name        VALUE 'SHUF_PA1',&lt;/P&gt;&lt;P&gt;             gc_product     TYPE rsscr_name        VALUE 'SEL_PROD',&lt;/P&gt;&lt;P&gt;             gc_location    TYPE rsscr_name        VALUE 'SEL_LOC',&lt;/P&gt;&lt;P&gt;            gc_plan_vrsn   TYPE rsscr_name        VALUE 'P_VERSIO',&lt;/P&gt;&lt;P&gt;             gc_fixed_ord   TYPE rsscr_name        VALUE 'P_FIXED',&lt;/P&gt;&lt;P&gt;             gc_category    TYPE rsscr_name        VALUE 'RB_CAT',&lt;/P&gt;&lt;P&gt;             gc_key_fig     TYPE rsscr_name        VALUE 'RB_KEYF',&lt;/P&gt;&lt;P&gt;             gc_only_apo    TYPE rsscr_name        VALUE 'P_APO',&lt;/P&gt;&lt;P&gt;             gc_test_run    TYPE rsscr_name        VALUE 'P_TEST',&lt;/P&gt;&lt;P&gt;             gc_pvrsn_000   TYPE tvarv_val         VALUE '000',&lt;/P&gt;&lt;P&gt;             gc_s           TYPE ddbool_d          VALUE 'S',&lt;/P&gt;&lt;P&gt;             gc_inactive    TYPE zdstat1           VALUE 'I',&lt;/P&gt;&lt;P&gt;             gc_set         TYPE char1             VALUE 'X',&lt;/P&gt;&lt;P&gt;             gc_set_val     TYPE tvarv_val         VALUE 'X',&lt;/P&gt;&lt;P&gt;             gc_ag          TYPE /SAPAPO/ATPCAT    VALUE 'AG',&lt;/P&gt;&lt;P&gt;             gc_int_commit  TYPE bapi10001commctrl VALUE 'E',&lt;/P&gt;&lt;P&gt;             gc_bs_group    TYPE /sapapo/logqs     VALUE 'BSGAPO',&lt;/P&gt;&lt;P&gt;             gc_error       TYPE bapi_mtype        VALUE 'E',&lt;/P&gt;&lt;P&gt;             gc_abend       TYPE bapi_mtype        VALUE 'A',&lt;/P&gt;&lt;P&gt;             gc_dot         TYPE char1             vALUE '.',&lt;/P&gt;&lt;P&gt;             gc_colon       TYPE char1             VALUE ':',&lt;/P&gt;&lt;P&gt;             gc_space       TYPE char4             VALUE '    ',&lt;/P&gt;&lt;P&gt;             gc_star        TYPE char1             VALUE '*'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Field-symbols&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS: &amp;lt;lfs_data&amp;gt;     TYPE  s_f4_data_loc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Populate the selection screen table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM f_populate_screen_table USING:&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Field Name    Type         Sign      Option       Low Value&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate the Additional selection options&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Select the Manual selection button&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  gc_manual_sel gc_radio_btn gc_sign_i gc_option_eq gc_set_val space,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate the Planning Version&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  gc_plan_vrsn gc_parameter gc_sign_i gc_option_eq gc_pvrsn_000 space.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;**Populate the Core Products to be deleted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PERFORM f_populate_screen_table USING:&lt;/P&gt;&lt;P&gt;   gc_product gc_sel_optn gc_sign_i gc_option_eq iv_matnr space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate the Product Variants to be deleted&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM f_populate_screen_table USING:&lt;/P&gt;&lt;P&gt;   gc_product gc_sel_optn gc_sign_i gc_option_eq iv_matnr space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate the Locations to be deleted.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  PERFORM f_populate_screen_table USING:&lt;/P&gt;&lt;P&gt;  gc_location gc_sel_optn gc_sign_i gc_option_eq iv_locfr space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate the Fixed Orders Checkbox&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM f_populate_screen_table USING:&lt;/P&gt;&lt;P&gt;  gc_fixed_ord gc_parameter gc_sign_i gc_option_eq gc_set_val  space,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate the Selection Objects&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Unselect the Key Figure Radio Button&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  gc_key_fig gc_radio_btn gc_sign_i gc_option_eq space  space,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;By Category Radio Button&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  gc_category gc_radio_btn gc_sign_I gc_option_eq gc_set_val SPACE,&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Populate the Settings&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Select Delete Transactional data only in APO Radio Button&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  gc_only_apo gc_radio_btn gc_sign_i gc_option_eq gc_set_val  space,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Uncheck the Test Run check box.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  gc_test_run gc_parameter gc_sign_i gc_option_eq space   space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Submit to SAP Standard report /SAPAPO/RLCDELETE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;For deleting manually entered data for the product and location&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT /sapapo/rlcdelete WITH SELECTION-TABLE gt_variant_table&lt;/P&gt;&lt;P&gt;  AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_populate_screen_table  USING  iv_name   TYPE rsscr_name&lt;/P&gt;&lt;P&gt;                                     iv_type   TYPE rsscr_kind&lt;/P&gt;&lt;P&gt;                                     iv_sign   TYPE tvarv_sign&lt;/P&gt;&lt;P&gt;                                     iv_option TYPE tvarv_opti&lt;/P&gt;&lt;P&gt;                                     iv_low    TYPE any&lt;/P&gt;&lt;P&gt;                                     iv_high   TYPE tvarv_val.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Local Data Declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  DATA: ls_variant TYPE rsparams.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Populate the Screen Table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ls_variant-selname  =  iv_name.&lt;/P&gt;&lt;P&gt;  ls_variant-kind     =  iv_type.&lt;/P&gt;&lt;P&gt;  ls_variant-sign     =  iv_sign.&lt;/P&gt;&lt;P&gt;  ls_variant-option   =  iv_option.&lt;/P&gt;&lt;P&gt;  ls_variant-low      =  iv_low.&lt;/P&gt;&lt;P&gt;  ls_variant-high     =  iv_high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND ls_variant TO gt_variant_table.&lt;/P&gt;&lt;P&gt;  CLEAR  ls_variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " F_POPULATE_SCREEN_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the transaction /sapapo/rlcdel the category radio button needs to be checked and the value in the box that opens up needs to be 'AG'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking forward to the issue resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aveek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Feb 2006 03:58:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-dynamic-selection-screen/m-p/1123239#M109482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-09T03:58:57Z</dc:date>
    </item>
  </channel>
</rss>

