cancel
Showing results for 
Search instead for 
Did you mean: 

Can delta initialisation be deleted via ABAP program or Function Module?

Former Member
0 Kudos

Hi all,

does anyonw knows how to delete delta initialisation by using ABAP program or function module? My intention is to delete delta initialisation automatically through the use of process chain if possible, I don't mean delta update in BW, it is the source system delta initialisation that I wanna remove via program or function module. either on BW or ECC side.

Regards,

Joe

Accepted Solutions (1)

Accepted Solutions (1)

mr_v
Active Contributor
0 Kudos

I'm using following program in process chain to delete INIT request.

REPORT ZXXX_INIT_DELETE.

Data: p_dsrce like ROOSPRMSC-OLTPSOURCE value 'DataSource Name'.

Parameters: p_logsys like t000-logsys.

CALL FUNCTION 'RSS1_QUEUE_DELETED_IN_OLTP'

EXPORTING

I_OLTPSOURCE = p_dsrce

I_LOGSYS = p_logsys

EXCEPTIONS

FAILED = 1

OTHERS = 2.

IF SY-SUBRC 0.

ENDIF.

Former Member
0 Kudos

Brilliant!!!

Answers (0)