<?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: Screen Help input  button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353896#M804570</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;   Try like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   First add a push button right side of your text box. and add icon on that push button. ( push button attributes-&amp;gt;icon name).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and give function code (push)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in PAI event,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      when 'push'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          u can do whatever u want such as call other screen or call list, to provide required details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     REWARD POINTS IF HELPFUL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;  s.senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Feb 2008 11:18:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-07T11:18:04Z</dc:date>
    <item>
      <title>Screen Help input  button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353893#M804567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello people, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I start to work with screen in SAP. I create a screen ( layout, attributes, element list, flow logic) . It work for the moment .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want to know how to add a link on  the  right of my input field to help users. For exemple I have an input with date, and i need a link to calendar or a table... Or a link to a person ID. I need a bouton ( like in standard screen) not just a help with F4 !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 10:21:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353893#M804567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T10:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Help input  button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353894#M804568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to use the event "Process in Help Reguest'.&lt;/P&gt;&lt;P&gt;Ex: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
  MODULE INIT.

PROCESS AFTER INPUT.
  MODULE CANCEL AT EXIT-COMMAND.

PROCESS ON VALUE-REQUEST.
  FIELD CARRIER MODULE VALUE_CARRIER.
  FIELD CONNECTION MODULE VALUE_CONNECTION.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT demo_dynpro_f4_help_module .

TYPES: BEGIN OF values,
         carrid TYPE spfli-carrid,
         connid TYPE spfli-connid,
       END OF values.

DATA: carrier(3) TYPE c,
      connection(4) TYPE c.

DATA: progname TYPE sy-repid,
      dynnum   TYPE sy-dynnr,
      dynpro_values TYPE TABLE OF dynpread,
      field_value LIKE LINE OF dynpro_values,
      values_tab TYPE TABLE OF values.

CALL SCREEN 100.

MODULE init OUTPUT.
  progname = sy-repid.
  dynnum   = sy-dynnr.
  CLEAR: field_value, dynpro_values.
  field_value-fieldname = 'CARRIER'.
  APPEND field_value TO dynpro_values.
ENDMODULE.

MODULE cancel INPUT.
  LEAVE PROGRAM.
ENDMODULE.

MODULE value_carrier INPUT.

  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
       EXPORTING
            tabname     = 'DEMOF4HELP'
            fieldname   = 'CARRIER1'
            dynpprog    = progname
            dynpnr      = dynnum
            dynprofield = 'CARRIER'.

ENDMODULE.

MODULE value_connection INPUT.

  CALL FUNCTION 'DYNP_VALUES_READ'
       EXPORTING
            dyname             = progname
            dynumb             = dynnum
            translate_to_upper = 'X'
       TABLES
            dynpfields         = dynpro_values.

  READ TABLE dynpro_values INDEX 1 INTO field_value.

  SELECT  carrid connid
    FROM  spfli
    INTO  CORRESPONDING FIELDS OF TABLE values_tab
    WHERE carrid = field_value-fieldvalue.

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
       EXPORTING
            retfield    = 'CONNID'
            dynpprog    = progname
            dynpnr      = dynnum
            dynprofield = 'CONNECTION'
            value_org   = 'S'
       TABLES
            value_tab   = values_tab.

ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 10:26:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353894#M804568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T10:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Help input  button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353895#M804569</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;u need to write like this into screen flow logic after PAI...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON HELP-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD srno MODULE help_srn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODULE help_srn INPUT.&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;CALL SCREEN 2000 STARTING AT 10 5&lt;/P&gt;&lt;P&gt;                    ENDING   AT 60 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDMODULE.                 " help_srn  INPUT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the screen 2000 u can take one text box providing info about that field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u need to take this screen &lt;STRONG&gt;modal dialog box&lt;/STRONG&gt; in attributes ---&amp;gt; screen type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 10:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353895#M804569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T10:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Help input  button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353896#M804570</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;   Try like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   First add a push button right side of your text box. and add icon on that push button. ( push button attributes-&amp;gt;icon name).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and give function code (push)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in PAI event,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      when 'push'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          u can do whatever u want such as call other screen or call list, to provide required details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     REWARD POINTS IF HELPFUL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;  s.senthil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 11:18:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353896#M804570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T11:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Help input  button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353897#M804571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe i dont explain good my self  : I dont want help when The user push F4 ( I have it arleady) but i need just a ""bouton" on the right of the input box which link to a table. ( like in standard screen) .  It is more is for end users... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way , how to put a defaut value ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 11:27:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353897#M804571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T11:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Help input  button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353898#M804572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok , am going to try this way !!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 11:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353898#M804572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T11:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Help input  button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353899#M804573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do it my self !! In layout just select the bos and put 1 in the program - poss entries key fild&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 15:23:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-help-input-button/m-p/3353899#M804573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T15:23:40Z</dc:date>
    </item>
  </channel>
</rss>

