cancel
Showing results for 
Search instead for 
Did you mean: 

Resubmission/ Process Reminder Dates for Copntracts

Former Member
0 Kudos


I am trying to determine how to set-up a batch job to run the activity that the resubmission completes. There is a seperate tcode for it called RECARSCN, program RFRECARSCN but I get error message saying ti can not be run in batch when I set it up in sm36.

I have read other posts refering to running this in batch to solve other peoples issues.  However I do not know why it errors out whe nI set-up up and run it.

Accepted Solutions (0)

Answers (1)

Answers (1)

bowen_cao
Contributor
0 Kudos

Hi,

It is hard coded in the report RFRECARSCN as below:

************************************

*===================================================================

FORM initialization.

*===================================================================



* BODY

* support online mode only

  IF sy-batch = abap_true.

    MESSAGE a054(recabc).

  ENDIF.



  s_rsdate-high = sy-datum + 7.

  APPEND s_rsdate TO s_rsdate[].



ENDFORM.

************************************

So, it will not be able to run it in background job in standard system, maybe you can mark the source coding with modification.

Best regards,

Bowen