<?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 Unable a button in F4IF_INT_TABLE_VALUE_REQUEST function. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499333#M1258024</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, &lt;/P&gt;&lt;P&gt;I would like to know how I can unable the check button when I push the matchcode of a dynpro field and pop-up the table with values.&lt;/P&gt;&lt;P&gt;So if my dynpro field is screen-input = 0 I would like that your matchcode can't select a value.&lt;/P&gt;&lt;P&gt;Debugging the function F4IF_INT_TABLE_VALUE_REQUEST I have found the field  &lt;/P&gt;&lt;P&gt;CALLCONTROL-DISPONLY  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if CALLCONTROL-DISPONLY  = 'X'  the check button is unable .&lt;/P&gt;&lt;P&gt;if CALLCONTROL-DISPONLY  = ' ' the check button is enable.&lt;/P&gt;&lt;P&gt;but I don't know how I can change Callcontrol field before call function F4IF_INT_TABLE_VALUE_REQUEST and pass the value inside F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;Any suggestion, please ?.&lt;/P&gt;&lt;P&gt;Best regards .&lt;/P&gt;&lt;P&gt;Ana &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Apr 2009 10:42:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-17T10:42:25Z</dc:date>
    <item>
      <title>Unable a button in F4IF_INT_TABLE_VALUE_REQUEST function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499333#M1258024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys, &lt;/P&gt;&lt;P&gt;I would like to know how I can unable the check button when I push the matchcode of a dynpro field and pop-up the table with values.&lt;/P&gt;&lt;P&gt;So if my dynpro field is screen-input = 0 I would like that your matchcode can't select a value.&lt;/P&gt;&lt;P&gt;Debugging the function F4IF_INT_TABLE_VALUE_REQUEST I have found the field  &lt;/P&gt;&lt;P&gt;CALLCONTROL-DISPONLY  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if CALLCONTROL-DISPONLY  = 'X'  the check button is unable .&lt;/P&gt;&lt;P&gt;if CALLCONTROL-DISPONLY  = ' ' the check button is enable.&lt;/P&gt;&lt;P&gt;but I don't know how I can change Callcontrol field before call function F4IF_INT_TABLE_VALUE_REQUEST and pass the value inside F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;Any suggestion, please ?.&lt;/P&gt;&lt;P&gt;Best regards .&lt;/P&gt;&lt;P&gt;Ana &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 10:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499333#M1258024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T10:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Unable a button in F4IF_INT_TABLE_VALUE_REQUEST function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499334#M1258025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could use the parameter 'DISPLAY' of this function module to control, if the control pops up in display mode only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Wolfgang&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 11:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499334#M1258025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T11:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: Unable a button in F4IF_INT_TABLE_VALUE_REQUEST function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499335#M1258026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can check whther the parameter field is input enabled or not.Try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at screen.
if screen-input = 0.
else.
" call FM for F4...
endif.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 11:10:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499335#M1258026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T11:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: Unable a button in F4IF_INT_TABLE_VALUE_REQUEST function.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499336#M1258027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks  Wolfgang Valtin  . &lt;/P&gt;&lt;P&gt;I didn't see this parameter. &lt;/P&gt;&lt;P&gt;Thanks a lot .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Apr 2009 11:19:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unable-a-button-in-f4if-int-table-value-request-function/m-p/5499336#M1258027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-17T11:19:42Z</dc:date>
    </item>
  </channel>
</rss>

