0I_CUFYE pulling incorrect year (ie. instead of pulling current year period

Hi ,
Since toady I am facign stragne error..
till yesterday the same query was showing restriction for 001.2010-012.2010
today it is showing 001.2011-012-2011
this variable 0I_CUFYE is dring me craz..
can anyone help...
regards,..
rK

Hi RK:
  Check if the Note below is applicable to your system.
SAP Note 645545 - "Retro Fit of CRM-ICM BI Content 3.3 Corrections"
Regards,
Francisco Milán.

Similar Messages

  • Get date between 1st of current year and 31st Dec of current year

    Hello:
    I have a query where there is a check on date that has to be between 1 jan curr year and 31 dec curr year. How can I have that since the year component will be changing from year to year?

    use the year component of sysdate?
    ME_XE?select to_char(sysdate, 'YYYY') from dual;
    TO_CHAR(SYSD
    2007
    1 row selected.
    Elapsed: 00:00:00.12
    ME_XE?select to_date('01-jan-'||to_char(sysdate, 'YYYY'), 'DD-MON-YYYY') from dual;
    TO_DATE('01-JAN-'||TO_CHAR
    01-JAN-2007 12 00:00
    1 row selected.
    Elapsed: 00:00:00.18

  • NVision prior year totals are overwriting with current year

    Hi All,
    I have created an nVision report with two columns, one is for Current year(timespan-YTD) expense totals and other one is for Prev Year(timespan-Prev_Year) totals and row level i have all Expenditure accounts from Account Tree.
    When I run the report, Current Year and Prev Year coulumns are displaing same totals, when I ran the SQL trace, i found that Prev Year, column sql was running two times, one is for prev year and otherone is current year and second sql was overwriting with current year totals.
    When I looked into timespans for PREV_YEAR, I saw that "End Period Type" was set to "Relative to Current Period", when I swich to"Absoluate Period" then Prev Year column was showing Prev Year results.
    But switching Period type to : Absolute is wrong,when comparing the current year with Prev year with As of Date.
    Any thoughts on above issue.
    Thanks,
    Venky

    Dear Rachana
    The long text of error AA669 is very clear about the root cause of the
    error.
    The idea behind the message: it is not allowed to close first general
    ledger before subleger. This leads to inconsistencies. It is common
    accounting principle to always close the subledgers first and only
    then close the general ledger (FI-GL).
    The solution is: re-open fiscal year in FI-GL (txn OB52) and follow the
    steps from note 619969.
    o  RAAFAR00
    o  RAPOST2000
    o  RAPERB2000
    o  RAJABS00
    If it is not possible to open the fiscal year because audit has already
    been completed: workaround (which is not quite correct from the legal
    point of view) is the report RACORR20_A from note 29694.
    Best Regards,
    Blaz

  • How to create Current Year Filter at Universe Level ?

    Hi,
    I want to create a Current Year, Next Year and Last Year filters at Universe Level.
    Can anyone help me with this.
    I am using Netezza database and not able to find the appropriate date function in Netezza to accomplish this.
    Any suggestions ?
    Thanks

    Hi,
    You would somehow need to extract the Year part from the system date..
    then
    Current Year = Year
    Next Year would be i.e Current Year + 1
    Last Year would be i.e Current Year - 1
    I guess this is the simple part... but you would need to find those functions on your RDBMS..
    Hope this helps
    Jacques

  • Previous Year Closing and current year opening Bal not matching in FS10N

    Hi for some GLs Previous year's Cumulative balance and current year's opening balance is not same. What could be the reason?
    For example The closing Balance for FY 2008 is Rs.125398 where as in the current year opening balance it is displayed as some 65123 in the cumulative balance column what could be the reason. Is there any option for layout change at FS10N

    Hi Srini,
    Run F.16 and F.07 again and check.
    Or tally your figures with normal transactions only in FBL3N.
    And do checking GL balances for all the GL accounts except your vendor recon account and customer recon accounts.
    Hope this might help a little.
    Thanks,
    Srinu

  • Oracle Discoverer report pulls incorrect result when scheduled.

    Recently the database was migrated to 10.1.2 RAC from 9.2.0.6, so the discoverer EUL is now resides on new database.
    after migration the report which pulls correct results when run interactively is pulling incorrect result when scheduled in Discoverer.
    This report used sysdate and aggregate functions, i had ran the same report simultaneously( Directly in Discoverer Desktop/Plus and scheduled in discoverer), but the data retrieved in both case is not matching.
    here is the query. any help is appreciated.
    SELECT /*+ FIRST_ROWS */ A.SITE_ID as E175108,B."SYSTEM DESCRIPTION" as System_Prefix,
    B."SYSTEM PREFIX" as System_Description,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) < 0 THEN 1 ELSE TO_NUMBER(NULL) END) as Less_than_0_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) > 121 THEN 1 ELSE TO_NUMBER(NULL) END) as 0_to_14 Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),3,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 14_to_30_Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),2,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 31_to_60_Days,
    COUNT(DECODE(TRUNC(( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) )/31),1,( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ),to_number(NULL))) as 61_to_90_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) BETWEEN 15 AND 30 THEN 1 ELSE TO_NUMBER(NULL) END) as 91_to_120_Days,
    COUNT(CASE WHEN ( TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE) ) BETWEEN 0 AND 14 THEN 1 ELSE TO_NUMBER(NULL) END) as 120_Days_Plus,
    COUNT(TRUNC(SYSDATE)-DISCO10G.DATE_FORMAT_TEST(A.STATUS_DATE)) as Total
    FROM PSTAGE.ALL_EQUIPMENT A,
    ( SELECT A.SITE "SYSTEM PREFIX", A.DESCRIPTION "SYSTEM DESCRIPTION", A.SITE_ID, B.SITE_DESCRIPTION, A.G2B_ID
    FROM SITE_LIST A, ALL_CF_SITE_CONTROL B
    WHERE A.SITE_ID = B.SITE_ID
    ORDER BY 1, 3
    ) B
    WHERE ( (B.SITE_ID = A.SITE_ID))
    AND (A.EQUIPMENT_STATUS_CODE IN ('T','7'))
    GROUP BY A.SITE_ID,B."SYSTEM DESCRIPTION",B."SYSTEM PREFIX"
    ORDER BY B."SYSTEM DESCRIPTION" ASC ;
    Thanks!

    Hi sunil,
    Rod is referencing the NLS parameters i.e.
    Can you please let me know which NLS parameters you are referring toNLS parameters in this scenerio may be the date and language for that session.Do check out
    SELECT * from NLS_SESSION_PARAMETERS
    how i can check if there any differences in the NLS parameters when report is scheduled or run interactivelyI think you should run the trace file.Iam not sure about it.
    It would be system_context.
    Hope it helps you.
    Kranthi.

  • Can I undo the Ken Burns effect for all clips at once (instead of pulling up each clip individually)?

    Can I undo the Ken Burns effect for all clips at once in iMovie (instead of pulling up each clip individually)?

    Yes, you can select multiple clips then Adjust, Crop, click on "Fit".
    Geoff.

  • I cant get a photo project to email the moblile me address to someone else.  I know how, but it has stopped working for some reason.  Instead of pulling up the web address on the email form, it puts an error message?  Any ideas?

    I cant get a photo project to email the moblile me address to someone else.  I know how, but it has stopped working for some reason.  Instead of pulling up the web address on the email form, it puts an error message?  Any ideas?

    Michael,
    The link for the word 'HERE' directs to a Evergreen School District page, which outside of Mobile Me and/or Aperture. Your school district network might be intercepting the request from Aperture and displaying the 'network authentication page' that you see, instead of the email. I would get with the IT department to see if they can help you get around this.
    Have you also tried using the 'Tell a Friend' feature from another network location, like starbucks or your home?
    Cheers,
    Owen.

  • I have WD 1TB and use Time Machine for the past 2 years. Now I have multiple folders in my external hard drive and want to know how to condense all folders into yearly folders instead. Anyone know how to do this?

    Now I have multiple folders in my external hard drive and want to know how to condense all folders into yearly folders instead. Anyone know how to do this?

    anthonycancel wrote:
    I want the folders I already backed up to come together into one folder when that year is over. Is there a way to manually do that or automatic through TM?
    I'm quite sure there is no "automatic" way to do this. I've never heard of anyone trying it either. I suppose if you wanted try it, you could simply create a new folder in the same partition TM is on, label it for that year, then gather all the days for that year and drag/drop them into the folder. I suspect (but do not know) you'd be risking the continuity of your backups, meaning TM would simply start over again, meaning that next back up would start a new series of backups, with the first one roughly equalling the entire capacity of your internal HD, instead of adding only the new data to the previous backup. Once again, I would recommend against it, unless you're fine with TM starting a new series of backups if it doesn't work out the way you want it to. Hope you'll post back with results so we can learn from it.

  • Ledger 0 has fiscal year variant instead of V3 - Message - GI174

    Hi all,
    i am geting below message when i am doing KP06 for cost center planning
    Ledger 0 has fiscal year variant instead of V3
    Message no. GI174
    Diagnosis
    When transferring planning data, the receiver ledgers must have the same fiscal year variant as the sender system, since all planned periods are transferred and not just one period with a posting date. Therefore, the period cannot be converted.
    Procedure
    Compare the fiscal year variant of the sender system with the FI-SL fiscal year variant.
    You can access this in FI-SL Customizing by choosing Basic Settings Master Data -> Ledger (select the ledger specified in this message) -> Assign Comp.Cd/Comp. -> After selecting the company code, the system displays the assigned fiscal year variant.
    Kindly do the needful.
    Regards,
    TDK

    Hi,
    The message means you need to change fiscal year variant of ledger 0 to V3. I guess your fiscal year variant of controlling area is V3. Both of them should have same fiscal year variant. So change it may be solve the problem.

  • Current year /last year in reports

    I need to report summarised data for range of periods and I need to compare the current year results with last year.
    For example I need to report Jan to June of current year and compare in the same reports the results of last year.
    How to select the last year? I tried with offset (year-1) but it does not work.
    Since I am giving the range of period( 1 to 6) in selection the period , hence the offset does not populate.
    Sure mark for helpful answers.

    Mani,
    as with your other topic in the BCS forum, there are ways to use the offset for this, but it all depends what variables you use for the period/year derivation.  It also depends if you are using BCS and need the YTD values.
    so, here are a couple of options:
    if you are using the fiscal year/period variable, then you will be restricted by what your FY variant is. (thus the value of your offset).  I think even if you use K4, taking -12 from your value will get you to the same period prior year.
    as with other recommendations here in the forum, you can offset just the year variable if your are using two separate ones (one for posting period one for fiscal year).  As BCS doesn't have the cumulative KF's, this is pretty much the only option that you have if you need to get the YTD values (since you need period 00 for the YTD values in the BS)
    You mentioned that the offsets don't work for you - double check that by using the text variables in the column headers, and you should see what data is being pulled in there.  Also, make sure that you are restricting the variables (fiscal year) on each column.  If you put the restriction on the entire query, it will only give you one value, so instead you need to put the fiscal year variable in each column (with appropriate offsets)
    let us know if that worked

  • Year contract for Standard service; Two year contract for free modem confusing?

    I plan to order internet service to my new residence & I have few questions. Since there is only little advantage in speed between Standard and Power option at my location I have to order Standard service ($19.99 for 1 year). There are some questions with “on line order free modem" option. Standard service requires one year commitment, Free modem requires two year commitment.
    - What is a cost of Standard service after this one year commitment?
    - Can I sign for two year commitment & how much it costs?
    - If I stop the service after one year commitment what is the penalty for the modem?
    - Can I return modem after one year commitment and not pay modem penalty?
    I would appreciate any help

    I doubt they would take back the modem, but might charge you for early termination.
    Here's my experience:
    4 years ago, i had 3mb dsl service w/ a 327w modem and 5 phone filters (paid for shipping) .  i decided to port my phone to verizon's voice wing.  i had received a linksys pap2 voip adapter (paid for shipping). i was then told that if i port my number it would drop my dsl service.  that didn't go through, and i tried to send the equipment back but never able to coz i didn't get any address where to send it to.
    i then ported my phone to vonage who just pulled the plug...i had no dsl and no phone for about 1 month, until i located an 800 number to reactivate my dsl service to a dry loop.  i was again sent 5 phone filters (paid for shipping)
     I was fine for 15 months, until all of a sudden my speed went down to 2mbit dsl and being told that my line doesn't suipport 3mb.  ??? after 15 months of 3mb dsl service,  my line stopped supporting 3mb.  so i switched triple play to cable a year ago, until my promo expired.  now i'm back to dsl w/ 2mb service and i was sent a new modem 7500 (paid another shipping even i told them that i have my old 327w.  now i have a spare dsl modem in my pile of equipment.

  • Power View in SharePoint only shows current year.

    I have a customer using the Power View add in for SharePoint 2013 based on SQL 2014.   I have created a BISM object that connects directly to an OLAP cube.
    When I build reports or Pivot tables against this object they work fine.  However when I build dashboards in Power View they only show the current year's data
    We do have a default date dimension which forces for some reason Power View to only display current year. Therefore the slider doesn’t work since it has only current year / date showing up.
    After removing the date dimension in one of our dev. cubes, Power View showed all dates and we were even able to uses the date animation with slider worked fine.
    We don't want to do this in production however, because many of our reports rely on the default date dimension.
    Has anyone come across this or know a workaround?
    SG

    I am going nuts! I had selected 'Analysis Services' instead of 'Microsoft BI Semantic Model for Power View'

  • Error when posting credit memo in current year

    Hi all,
            When I am trying to do credit posting to an asset in current year it is giving me follwing error. Can someone help me what can be done.
    Balance for transaction type group 10 negative for the area 01
    Message no. AA629
    Asset affected: 000170009993-0000
    Diagnosis
    With the transaction entered, the balance for the transactions in group 10 in area 01 will be negative in this fiscal year. However, the balance of transaction type group 10, according to its definition, must be positive in each fiscal year.
    System Response
    The system rejects this posting.
    Procedure
    Check the transaction type, the amount and the fiscal year in your posting. If you want to post a credit memo to an acquisition from the previous year, then use a transaction type for a retirement. If necessary, you can change balance rules after talking with your SAP consultant.
    Thanks,
    Sarada

    Hi,
    i think you've chosen the incorrect tansaction type ( perhaps 100) for your credit note . try to post your CN with another transaction type; e.g. 160 or 161, which do not belong to transaction type group 10.
    you can check this with trx. OA81
    regards Andreas
    pls reward useful answers
    thank you!

  • Line Chart to Compare Current Year vs Last Year

    I am on BI 7 SP9. I need to create a line chart that shows 2 lines to compare  revenue for the current year against last year. The first line should show the revenue for the current year. The second line should show the revenue for last year. In my BEx query, I have the fiscal period values in the row and the revenue key figure in the column. Questions:
    1. How can I show 2 lines in the chart to compare revenue for the current year vs last year?
    2. There are 2 variables for the fiscal period - one for current year and one for last year. The user can enter any value range in the fiscal period variables at query runtime, but the fiscal periods for each of the 2 years must be the same. This means the number of fiscal periods that appear in the query result rows will vary (e.g.. 3 periods for a quarter or 12 periods for a full year). The user has to enter the same fiscal periods for the current year and last year variables. How can I determine the fiscal period values to plot in the line chart for the current year and then last year when the number of rows in the query results will fluctuate?
    The legend at the bottom of the chart should show JAN, FEB, MAR...DEC instead of the fiscal period values like 001/2007, 002/2007. Is there an exit I have to change to get this to work?
    Thanks for any help you can give!

    You can do it in multiple ways
    1.
    SELECT COALESCE(t1.Company,t2.Company) AS Company,
    COALESCE(t1.Sales2015,0) AS CurrentYearSales,
    COALESCE(t2.Sales2014,0) AS PriorYearSales
    FROM Sales2015 t1
    FULL JOIN Sales2014 t2
    On t2.Company = t1.Company
    2.
    SELECT Company,
    MAX(CASE WHEN YearVal = 2015 THEN Sales ELSE 0 END) AS CurrentYearSales,
    MAX(CASE WHEN YearVal = 2014 THEN Sales ELSE 0 END) AS PriorYearSales
    FROM
    SELECT Company,Sales2015 AS Sales,2015 AS YearVal
    FROM Sales2015
    UNION ALL
    SELECT Company,Sales2014 AS Sales,2014
    FROM Sales2014
    )t
    GROUP BY Company
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

