<?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: searsh help in dailog programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220746#M136294</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From the help on search helps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;A search help attachment is an assignment of a 
search help to a table, structure or data element, causing
the corresponding search help to be automatically used to 
describe the input help process at this field when       
an ABAP Dictionary field is used in a screen.                                                                                
You can attach a search help as follows:                                                                                
1.  &amp;lt;b&amp;gt;Attach a search help to a structure or table field:
 The attached search help is available for all screen fields that refer to the table or structure field.&amp;lt;/b&amp;gt; 
There must be an assignment between the interface 
parameters of the search help and the fields of the table 
or structure for this type of attachment. In the input 
help process, this assignment results in a value transport
 between the corresponding fields (if they are known at 
least to the module pool of the screen) and the search 
help parameters. As for the foreign key definition, you 
can assign nothing, a constant or any other field (which 
is then sought in the module pool) to indivdiual search 
help parameters. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                                          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg, the table SFLIGHT has the search help SFLIGHT associated with it, and using this, if the CARRID is entered, the CONNID dropdown lists only those connections with the carrid in the CARRID field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to populate the fields as soon as the first field is selected, you might need to look at coding a search help exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sudha Mohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Mar 2006 06:50:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-02T06:50:50Z</dc:date>
    <item>
      <title>searsh help in dailog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220741#M136289</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 have made a search help for a field in module pool.. i am getting the required result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is that i have to fill the other 5 fields on the screen based on my selection of the value in the search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone help me out here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 06:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220741#M136289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T06:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: searsh help in dailog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220742#M136290</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;use the function module F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;In PBO of the screen, fill up an internal table with the desired fields depending upon the selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass this table to above function module to the&lt;/P&gt;&lt;P&gt;value_tab parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 06:42:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220742#M136290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T06:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: searsh help in dailog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220743#M136291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN FOR screenfld2.&lt;/P&gt;&lt;P&gt;IF screenfld1 EQ 'value'.&lt;/P&gt;&lt;P&gt; screenfld2 = 'some value'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt; ...&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 06:43:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220743#M136291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T06:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: searsh help in dailog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220744#M136292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Use below function module&lt;/P&gt;&lt;P&gt;that will definately work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   call function 'DYNP_GET_STEPL'&lt;/P&gt;&lt;P&gt;            importing&lt;/P&gt;&lt;P&gt;              povstepl        = step_line&lt;/P&gt;&lt;P&gt;            exceptions&lt;/P&gt;&lt;P&gt;              stepl_not_found = 1&lt;/P&gt;&lt;P&gt;              others          = 2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; call function 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;            exporting&lt;/P&gt;&lt;P&gt;              dyname     = lc_dyname&lt;/P&gt;&lt;P&gt;              dynumb     = lc_dynumb&lt;/P&gt;&lt;P&gt;            tables&lt;/P&gt;&lt;P&gt;              dynpfields = ltab_fields&lt;/P&gt;&lt;P&gt;            exceptions&lt;/P&gt;&lt;P&gt;              others     = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          commit work and wait.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this may be useful.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 06:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220744#M136292</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-03-02T06:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: searsh help in dailog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220745#M136293</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;Check this Demo Program ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DEMO_DYNPRO_F4_HELP_MODULE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 06:49:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220745#M136293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T06:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: searsh help in dailog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220746#M136294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From the help on search helps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;A search help attachment is an assignment of a 
search help to a table, structure or data element, causing
the corresponding search help to be automatically used to 
describe the input help process at this field when       
an ABAP Dictionary field is used in a screen.                                                                                
You can attach a search help as follows:                                                                                
1.  &amp;lt;b&amp;gt;Attach a search help to a structure or table field:
 The attached search help is available for all screen fields that refer to the table or structure field.&amp;lt;/b&amp;gt; 
There must be an assignment between the interface 
parameters of the search help and the fields of the table 
or structure for this type of attachment. In the input 
help process, this assignment results in a value transport
 between the corresponding fields (if they are known at 
least to the module pool of the screen) and the search 
help parameters. As for the foreign key definition, you 
can assign nothing, a constant or any other field (which 
is then sought in the module pool) to indivdiual search 
help parameters. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;                                                          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg, the table SFLIGHT has the search help SFLIGHT associated with it, and using this, if the CARRID is entered, the CONNID dropdown lists only those connections with the carrid in the CARRID field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to populate the fields as soon as the first field is selected, you might need to look at coding a search help exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sudha Mohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 06:50:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220746#M136294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T06:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: searsh help in dailog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220747#M136295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;depenidn on the searchhelp selection u need to fill teh other 5 fields from the choosen record.&lt;/P&gt;&lt;P&gt;after this record is selected based on this u r populating .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through the function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYNP_VALUES_READ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 06:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220747#M136295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T06:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: searsh help in dailog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220748#M136296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arshad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what you need to do. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your search help definiton, enter the name of the Screen parameters you want to populate. You must make sure that they are spelt exactly the way you have defined them on the screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark these parameters as Export parameters by checking the checkbox. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your Search Help must have these values available and associated with the main parameter you are creating the Search Help for. This you will set through "Parameter Assignment".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user selects a value, SAP will export these values directly to the Screen elements whose names you have defined in you Search Help as Export parameters. This is an automatic function of Search Helps when used with Screens in Module-pools.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhur&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NB: Please award points if found helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 07:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/searsh-help-in-dailog-programming/m-p/1220748#M136296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T07:22:20Z</dc:date>
    </item>
  </channel>
</rss>

