<?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 exit needed.......... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845049#M358631</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;How is the search help displayed..Is it done using PROCESS ON VALUE-REQUEST..event..&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, 11 Jan 2007 17:07:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-11T17:07:22Z</dc:date>
    <item>
      <title>Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845047#M358629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the t-code CG36VEN , the report generation variant field is taking only 1 report type as 'IBD_MSDS'. it is assigned as constant in program SAPLC13G0 and in top include LC13G0TOP as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: IC_REPTYPE_IBD_MSDS LIKE TCGL1-REPTYPE   VALUE 'IBD_MSDS'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my requiremnt is to remove that default value IBD_MSDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any way to work out?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;giri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 16:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845047#M358629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T16:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845048#M358630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its urgent.... let me know... is there any chance to modify the top include?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Giri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 16:59:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845048#M358630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T16:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845049#M358631</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;How is the search help displayed..Is it done using PROCESS ON VALUE-REQUEST..event..&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, 11 Jan 2007 17:07:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845049#M358631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T17:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845050#M358632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Naren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process on Value-Request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; FIELD RCGBVSEL-LDEPID   MODULE D1010_VALREQ_LDEPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in select statement ...&lt;/P&gt;&lt;P&gt;    SELECT DISTINCT RECN LDEPID FROM ESTLP&lt;/P&gt;&lt;P&gt;        INTO CORRESPONDING FIELDS OF ESTLP&lt;/P&gt;&lt;P&gt;        WHERE  LDEPID LIKE V_LDEPID&lt;/P&gt;&lt;P&gt;        AND    DELFLG  = SPACE&lt;/P&gt;&lt;P&gt;        &amp;lt;b&amp;gt;AND    REPTYPE = IC_REPTYPE_IBD_MSDS&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this IC_RECTYPE_IBD_MSDS has constant value IBD_MSDS...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks Giri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 17:27:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845050#M358632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T17:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845051#M358633</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 am not sure if there is any other way other than to modify the standard sap code..&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, 11 Jan 2007 17:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845051#M358633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T17:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845052#M358634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Naren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we modify standard sap code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the procedure to modify it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Giri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 17:50:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845052#M358634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T17:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845053#M358635</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;U have to run trx SE38 and press MODIFY icon, so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- The system'll ask you the ACCESS KEY;&lt;/P&gt;&lt;P&gt;- U've to pick up it by registering the object in OSS: you have to have an OSS account to do it.&lt;/P&gt;&lt;P&gt;If you don't have it, you should ask a little help to your basis.&lt;/P&gt;&lt;P&gt;- After inserting the access key the program can be changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe you need only to change the select:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT DISTINCT RECN LDEPID FROM ESTLP
      INTO CORRESPONDING FIELDS OF ESTLP
          WHERE LDEPID LIKE V_LDEPID
            AND DELFLG = SPACE
*           AND REPTYPE = IC_REPTYPE_IBD_MSDS. "&amp;lt;-----
            AND REPTYPE = &amp;lt;......&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 18:01:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845053#M358635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T18:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845054#M358636</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;Please follow steps mentioned by Max...To get the access key..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then modify the code accordingly..&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, 11 Jan 2007 18:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845054#M358636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T18:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845055#M358637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In top include the variable IC_REPTYPE_IBD_MSDS declared as constant with value IBD_MSDS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify the top include is better or the select statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible with user exit to modify the top include or select statement? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Giri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 18:55:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845055#M358637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T18:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845056#M358638</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;If you need to update only the select, I believe it's better to change it and not the top include, because perhaps that constant is used in others programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand you problem you want to change the way to do the select, so change it directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No! It's not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 19:01:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845056#M358638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T19:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: Search help exit needed..........</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845057#M358639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is temporary purpose just to upload files in other report type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to copy the Standard program SAPLC13G0 and its function Pool C13G0 into Z program . So later can assign a t-code to the program and can upload the files with zprogram...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know how to copy a function pool with program into zprogram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Giri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 20:52:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit-needed/m-p/1845057#M358639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-11T20:52:28Z</dc:date>
    </item>
  </channel>
</rss>

