<?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: search help in dialog program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811135#M347762</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as you are saying its a dailog program, you should write any code under PROCESS ON VALUE-REQUEST event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Dec 2006 18:57:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-07T18:57:01Z</dc:date>
    <item>
      <title>search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811125#M347752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Fora search help in dialog program.&lt;/P&gt;&lt;P&gt;I HAVE TO GET SEARCH FOR A FIELD ZID ON APARTICULAR SCREEN BASED ON DATA, MODIFIED BY AND A PLANT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I HAVE A RECORD IN ONE MY ZTABLE.&lt;/P&gt;&lt;P&gt;I HAVE TO GET THAT BY SEVERAL SEARCH PARAMETERS SAY BY DATE , MODIFIED BY,PLANT ETC.&lt;/P&gt;&lt;P&gt;each user has been assigned a plant , so in search he has to get records belonging to that plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i cannot include plant in my search help, because user may type in other plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i tried two ways&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) i created a search help in se11 including the plant field again the problem arises if the user types a different plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i want to know whether we can apassa value to plant field in search help(i.e the plant assigned to the user),&lt;/P&gt;&lt;P&gt;i have this kind of thing in some standard t -code i.e especially for searching material , the plant field in search help was filled by one plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this should be one of the solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)I tried to write a code in pov of program code.&lt;/P&gt;&lt;P&gt; this is how my code looks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF ITAB OCCURS 0.&lt;/P&gt;&lt;P&gt;     INCLUDE  STRUCTURE ZXXX.&lt;/P&gt;&lt;P&gt;DATA : END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB HAS FIELDS ID, DATE , MODIFIEDBY , PLANT.&lt;/P&gt;&lt;P&gt;USER_PLANT = 'ABC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM ZXXX INTO TABLE ITAB WHERE PLANT = USER_PLANT.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DDIC_STRUCTURE         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    RETFIELD               = 'ZID'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PVALKEY                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPPROG               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPNR                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPROFIELD            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STEPL                  = 0&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    WINDOW_TITLE           = 'TEST'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VALUE                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    VALUE_ORG              = 'S'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MULTIPLE_CHOICE        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DISPLAY                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_PROGRAM       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_FORM          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    VALUE_TAB              = ITAB&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELD_TAB              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    RETURN_TAB             = IT_RETURN4&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPFLD_MAPPING        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARAMETER_ERROR        = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUES_FOUND        = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;          clear itab.&lt;/P&gt;&lt;P&gt;          read table it_return4 index 1.&lt;/P&gt;&lt;P&gt;            ZXXX-ZID = it_return4-fieldval.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THIS WORKS FINE , BUT HE CANNOT SEARCH BASED ON DATE AND MODIFIEDBY&lt;/P&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;&lt;P&gt;ALL i want is is get a pop up window and should be able to search based on data and modifiedby for a predifined plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope iam clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 15:34:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811125#M347752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T15:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811126#M347753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;any suggestions on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 17:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811126#M347753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T17:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811127#M347754</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;&lt;/P&gt;&lt;P&gt;IF ANYONE HAS ANY SUGGESTION .ITS BIT URGENT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 17:25:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811127#M347754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T17:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811128#M347755</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;Try to filter the data by the plant for the user using the search help exit..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following for a search help exit..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_exit.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_exit.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Link for creating a search help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_elementary.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_elementary.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 17:32:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811128#M347755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T17:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811129#M347756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi NARENDRAN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THIS IS NOT  STANDARD SEARCH HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THIS IS A  Z SEARCH HELP AND I WENT BACK I COULD NOT SEE ANY SEARCH HELP EXIT.&lt;/P&gt;&lt;P&gt;CAN YOU PLEASE ELABORATE ON THIS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EVEN THE LINK DOESN'T SAY MUCH&lt;/P&gt;&lt;P&gt;WAITING FOR YOUR REPLY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PREETI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 17:38:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811129#M347756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T17:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811130#M347757</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;Goto SE11..Give the search help name ..Press change button..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the definition tab..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There will be field called Search help exit..There you can give a Function module name..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have the logic inside the FM..&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;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 17:42:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811130#M347757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T17:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811131#M347758</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 mean to say i need to write code for that fm ,is there any fm i need to copy and can modify the select query or do ineed to write from scratch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i need to write one from scratch , please send me the code if you have one and i can take a look at it and develop my own.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 17:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811131#M347758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T17:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811132#M347759</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;Create a FM with the following code..The interface is defined in the code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Function module top include add the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;TYPE-POOLS: shlp, vrm.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN this code I am deleting the records that are not of the currency USD...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do the same thing for your requirement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION Y_SEARCH_HELP_EXIT.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      SHLP_TAB TYPE  SHLP_DESCR_TAB_T&lt;/P&gt;&lt;P&gt;*"      RECORD_TAB STRUCTURE  SEAHLPRES&lt;/P&gt;&lt;P&gt;*"  CHANGING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(SHLP) TYPE  SHLP_DESCR_T&lt;/P&gt;&lt;P&gt;*"     REFERENCE(CALLCONTROL) LIKE  DDSHF4CTRL STRUCTURE  DDSHF4CTRL&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;where z_test is my z table..&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: ITAB LIKE Z_TEST OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB[] = RECORD_TAB[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT RECORD_TAB[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DELETE ITAB WHERE WAERS &amp;lt;&amp;gt; 'USD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  RECORD_TAB[] = ITAB[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 18:07:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811132#M347759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T18:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811133#M347760</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;one final question . do i need to create a new funtion group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tries to give some z abc , it says function doesnot exist.&lt;/P&gt;&lt;P&gt;it does not create the function group like the table maintenance generator dooes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 18:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811133#M347760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T18:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811134#M347761</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;&lt;/P&gt;&lt;P&gt;Yes. You have to create the Function group manually..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE37 ..in the menu ..Go to -&amp;gt; Function groups -&amp;gt; Create Function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 18:20:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811134#M347761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T18:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: search help in dialog program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811135#M347762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as you are saying its a dailog program, you should write any code under PROCESS ON VALUE-REQUEST event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 18:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-in-dialog-program/m-p/1811135#M347762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T18:57:01Z</dc:date>
    </item>
  </channel>
</rss>

