Diagnosis You are extracting data from a DataSource or an InfoProvider. Theselection is made with an open database cursor. This cursor has beeninvalidated by one of the following ABAP statements:
COMMIT WORK>
ROLLBACK WORK>
CALL TRANSACTION>
SUBMIT> The ABAP statement responsible for termination probably ran in atransformation routine programmed by you.System Response Request processing has ended with errors. Procedure Change the code for the transformation in which one of the specifiedABAP statements is executed. If you are using statement COMMIT WORK >, replace it with:
CALL FUNCTION 'DB_COMMIT'.>
|