<?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 FM: HELP_OBJECT_SHOW in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-object-show/m-p/1697336#M305868</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one plz tell me how the FM help_object_show works and its parameters in details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Nov 2006 04:29:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-10T04:29:03Z</dc:date>
    <item>
      <title>FM: HELP_OBJECT_SHOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-object-show/m-p/1697336#M305868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one plz tell me how the FM help_object_show works and its parameters in details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 04:29:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-object-show/m-p/1697336#M305868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T04:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: FM: HELP_OBJECT_SHOW</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-object-show/m-p/1697337#M305869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1012047"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find out the identifier of the help text (F1 help) defined for a field in the ABAP Dictionary using the HELP-ID addition: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE FIELD &amp;lt;f&amp;gt; HELP-ID &amp;lt;h&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field &amp;lt;f&amp;gt; is defined with reference to a data type from the ABAP Dictionary, the statement writes the help text ID into the variable &amp;lt;h&amp;gt;. You can use the ID in a suitable function module to display the help text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: company TYPE s_carr_id,
h(20) TYPE c,
tlink TYPE TABLE OF tline.

DESCRIBE FIELD company HELP-ID h.

CALL FUNCTION 'HELP_OBJECT_SHOW'
EXPORTING
dokclass = 'DE'
doklangu = sy-langu
dokname = h
TABLES
links = tlink
EXCEPTIONS
object_not_found = 1
sapscript_error = 2
others = 3.

IF sy-subrc &amp;lt;&amp;gt; 0.
...
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In this program, the field H receives the name of the data element S_CARR_ID. The function module HELP_OBJECT_SHOW displays the documentation for the data element in a dialog box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 04:33:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-help-object-show/m-p/1697337#M305869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T04:33:17Z</dc:date>
    </item>
  </channel>
</rss>