Maybe you are looking for

  • Where is the photo tab in itunes? it doesn't appear in the itunes sidebar

    where is the photo tab in itunes? it doesn't appear in the itunes sidebar, I am trying to remove photos from my ipad by restricting them from appearing after synch.

  • Insufficient memory error while installing JRE 1.2.2

    At the moment I am having some problems installing JRE 1.2.2 on a HP proliant DL380 G3 machine (with two XEON 2.8Gb processors) with windows 2000 SP 3 installed. The error is �Insufficient memory available to run setup. Close any programs�.. bla bla.

  • Disc ejects before completion in iDVD

    Hi, firstly I'm a little behind the times having only recently upgraded to Snow Leopard, my problem is iDVD. I have a collection of images that I am trying to burn via iDVD all goes well until the burning, the disc ejects about 8 minutes before compl

  • Frame Dominance Problems

    I have a PAL matrox RTx-100 board in my machine and am building DVD's in Encore 2.0 When I build the DVD the video seems to stutter looking like the field dominance is wrong. The RTX-100 captures at upper field first and my renders out of Premiere al

  • No business layer sent back from server in Rich Client

    Hi, Whenever user tries to open a universe from Rich Client, he gets this error while webi works fine for him. What could be the issue? Hi Rich Client version is SAP 4.0.6.02 same as mine and mine is working fine. Only this particular user is affecte