<?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: SEARCH HELP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378721#M185256</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES, i pass the field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m doing all this in POV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea as to what the suitable event in table maintenance where i can get the requirement done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Jun 2006 13:51:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-13T13:51:18Z</dc:date>
    <item>
      <title>SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378714#M185249</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;in sm30, i have 2 fields e.g vendor number,purchase order number. for both i have search help. after choosing a value for vendor no., i now take f4 help at second field. i want to have in display only those orders for the chosen vendor and not all the orders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can this be done in a collective search help? please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 08:39:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378714#M185249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T08:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378715#M185250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the search-help for purchase order, you have a tab called 'Purchase documents per vendor'. If you put the vendor no. there, it will show you all the POs for that vendor. Does that meet your purpose?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 10:06:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378715#M185250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T10:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378716#M185251</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;If you want to do it through the ABAP code then you can use FM F4IF_INT_TABLE_VALUE_REQUEST and DYNP_VALUES_READ.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 11:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378716#M185251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T11:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378717#M185252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;DYNP_VALUES_READ&amp;lt;/b&amp;gt;  Reads a screen field&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DYNP_VALUES_UPDATE&amp;lt;/b&amp;gt;  Updates a screen field &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables tcurt.&lt;/P&gt;&lt;P&gt;DATA   DYFIELDS LIKE DYNPREAD OCCURS 1 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_WAERS LIKE TCURT-WAERS,        "Currency&lt;/P&gt;&lt;P&gt;            P_LTEXT LIKE TCURT-LTEXT,        "Long Text&lt;/P&gt;&lt;P&gt;            P_KTEXT LIKE TCURT-KTEXT.        "Short Text&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;*--- Example of updating value of another field on the screen -&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_WAERS.&lt;/P&gt;&lt;P&gt;  CLEAR: DYFIELDS[], DYFIELDS.&lt;/P&gt;&lt;P&gt;*--- select currency&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'HELP_VALUES_GET'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            fieldname        =  'WAERS'&lt;/P&gt;&lt;P&gt;            tabname          =  'TCURT'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            SELECT_VALUE     =   P_WAERS.&lt;/P&gt;&lt;P&gt;*--- get long text for the selected currency&lt;/P&gt;&lt;P&gt;  SELECT SINGLE LTEXT FROM TCURT&lt;/P&gt;&lt;P&gt;    INTO DYFIELDS-FIELDVALUE&lt;/P&gt;&lt;P&gt;    WHERE SPRAS = SY-LANGU&lt;/P&gt;&lt;P&gt;    AND   WAERS = P_WAERS.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    CLEAR DYFIELDS-FIELDVALUE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;*--- update another field&lt;/P&gt;&lt;P&gt;  DYFIELDS-FIELDNAME = 'P_LTEXT'.&lt;/P&gt;&lt;P&gt;  APPEND DYFIELDS.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            DYNAME               = SY-CPROG&lt;/P&gt;&lt;P&gt;            DYNUMB               = SY-DYNNR&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            dynpfields           = DYFIELDS .&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;*--- Example of reading value of another field -&lt;/P&gt;&lt;HR originaltext="------------------------" /&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_KTEXT.&lt;/P&gt;&lt;P&gt;*--- read another field&lt;/P&gt;&lt;P&gt;  CLEAR: DYFIELDS[], DYFIELDS.&lt;/P&gt;&lt;P&gt;  DYFIELDS-FIELDNAME = 'P_WAERS'.&lt;/P&gt;&lt;P&gt;  APPEND DYFIELDS.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            DYNAME                   = SY-CPROG&lt;/P&gt;&lt;P&gt;            DYNUMB                   = SY-DYNNR&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            DYNPFIELDS               = DYFIELDS .&lt;/P&gt;&lt;P&gt;  READ TABLE DYFIELDS INDEX 1.&lt;/P&gt;&lt;P&gt;*--- get short text and update current field&lt;/P&gt;&lt;P&gt;  SELECT SINGLE KTEXT FROM TCURT&lt;/P&gt;&lt;P&gt;    INTO P_KTEXT&lt;/P&gt;&lt;P&gt;    WHERE SPRAS EQ SY-LANGU&lt;/P&gt;&lt;P&gt;    AND   WAERS EQ DYFIELDS-FIELDVALUE.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 11:21:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378717#M185252</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-06-13T11:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378718#M185253</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;Have a look into following threads this might help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="626207"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1766809"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you find your solution here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont forget to reward points for useful answers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shakuntala&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: shakuntala Negi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 11:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378718#M185253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T11:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378719#M185254</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;i used DYNPRO_VALUES_READ to read the value on the screen. but i found after this FM DYNPFIELDS-FIELDVALUE is still empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is unable to get the field value. only when i press enter after giving first field, then it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when just F4 is pressed, i dont read the value given for first field. i think the reason is the not using proper event of table maintenance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 13:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378719#M185254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T13:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378720#M185255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you passing an entry in DYNPFIELDS with fieldname = &amp;lt;field name of the vendor field&amp;gt; before calling DYNP_VALUES_READ on the F4 of the 2nd field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 13:44:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378720#M185255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T13:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378721#M185256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES, i pass the field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i m doing all this in POV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea as to what the suitable event in table maintenance where i can get the requirement done.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 13:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378721#M185256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T13:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378722#M185257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Surendra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do with normal elementary search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assumimg its a custom table and you can add a custom search help to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create an elementary search help with as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give EKKO in selection method, define two fields LIFNR &amp;amp; EBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign LIF as a default value for EBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try and let me know, I have tried and working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 14:30:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378722#M185257</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-06-13T14:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378723#M185258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi manohar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if in my case field has no parameter id then waht to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 14:40:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378723#M185258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T14:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378724#M185259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If its a Z field suggest you to create a parameter id, can be created thru data element, give Z01 as parameted id and double click give description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 14:43:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378724#M185259</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-06-13T14:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378725#M185260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;problem is that the fields are PRODH1, PRODH2 which are standard fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 14:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378725#M185260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T14:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378726#M185261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an example for vendor and POs. In your last post you mentioned PRODH1 and PRODH2. So do you need for these two or the LIFNR and EBELN as mentioned originally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: v_return LIKE dfies-fieldname,
      v_program LIKE sy-repid.

