<?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: Process on value-request in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406043#M817964</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 can call dialog modules in the POV event using the event keyword PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;  FIELD &amp;lt;f&amp;gt; MODULE &amp;lt;mod&amp;gt;.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the PROCESS ON VALUE-REQUEST statement, you can only use the MODULE statement together with the FIELD statement. When the user chooses F4 for a field &amp;lt;f&amp;gt;, the system calls the module &amp;lt;mod&amp;gt; belonging to the FIELD &amp;lt;f&amp;gt; statement. If there is more than one FIELD statement for the same field &amp;lt;f&amp;gt;, only the first is executed. The module &amp;lt;mod&amp;gt; is defined in the ABAP program like a normal PAI module. However, the contents of the screen field &amp;lt;f&amp;gt; are not available, since it is not transported by the FIELD statement during the PROCESS ON HELP-REQUEST event. You can now program your own value lists in the module. However, this procedure is only recommended if it really is not possible to use a search help. Defining search helps is much easier than PROCESS ON VALUE-REQUEST, since the system takes over some of the standard operations, such as getting field contents from the screen. It also ensures that the F4 help has a uniform look and feel throughout the system. Furthermore, it means that you do not have to reassign input help to fields on each screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4IF_FIELD_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;Calls the input help of the ABAP Dictionary dynamically. You can pass the component names of a structure or database table of the ABAP Dictionary to the function module in the import parameters TABNAME and FIELDNAME. The function module starts the ABAP Dictionary input help for this component. All of the relevant screen fields are read. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user&amp;#146;s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;This function module displays a value list that you created in an ABAP program. The value list is passed to the function module as the table parameter VALUE_TAB. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user&amp;#146;s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are also two function modules - DYNP_VALUES_READ and DYNP_VALUES_UPDATE - that can read the values of screen fields and return values to them during the POV event. For further information, refer to the relevant function module documentation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input help in dialog modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT DEMO_DYNPRO_F4_HELP_MODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF VALUES,&lt;/P&gt;&lt;P&gt;         CARRID TYPE SPFLI-CARRID,&lt;/P&gt;&lt;P&gt;         CONNID TYPE SPFLI-CONNID,&lt;/P&gt;&lt;P&gt;       END OF VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: CARRIER(3) TYPE C,&lt;/P&gt;&lt;P&gt;      CONNECTION(4) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: PROGNAME LIKE SY-REPID,&lt;/P&gt;&lt;P&gt;      DYNNUM   LIKE SY-DYNNR,&lt;/P&gt;&lt;P&gt;      DYNPRO_VALUES TYPE TABLE OF DYNPREAD,&lt;/P&gt;&lt;P&gt;      FIELD_VALUE LIKE LINE OF DYNPRO_VALUES,&lt;/P&gt;&lt;P&gt;      VALUES_TAB TYPE TABLE OF VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE INIT OUTPUT.&lt;/P&gt;&lt;P&gt;  PROGNAME = SY-REPID.&lt;/P&gt;&lt;P&gt;  DYNNUM   = SY-DYNNR.&lt;/P&gt;&lt;P&gt;  CLEAR: FIELD_VALUE, DYNPRO_VALUES.&lt;/P&gt;&lt;P&gt;  FIELD_VALUE-FIELDNAME = 'CARRIER'.&lt;/P&gt;&lt;P&gt;  APPEND FIELD_VALUE TO DYNPRO_VALUES.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CANCEL INPUT.&lt;/P&gt;&lt;P&gt;  LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE VALUE_CARRIER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            TABNAME           = 'DEMOF4HELP'&lt;/P&gt;&lt;P&gt;            FIELDNAME         = 'CARRIER1'&lt;/P&gt;&lt;P&gt;            DYNPPROG          =  PROGNAME&lt;/P&gt;&lt;P&gt;            DYNPNR            =  DYNNUM&lt;/P&gt;&lt;P&gt;            DYNPROFIELD       = 'CARRIER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE VALUE_CONNECTION INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            DYNAME                   = PROGNAME&lt;/P&gt;&lt;P&gt;            DYNUMB                   = DYNNUM&lt;/P&gt;&lt;P&gt;            TRANSLATE_TO_UPPER       = 'X'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            DYNPFIELDS               = DYNPRO_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE DYNPRO_VALUES INDEX 1 INTO FIELD_VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT  CARRID CONNID&lt;/P&gt;&lt;P&gt;    FROM  SPFLI&lt;/P&gt;&lt;P&gt;    INTO  CORRESPONDING FIELDS OF TABLE VALUES_TAB&lt;/P&gt;&lt;P&gt;    WHERE CARRID = FIELD_VALUE-FIELDVALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            RETFIELD         = 'CONNID'&lt;/P&gt;&lt;P&gt;            DYNPPROG         = PROGNAME&lt;/P&gt;&lt;P&gt;            DYNPNR           = DYNNUM&lt;/P&gt;&lt;P&gt;            DYNPROFIELD      = 'CONNECTION'&lt;/P&gt;&lt;P&gt;            VALUE_ORG        = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            VALUE_TAB        = VALUES_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Feb 2008 08:31:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-08T08:31:37Z</dc:date>
    <item>
      <title>Process on value-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406039#M817960</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;Can anyone tell me how to use POV event in dialog programming?I have to add F4 help for 2 date fields in one of the screens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406039#M817960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406040#M817961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;process ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;FIELD LIFNR MODULE F4HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF T_LIFNR OCCURS 0,&lt;/P&gt;&lt;P&gt;       LIFNR LIKE LFA1-LIFNR,&lt;/P&gt;&lt;P&gt;       END OF T_LIFNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       SELECT LIFNR FROM WYT3&lt;/P&gt;&lt;P&gt;       INTO TABLE T_LIFNR WHERE PARVW = 'OR'.&lt;/P&gt;&lt;P&gt;call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;retfield = 'LIFNR'&lt;/P&gt;&lt;P&gt;dynprofield = 'LIFNR'&lt;/P&gt;&lt;P&gt;dynpprog = 'SAPLCOKO1'&lt;/P&gt;&lt;P&gt;dynpnr = '0115'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;value_tab = T_LIFNR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:15:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406040#M817961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406041#M817962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POV : This is triggered when user clicks F4 function key (for listing all possible values for the field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can call dialog modules in the POV event using the event keyword PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;FIELD &amp;lt;f&amp;gt; MODULE &amp;lt;mod&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below link for sample code.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/abap/code-for-f4-in-dialog-program.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/abap/code-for-f4-in-dialog-program.htm&lt;/A&gt;&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 found helpfull,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Chaitanya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:15:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406041#M817962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406042#M817963</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 u want to date fields means better u can call the system variable itself..It will automatically give the search help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to display on ur own means use the following any one of the function modules..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward IF useful&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------" /&gt;&lt;P&gt;form searchs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select carrier dept_code into table itab from&lt;/P&gt;&lt;P&gt;zdepment_e0220.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'POPUP_WITH_TABLE_DISPLAY'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      endpos_col   = 100&lt;/P&gt;&lt;P&gt;      endpos_row   = 20&lt;/P&gt;&lt;P&gt;      startpos_col = 60&lt;/P&gt;&lt;P&gt;      startpos_row = 10&lt;/P&gt;&lt;P&gt;      titletext    = 'DEPARTMENT DETAILS'&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      choise       = choice&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      valuetab     = itab&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      break_off    = 1&lt;/P&gt;&lt;P&gt;      others       = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  read table itab index choice.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ZMCARSEM_41_01-RTYPE = ITAB_SEARCH-BSART.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    test1 = itab-carrier.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    "SEARCHS&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : RET_TAB TYPE TABLE OF DDSHRETVAL WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    RETFIELD        = 'BUKRS'&lt;/P&gt;&lt;P&gt;    DYNPROFIELD     = 'BUKRS'&lt;/P&gt;&lt;P&gt;    DYNPPROG        = SY-CPROG&lt;/P&gt;&lt;P&gt;    DYNPNR          = SY-DYNNR&lt;/P&gt;&lt;P&gt;    VALUE_ORG       = 'S'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    VALUE_TAB       = HELP_ITEM&lt;/P&gt;&lt;P&gt;    RETURN_TAB      = RET_TAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406042#M817963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406043#M817964</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 can call dialog modules in the POV event using the event keyword PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;  FIELD &amp;lt;f&amp;gt; MODULE &amp;lt;mod&amp;gt;.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the PROCESS ON VALUE-REQUEST statement, you can only use the MODULE statement together with the FIELD statement. When the user chooses F4 for a field &amp;lt;f&amp;gt;, the system calls the module &amp;lt;mod&amp;gt; belonging to the FIELD &amp;lt;f&amp;gt; statement. If there is more than one FIELD statement for the same field &amp;lt;f&amp;gt;, only the first is executed. The module &amp;lt;mod&amp;gt; is defined in the ABAP program like a normal PAI module. However, the contents of the screen field &amp;lt;f&amp;gt; are not available, since it is not transported by the FIELD statement during the PROCESS ON HELP-REQUEST event. You can now program your own value lists in the module. However, this procedure is only recommended if it really is not possible to use a search help. Defining search helps is much easier than PROCESS ON VALUE-REQUEST, since the system takes over some of the standard operations, such as getting field contents from the screen. It also ensures that the F4 help has a uniform look and feel throughout the system. Furthermore, it means that you do not have to reassign input help to fields on each screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4IF_FIELD_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;Calls the input help of the ABAP Dictionary dynamically. You can pass the component names of a structure or database table of the ABAP Dictionary to the function module in the import parameters TABNAME and FIELDNAME. The function module starts the ABAP Dictionary input help for this component. All of the relevant screen fields are read. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user&amp;#146;s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;This function module displays a value list that you created in an ABAP program. The value list is passed to the function module as the table parameter VALUE_TAB. If you specify the import parameters DYNPPROG, DYNPNR, and DYNPROFIELD, the user&amp;#146;s selection is returned to the corresponding field on the screen. If you specify the table parameter RETURN_TAB, the selection is returned into the table instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are also two function modules - DYNP_VALUES_READ and DYNP_VALUES_UPDATE - that can read the values of screen fields and return values to them during the POV event. For further information, refer to the relevant function module documentation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input help in dialog modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT DEMO_DYNPRO_F4_HELP_MODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF VALUES,&lt;/P&gt;&lt;P&gt;         CARRID TYPE SPFLI-CARRID,&lt;/P&gt;&lt;P&gt;         CONNID TYPE SPFLI-CONNID,&lt;/P&gt;&lt;P&gt;       END OF VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: CARRIER(3) TYPE C,&lt;/P&gt;&lt;P&gt;      CONNECTION(4) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: PROGNAME LIKE SY-REPID,&lt;/P&gt;&lt;P&gt;      DYNNUM   LIKE SY-DYNNR,&lt;/P&gt;&lt;P&gt;      DYNPRO_VALUES TYPE TABLE OF DYNPREAD,&lt;/P&gt;&lt;P&gt;      FIELD_VALUE LIKE LINE OF DYNPRO_VALUES,&lt;/P&gt;&lt;P&gt;      VALUES_TAB TYPE TABLE OF VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE INIT OUTPUT.&lt;/P&gt;&lt;P&gt;  PROGNAME = SY-REPID.&lt;/P&gt;&lt;P&gt;  DYNNUM   = SY-DYNNR.&lt;/P&gt;&lt;P&gt;  CLEAR: FIELD_VALUE, DYNPRO_VALUES.&lt;/P&gt;&lt;P&gt;  FIELD_VALUE-FIELDNAME = 'CARRIER'.&lt;/P&gt;&lt;P&gt;  APPEND FIELD_VALUE TO DYNPRO_VALUES.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CANCEL INPUT.&lt;/P&gt;&lt;P&gt;  LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE VALUE_CARRIER INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            TABNAME           = 'DEMOF4HELP'&lt;/P&gt;&lt;P&gt;            FIELDNAME         = 'CARRIER1'&lt;/P&gt;&lt;P&gt;            DYNPPROG          =  PROGNAME&lt;/P&gt;&lt;P&gt;            DYNPNR            =  DYNNUM&lt;/P&gt;&lt;P&gt;            DYNPROFIELD       = 'CARRIER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE VALUE_CONNECTION INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            DYNAME                   = PROGNAME&lt;/P&gt;&lt;P&gt;            DYNUMB                   = DYNNUM&lt;/P&gt;&lt;P&gt;            TRANSLATE_TO_UPPER       = 'X'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            DYNPFIELDS               = DYNPRO_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE DYNPRO_VALUES INDEX 1 INTO FIELD_VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT  CARRID CONNID&lt;/P&gt;&lt;P&gt;    FROM  SPFLI&lt;/P&gt;&lt;P&gt;    INTO  CORRESPONDING FIELDS OF TABLE VALUES_TAB&lt;/P&gt;&lt;P&gt;    WHERE CARRID = FIELD_VALUE-FIELDVALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            RETFIELD         = 'CONNID'&lt;/P&gt;&lt;P&gt;            DYNPPROG         = PROGNAME&lt;/P&gt;&lt;P&gt;            DYNPNR           = DYNNUM&lt;/P&gt;&lt;P&gt;            DYNPROFIELD      = 'CONNECTION'&lt;/P&gt;&lt;P&gt;            VALUE_ORG        = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            VALUE_TAB        = VALUES_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:31:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406043#M817964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T08:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406044#M817965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there is no nedd of this event for search help on a date field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF ST_HEADER,&lt;/P&gt;&lt;P&gt;      BUDAT       LIKE MKPF-BUDAT,&lt;/P&gt;&lt;P&gt;     END OF ST_HEADER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the properties box of that field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give name = ST_HEADER-BUDAT&lt;/P&gt;&lt;P&gt;give DICT-&amp;gt;format = dats&lt;/P&gt;&lt;P&gt;Program = check input field, give possible entries as 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is enopugh to acheive u r thread..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any queries revert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 08:51:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406044#M817965</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2008-02-08T08:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406045#M817966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have implemented this logic in my program.But in the drop down box I am getting all zeros like 00.00.0000.What would be the reason?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 09:22:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request/m-p/3406045#M817966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T09:22:37Z</dc:date>
    </item>
  </channel>
</rss>

