Hi Guys when i'm loading data from PSA to infocube 0IC_C03 from datasource 2LIS_03_UM i'm getting the error "Detailed fiscal year variant not processed" actually we have BI Content: 703 level 12 i try the following solutions but i'm still getting the error.
- Use constant K4
Also checked the table T009 with the result that every is well maintained
- I deleted the rule (routine) for 0FISVARNT
- Change the call method /rtf/cl_time=>get_retail_fpers_from_date for call function FISCPER_FROM_CALMONTH_CALC
CALL METHOD /rtf/cl_time=>get_retail_fpers_from_date
EXPORTING
i_date = SOURCE_FIELDS-budat
IMPORTING
e_fper3 = RESULT
CHANGING
ct_monitor = MONITOR.
CATCH /rtf/cx_time.
RAISE EXCEPTION TYPE CX_RSROUT_SKIP_RECORD.
DATA: LV_MONTH(6) TYPE N.
LV_MONTH = SOURCE_FIELDS-budat(6).
CALL FUNCTION 'FISCPER_FROM_CALMONTH_CALC'
EXPORTING
IV_CALMONTH = LV_MONTH
IV_PERIV = 'K4'
IMPORTING
EV_FISCPER3 =
EV_FISCYEAR =
EV_FISCPER = RESULT.
I don't know what else to do, please help me.
Regards Marvin