<?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: serch help code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569022#M1432568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/x/du0" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/x/du0&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Feb 2010 06:03:42 GMT</pubDate>
    <dc:creator>former_member156446</dc:creator>
    <dc:date>2010-02-11T06:03:42Z</dc:date>
    <item>
      <title>serch help code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569019#M1432565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a serch help exit FM. Now I want to fetch record by the following logic:&lt;/P&gt;&lt;P&gt;If user enter MATNR on the input screen in search help tab.&lt;/P&gt;&lt;P&gt;corresponding Batch,plant,stor loc etc  will be selected (Batch validaton are there).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where do I write the code and how?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 11:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569019#M1432565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-10T11:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: serch help code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569020#M1432566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;write in the FM what ever u have created and assign that to Search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data: it_selopt like ddshselopt occurs 0.&lt;/P&gt;&lt;P&gt;  data: wa_selopt like line of it_selopt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if callcontrol-step = 'SELECT'.&lt;/P&gt;&lt;P&gt;it_selopt[] = shlp-selopt[].&lt;/P&gt;&lt;P&gt;loop at it_selopt into wa_selopt.&lt;/P&gt;&lt;P&gt;case wa_selopt-shlpfield.&lt;/P&gt;&lt;P&gt;when 'BATCH'.&lt;/P&gt;&lt;P&gt;write logic here.&lt;/P&gt;&lt;P&gt;( Same like the logic )...&lt;/P&gt;&lt;P&gt;endloop.&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;Regards,&lt;/P&gt;&lt;P&gt;Bharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2010 11:34:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569020#M1432566</guid>
      <dc:creator>BH2408</dc:creator>
      <dc:date>2010-02-10T11:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: serch help code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569021#M1432567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am giving my exact requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MATNR (Material Number) Not mandatory field&lt;/P&gt;&lt;P&gt;MATKL (Material group) Not mandatory field&lt;/P&gt;&lt;P&gt;Batch (Batch Number) Not mandatory field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output&lt;/P&gt;&lt;P&gt;Plant Storag&lt;/P&gt;&lt;P&gt;e loc&lt;/P&gt;&lt;P&gt;Material&lt;/P&gt;&lt;P&gt;Number&lt;/P&gt;&lt;P&gt;Batch&lt;/P&gt;&lt;P&gt;Number&lt;/P&gt;&lt;P&gt;Expiry&lt;/P&gt;&lt;P&gt;date&lt;/P&gt;&lt;P&gt;No of&lt;/P&gt;&lt;P&gt;Packs&lt;/P&gt;&lt;P&gt;Concent&lt;/P&gt;&lt;P&gt;ration&lt;/P&gt;&lt;P&gt;Units&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When only Material number is entered on the input screen&lt;/P&gt;&lt;P&gt;Go to MARA table- Take MARA-MATNR and take relevant material type MARA-MTART&lt;/P&gt;&lt;P&gt;and come to variant table check if this is ZFE2 material type then execute the below else&lt;/P&gt;&lt;P&gt;stop it.&lt;/P&gt;&lt;P&gt;Select data from MARA table&lt;/P&gt;&lt;P&gt;MARA-MATNR put this in the material number column&lt;/P&gt;&lt;P&gt;MARA-MATKL put this in material group column&lt;/P&gt;&lt;P&gt;MAKT-MAKTX put this in material description column&lt;/P&gt;&lt;P&gt;Go to MCH1 table&lt;/P&gt;&lt;P&gt;Select all the batches MCH1-CHARG where MCH1-VFDAT&amp;gt;Today date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are many combination.&lt;/P&gt;&lt;P&gt;User enters batch first also.&lt;/P&gt;&lt;P&gt;please explain my first logic so I can understand fully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 06:01:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569021#M1432567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-11T06:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: serch help code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569022#M1432568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/x/du0" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/x/du0&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 06:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569022#M1432568</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2010-02-11T06:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: serch help code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569023#M1432569</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;My search tab will appear in some specific material type.where will I define it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2010 06:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569023#M1432569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-11T06:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: serch help code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569024#M1432570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to populate date field in record_tab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Feb 2010 10:43:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/serch-help-code/m-p/6569024#M1432570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-12T10:43:42Z</dc:date>
    </item>
  </channel>
</rss>

