<?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: Run time error - DYNPRO_MSG_IN_HELP using F4IF_INT_TABLE_VALUE_REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802201#M1587222</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I took the message from At selection screen on help to at selection screen. That helped.&lt;/P&gt;&lt;P&gt;Thanks guys for trying to help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Shareen Hegde on Mar 29, 2011 5:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Mar 2011 15:55:45 GMT</pubDate>
    <dc:creator>former_member125661</dc:creator>
    <dc:date>2011-03-29T15:55:45Z</dc:date>
    <item>
      <title>Run time error - DYNPRO_MSG_IN_HELP using F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802197#M1587218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using FM - F4IF_INT_TABLE_VALUE_REQUEST on a selection screenf field. After that I do some validation and throw an error message in the at selection screen event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this results in DYNPRO_MSG_IN_HELP error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to have the error message. I cannot change it to Info or Success message. (Program doesn't give run time error if i change the message to S or I or W ). How do I get around this ? What is wrong with F4IF_INT_TABLE_VALUE_REQUEST .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I not calling it correctly ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield        = 'CLASS'   "Field from it_class
      dynpprog        = sy-cprog  "Program
      dynpnr          = sy-dynnr  "Dynpro number
      dynprofield     = 'P_FOLD' "Select-options field
      value_org       = 'S'       "Value return: C: cell by cell, "S: structured
      display         = 'F'       "Override readiness for input
    TABLES
      value_tab       = it_class "table with selection values
      return_tab      = t_return  "Return value
    EXCEPTIONS
      parameter_error = 1
      no_values_found = 2
      OTHERS          = 3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error Message:    The program attempted to issue a " " message during "F4" processing.&lt;/P&gt;&lt;P&gt;    This is an illegal operation.&lt;/P&gt;&lt;P&gt;    The program was terminated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Screen name.............. "ZMMR0010_INFORECORD_UPDT"&lt;/P&gt;&lt;P&gt;    Screen number............ 0200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Shareen Hegde on Mar 29, 2011 1:47 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 23:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802197#M1587218</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2011-03-28T23:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error - DYNPRO_MSG_IN_HELP using F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802198#M1587219</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;ther are 3 things you can change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter dynpprog shouldn't be sy-cprog or sy-repid. Please decalre a variable where you can pass the value of sy-cprog to and give it to that parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter dynpnr shouldn't be sy-dynnr. Please decalre a variable where you can pass the value of sy-dynnr to and give it to that parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter display is of type DDBOOL_D and can have value 'X' or SPACE (see fix values of domain DDBOOL!).&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;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 07:10:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802198#M1587219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-29T07:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error - DYNPRO_MSG_IN_HELP using F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802199#M1587220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shareen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just comment the display parameter which you have defined in your function module or else pass 'X' instead of 'F'. This display parameter can accept only two values 'blank or X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you to resolve the issue &amp;amp; close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Vinit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: vinit005 on Mar 29, 2011 9:36 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 07:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802199#M1587220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-29T07:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error - DYNPRO_MSG_IN_HELP using F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802200#M1587221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shareen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot give an error message inside the AT SELECTION SCREEN ON VALUE REQUEST event. This will throw a dump. Instead you can give a Status message using the addition 'DISPLAY LIKE 'E''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: MESSAGE 'Invalid Input' type 'S' DISPLAY LIKE 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rathish R Nair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 08:27:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802200#M1587221</guid>
      <dc:creator>rathishr_nair</dc:creator>
      <dc:date>2011-03-29T08:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Run time error - DYNPRO_MSG_IN_HELP using F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802201#M1587222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I took the message from At selection screen on help to at selection screen. That helped.&lt;/P&gt;&lt;P&gt;Thanks guys for trying to help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Shareen Hegde on Mar 29, 2011 5:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2011 15:55:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/run-time-error-dynpro-msg-in-help-using-f4if-int-table-value-request/m-p/7802201#M1587222</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2011-03-29T15:55:45Z</dc:date>
    </item>
  </channel>
</rss>

