<?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: F4 - Help with predefinition in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056726#M969750</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to choose "MULTIPLE_CHOICE" switch is on then only multiple preselect will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the short documentation of this import field &lt;/P&gt;&lt;P&gt;"Defaults for Selected Lines when Multiple Selection is Switched On"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jul 2008 13:53:09 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2008-07-01T13:53:09Z</dc:date>
    <item>
      <title>F4 - Help with predefinition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056724#M969748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I implemented a own Help Screen and want to pre-select (highlight) and locate to specific entry, which I include the index already in lt_mark_tab, but it doesn't work. If I used multiselect it is working, but I dont want to include multiselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      ddic_structure         = 'ZCL_V_PRE_US_VER'&lt;/P&gt;&lt;P&gt;      retfield                    = 'VERTEILER'&lt;/P&gt;&lt;P&gt;      mark_tab                = lt_mark_tab&lt;/P&gt;&lt;P&gt;       value_org               = 'S'&lt;/P&gt;&lt;P&gt;       multiple_choice      = ' '&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      value_tab                = itab_data&lt;/P&gt;&lt;P&gt;      return_tab               = itab_ret&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      parameter_error       = 1&lt;/P&gt;&lt;P&gt;      no_values_found      = 2&lt;/P&gt;&lt;P&gt;      others                     = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx a lot in advance.&lt;/P&gt;&lt;P&gt;M.Retschmeier&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 13:46:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056724#M969748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T13:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: F4 - Help with predefinition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056725#M969749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Try like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_state TYPE char20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA       : BEGIN   OF   t_state OCCURS 0,&lt;/P&gt;&lt;P&gt;                 state   TYPE char20,&lt;/P&gt;&lt;P&gt;                 END     OF   t_state.&lt;/P&gt;&lt;P&gt;DATA       : r_state TYPE TABLE OF ddshretval WITH   &lt;/P&gt;&lt;P&gt;                  HEADER LINE. &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_state.&lt;/P&gt;&lt;P&gt; REFRESH t_state.&lt;/P&gt;&lt;P&gt; APPEND 'hi' TO t_state.&lt;/P&gt;&lt;P&gt; APPEND 'bye'  TO t_state.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'STATE'&lt;/P&gt;&lt;P&gt;      dynpprog        = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr          = '1000'&lt;/P&gt;&lt;P&gt;      dynprofield     = 'P_STATE'&lt;/P&gt;&lt;P&gt;      window_title    = 'State'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = t_state[]&lt;/P&gt;&lt;P&gt;      return_tab      = r_state[]&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error = 1&lt;/P&gt;&lt;P&gt;      no_values_found = 2&lt;/P&gt;&lt;P&gt;      OTHERS          = 3.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Saikumar on Jul 1, 2008 3:52 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 13:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056725#M969749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T13:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: F4 - Help with predefinition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056726#M969750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to choose "MULTIPLE_CHOICE" switch is on then only multiple preselect will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the short documentation of this import field &lt;/P&gt;&lt;P&gt;"Defaults for Selected Lines when Multiple Selection is Switched On"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 13:53:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056726#M969750</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-07-01T13:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: F4 - Help with predefinition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056727#M969751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot for your quick answer, but you misunderstood. I don't want to activate multi-select. I need single-select. I have e.g. 10 entries and want to high-light number 5 as pre-selection (because this is defined as default by each user). Anyway  the user should be able to use also another one. Therefore I include one line in Mark_table with index 5, but it doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;M.Retschmeier&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 14:08:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056727#M969751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T14:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: F4 - Help with predefinition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056728#M969752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;1st u need to pass 'X' for MULTIPLE_CHOICE and then populate the index for the record that u want to show as selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data: MARK_TAB TYPE  DDSHMARKS.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data: mark like line of mark_tab.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;mark = '2'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;append mark to MARK_TAB.&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;call fucntion for search help&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield         = l_retfld&lt;/P&gt;&lt;P&gt;      dynpprog         = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr           = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield      = l_dynfld&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;MULTIPLE_CHOICE   = 'X'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      callback_program = sy-repid&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;MARK_TAB = mark_tab&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab        = l_i_value&lt;/P&gt;&lt;P&gt;      field_tab        = l_i_fields&lt;/P&gt;&lt;P&gt;      return_tab       = l_i_return&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error  = 1&lt;/P&gt;&lt;P&gt;      no_values_found  = 2&lt;/P&gt;&lt;P&gt;      OTHERS           = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE i000&lt;/P&gt;&lt;P&gt;     WITH 'No search help found'(090) .&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 14:42:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056728#M969752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T14:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: F4 - Help with predefinition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056729#M969753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to activate MULTIPLE_CHOICE, because only one value should be selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any possiblity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;M.Retschmeier&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 15:52:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-with-predefinition/m-p/4056729#M969753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T15:52:30Z</dc:date>
    </item>
  </channel>
</rss>

