<?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: LTBDFTOP - Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854742#M1320327</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;Write your code where you want to change the value i.e. before processing other logic with the help of new value (instead of writing code in the TOP include).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srilakshmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Jun 2009 07:37:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-17T07:37:59Z</dc:date>
    <item>
      <title>LTBDFTOP - Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854736#M1320321</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;&lt;/P&gt;&lt;P&gt;Please let me know is there any Possibility to change the value of the variable G_MOD_LIMIT_FACT_WARN_TO_ERROR in the standard include program LTBDFTOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In standard functionality the value for this variable is 0. this particular value needs to be changed with out using the access key for standard include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value needs to be changed by using implicit enhancements only. i have tried with the Possibility of declaring this variable with the changed value by using implicit enhancements. but the enhancement is not activating since the variable has already been declared.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narasimha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 05:55:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854736#M1320321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T05:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: LTBDFTOP - Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854737#M1320322</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 cannot declare G_MOD_LIMIT_FACT_WARN_TO_ERROR  again, so why not pass the value in the implicit enhancement ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 05:58:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854737#M1320322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T05:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: LTBDFTOP - Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854738#M1320323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes i tried to change the value of that variable using implicit enhancement but the statement is not getting accessible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Narasimha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 06:02:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854738#M1320323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T06:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: LTBDFTOP - Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854739#M1320324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Narasimha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the implicit enhancement section you declare one local variable whose value is the new one. Then you will get the new value into that constant.&lt;/P&gt;&lt;P&gt;Pass that value to the already varaible G_MOD_LIMIT_FACT_WARN_TO_ERROR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enhancement-section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: lv_newvalue type c value 'New value'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; G_MOD_LIMIT_FACT_WARN_TO_ERROR  = lv_newvalue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endenhancement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 06:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854739#M1320324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T06:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: LTBDFTOP - Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854740#M1320325</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;Yes i already tried with the logic mentioned by you but the statement is not accessible since it is the top include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 06:54:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854740#M1320325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T06:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: LTBDFTOP - Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854741#M1320326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lakshmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if any other Possibilities.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Narasimha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 07:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854741#M1320326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T07:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: LTBDFTOP - Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854742#M1320327</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;Write your code where you want to change the value i.e. before processing other logic with the help of new value (instead of writing code in the TOP include).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srilakshmi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 07:37:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854742#M1320327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-17T07:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: LTBDFTOP - Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854743#M1320328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Lakshmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.. My issue is solved.&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;Narasimha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 04:36:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ltbdftop-error/m-p/5854743#M1320328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-24T04:36:19Z</dc:date>
    </item>
  </channel>
</rss>

