<?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: Dynamic Input Help or Check Table in Custom Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348670#M1231711</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An option..&lt;/P&gt;&lt;P&gt;Go to Table maintanence generator - Environment - Modifications - Events&lt;/P&gt;&lt;P&gt;Choose Appropriate Event. Form Name and Source code(U can write above suggested code within FORM ENDFORM in the newly created include) Keep Break points to identify&lt;/P&gt;&lt;P&gt;If suitable Events not available,&lt;/P&gt;&lt;P&gt; Creating POV in the flow logic of the TMG screen is an option (not sure on this..though)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Mar 2009 11:47:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-16T11:47:53Z</dc:date>
    <item>
      <title>Dynamic Input Help or Check Table in Custom Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348665#M1231706</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;I created a custom table with two fields, field A &amp;amp; field B. Field A can have values like BUKRS, BELNR, BUDAT, GJAHR etc... Now how can I make Field B's input help or check table dynamic depending on the value of Field A?&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;1.) Field A is BUKRS, when I press F4 in Field B a pop up with a list of company code should display. or Field A is BELNR, when I press F4 in Field B a pop up with a list of document number should display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Marc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 02:45:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348665#M1231706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T02:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Input Help or Check Table in Custom Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348666#M1231707</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;Through programatically only its possible its not possible from SE11 while creating table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the program &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare these four fields as input parameters...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen on value-request for field B.
if fieldA = 'BUKRS'.
  select query to fetch list of company codes
  call function 'F4IF_INT_TABLE_VALUE_REQUEST'....." passing the values fetch from select query in 
" internal table
elseif fieldA = 'BELNR'.
  select query to fetch list of document
  call function 'F4IF_INT_TABLE_VALUE_REQUEST'....." passing the values fetch from select query in 
" internal table
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 03:12:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348666#M1231707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T03:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Input Help or Check Table in Custom Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348667#M1231708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think Shiddarth has given you good suggestion, go with it.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishna..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 03:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348667#M1231708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T03:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Input Help or Check Table in Custom Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348668#M1231709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but the requirement is maintaining the custom table using SM30. From there we need to have a dynamic F4 for Field B depending on the value of Field A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 03:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348668#M1231709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T03:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Input Help or Check Table in Custom Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348669#M1231710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure this will work , but you can give it a try :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the table maintenance is generated , you can go to the function group you created for this table maintenance, and you will find the screen generated as part of this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can edit this screen and add code as you wish, so you can try calling the search help function modules mentioned above based on conditions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mathews&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 04:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348669#M1231710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T04:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Input Help or Check Table in Custom Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348670#M1231711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An option..&lt;/P&gt;&lt;P&gt;Go to Table maintanence generator - Environment - Modifications - Events&lt;/P&gt;&lt;P&gt;Choose Appropriate Event. Form Name and Source code(U can write above suggested code within FORM ENDFORM in the newly created include) Keep Break points to identify&lt;/P&gt;&lt;P&gt;If suitable Events not available,&lt;/P&gt;&lt;P&gt; Creating POV in the flow logic of the TMG screen is an option (not sure on this..though)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 11:47:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-input-help-or-check-table-in-custom-table/m-p/5348670#M1231711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T11:47:53Z</dc:date>
    </item>
  </channel>
</rss>