PARAMETERS: p_lifnr LIKE ekko-lifnr,
            p_ebeln LIKE ekko-ebeln.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_ebeln.

  PERFORM read_current_sel_screen_data.
  PERFORM get_ebeln_f4_values_for_lifnr.

START-OF-SELECTION.


END-OF-SELECTION.

*---------------------------------------------------------------------*
*       FORM READ_CURRENT_SEL_SCREEN_DATA                             *
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
FORM read_current_sel_screen_data.

*-- Internal table to get screen data.
  DATA: BEGIN OF i_dynpread  OCCURS 0.
          INCLUDE STRUCTURE  dynpread.
  DATA: END OF i_dynpread.

  DATA: l_dyname LIKE d020s-prog. " Program name.
  CLEAR i_dynpread.
  REFRESH i_dynpread.

*- Appending field name
  i_dynpread-fieldname = 'P_LIFNR'.
  APPEND i_dynpread.
  CLEAR  i_dynpread.
  l_dyname = sy-repid.

*-- call function to get screen field data.
  CALL FUNCTION 'DYNP_VALUES_READ'
       EXPORTING
            dyname               = l_dyname
            dynumb               = '1000'
       TABLES
            dynpfields           = i_dynpread
       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.
  ELSE.
    READ TABLE i_dynpread INDEX 1.
    IF sy-subrc = 0.
      p_lifnr = i_dynpread-fieldvalue.
    ENDIF.
  ENDIF.
  CLEAR i_dynpread.
  REFRESH i_dynpread.

ENDFORM.                           " READ_CURRENT_SEL_SCREEN_DATA

*---------------------------------------------------------------------*
*       FORM GET_EBELN_F4_VALUES_FOR_LIFNR                            *
*---------------------------------------------------------------------*
*       ........                                                      *
*---------------------------------------------------------------------*
FORM get_ebeln_f4_values_for_lifnr.

  v_program = sy-repid.
  SET PARAMETER ID 'LIF' FIELD p_lifnr.
  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
      tabname                   = 'EKKO'
      fieldname                 = 'EBELN'
      searchhelp                = 'MEKKL'
*   SHLPPARAM                 = ' '
     dynpprog                  = v_program
     dynpnr                    = '1000'
     dynprofield               = 'P_EBELN'
*   STEPL                     = 0
*   VALUE                     = ' '
*   MULTIPLE_CHOICE           = ' '
*   DISPLAY                   = ' '
*   SUPPRESS_RECORDLIST       = ' '
*   CALLBACK_PROGRAM          = ' '
*   CALLBACK_FORM             = ' '
* TABLES
*   RETURN_TAB                =
   EXCEPTIONS
     field_not_found           = 1
     no_help_for_field         = 2
     inconsistent_help         = 3
     no_values_found           = 4
     OTHERS                    = 5
            .
  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.

ENDFORM.                    " GET_EBELN_F4_VALUES_FOR_LIFNR
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 15:16:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378726#M185261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-13T15:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: SEARCH HELP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378727#M185262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, then in this case if you have no option to change the standard data element, suggest you to have your own data element and create parameter id for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not you need to programatically control from table maintanence screen flow, as i don't see any event will help us in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2006 15:24:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1378727#M185262</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-06-13T15:24:59Z</dc:date>
    </item>
  </channel>
</rss>

