Hi all;
Im trying to upload to an infoCube, filling the transaccional data of an Z key figure with the attribute of an master data. (attribute EVDAYS from 0EVENT).
I had used these options:
1) Based on a standard upload rule:
CLEAR RESULT.
result value of the routine
PERFORM read_md_event USING COMM_STRUCTURE-event
SOURCE_SYSTEM
CHANGING event_wa
RETURNCODE.
EVENT_MD = EVENT_WA.
RESULT = EVENT_MD-EVDAYS.
RETURNCODE = 0.
if abort is not equal zero, the update process will be canceled
ABORT = 0.
2) RESULT = EVENT_MD-EVDAYS.
RETURNCODE = 0.
if abort is not equal zero, the update process will be canceled
ABORT = 0.
But both codes arent working!
Can anyone help me?
Redards;
Ricardo