<?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 Reg:Shortdump in Program while updating Table AUSP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270689#M1216813</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;i have a problem in the program while updating the AUSP table am using the function module&lt;/P&gt;&lt;P&gt;CLVF_VB_INSERT_CLASSIFICATION&lt;/P&gt;&lt;P&gt;in that function module the short dump occurs while try to insert ausp in the following line,&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;insert auspc_v1 client specified from table auspcv1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;the problem is while updating transaction CL20N the update has been failed thats why i have tried to manually insert in AUSP even though its short dumping.&lt;/P&gt;&lt;P&gt;i have maintained all the necessary settings in cl24n.&lt;/P&gt;&lt;P&gt;could you please resolve my issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Mar 2009 10:36:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-06T10:36:13Z</dc:date>
    <item>
      <title>Reg:Shortdump in Program while updating Table AUSP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270689#M1216813</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;i have a problem in the program while updating the AUSP table am using the function module&lt;/P&gt;&lt;P&gt;CLVF_VB_INSERT_CLASSIFICATION&lt;/P&gt;&lt;P&gt;in that function module the short dump occurs while try to insert ausp in the following line,&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;insert auspc_v1 client specified from table auspcv1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;the problem is while updating transaction CL20N the update has been failed thats why i have tried to manually insert in AUSP even though its short dumping.&lt;/P&gt;&lt;P&gt;i have maintained all the necessary settings in cl24n.&lt;/P&gt;&lt;P&gt;could you please resolve my issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 10:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270689#M1216813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T10:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Shortdump in Program while updating Table AUSP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270690#M1216814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this FM is of type UPDATE .&lt;/P&gt;&lt;P&gt;call in the below way.&lt;/P&gt;&lt;P&gt;CALL 'CLVF_VB_INSERT_CLASSIFICATION' in update task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this will be successfull after commit statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 10:38:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270690#M1216814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T10:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Shortdump in Program while updating Table AUSP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270691#M1216815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Suresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think while inserting in the table auspc_v1 if it is tryng to insert same record( considering the primary keys) it will goes to dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so that to avoid that you need to chekc in that table auspc_v1 before exectuing that FM wether its tyring to insertnig the same record or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also you can do one thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in that FM we have the parameter &lt;STRONG&gt;INSERT_MOD&lt;/STRONG&gt;  try to pass &lt;STRONG&gt;'X'&lt;/STRONG&gt;  for insert mode or &lt;STRONG&gt;Space&lt;/STRONG&gt; in update mode.&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;&lt;/P&gt;&lt;P&gt;Edited by: Prasanth on Mar 6, 2009 4:13 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 10:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270691#M1216815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T10:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Shortdump in Program while updating Table AUSP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270692#M1216816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check if these notes help. There are many notes for this FM based on SAP version.&lt;/P&gt;&lt;P&gt;649407 &amp;amp; 165354&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 10:44:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270692#M1216816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T10:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Shortdump in Program while updating Table AUSP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270693#M1216817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phanindra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Thanks For your quick reply the problem while am try to update in CL20N transaction the update has been failed even sap uses the same function module CLVF_VB_INSERT_CLASSIFICATION but its short dumping .the manual insert is my second option could you please say why the standard has been short dumping?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 10:45:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270693#M1216817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T10:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Shortdump in Program while updating Table AUSP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270694#M1216818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashanth,&lt;/P&gt;&lt;P&gt;   am inserting the first record in that table, no records has been there in that table but why the standard has been shortdumping?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 10:47:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270694#M1216818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T10:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Shortdump in Program while updating Table AUSP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270695#M1216819</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;    check the order of table ausp and your structure which you are using to insert the record into the table ausp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 11:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270695#M1216819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T11:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reg:Shortdump in Program while updating Table AUSP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270696#M1216820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dande,&lt;/P&gt;&lt;P&gt;   Its Short Dumping in the standard program itself am just updating in cl20n thats it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 11:11:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-shortdump-in-program-while-updating-table-ausp/m-p/5270696#M1216820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T11:11:13Z</dc:date>
    </item>
  </channel>
</rss>

