<?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: Dump while using SUPPLY... DEMAND (CONTEXTS) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416695#M200421</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The problem was solved.It seems that the buffer was not able to take large amount of data so that is y for a few fields the alphanumeric value was coming to the numeric fields.&lt;/P&gt;&lt;P&gt;I used the Function module 'DELETE_CONTEXT_BUFFER' after every major call using SUPPLY...DEMAND.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Nov 2006 07:38:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-28T07:38:29Z</dc:date>
    <item>
      <title>Dump while using SUPPLY... DEMAND (CONTEXTS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416691#M200417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working on a Z program in which i have to download data from various tables and update a Z table...To increase the performance of the program i have made use of SUPPLY DEMAND via context and i have used 2 function modules in the context(One type T and another type P).The program is working perfectly fine in the dev system and not giving any errors but in the test system it gives a dump saying that "CONVT_NO_NUMBER" ,it cannot  interpret a company code which is char field as a number...even when that company code is not present in the internal table fields and the clear buffer is being done for the server...&lt;/P&gt;&lt;P&gt;I have also used field symbols for performance improvement so is there any possible way due to which this problem can arise.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ricky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Jul 2006 09:29:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416691#M200417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-22T09:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while using SUPPLY... DEMAND (CONTEXTS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416692#M200418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ricky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after getting the dump you should enter debugger and analyze the situation. Possibly a structure of a Z table is different in development and test system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In debugger, check the conflicting value for where it comes from and where ist should go to. See the call hierarchy for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess you may not have transpoirted all relevant objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Jul 2006 11:39:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416692#M200418</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2006-07-22T11:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while using SUPPLY... DEMAND (CONTEXTS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416693#M200419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,  the reason for your error may be that you may have a company code in your test system that contains alpha characters.  This is allowed in R/3.  The CONVT_NO_NUMBER exception tells me that you may be trying to move a company code value with an alpha to a numerically typed field.  Please make sure that the target field is defined as t001-bukrs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Jul 2006 23:07:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416693#M200419</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-22T23:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while using SUPPLY... DEMAND (CONTEXTS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416694#M200420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ricky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This issue would come when you are passing field of number type to field of char type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can move this field into a temporary variable of character type and use that temp. field in assigning to comp. code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since code was working on DEV, it seems that user profile is different for user running the program in DEV and Test client. Pls check and try making the user profile parameters in Test client same as DEV client and then run the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Jul 2006 02:00:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416694#M200420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-23T02:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dump while using SUPPLY... DEMAND (CONTEXTS)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416695#M200421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The problem was solved.It seems that the buffer was not able to take large amount of data so that is y for a few fields the alphanumeric value was coming to the numeric fields.&lt;/P&gt;&lt;P&gt;I used the Function module 'DELETE_CONTEXT_BUFFER' after every major call using SUPPLY...DEMAND.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Nov 2006 07:38:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dump-while-using-supply-demand-contexts/m-p/1416695#M200421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-28T07:38:29Z</dc:date>
    </item>
  </channel>
</rss>

