cancel
Showing results for 
Search instead for 
Did you mean: 

replication of datasources

Former Member
0 Kudos

Hello

Could you please let me know if we have a program for replication of data sources.

When I try to replicate the system is dumping after time out.

Is there a way where I can replicate data source in background.

regards

Meps

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Can you increase your rdisp/max_wp_runtime parameter?

It's dynamic so you can increase it for the replication and then set it back to the original value afterwards...

Former Member
0 Kudos

Hello Somckit,

Actually, this is done by the basis team,

If I have to do it, i dont have access.

is there any other way.

regards

Meps

Former Member
0 Kudos

Hi Meyyappan,

Could we know what information is displyed in the dump. Is it some what related to SYSTEM_NO_ROLL Dump.

With rgds,

Anil

Former Member
0 Kudos

Meps,

take a look to the function pool SAPLRSAOS (in SE38) and into the include LRSAOSUXX...here you can see all the FMs used during replication...as you can understand you have no possibility to reproduce this logic by your own...

I think you have to think something at basis level..

Bye,

Roberto

Former Member
0 Kudos

Hi Meps,

try the following in your own ABAP, we are using it successfully.

  • Replication of the Datasource

CALL FUNCTION 'RSAOS_METADATA_UPLOAD'

EXPORTING

i_logsys = wa_source-logsys "Logical System

i_osource = wa_source-oltpsource "DataSource

EXCEPTIONS

error_occured = 1

unauthorized = 2

unknown_logsys = 3

no_oltpsources = 4

locked = 5

OTHERS = 6.

regards

Siggi

Former Member
0 Kudos

Hi Siggi,

some time ago I used FM RSAOS_INT_METADATA_UPLOAD (I think it's the same thing), but SAP (But...ach !!..I'don't remember why !) suggested to me to avoid this usage in order to do not have inconsistencies (mmhhh...)

For you, is it all ok ? No problem ?

Former Member
0 Kudos

Hi Roberto,

we don't have inconsistencies. This is maybe because we are running RS_TRANSTRU_ACTIVATE_ALL after replication. And we do it step by step: Meaning datasource by datasource.

regards

Siggi