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

Dump COMMIT_IN_PERFORM_ON_COMMIT when trying to upload a large file

Former Member
0 Likes
1,964

Hi all,

I am trying to upload a file that has around 4000 records. Each record will update around 5-6 infotypes. When I upload the complete file, after some records I get the dump saying COMMIT_IN_PERFORM_ON_COMMIT. What could be the problem ?

But when the file is split into smaller no of records, the dump does not come.

An immediate response is highly appreciated.

Thanks,

Naila

5 REPLIES 5
Read only

former_member156446
Active Contributor
0 Likes
919

Non-Catchable Exceptions

  • Cause: COMMIT WORK is not allowed within a FORM, which is called using PERFORM ... ON COMMIT.

Runtime Error: COMMIT_IN_PERFORM_ON_COMMIT

[More info>>|http://help.sap.com/abapdocu/en/ABAPCOMMIT.htm]

Read only

0 Likes
919

I have set the parameter no_commit as 'X' in FM HR_INFOTYPE_OPERATION. Only after this was i able to upload more no of records. But it still gives the same error at a later point.

Read only

0 Likes
919

this error would occur if we use Commit statement, where it should not be used... check if you can ignore the commit and can find a work around with your code

Read only

0 Likes
919

If I dont use Commit, will the database be automatically updated once the whole report is run ?

Read only

0 Likes
919

its tough to say that with out seeing your code....