cancel
Showing results for 
Search instead for 
Did you mean: 

Stop & Start Real Time Daemon through Process Chain

former_member194977
Participant
0 Kudos

Hi

Does anyone know how and which process types to use to stop and start the Real-Time Daemon in a process chain ?

Please let me know if you do.

Many thanks,

Anthony

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

to my knowledge we just have "closing real time request" process type in process chain, atleast in SP < 10,am not sure of higher SP.

Hope it Helps

Chetan

@CP..

former_member194977
Participant
0 Kudos

Hi Chetan

Yes, I have tested the 'Close Request of Real-Time InfoPackage' process type in a process chain but it is of no use. The RDA daemon as it is still active will trigger the real-time delta infopackage again. It is the RDA daemon which needs to be stopped and it will eventually close the requests of the infopackage and DTP(if any) and activate the last delta request (if any) in the DSO.

Cheers,

Anthony

Former Member
0 Kudos

Correct Anthony,currently to my knowledge its possible manually through Infopackage as you must be following now.However dont think so there is any Process type included in process chain for it.

Let me know if you find some.

Hope it Helps

Chetan

@CP.

former_member194977
Participant
0 Kudos

Hi Chetan

You can use incorporate these standard function modules in the process chain via abap: RSCRT_RDA_STOP_DEMON and RSCRT_RDA_START_DEMON. You must populate these input parameters:

To stop the RDA daemon use function module:

RSCRT_RDA_STOP_DEMON

Passing

I_DEMONID <daemon number>

I_T_LOGDPID 0 Entries

I_IMMEDIATELY X

and to re-start it use function module:

RSCRT_RDA_START_DEMON

passing

I_DEMONID <daemon number)

I_SERVER_NAME <server name>

I_SERVER_TYPE D

I_JOBNAME TEST

I_JOBCOUNT 1

I_T_LOGDPID 0 Entries

I_START_NEW_JOB X

Also, there is a bug in the delta load mechanism when you use the real-time daemon. You need to apply this OSS note 975561 (version 3) to fix it.

Hope this helps. Pity I can't gain any points from a question raised and answered by me.

Cheers,

Anthony

Former Member
0 Kudos

Heah Bro - thats awesome.

I give full marks to you dont worry good job.

Hope it Helps

Chetan

@CP..