Hi All,
I am using a DS from Source BW1 to BW2 server.
In BW2 I maintained Source-BW1.
My DS <b>80COMP_CODE</b> is in Infosource.
I added 0LOGSYS and 0SOURSYSTEM in Communication str as well as Transfer rules.
I found some code: for 0LOGSYS
DATA: l_s_errorlog TYPE rssm_s_errorlog_int.
CALL FUNCTION 'RSDG_ID_GET_FROM_LOGSYS'
EXPORTING
i_source_system = G_S_MINFO-LOGSYS
IMPORTING
e_soursysid = RESULT
EXCEPTIONS
id_not_found = 1.
returncode <> 0 means skip this record
RETURNCODE = 0.
abort <> 0 means skip whole data package !!!
ABORT = 0.
======
Code for 0SOURSYSTEM
DATA: l_s_errorlog TYPE rssm_s_errorlog_int.
RESULT = G_S_MINFO-LOGSYS.
returncode <> 0 means skip this record
RETURNCODE = 0.
abort <> 0 means skip whole data package !!!
ABORT = 0.
=======
My question is
1. What is the use of LOGSYS and SOURSYSTEM? these are must?
2. What this code means?
3. Without these can we do?
Thanks & Regards,
Sri.