6.12.10

SAP Note 11544 - Data inconsistency between scheduling and jobs.

Symptom

When you try to delete a scheduling item in the backup
scheduling transaction, an error message is issued:
Commit problems in RSDBA000, object JOB, function DELETE

Cause and prerequisites

A job scheduled from the backup scheduling transaction
was deleted by hand. The interface to the function that
performs the delete has been changed.

Solution
A correction to RSDBA000 corrects the error: in FORM "DELJOB",
after "CALL DIALOG 'DELETE_JOBS'" (around line 1500):

Before:
if sy-subrc = 4 and jobs_to_delete = 0.
j_rc = 0.
else.
j_rc = sy-subrc.
endif.

After:
if jobs_to_delete = 0.
j_rc = 0.
else.
j_rc = sy-subrc.
endif.

Key word: CCMS backup

No comments:

Post a Comment