<?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 F1 Help documentation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/3289426#M787014</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 have a checkbox using parameters statement on selection screen.I need to create Help documentation on F1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me how to do that.I read one of the thread and tried the goto-&amp;gt;doc-&amp;gt;data elem doc. on screen painter.but since the screen is not custom screen I get a warning as &lt;/P&gt;&lt;P&gt;"Selection Screen:Report generation makes changes ineffective". So I am not sure if i can do the documentation on the screen painter.Let me know the other way of doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Suganya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Jan 2008 15:38:25 GMT</pubDate>
    <dc:creator>suganya_rangarajan</dc:creator>
    <dc:date>2008-01-08T15:38:25Z</dc:date>
    <item>
      <title>F1 Help documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/3289426#M787014</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 have a checkbox using parameters statement on selection screen.I need to create Help documentation on F1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me how to do that.I read one of the thread and tried the goto-&amp;gt;doc-&amp;gt;data elem doc. on screen painter.but since the screen is not custom screen I get a warning as &lt;/P&gt;&lt;P&gt;"Selection Screen:Report generation makes changes ineffective". So I am not sure if i can do the documentation on the screen painter.Let me know the other way of doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Suganya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 15:38:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/3289426#M787014</guid>
      <dc:creator>suganya_rangarajan</dc:creator>
      <dc:date>2008-01-08T15:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Help documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/3289427#M787015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS xyz type zxyz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define a data element with the name ZXYZ. For this data element, use the domain XFELD or FLAG or create your own domain as copy of XFELD or FLAG. In the data element, create a documentation. This will be shown when you press F1 on the parameter with this type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is fully SAP standard compliant. You may translate it if required for different logon language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 15:46:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/3289427#M787015</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2008-01-08T15:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Help documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/3289428#M787016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do it like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: &lt;/P&gt;&lt;P&gt;it_ef  type standard table of TABLE_LINE,&lt;/P&gt;&lt;P&gt;it_hl  type standard table of tline,&lt;/P&gt;&lt;P&gt;ws_help_infos type help_info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters:  p_help    as   checkbox.&lt;/P&gt;&lt;P&gt;at selection-screen on help-request for p_help.&lt;/P&gt;&lt;P&gt;Append: &lt;/P&gt;&lt;P&gt;'text Line 1 for help' to it_hl,&lt;/P&gt;&lt;P&gt;'test line 2 for help' to it_hl.&lt;/P&gt;&lt;P&gt;Call Function 'HELP_DOCULINES_SHOW'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CUCOL                   = 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CUROW                   = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      help_infos              =  ws_help_infos&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LINENR                  = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NOT_HELP                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OVERLAY_HEADER          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SUPPRESS_VIEWER         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLASSIC_SAPSCRIPT       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  HELP_POPUP_CANCEL       =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      excludefun              = it_ef&lt;/P&gt;&lt;P&gt;      helplines               = it_hl&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!!!&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 17:07:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/3289428#M787016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T17:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: F1 Help documentation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/13612149#M2026640</link>
      <description>&lt;P&gt;create the doku in SE11 for your data element.&lt;BR /&gt;When doing '&lt;SPAN&gt;at selection-screen on help-request for p_help.'&lt;BR /&gt;&lt;/SPAN&gt;Read table DOKTL to get the text you have created.&lt;BR /&gt;fill table&amp;nbsp;&lt;SPAN&gt;it_hl with the text and (!) the formating information.&lt;BR /&gt;Than call&amp;nbsp;'HELP_DOCULINES_SHOW' and you get a nice pop up including the formating.&lt;BR /&gt;Here is my code:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;SELECT MAX( dokversion ) INTO @DATA(lf_max_version)&lt;BR /&gt;FROM doktl&lt;BR /&gt;WHERE object = 'Zxxx'&lt;BR /&gt;AND langu = &lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/141571"&gt;@LF&lt;/a&gt;_langu.&lt;/P&gt;&lt;P&gt;SELECT * FROM doktl INTO TABLE @DATA(lt_doktl)&lt;BR /&gt;WHERE object = 'Zxxx'&lt;BR /&gt;AND langu = &lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/141571"&gt;@LF&lt;/a&gt;_langu&lt;BR /&gt;AND dokversion = &lt;a href="https://community.sap.com/t5/user/viewprofilepage/user-id/141571"&gt;@LF&lt;/a&gt;_max_version.&lt;/P&gt;&lt;P&gt;LOOP AT lt_doktl ASSIGNING FIELD-SYMBOL(&amp;lt;lf_line&amp;gt;).&lt;BR /&gt;APPEND INITIAL LINE TO gt_hl ASSIGNING FIELD-SYMBOL(&amp;lt;ls_hl&amp;gt;).&lt;BR /&gt;&amp;lt;ls_hl&amp;gt;-TDFORMAT = &amp;lt;lf_line&amp;gt;-dokformat.&lt;BR /&gt;&amp;lt;ls_hl&amp;gt;-TDLINE = &amp;lt;lf_line&amp;gt;-doktext.&lt;BR /&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HELP_DOCULINES_SHOW'&lt;BR /&gt;EXPORTING&lt;BR /&gt;cucol = 10&lt;BR /&gt;curow = 3&lt;BR /&gt;help_infos = gs_help_infos&lt;BR /&gt;linenr = 1&lt;BR /&gt;* not_help = ' '&lt;BR /&gt;* overlay_header = ' '&lt;BR /&gt;* suppress_viewer = ' '&lt;BR /&gt;* classic_sapscript = ' '&lt;BR /&gt;IMPORTING&lt;BR /&gt;help_popup_cancel = lf_popup_cancel&lt;BR /&gt;TABLES&lt;BR /&gt;excludefun = gt_ef&lt;BR /&gt;helplines = gt_hl.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Lars&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 12:40:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help-documentation/m-p/13612149#M2026640</guid>
      <dc:creator>lat_gmbh14</dc:creator>
      <dc:date>2024-02-20T12:40:34Z</dc:date>
    </item>
  </channel>
</rss>

