0FI_AR_4 extraction issue - actual fiscal year

We are having problems with 0FI_AR_4 when extracting actual fiscal year data. For previous fiscal years, we run a full load, but when we tried to initialize the extractor for actual fiscal year there are no records. Cheked RSA3 and same problem. But with in RSA3 with 0FI_AR_3 there is plenty of records.
PI_BASIS is 2005_1_700 level 13, so there shouldn't be any dependece with 0FI_GL_4.
Any ideas on what might be happening ?
Regards,
SJR

if you want you can try to manage the 0FI_AR with delta - launch a init for initialize the data loads and after this create a new infopackage delta to manage the new data
alternatevely you can try with  a full repair load
Hope it helps
Andrea

Similar Messages

  • We are facing an issue of Fiscal year varint for 2LIS_03_UM  DS

    Dear All,
    When I am extracting the data for 2LIS_03_UM  DS from Quality system ,we are faicng an issue of Fiscal year varint (V3 Type)
    I have also transferred the Global settings  items in to BI system.  
    Please let me know something else required from my side.
    Regards,
    Srinivas Padugula

    Go to EXTRAS - DISPLAY GENERATED PROGRAM -
    here you will get the program that is generated for the transformation... go the line where the system generated code FILLS the FYV...
    It should be something like this
    *<<<    Rule ID: '12'.
              IF lssupp-_12 EQ rs_c_false.
                currrule-ruleid = '12'.
          Step ID: '1', Type: 'TIME'.
                currrule-stepid = '1'.
                l_fscvtval = G1-FISCVARNT.
                IF <_ys_SC_1>-CALDAY CO ' 0'.
                  CLEAR G1-FISCPER3.
                ELSE.
                  l_timvl = <_ys_SC_1>-CALDAY.
    Put a break - point there.. then in the DTP go in debug mode.. you will reach the above code... you can simulate the error why its coming
    What are the other time parameter you have in your cube?? I think its issue of FVY when you load data to another dependent time character... e.g. 0FISCPER3... FVY defines what value should go in 00FISCPER3... if the FVY is normal.. 0FISCPER3 = 1... if FVY is from April - march... 0FISCPER3 = 4
    Edited by: Shailesh Khandarkar on Dec 15, 2010 10:03 AM

  • Issue with Fiscal Year Period in Custom Extractor

    We have a custom extractor that pulls posting period (PERIO) and Fiscal Year (GJHAR)...once we move it to BW we do a concatenate in the transfer rules to get Fiscal Year / Period.  Before we did the ERP Upgrade the concatenate worked and then  after the Upgrade it stopped working.  I have checked RSA3 and the extractor is not pulling the fields any differently then before.  I have also tested the same concatenate in our development system and it is working.  Does anyone have any idea what might be happening? 
    Before we were getting data that looked like 2008001 and now thet data is saying 8  1200.
    We also have another custom extractor that does the exact same thing and it is working!
    We are stumped....can anyone assist?
    Thanks!
    Caroline

    I dont understand why you had to extract period and year?
    Can you pl explain. Do you have other fields in the extractor, if so what are they?
    Can you paste your code here to look at.
    Ravi Thothadri

  • Issue with Fiscal Year Varient Period modifications for 2012

    Hi All,
    Can you please advice how the Fiscal Year Varient modified periods be transported to different clients.
    The issue is, we have 2012 Periods already setup in DEV and transported to QAS and PRD, now the clinet came up with different periods for 2012. I have modified the periods as requested and captured them in transport.
    When the new transport was sent to QAS, the new periods are appended to the old periods, instead of replacing the old periods.
    any help is much appreaciated.
    Thanks
    Shasha

    Hi All,
    My issue has been resolved, we figured out that we need to delete the existing calender and capture that in transport and  then recreate the calender for 2012 with new periods and capture this in the same transport and this works.
    Instead of deleting the existing calender we changed the values before, which is the reason it was appedning the previous periods and the new periods.
    Thanks
    Smitha

  • Issue with Fiscal Year period - Variable

    Hello,
    I have requirement where I have two fiscal year variables selections available for the users. Both are independent to each other. FOR EX: A & B
    1ST Fiscal year period is straightforward. It is a single variable selection where User enters the fiscal year period then the Key figures data will be available to the user for that particular fiscal year what is selected in the variable screen.
    For ex: If user enters 01.2007 then the values will be only for that particular month/period
    However, the 2nd Fiscal year period user wants a Range (From and to). This is also a Single selection variable. Here user enters only TO value, which it should go and get the lower value from first variable screen and then it should take the higher value from the 2nd Variable screen and should calculate the result as a range.
    How this can be sorted? Can someone please help me to sort this Issue? If we need a customer exit, can you please give me some sample code?
    Thanks in advance
    Harish

    Hi,
    Create 3 variable
    One for from variable which will user input ZVAR1
    2nd to variable will be user input              ZVAR2
    3rd variable be variable exit type              ZVAR3
    In exit populate the VAR3 by reading the two user input variable.
    and use the option
    Try this:
    <b> when 'ZVAR3.
          if i_step = 2.
            read table I_T_VAR_RANGE into z_t_var_range
                            with key VNAM = 'VAR1'.
            read table I_T_VAR_RANGE into z_t_var_range1
                            with key VNAM = 'VAR2'.
                 ZE_T_RANGE-SIGN    = 'I'.
                 ZE_T_RANGE-OPT     = 'BT'.
                 ZE_T_RANGE-LOW     =  z_t_var_range-LOW
                 ZE_T_RANGE-HIGH     =  z_t_var_range1-LOW
                 APPEND ZE_T_RANGE TO E_T_RANGE.
                 clear ZE_T_RANGE.
          ENDIF.</b>
    Thanks,
    Debasish

  • Offset issue for Fiscal Year Quarter

    Dear All,
    There is a requirement to develop a report for balance sheet to compare the fiscal year quarter like if user is going to give input 20143 then comparison quarter is 20142 where I did offset (-1) and if user give input as 20141 then the comparison quarter is 20134 where I am using offset as (-7).
    So I have incorporated both offset in one variable. Now the issue is if I will run for any quarter then it is giving error in the run time. Could anyone suggest that how I could achieve this, whether I have used correct offset interval?
    Query Key Figures Selections:
    Bex Analyzer Selection Error:
    Regards,
    Abhishek Jain

    Hi,
    I wouldn't do it in that way i.e. one column where you count previous quarter for quarters 2 3 4 (offset -1) and another column for counting previous quarter for quarter 1 (offset 7).
    There should be just one column where you count just previous quarter. Use an EXIT to count previous quarter for any value of quarter.
    Regards, Leszek
    something like this can be used:
    WHEN 'ZPREVQUARTER'.
    * QUARTER(1) TYPE C.
    * YEAR(4) TYPE C.
    * have to be defined after DATA: keyword !!!
       IF i_step = 2.
             LOOP AT i_t_var_range INTO l_s_var_range
               WHERE vnam = 'ZCURRENTQUARTER'.
               EXIT.
             ENDLOOP.
             CLEAR: l_s_range.
             YEAR = l_s_var_range-low(4).
             QUARTER = l_s_var_range-low+4(1).
             IF QUARTER = 1.
              YEAR = YEAR - 1.
              QUARTER = '4'.
             ELSE.
              QUARTER = QUARTER - 1.
             ENDIF.
             CONCATENATE YEAR QUARTER INTO l_s_range-low.
             l_s_range-sign = 'I'. "loc_var_range-sign.
             l_s_range-opt = 'EQ'. "loc_var_range-opt.
             APPEND l_s_range TO e_t_range.
          ENDIF.

  • TDS CERTIFICATE PRINTING ISSUE AFTER FISCAL YEAR CLOSED

    HI SAPFICO EXPERTS,
    Our user has booked the invoice in the 28 march 2010 & he has made remittance & bank receipt update  in the month of  30th April 2011. So while taking the print of certificate through t. code J1INCERT on 30th April 2011. it is giving the error i.e he cant take the printout of tds certificate.
    Is there any changes or table maintenance  required, please let us know
    thanks in advance
    Alokmoni

    Dear:
                  Please refer to the one of my following link
                  No data selected for printing in production server t.code J1INCERT
                  Regards

  • Problem with Fiscal Year/Period

    Hi Expert,
    I am facing an issue with Fiscal year/per in my query. User is running the report on web. When he enters Fiscal year and period in selection screen, the report fetches correct data, however if I go to the information tab, there the value of the fiscal year/per is wrong. e.g. The user enters 010 2007. The report fetches 010.2007 data only but in the information tab, the value of the variable is shown 010.2008
    Please help me in identifying the issue.

    There might be one more variable in the query which is not of type ready for input.
    Fiscal year/per  can be the name of two variables in the query.
    Check in the query if you have one more variable.
    Hope this helps.

  • Custom Report: Actuals paid by Fiscal Year- multiple Columns

    Has anyone created a "time-scaled" InfoMaker report using "actuals paid"? We would like to create a report that shows actual payments made on each project broken down by fiscal year... so a single project may show actuals paid for FY 07-08, FY 08-09, and FY 09-10.. so "Actuals" would appear 3 times on the same report- based, on the approval date.
    I know that P6 can do this quite easily, but we are not linking CM to P6 schedule yet.

    Yes, I've created many reports of this nature including building a table that can be used to select a specific period for reporting on a given range. Have created these reports in several formats including tabular, crosstab, and graphical (and combinations of those).
    Rick

  • Different fiscal year issue

    Hi
    I have an issue related to Fiscal year variant, one company has fiscal year Jan-December and the other is having April - March.
    The parent company is having Jan- March and its subsidery is having April - March.
    The parent company is not having New G/L, they are Business area base. therefore I can not use parallel Ledger for this.
    I am stuck with this.
    What can be the possible strategy for this.
    Regards
    Pankaj

    Hi
    I have gone through with the same. But have a doubt about TAX posting issue, As CIN is also applicable.
    Regards
    Pankaj

  • Funds Management Issue not able to split PR/PO amount based fiscal year

    Hello Experts,
    We are implementing SAP Funds Management with BCS.
    Business Scenario: Service Purchase requisitions and Purchase orders created for one year. beginning in current years and ending in next fiscal year. our company fiscal year is Jan to Dec. commitments in funds management are updated based on delivery date in current fiscal year only.
    Requirement: Need to update funds commitment from PR or PO into respective fiscal years.
    Example:
    Fiscal year: Jan 2014 to Dec 2014
    Service PR or PO created for -  April 2014 to March 2015
    Value of PR or PO 12000 Rupees
    commitment should update as follows; 2014 - Rs. 9000 and 2015 Rs. 3000
    Please provide us solutions for above issue.
    Thanks in advance for the support.

    Excuse me Venkata:
    Fiscal year: Jan 2014 to Dec 2014
    Service PR or PO created for -  April 2014 to March 2015
    Value of PR or PO 12000 Rupees
    commitment should update as follows; 2014 - Rs. 9000 and 2015 Rs. 3000
    How do you think that system (SAP MM and SAP BCS) will update 9000 (year 2014) and 3000 (year 2015) ? That's impossible. Think about it.
    You'll need two lines like Eli said.
    That's the only way, and right one.
    Regards.

  • Fiscal year variant not maintain issue

    Hi Gurus,
    I am loading data from DSO to Cube. But I amgetting an issue "Fiscal year variant V9 is not maintained for calendar year 0001". Please let me know how to resolve this issue.
    Thanks
    Liza

    This looks like a data quality error.
    The years maintained in your source system probably does not have a year 0001. If that data record is corrected and the correct year entered in the data record, this error should go away.
    You may have mapped a date in the DSO to fiscal period in the InfoCube. That date may be incorrect for year 0001 which does not make sense.
    You can identify this record in the DTP monitor by clicking on the magnifying glass icon which will show you all the records in that data package which has the error record.
    And then click on the field header for status and click on sort ascending icon. It will quickly show you which record is failing by bringing the failed status record to the top of your list.
    Once you have identified the record that has this bad data, you can ask the functional team who owns that data and ask them to fix it.
    Or you can fix this record in your PSA. Or you can exclude that record in your DTP filter. There could be multiple records with the data quality error in which case you should filter out those records to be able to load data to the cube successfully.
    These records may also be in your error stack. You can click on the error stack icon at the top of the window in your DTP monitor view. This will show you only the error records.
    Hope this helps.
    Good Luck.
    MP.

  • ARCHIVING OBJECT : CO_TOTAL  - Fiscal year issue regarding

    Hi,
    I am trying to archive  (01.04.2007 - 31.03.21008).    - fiscal year : 2008
    when i give the fiscal year : 2008  ( period 1 - 12)
    it 's archiving all the datas relevant to 01.04.2007 - 31.03.2008.  which  is correct.
    but some of company codes following a  calendar year as financial year .
    in that case  if i give 2008 (period 1 -12)  ( it is archiving jan'2008 - dec'2008) data.
    which is incorrect.
    in the archiving object configuration , there is no way for company code wise processing....
    *the company code which follows a calendar year is having different controlling area....
    Your inputs are useful to us.
    Thanking you.
    Regards
    Giri

    Hi Soyab,
    Before archiving these CO archiving objects please check whether DaRT is taken care. As CO_ITEM is already ongoing then i thing DaRT is done.
    1. CO_TOTAL: This archiving object is dependent on CO_ITEM, so first archive this AO and later with CO_TOTAL.
    - Controlling area, Order type, Fiscal year and Value type are the major selection criteria for restricting it for archiving.
    2. CO_CCMAST: Dependent on CO_ITEM and CO_TOTAL.
    - Controlling area, Cost center group and Fiscal year are the major selection criteria for restricting for archiving.
    Apart for this there are no other reports to execute before archiving these archiving objects.
    Reward if it benifits.
    -Thanks,
    Ajay

  • Fiscal Year for Non-Leading Ledger Issue

    Hello Experts,
    I am implementing New GL concept in my Current Implementation..
    We have one company code which is based at US and has a branch in india
    In this case, i have configured one non-leading ledger with Fiscal year variant V3 and Currency INR.. for Indian local Reporting...
    Here after posting the transaction, In F.01 report, i am not able to view the Fiscal period for that non leading ledger which i have crated for India
    Kindly help me.. I want to view the F.01 report with US posting period when i executed with Leading ledger OL and V3 fiscal period when i execute this with Non- Leading Ledger KS
    Kindly Help me regarding this. And also help me to provide some transaction codes for executing reports exclusively for Non- Leading Ledgers..
    Thanks
    TK Surya

    Hi Aravind,
    Thanks for the immediat response. But I am not able to understand the activation of non leading ledger and activating it with two currencies and fiscal year variant. Can we have two reporting structure with two periods with two different starting and ending dates.
    Thanks once again
    surya

  • Fiscal year variant Z1 is not maintained for calendar year 2012 when loadin

    Dear Experts,
    We are working on BI7.0 extracting data from ECC 6.0.
    I am trying to load data from 0HR_PY_PP_1 which is a Self DataSource in our BW System (extracts data from 0EMPLOYEE and 0PERSON) to load into ZPA_C50 which is a copy of BCT InfoCube 0PAPA_C02 (Headcount).
    The data has come through into the PSA very well.
    However, DTP is throwing an error while loading 32242 records of data from PSA into ZPA_C50 InfoCube. The error details as below:
    Error while updating to target ZPA_C50 (type INFOCUBE)
    Fiscal year variant Z1 is not maintained for calendar year 2012     FGV     2
    Messages for 1 data records saved; request is red acc. to configuration
    Processing Terminated
    We are actually doing a Re-implementation of BW 3.0b in BI 7.0 Ehp1. We have imported Maintenance of Fiscal Year Variant from the BW 3.0b Production System. So this shouldn't be a problem I guess since I have also checked the setting in SPRO in BI 7.0 Development (New) System and they are looking good.
    Also, when I do a Filter on 0CALDAY in DTP from 01.01.1900 to 31.12.2010, the loads are working fine. I want the load to run without any Filters on 0CALDAY.
    Has anyone been in similar situation. How did you resolve this issue? Your time is very much appreciated.
    Thanks in advance.
    Chandu

    Dear Experts
    Thanks for your time.
    We have resolved this issue ourselves. We have maintained 'Shortened Fiscal Years' for 'Z1' and it is working fine now. Steps are as below:
    In BI Dev System -> SPRO -> SAP Reference IMG -> SAP Customizing Implementation Guide -> SAP NetWeaver -> Business Intelligence -> General BI Settings -> Maintain fiscal year variant -> Select 'Z1' Fiscal Year Variant and then DoubleClick on 'Shortened Fiscal Years' to set the Fisc Year Variant -> Save.
    The dataload should work fine now.
    Cheers,
    Chandu

Maybe you are looking for