Hi Kush,
Its a daily delta load. But I have added a zkf as date property into the cube and I am trying to populate that zkf with the below routine. I am unable to do so. Getting blank values. Do you have any suggestions why cant we upload the zkf with a routine ? Please confirm.
Declaration: this is the factable name of the infocube.
data : itab1 type table of /BIC/FTESTCUBE,
wa1 type /BIC/FTESTCUBE.
itab1[] = /BIC/FTESTCUBE[].
loop at itab1 into wa1.
wa1-/BIC/ZKF_DATE = sy-datum.
modify /BIC/FTESTCUBE from wa1.
ENDLOOP.
Thank You,
DR