<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/5351383#M1232185</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to create 4 screens with close to 15 fields in each screen.&lt;/P&gt;&lt;P&gt;On pressing F1 on any of the field in 1st screen, some text "ABC" should be displayed.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Few of  these screen fields have similar lengths and data types.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly, on pressing F1 on the 2nd screen field, some other text"xyz" should dispalyed ,&lt;/P&gt;&lt;P&gt;similarly for 3rd and 4th screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this screen ,I should create15*4 = 60 data elements , where first 15 data elements have description "ABC",next 15 have description "XYZ".and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other solution to the above problem without creating those many(60) data elements?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more question:Other than data element level, is there any other  way to maintain F1 help text for a screen field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Mar 2009 11:04:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-09T11:04:25Z</dc:date>
    <item>
      <title>F1 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/5351383#M1232185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have to create 4 screens with close to 15 fields in each screen.&lt;/P&gt;&lt;P&gt;On pressing F1 on any of the field in 1st screen, some text "ABC" should be displayed.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Few of  these screen fields have similar lengths and data types.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly, on pressing F1 on the 2nd screen field, some other text"xyz" should dispalyed ,&lt;/P&gt;&lt;P&gt;similarly for 3rd and 4th screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this screen ,I should create15*4 = 60 data elements , where first 15 data elements have description "ABC",next 15 have description "XYZ".and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other solution to the above problem without creating those many(60) data elements?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more question:Other than data element level, is there any other  way to maintain F1 help text for a screen field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 11:04:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/5351383#M1232185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T11:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: F1 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/5351384#M1232186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;see sample code below....(this is for selecion-screen)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  Ztest....
parameters x1.
parameters x2.

at selection-screen on help-request for x1.
* here you can display own help-dialog...
*ex. call screen 101...

at selection-screen on help-request for x2.
* here you can display own help-dialog...
*ex. call screen 102...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards,darek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 12:50:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/5351384#M1232186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T12:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: F1 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/5351385#M1232187</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;You mean for 1st 15 same documentation ,for 2nd 15 other and so on,so in all 4 different documentaions!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what you can do is create these 4 Data element and create documentaion for them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now for the similar 15 fields you can call this documentaion by using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;In screen's flow logic:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS ON HELP-REQUEST .
*call form to show documentaion
FIELD &amp;lt;field1&amp;gt; MODULE show_f1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;In program:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE show_f1 INPUT.
      CALL FUNCTION 'TRINT_SHOW_DOCU_POPUP'
        EXPORTING
          IV_ID                = 'RE'     " ID , cud be found in Table DOKHL for active Documentation
          IV_LANGU             = SY-LANGU
          IV_OBJECT            = &amp;lt;Obj name in CAPS&amp;gt;   " Program name
       EXCEPTIONS       
  DOCU_NOT_FOUND       = 1
         OTHERS               = 2.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in similar ways u can call the 4 diff documentation for fields...&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;Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 13:55:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f1-help/m-p/5351385#M1232187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T13:55:45Z</dc:date>
    </item>
  </channel>
</rss>

