Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Reg:Shortdump in Program while updating Table AUSP

Former Member
0 Likes
1,332

Hi All,

i have a problem in the program while updating the AUSP table am using the function module

CLVF_VB_INSERT_CLASSIFICATION

in that function module the short dump occurs while try to insert ausp in the following line,

insert auspc_v1 client specified from table auspcv1.

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.

i have maintained all the necessary settings in cl24n.

could you please resolve my issue.

Hi All,

i have a problem in the program while updating the AUSP table am using the function module

CLVF_VB_INSERT_CLASSIFICATION

in that function module the short dump occurs while try to insert ausp in the following line,

insert auspc_v1 client specified from table auspcv1.

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.

i have maintained all the necessary settings in cl24n.

could you please resolve my issue.

7 REPLIES 7
Read only

Former Member
0 Likes
1,156

this FM is of type UPDATE .

call in the below way.

CALL 'CLVF_VB_INSERT_CLASSIFICATION' in update task.

but this will be successfull after commit statement.

Read only

0 Likes
1,156

Hi Phanindra,

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?

Read only

Former Member
0 Likes
1,156

Hi Suresh

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.

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.

and also you can do one thing.

in that FM we have the parameter INSERT_MOD try to pass 'X' for insert mode or Space in update mode.

Thanks!

Edited by: Prasanth on Mar 6, 2009 4:13 PM

Read only

0 Likes
1,156

Hi Prashanth,

am inserting the first record in that table, no records has been there in that table but why the standard has been shortdumping?

Read only

Former Member
0 Likes
1,156

check if these notes help. There are many notes for this FM based on SAP version.

649407 & 165354

Read only

Former Member
0 Likes
1,156

Hi,

check the order of table ausp and your structure which you are using to insert the record into the table ausp

Read only

0 Likes
1,156

Hi Dande,

Its Short Dumping in the standard program itself am just updating in cl20n thats it.