<?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: field exist in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exist/m-p/3632378#M874882</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear michael,&lt;/P&gt;&lt;P&gt;Please explain if possible.&lt;/P&gt;&lt;P&gt;it is not clear to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and rgards&lt;/P&gt;&lt;P&gt;abhishek prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Apr 2008 08:52:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-10T08:52:09Z</dc:date>
    <item>
      <title>field exist</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exist/m-p/3632376#M874880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I am working with PM module in tcode 'IE01'. there is one field 'Manufacutre' in this transaction. this field doesn't have F4 help. I want to add a search help in this field so that when user will press F4 in this field it should display all the field from table. that table is ztable.&lt;/P&gt;&lt;P&gt;please help thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abhishek Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 08:27:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exist/m-p/3632376#M874880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T08:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: field exist</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exist/m-p/3632377#M874881</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;The following are the exits available with IE01:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IEQM0003                   EXIT_SAPMIEQ0_001&lt;/P&gt;&lt;P&gt;IEQM0007                   EXIT_SAPMIEQ0_002&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then for F4 value you may use like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS :vrm.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;  i_natio TYPE vrm_values, "--&amp;gt;Table that is passed through FM vrm_set_values&lt;/P&gt;&lt;P&gt;  w_natio LIKE LINE OF i_natio.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: &lt;/P&gt;&lt;P&gt;BEGIN OF i_t005t OCCURS 0,&lt;/P&gt;&lt;P&gt;    land1 TYPE t005t-land1,&lt;/P&gt;&lt;P&gt;    natio TYPE t005t-natio,&lt;/P&gt;&lt;P&gt;END OF i_t005t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF i_t005t[] IS INITIAL.&lt;/P&gt;&lt;P&gt;  SELECT land1 natio&lt;/P&gt;&lt;P&gt;     FROM t005t&lt;/P&gt;&lt;P&gt;       INTO TABLE i_t005t&lt;/P&gt;&lt;P&gt;   WHERE spras = sy-langu.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;  LOOP AT i_t005t .&lt;/P&gt;&lt;P&gt;      w_natio-key = i_t005t-land1.&lt;/P&gt;&lt;P&gt;      w_natio-text = i_t005t-natio.&lt;/P&gt;&lt;P&gt;      APPEND w_natio TO i_natio.&lt;/P&gt;&lt;P&gt;      CLEAR w_natio.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;                       id = 'I_IT0002-NATIO' "--&amp;gt;Field for which dropdown is needed.&lt;/P&gt;&lt;P&gt;                values = i_natio&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;   id_illegal_name = 1&lt;/P&gt;&lt;P&gt;            OTHERS = 2.&lt;/P&gt;&lt;P&gt;IF sy-subrc  0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF. &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;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 08:38:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exist/m-p/3632377#M874881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T08:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: field exist</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exist/m-p/3632378#M874882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear michael,&lt;/P&gt;&lt;P&gt;Please explain if possible.&lt;/P&gt;&lt;P&gt;it is not clear to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and rgards&lt;/P&gt;&lt;P&gt;abhishek prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 08:52:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exist/m-p/3632378#M874882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T08:52:09Z</dc:date>
    </item>
  </channel>
</rss>

