cancel
Showing results for 
Search instead for 
Did you mean: 

Process chains execute when transport request imported

Former Member
0 Kudos

Hi Gurus,

I activate some BI Content element (GRC content), which contains some process chains. In the development system everything looks OK so I transport the objects into the quality system. When the transport request impoerted the quality system, every process chain executed paralell. Why? The schedule option is Immediate in every process chains.

How can I transport those chains into productive system without process chains execution?

Thanks for your helps

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Please also refer to the SAP Note 1233327.

Kind Regards,

Lee

Answers (1)

Answers (1)

dennis_scoville4
Active Contributor
0 Kudos

In order to stop Process Chains from being scheduled immediately upon import, insert the following into the RSADMIN table with ABAP program SAP_RSADMIN_MAINTAIN:

Object = NO_TP_SCHEDULE_IMMEDIATE

Value = X

Former Member
0 Kudos

Thanks Dennis,

After this modification can I schedule process chains immediately? So this modification affects only the "post-import-schedule" or every immediately schedule?

In the future can remodify this table entry?

dennis_scoville4
Active Contributor
0 Kudos

Yes...After this change is made to the RSADMIN table, you can import Process Chain transports where the Start process variant has it set to be scheduled immediately.

This entry can be modified in the future by the same ABAP program and just changing the value of Object to space.

Former Member
0 Kudos

Thanks,

So the optimum solution is the next:

1. Insert this entry into RSADMIN with value 'X',

2. Import transport request - in this phase other process chains - with schedule immediately - cannot executed,

3. Update this entry in RSADMIN to value ' ',

4. Execute process chains,

5. Be happy.

Are there true?