Application Development 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: 

Dump COMMIT_IN_PERFORM_ON_COMMIT when trying to upload a large file

Former Member
0 Kudos

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

former_member156446
Active Contributor
0 Kudos

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]

0 Kudos

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.

0 Kudos

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

0 Kudos

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

0 Kudos

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