<?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 ALV Grid using in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591876#M23894</link>
    <description>&lt;P&gt;hi&lt;/P&gt;
  &lt;P&gt;use ref_table , ref_field of fieldcatalog in alv.&lt;/P&gt;
  &lt;P&gt;ls_fieldcatalog-ref_table = 'vbak'.&lt;/P&gt;
  &lt;P&gt;ls_fieldcatalog-ref_field = 'vbeln'.&lt;/P&gt;
  &lt;P&gt;pass like above , you can get F4 help in alv output&lt;/P&gt;</description>
    <pubDate>Tue, 06 Feb 2018 09:29:38 GMT</pubDate>
    <dc:creator>former_member241258</dc:creator>
    <dc:date>2018-02-06T09:29:38Z</dc:date>
    <item>
      <title>F4 Help ALV Grid using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591874#M23892</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
  &lt;P&gt;I am using REUSE_ALV_GRID_DISPLAY for Delivery block(VBAK-LIFSK) field is an Editable field. Now I am trying to get the F4 help on the ALV Grid for that Column cell. I checked the below link but the link is for lvc_t_fcat. &lt;/P&gt;
  &lt;P&gt;&lt;A href="https://archive.sap.com/discussions/thread/3215580" target="test_blank"&gt;https://archive.sap.com/discussions/thread/3215580&lt;/A&gt;&lt;/P&gt;
  &lt;P&gt;I am using slis_t_fieldcat_alv. I did not find the&lt;STRONG&gt; f4availabl &lt;/STRONG&gt;slis_t_fieldcat_alv. How to achieve the F4 help using slis_t_fieldcat_alv with REUSE_ALV_GRID_DISPLAY. Please suggest.&lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;HT&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2018 09:48:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591874#M23892</guid>
      <dc:creator>Bharath84</dc:creator>
      <dc:date>2018-01-22T09:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help ALV Grid using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591875#M23893</link>
      <description>&lt;P&gt;VBAK-LIFSK is a field with a foreign key, so if you fill correctly your field catalog, you should get F4 as demonstrated here:&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/104925-qxjtc.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Done with this quick and dirty code:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;REPORT.
DATA lt_fieldcat TYPE slis_t_fieldcat_alv.
CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
  EXPORTING
    i_structure_name = 'VBAK'
  CHANGING
    ct_fieldcat      = lt_fieldcat
  EXCEPTIONS
    OTHERS           = 3.
DATA lt_vbak TYPE TABLE OF vbak.
SELECT * FROM vbak INTO TABLE lt_vbak UP TO 10 ROWS.
DATA ls_layout TYPE slis_layout_alv.
ls_layout-edit = abap_true.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
  EXPORTING
    is_layout   = ls_layout
    it_fieldcat = lt_fieldcat
  TABLES
    t_outtab    = lt_vbak
  EXCEPTIONS
    OTHERS      = 2.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Jan 2018 17:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591875#M23893</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2018-01-22T17:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help ALV Grid using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591876#M23894</link>
      <description>&lt;P&gt;hi&lt;/P&gt;
  &lt;P&gt;use ref_table , ref_field of fieldcatalog in alv.&lt;/P&gt;
  &lt;P&gt;ls_fieldcatalog-ref_table = 'vbak'.&lt;/P&gt;
  &lt;P&gt;ls_fieldcatalog-ref_field = 'vbeln'.&lt;/P&gt;
  &lt;P&gt;pass like above , you can get F4 help in alv output&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 09:29:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591876#M23894</guid>
      <dc:creator>former_member241258</dc:creator>
      <dc:date>2018-02-06T09:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help ALV Grid using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591877#M23895</link>
      <description>&lt;P&gt;Just search and read online documentation on how-to &lt;A href="https://help.sap.com/viewer/search?q=field%20catalog%20manually&amp;amp;language=en-US&amp;amp;state=PRODUCTION&amp;amp;format=standard,html,pdf,others"&gt;Generate the Field Catalog Manually&lt;/A&gt;. (Here use of ref_table, ref_field is the easiest solution, as already written in the &lt;A href="https://archive.sap.com/discussions/thread/3215580"&gt;discussion you linked&lt;/A&gt;.)&lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;Hint: For OO based solution with more options, you shoud first get reference to the object behind the full screen ALV FM with FM &lt;A href="https://launchpad.support.sap.com/#/solutions/scnwiki/?q=GET_GLOBALS_FROM_SLVC_FULLSCR"&gt;GET_GLOBALS_FROM_SLVC_FULLSCR&lt;/A&gt;.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2018 10:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591877#M23895</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2018-02-06T10:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help ALV Grid using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591878#M23896</link>
      <description>&lt;P&gt;But this is bringing the Column Titles as well for the fields&lt;BR /&gt;what to do if i want a different text as column heading??&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 06:48:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-alv-grid-using/m-p/591878#M23896</guid>
      <dc:creator>vaibhasahu</dc:creator>
      <dc:date>2023-08-01T06:48:31Z</dc:date>
    </item>
  </channel>
</rss>

