cancel
Showing results for 
Search instead for 
Did you mean: 

Error to Load 2LIS_03_UM (Detailed fiscal year variant not processed)

Former Member
0 Kudos

SAP_BW Release 700 Level 0015

When i load 2LIS_03_UM, it give me the next error "Detailed fiscal year variant not processed"

I check the Transformation and there are some rules with routines

for example

0RT_MTFPER has a routine based in BUDAT

This routine called the Method /rtf/cl_time=>get_retail_fpers_from_date

TRY.

CALL METHOD /rtf/cl_time=>get_retail_fpers_from_date

EXPORTING

i_date = SOURCE_FIELDS-budat

IMPORTING

e_fper2 = RESULT

CHANGING

ct_monitor = MONITOR.

CATCH /rtf/cx_time.

RAISE EXCEPTION TYPE CX_RSROUT_SKIP_RECORD.

ENDTRY.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

I solved this issue.

My problem was the method needed to input the fiscal variant and I changed the next routine:

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.

Insert the Code CALL FUNCTION:

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.

With this code work OK my data extraction.

Regards.

Former Member
0 Kudos

Do you have the Retail module configured on your system?

muhammadalimohsin
Participant
0 Kudos

Can you please tell me where excatly did you added the code as i am having the excat problem. I shall be grateful to you.

Thanks.

Former Member
0 Kudos

Hi Edgar,

This issue had been discussed in SDN, check out this link,

Thanks

Former Member
0 Kudos

In those case, they was deleting the routine, but I need the 0fiscper.