<?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: Error in Search help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092582#M978648</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;yes this will solve your problem.but in f4 help it will show 500 records by default..&lt;/P&gt;&lt;P&gt;but you can see all records..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jul 2008 10:12:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-02T10:12:03Z</dc:date>
    <item>
      <title>Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092574#M978640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sap Gurus,&lt;/P&gt;&lt;P&gt;     I have a problem regarding Search help of a field in Selection Screen of one program where the system is giving Short dump &amp;amp; showing the message " SAP Paging Overflow When Storing Data in ABAP/4 Memory ".....&lt;/P&gt;&lt;P&gt;    How can i solve this problem.Thanx in Advance...&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bipasha..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 07:25:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092574#M978640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T07:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092575#M978641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you done some coding for the search help or is it standard SAP search help. Can you please us give the code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 07:32:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092575#M978641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T07:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092576#M978642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As there was no SAP standard f4 help for Reservation Number (RSNUM) so i have used two function Modules.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. DYNP_VALUES_READ&lt;/P&gt;&lt;P&gt;2. F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st one is for reading the screen input &amp;amp; the 2nd one is for f4 help on the basis of the previous Function Module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls tell me the reason behind that.....&lt;/P&gt;&lt;P&gt;Thanx for Reply.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bipasha..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 07:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092576#M978642</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T07:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092577#M978643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you done the coding in the following way:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZTEST_SOURAV15
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

REPORT ZTEST_SOURAV15 .

TABLES: mara, marc.

PARAMETERS: matnr TYPE mara-matnr.
PARAMETERS: werks TYPE marc-werks.

TYPES : BEGIN OF ty_marc ,
werks TYPE marc-werks ,
END OF ty_marc.

DATA : it_marc TYPE STANDARD TABLE OF ty_marc.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR werks.
  DATA: l_i_dynpfields TYPE STANDARD TABLE OF dynpread INITIAL SIZE 0,
        l_wa_dynpfields  TYPE dynpread.
  l_wa_dynpfields-fieldname = 'MATNR'.
  APPEND l_wa_dynpfields TO l_i_dynpfields.

  CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
      dyname                         = sy-repid
      dynumb                         = sy-dynnr
*   TRANSLATE_TO_UPPER             = ' '
*   REQUEST                        = ' '
*   PERFORM_CONVERSION_EXITS       = ' '
*   PERFORM_INPUT_CONVERSION       = ' '
*   DETERMINE_LOOP_INDEX           = ' '
    TABLES
      dynpfields                     = l_i_dynpfields
   EXCEPTIONS
     invalid_abapworkarea           = 1
     invalid_dynprofield            = 2
     invalid_dynproname             = 3
     invalid_dynpronummer           = 4
     invalid_request                = 5
     no_fielddescription            = 6
     invalid_parameter              = 7
     undefind_error                 = 8
     double_conversion              = 9
     stepl_not_found                = 10
     OTHERS                         = 11
            .
  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  READ TABLE l_i_dynpfields INTO l_wa_dynpfields
  WITH KEY fieldname = 'MATNR'.
  IF sy-subrc = 0.
    DATA l_matnr TYPE matnr.
    l_matnr = l_wa_dynpfields-fieldvalue.

    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
      EXPORTING
        input        = l_matnr
      IMPORTING
        output       = l_matnr
      EXCEPTIONS
        length_error = 1
        OTHERS       = 2.
    IF sy-subrc &amp;lt;&amp;gt; 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.

    SELECT werks FROM marc INTO TABLE it_marc WHERE matnr EQ l_matnr.

    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
        retfield    = 'WERKS'
        dynpprog    = sy-repid
        dynpnr      = sy-dynnr
        dynprofield = 'P_WERKS'
        value_org   = 'S'
      TABLES
        value_tab   = it_marc.
  ENDIF.

START-OF-SELECTION.

  WRITE: / ' this is for testing'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 07:45:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092577#M978643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T07:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092578#M978644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,Exactly this way...But still i am facing this problem....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 09:53:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092578#M978644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T09:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092579#M978645</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;do by this way simple,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_scrnum FOR wwscrnum." MATCHCODE OBJECT zscrhdr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_scrnum-low.&lt;/P&gt;&lt;P&gt;SELECT * FROM zscr_hdr INTO CORRESPONDING FIELDS OF TABLE thdr&lt;/P&gt;&lt;P&gt;                           WHERE posi = 'P250'.&lt;/P&gt;&lt;P&gt;  SORT thdr BY scrnum.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM thdr.&lt;/P&gt;&lt;P&gt;  DELETE thdr WHERE posi IS initial.&lt;/P&gt;&lt;P&gt;&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    = 'SCRNUM'&lt;/P&gt;&lt;P&gt;            dynpprog    = sy-cprog&lt;/P&gt;&lt;P&gt;            dynpnr      = sy-dynnr&lt;/P&gt;&lt;P&gt;            dynprofield = 'THDR_SCRNUM'&lt;/P&gt;&lt;P&gt;            value_org   = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            value_tab   = thdr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help u..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 09:57:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092579#M978645</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T09:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092580#M978646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually in my program 37000records are fetching in the internal table of the search help.....I think for these huge number of data this problem is occurred.....Will ur solution can resolve this problem??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 10:07:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092580#M978646</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T10:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092581#M978647</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 ds n u get error then let me know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF TY_F4HELP,                   &lt;/P&gt;&lt;P&gt;          ENAME  TYPE PA0001-ENAME,&lt;/P&gt;&lt;P&gt;          PERNR  TYPE PA0001-PERNR,&lt;/P&gt;&lt;P&gt;       END OF TY_F4HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT_F4HELP TYPE STANDARD TABLE OF TY_F4HELP WITH HEADER LINE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: IT_RETURN_TAB TYPE ddshretval OCCURS 0 WITH HEADER LINE . " Return table for F4 help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT DISTINCT ename pernr&lt;/P&gt;&lt;P&gt;    FROM PA0001&lt;/P&gt;&lt;P&gt;    INTO TABLE IT_F4HELP.&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        = 'ENAME'&lt;/P&gt;&lt;P&gt;      VALUE_ORG       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB       = IT_F4HELP&lt;/P&gt;&lt;P&gt;      RETURN_TAB      = it_return_tab&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;  READ TABLE it_return_tab INDEX 1.&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;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    MOVE it_return_tab-fieldval TO P_ename.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CLEAR: it_return_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Mehul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 10:09:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092581#M978647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T10:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error in Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092582#M978648</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;yes this will solve your problem.but in f4 help it will show 500 records by default..&lt;/P&gt;&lt;P&gt;but you can see all records..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2008 10:12:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-in-search-help/m-p/4092582#M978648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-02T10:12:03Z</dc:date>
    </item>
  </channel>
</rss>

