New consolidation group with wrong values

Hi all,
We are working with SEM-BCS 6.0 and we are having an issue that we hope you can help us.
At 012.2008 we have created a new consolidation group (N002) with the consolidation unit 0100.
This consolidation unit (0100) also exists in consolidation group (H001) since 006.2008.
The problem is that at 012.2008 when we use the posting logic u201Cstandardu201D the account values are correct in the consolidation group that used to exist (H001), but for the new consolidation group (N002) the account values are only the delta values.
For example:
011.2008
Account 111000 = 50.000u20AC
012.2008
Account 111000= 60.000u20AC
At 012.2008 in the consolidation group (H001) we have the 60.000u20AC but in the consolidation group N002 the account only has 10.000u20AC (delta)
But if the new consolidation group (N002) only exists since 012.2008 and for the consolidation unit 0100 the first consolidation is defined as 012.2008 why is only being considered the delta (10.000u20AC) and not the all value (60.000u20AC)?
Thanks for your help.
Best regards

We are using the cumulative type of data storing.
Sorry, you can't. It's the system that always stores data periodically. You may just load data cumulatively.
Regardless of type of your load data in the system is always kept periodically.
> The reason for the appearance of this company in another group is only because they want to do a u201Csecondu201D consolidation considering a different group of companies by consolidation area.
> That is, they want to consolidate both consolidation groups with the same companies but with them being considered differently by consolidation areas.
> Is like the second consolidation group is a simulation.
Sorry, Ricardo, I cannot read it in business terms. Different hierarchies, dif. ConsAreas, dif. groups... I do not see why and what for.

Similar Messages

  • New Consolidation Group with existing unit

    Hi,
    Below is the hierarcy structure of Consolidation Units where Unit A is topmost Parent Company.
    CG01
      -Unit A
      -Unit B
      -Unit C
      -CG02  
        -Unit X
        -Unit Y
    We want to add one new group which should contain only Unit A & Unit B during the financial year say07/2008 and it should like like as follows:
    CG01
      -Unit C
       -CG09
        -Unit A
        -Unit B
       -CG02  
         -Unit X
         -Unit Y
    Following steps, I have taken:
    1-Created New group in 07/2008
    2-Assigend Unit A and B in CG09 in period 07/2008 as 07/2008 their first period of consolidation
    3-In CG01, changed the master data for Unit A and Unit B to indicate last period of consolidation as 07/2008
    I would need your help:
    -Is this correct way of creating new group with the existing unit?
    -Do I need to remove the Unit A & B from the old group CG01 and if yes then in which period?
    -Any other suggestion in the context?
    Thanks,
    UR

    Thanks Dan,
    It works fine with the above suggestion. In period 07/2008 group change task post Divestiture entry in old group and acquisition entry in new group.
    However, before arriving at the above solution, we tested with one unit by removing it from the old Group hierarchy in 07/2008. Now even after I put this back in the old hiearchy and make all the above changes (divestiture seeting in 07/2008 in old group and FC in 07/2008 in new group) the Group changes task in not posting any divestiture entries. At the same time, it is posting acquisition entry for this unit.
    Can you please suggest some way out?
    Best Regards,
    UR

  • Webi base on BW query based on Infoset comes back with wrong values

    Hello:
    I have a Webi report on an OLAP Universe, on Bex Query.
    The bex query is based on 1 INFOSET.
    When I run the webi report the values that comes back a totally wrong values.
    The correct results are not brought back.
    When I do a test with crystal reports to the infoset, I can see the correct values.  (I'm aware crystal uses different drivers).
    The test is BW query designer, and crystal brings back proper values from Infoset based BW query.
    Webi on Infoset based BW Query comes back with wrong data.
    query is simple.
    Pull in 3 attributes, 3 key figures, where componentkey = "111"
    I get 36 rows in Crystal and 36 rows in Bex Analyzer, 36 rows in BW query designer (web analyzer).
    I get many rows in webi (almost like a CARTENSIAN product).
    I search a round this forum but still did not see a conclusive answer to this problem.
    But I see another thread that several others faced this same issue without a resolution.
    My environment.
    BOE XI 3.1 SP2
    No fix packs
    SAP IK 3.1 SP2
    HPUX-IA64
    Thanks in advance for any help.
    Dwayne

    Was this problem ever solved?
    I am having a similar problem with an infoset based query.
    I have created the BW infoset, and confirmed that the correct data is returned from the underlying infoproviders. A simple BW query on that infoset yields the same results.
    Create the universe, and then the WEBI, and WEBI now shows hundreds of records where I expect 10. Data is being returned in WEBI that definitely shouldn't be there. It's almost like the restrictions applied in the characteristic restriction area of my BW query are being ignored, even if I include them in the WEBI query.
    Cheers,
    Andrew

  • Started new computer up with wrong itunes account how do i change it

    Started new imac with wrong itune account. How do i change it?

    Lunch iTunes - go to the Home page of the iTunes Store and select 'account' - you will get a dialog and you can log into your account.
    MJ

  • New item addition with Characteristic Values - BAPI_SALESORDER_CHANGE

    Hi,
    I need to add new item in existing sales order. The new item to be added is a configurable material, with Characteristic values to be filled. Iam using 'BAPI_SALESORDER_CHANGE' to insert new item. Iam able to insert normal item. The problem is, iam not able to insert the configurable item. BAPI returns a message 'No changes made'.
    Code is attached.
      WA_HDRX-UPDATEFLAG = 'U'.
      SELECT MAX( POSNR ) FROM VBAP CLIENT SPECIFIED
      INTO MAX_POSNR
      WHERE MANDT = SY-MANDT AND
            VBELN = I_SORDER.
      TMP_POSNR = MAX_POSNR + 10.
      WA_ITEM-ITM_NUMBER = TMP_POSNR.
      WA_ITEM-MATERIAL   = 'LEFTEYE'.
      WA_ITEM-PLANT      = I_STORE.
      WA_ITEM-SHIP_POINT = I_STORE.
      WA_ITEM-CONFIG_ID  = 'LEFT'.
      WA_ITEM-INST_ID    = 'LEFTEYE'.
      APPEND WA_ITEM TO IT_ITEM.
      WA_ITEMX-ITM_NUMBER = TMP_POSNR.
      WA_ITEMX-UPDATEFLAG = 'I'.
      WA_ITEMX-MATERIAL   = 'X'.
      WA_ITEMX-PLANT      = 'X'.
      WA_ITEMX-SHIP_POINT = 'X'.
      WA_ITEMX-CONFIG_ID  = 'X'.
      WA_ITEMX-INST_ID    = 'X'.
      wa_itemx-ITEM_CATEG = 'X'.
      APPEND WA_ITEMX TO IT_ITEMX.
    Schedule lines
      WA_SCHD-ITM_NUMBER = TMP_POSNR.
      WA_SCHD-SCHED_LINE = TMP_POSNR.
      WA_SCHD-REQ_DATE   = SY-DATUM.
      WA_SCHD-REQ_QTY    = 1.
      WA_SCHD-SCHED_TYPE = 'CN'.
      APPEND WA_SCHD TO IT_SCHD.
      WA_SCHDX-ITM_NUMBER = TMP_POSNR.
      WA_SCHDX-SCHED_LINE = TMP_POSNR.
      WA_SCHDX-REQ_DATE   = 'X'.
      WA_SCHDX-REQ_QTY    = 'X'.
      WA_SCHDX-SCHED_TYPE = 'X'.
      APPEND WA_SCHDX TO IT_SCHDX.
    characteristic values
      WA_VALUE-CONFIG_ID = 'LEFT'.
      WA_VALUE-INST_ID   = 'LEFTEYE'.
      WA_VALUE-CHARC     = 'PRES_DIST_SPH'.
      WA_VALUE-VALUE     = '3.2'.
      APPEND WA_VALUE TO IT_VALUE.
      WA_INST-CONFIG_ID = 'LEFT'.
      WA_INST-INST_ID   = 'LEFTEYE'.
      WA_INST-OBJ_TYPE  = 'MARA'.
      WA_INST-CLASS_TYPE = '300'.
      WA_INST-OBJ_KEY   = 'LEFTEYE'.
      WA_INST-QUANTITY  = 1.
      APPEND WA_INST TO IT_INST.
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          SALESDOCUMENT    = SALES_DOC
          ORDER_HEADER_INX = WA_HDRX
          LOGIC_SWITCH     = LS_LOGIC
        TABLES
          RETURN           = IT_RET
          ORDER_ITEM_IN    = IT_ITEM
          ORDER_ITEM_INX   = IT_ITEMX
          SCHEDULE_LINES   = IT_SCHD
          SCHEDULE_LINESX  = IT_SCHDX
          ORDER_CFGS_INST  = IT_INST
          ORDER_CFGS_VALUE = IT_VALUE.
    Where iam missing ?
    Any input would be helpfull.
    regards,
    Nagarajan.J

    Hi,
    Iam now able to insert configurable item in existing sales order. But the characteristic values are not getting stored.
    Latest code is attached. What else is missing for storing characteristic values ?
    select maximum item number in sales order
      SELECT MAX( POSNR ) FROM VBAP CLIENT SPECIFIED
      INTO MAX_POSNR
      WHERE MANDT = SY-MANDT AND
            VBELN = I_SORDER.
    calc next item number
      TMP_POSNR = MAX_POSNR + 10.
    header data
      WA_HDRX-UPDATEFLAG = 'U'.          "update
      SALES_DOC          = I_SORDER.
    item data
      WA_ITEM-ITM_NUMBER = TMP_POSNR.
      WA_ITEM-MATERIAL   = 'LEFTEYE'.
      WA_ITEM-PLANT      = I_STORE.
      WA_ITEM-SHIP_POINT = I_STORE.
      APPEND WA_ITEM TO IT_ITEM.
      WA_ITEMX-ITM_NUMBER = TMP_POSNR.
      WA_ITEMX-UPDATEFLAG = 'I'.          "add
      WA_ITEMX-MATERIAL   = 'X'.
      WA_ITEMX-PLANT      = 'X'.
      WA_ITEMX-SHIP_POINT = 'X'.
      APPEND WA_ITEMX TO IT_ITEMX.
    Schedule lines
      WA_SCHD-ITM_NUMBER = TMP_POSNR.
      WA_SCHD-SCHED_LINE = TMP_POSNR.
      WA_SCHD-REQ_DATE   = SY-DATUM.
      WA_SCHD-REQ_QTY    = 1.
      WA_SCHD-SCHED_TYPE = 'CN'.
      APPEND WA_SCHD TO IT_SCHD.
      WA_SCHDX-ITM_NUMBER = TMP_POSNR.
      WA_SCHDX-SCHED_LINE = TMP_POSNR.
      WA_SCHDX-REQ_DATE   = 'X'.
      WA_SCHDX-REQ_QTY    = 'X'.
      WA_SCHDX-SCHED_TYPE = 'X'.
      APPEND WA_SCHDX TO IT_SCHDX.
    config & characteristic values
      WA_VALUE-CONFIG_ID = '000001'.
      WA_VALUE-INST_ID   = '00000001'.
      WA_VALUE-CHARC     = 'PRES_DIST_SPH'.
      WA_VALUE-VALUE     = '3.2'.
      APPEND WA_VALUE TO IT_VALUE.
      WA_INST-CONFIG_ID     = '000001'.
      WA_INST-INST_ID       = '00000001'.
      WA_INST-OBJ_TYPE      = 'MARA'.
      WA_INST-CLASS_TYPE    = '300'.
      WA_INST-OBJ_KEY       = 'LEFTEYE'.
      WA_INST-QUANTITY      = 1.
      WA_INST-QUANTITY_UNIT = 'NO'.
      APPEND WA_INST TO IT_INST.
      WA_REF-POSEX     = TMP_POSNR.
      WA_REF-CONFIG_ID = '000001'.
      WA_REF-ROOT_ID   = '00000001'.
      APPEND WA_REF TO IT_REF.
      WA_PART-CONFIG_ID  = '000001'.
      WA_PART-PARENT_ID  = '00000001'.
      WA_PART-INST_ID    = '00000001'.
      WA_PART-OBJ_TYPE   = 'MARA'.
      WA_PART-CLASS_TYPE = '300'.
      WA_PART-OBJ_KEY    = 'LEFTEYE'.
      APPEND WA_PART TO IT_PART.
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
        EXPORTING
          SALESDOCUMENT      = SALES_DOC
          ORDER_HEADER_INX   = WA_HDRX
        TABLES
          RETURN             = IT_RET
          ORDER_ITEM_IN      = IT_ITEM
          ORDER_ITEM_INX     = IT_ITEMX
          ORDER_CFGS_REF     = IT_REF
          ORDER_CFGS_PART_OF = IT_PART
          ORDER_CFGS_INST    = IT_INST
          ORDER_CFGS_VALUE   = IT_VALUE
          SCHEDULE_LINES     = IT_SCHD
          SCHEDULE_LINESX    = IT_SCHDX.
      READ TABLE IT_RET INTO WA_RET WITH KEY TYPE = 'E'.
      IF SY-SUBRC = 0.
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      ELSE.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      ENDIF.
    I get the following messages from BAPI.
    ORDER_HEADER_IN has been processed successfully.
    ITEM_IN has been processed successfully
    The sales document is not yet complete: Edit data
    TIL-Direct Sales TINDC01372 has been saved
    What else is missing ?  Any help is appreciated.
    thanks,
    Nagarajan.J

  • A/R INVOICE COPIED WITH WRONG VALUES

    Hi all
    My client users had entered few correct delivery documents with discount at row level. As the items were excisable so outgoing excise invoice were also entered
    Now problem is that while copying delivery documents to A/R invoice, discount at row level wasn't copied. Delivery doc was copied to A/R inv doc (by using copy to functionality) but we wonder discount wasn't copied. No one noticed so in this way many invoices are wrongly copied and entered.
    Now we have to make payments but invoices are wrong. What to do?
    Please suggest what I can do now and also guide how discounts are not getting copied to target document.
    Edited by: Suda.Sampath on Feb 6, 2011 9:18 AM

    Hi
    Thanks for replying.
    Can you please elaborate the procedure for creating A/R credit memos and re creating  A/R Invoices as on creating Credit memos following things will happen:
    1. Automatic incoming excise invoice will be created at backend which will effect the registers, then do i need to create again outgoing excise invoice from delivery and the A/R invoice. But in that case delivery document is already closed.
    I am stuck here. Could you please again explain and suggest.

  • Smartforms - kbetr (curr11) in invoice with wrong values

    Hello,
    I am developing an invoice, and this invoice is built on the standard lb_bil_invoice Smartform. The "only" thing not being standard, is that I have to read the kondition items on position level and print them here.
    I read the same table (gs_it_kond), as is in the loop for  the kondition items.
    This works for all fields, except one;
    gs_it_price-kbetr (curr11)
    As soon as I have this field together with for instance a discount, this field will print the values
    mulitplied by 10, but only from the second line! (the first line always prints correctly)
    I have debugged it and the funny thing is that the correct value is in the field until the very end - something happens in the moment where I send it to print (it gets printed over an adobe server) which I cannot explain....
    Can anyone help me on this matter?
    Regards, Anne Kathrine

    Hello Ann,
      For all the Amounts, the currency referencing should used in order to print correctly.
    Try using something like this.
    Data: W_kbetr(11)
    Write: konv-kbetr to W_kbetr currency konv-waers.
    Also the amount field is displayed based on the Calculation type(KRECH) values 'A', 'B', 'C' etc...Percentage, Amount, Qty. resp.
    Make sure that before you're doing the manipulations correctly depends on the Calculation type.
    Hope this helps.
    Kindly assign points if the matter resolved.
    Thanks,
    -G

  • New Iphone updated with wrong user

    just got a iphone 5 and i just went to get some apps and some thing poped up and it said new iphone and i went threw and it said to backup on my moms phone i said yes and all her contacts are on the phone and songs.
    how can i get it to say that it is my phone and i get all my contacts back and songs?
    drew hartley , thank you

    So what has been your phone before you get iPhone5?
    If was an iPhone, did you have created a back up before in a computer or iCloud?
    If your phone has been a iPhone and you backed up somewhere, you should sync your device with.
    1. To get the back up from iCloud: In your iPhone 5, open Settings>>iCloud, then sign in with your Apple ID and password. Wait for a while and Voila';
    2.  To get the back up from your PC: plug your device in your pc and open iTunes, then select your device and click restore.
    If you never backed up your old iPhone, I advice you to back up your old iPhone by iCloud. Then you can sign in iCloud in your new iPhone and all contacts, photos, calendars, notes and so on goes to your new iPhone automatically.
    Hope it will be helpful

  • New Ipods Engraved With Wrong Names

    I recently bought ipods for my daughters, one black and one white. Unfortunatley, Apple reversed the names on said ipods and I'm lost as to what to do. Is there anyway that one can remove and switch the (back/front) plates with the names? Or do I send them back for new ones (I am unaware as to if the two-year warranty we bought with the ipods will cover this sort of situation).
    Any help would be appreciated.
    - pegasus

    Welcome to Apple Discussions!
    Call apple...
    http://www.apple.com/contact/phone_contacts.html
    Merry Christmas
    btabz

  • Certadmin is adding new SSL certificate with wrong name

    I'm using certadmin to add a new certificate from Thawte. Did it successfully the past few years, but can't do it this year for some reason. It looks like everything is working, but when I go to look at the store after adding the cert it comes up with the same name as last year's certificate. For example,
    portal.rhsmith.umd.edu u,u,u
    portal_2003 u,u,u
    portal_2003 u,u,u
    server-cert u,u,u
    ...where portal_2003 is the name of last year's cert. Before running certadmin there was just one of 'em. The .nickname does change to the new name I entered in, but it doesn't get stored with that name and the gateway gets confused. Changing .nickname to portal_2003 lets the gateway start, but it's finding the old (about to expire) cert, not the new one I just bought. Any ideas, anyone?
    Thanks for your help,
    --Ernie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Solved my own problem... went in with ipscertutil directly and removed some old certificates. This seemed to uncorrupt the store and I was then able to add the certificate.

  • Establishing new shortcut keys WITH coordinate values

    Hello,
    I don't know if it's possible, but I am trying to make a shortcut key that will let me move a text box to a specific place. I have a bunch of text boxes on each page, and I want to move each one to a specific area. Going to the transform window and entering the X and Y coordinates is time consuming, so I would like to make shortcut keys I could use for the text boxes. I've looked at the shortcut keys and couldn't find a place where I could enter X and Y coordinates.
    Unfortunately when I started out on this project, I didn't know much about InDesign and I disassociated all the text boxes from the master page (yup, went and did it over the course of 2 hours, boy do I regret that now!) otherwise I'd just move the boxes on the master page.
    For example, I'd like to move a box from it's current position to
    X: 23.44 mm
    Y; 243.00 mm
    Or, if there is an easier way to do this without using shortcut keys, I'd appreciate any help.

    I still get an error message. I copied Gerald's script exactly as it appears above, and the error message says "bad argument move" line 2.
    Sorry to not get this, but I really have no idea how the script Gerald gave me should appear. Should the entire thing be on one line, should the spaces appear exactly as he has them??? I copied and pasted it in just as it appears below - the same form as above:
    for (n=0; n<app.selection.length; n++) {
    app.selection[n].move([23.44, 100.05]);
    Maybe there was some slight adjustment I should have made? Please bear with me, I want to get this right, sorry if I am missing something that everyone else already knows.
    I was able to get the "helloworld" script from the tutorial to work, btw, so I know that there isn't some glitch keeping me from executing scripts.

  • Group with No Values, Crystal IX

    I have
    tried to achieve something on both regular reports and on cross-tab
    reports, and have the same problem on both reports.  I have field for loan ID, loan amount, and loan officer.  I want to show the
    count of the loan ID and the sum of the loan amounts for each loan officer during
    a specific date range. The
    problem is, if the loan officer doesn't have any applications during the
    chosen date range, the loan officer doesn't appear on the report at all.
    I want all the loan officers to be on the report, and if they don't have
    any loans during that date range, I want it to show 0 for the count and
    0 for the sum.
    I am on Crystal IX and the data is sequal.
    Can anyone help?  Thanks.

    1.  I didn't try the TRIM option because there is a drop-down box when the loan officer ID is set up.  I have to click on LO, so I know they are all upper case.  If all else fails, I'll come back to this item.
    2.  I think the left outer join is the problem.  Here is what the SQL shows.  I can't get the Link Options to open up.  When I clear out the linking and start over, it will show up, but only for the linking of the tracking table to the extended tracking table.  I can't get it to open up for the company file to the tracking table.  Thank you.
    SELECT "TRACKING_FILE"."f451#loan_officer_name", "TRACKING_FILE"."f448#branch_code", "tracking_file_heart2"."FU40#Date_Registered", "TRACKING_FILE"."Loan_ID", "TRACKING_FILE"."f7443#loan_amount", "company_file"."Code"
    FROM   ("MVData"."dbo"."company_file" "company_file" INNER JOIN "MVData"."dbo"."TRACKING_FILE" "TRACKING_FILE" ON "company_file"."ID"="TRACKING_FILE"."f450#loan_officer_code") LEFT OUTER JOIN "MVData"."dbo"."tracking_file_heart2" "tracking_file_heart2" ON "TRACKING_FILE"."Loan_ID"="tracking_file_heart2"."Loan_ID"
    WHERE  "company_file"."Code"='LO' AND ("tracking_file_heart2"."FU40#Date_Registered">={ts '2008-09-01 00:00:00'} AND "tracking_file_heart2"."FU40#Date_Registered"<{ts '2008-09-08 00:00:00'})
    ORDER BY "TRACKING_FILE"."f448#branch_code", "TRACKING_FILE"."f451#loan_officer_name"

  • Consolidation group Hierarchy - rollup calculation issue?

    Hi,
    I am facing an issue with my consolidation groups hierarchy (created in SEM BCS).
    We have a new conso group hierarchy starting for our plans 2010 : we have new nodes (zones), new leaves (new Business units) and some BUs moved fom one node to another one.
    Level 1 ZONE
            Level 2  BUSINESS UNIT
    (simplified hierarchy since we have sub-zones)
    in a Bex report, I fixed this new consolidation group hierarchy in selection (in filters) (to be able to select the new zones, the new Business units etc.)
    I can only get figures for one version and one fiscal year/period with this report.
    Results :
    -When i call a new Business unit, i get the correct figures, but when i call its higher level (the zone), the figures of this new Business unit are not included.
    -If i call a new zone, i don't see the proper figures with the sum of its BUs  + elimination between the BUs of the zone : i just see the eliminations between its BUs.
    I checked the master data synchronization between BCS and BW and everything looks fine.
    Has anyone had the same issue? Is there any solution?
    Many thanks in advance
    Armelle

    error on the version.
    Version not specificed in the ABAP code used for the exit

  • Consolidation group change without ownership change

    Hi All,
    I require help in resolving this particular issue.
    I have a company called 1000 which is having a subsidiary called 5010. both of the fall under the same consolidiation group called CG1.
    Now I have run the First consolidation as of March 2009 and carry forwarded the balances in 2009.
    Now 5010 has invested in 6 more companies and has become a holding company to them.
    Now I thought of two options
    1. To just create these 6 companies and enter the investment details for these companies and run the COI.
    2. To create a new consolidation group called CG2. Put the 5010 company along with its 6 newly acquired subsidiaries under this consoldation group.
    I ma exercising the option 2 by creating a new consolidation group as it will easy to get the reports at CG2 level.
    As you can observe there has been no transfer of investment happening here. How do i take care of such a situation.
    I read the posts regarding the Consolidation group changes but all posts were dealing with change in ownership happening. In my case there is no change in ownership as 1000 still continues to be the holding company. But only difference is that earlier 5010 was existing as a end node but now It has to have a consolidation group of its own where in it will have the holding company 5010 along with its 6 subsidiaries.
    Pl give me a solution.
    Thanks in advance.
    Shivaprasad

    facts of the scenario
    1. Did first consolidation in period 012.2008
    2. There is a company 5510 which belongs to CG1 as of first consolidation which was in period 012.2008
    3. 5510 has invested in 6 new companies in period 003.2009
    4. I want to create a new consolidation group CG2 and put the existing company 5510 along with 6 new companies under this group (client requirement)
    5. I created a new consolidation group CG2 and assigned the company 5510 to this group along with 6 new companies
    6. In consolidation group CG1 mentioned the divesture period as 003.2009 (DABP ticked) for 5510 company
    7. in Consolidation group CG2 mentioned the First consolidation period as 003.2009 (FCEP unticked) against 5510 company
    8. The figures are not accurate at the CG2 group level.
    Should I be doing anything else apart from the above steps.
    Will appreciate a fast reply as it is stopping the go-live
    Thanks in advance
    Shivaprasad

  • Unexpected error durung process after adding a new measure group

    I add a new measure group with distinct count in my cube
    I process my cube then I have:
    Erreur interne : Une erreur inattendue s'est produite. Erreurs dans le moteur de stockage OLAP : Une erreur s'est produite lors du traitement de la partition 'Requirement' du groupe de mesures 'Formalized 1' pour le cube 'Requirements_view' à partir de la
    base de données SeikoCube. (internal error : unexpected error happens ... An error occured when processing the partition for measure group for the cube)
    If I delete this measure, it works well.
    Whap happens ? How could I resolve it ?
    Thanks in advance

    Hi Fiacre663,
    According to your description, you encounter the error while processing the cube after added the distinct count to cube, right? In your scenario, which process option are you used to process the cube?
    Generally, if you add a measure you are changing the structure of the cube which will invalidate the cube, the easiest way to get the cube "fully operational" again would be to do a ProcessFull. The same thing applies when removing a measure.
    Besides, please ensure that the steps to add distinct count are correct. There are different options for creating a distinct count measure in SSAS. Please refer to the link below to see the details.
    http://www.mssqltips.com/sqlservertip/3043/different-options-for-creating-a-distinct-count-measure-in-ssas/
    Regards,
    Charlie Liao
    TechNet Community Support

Maybe you are looking for

  • Accessing Lotus Notes from Crystal Reports in AIX

    Hi BO world We've installed the BO Enterprise Server  on an AIX 5.3 platform and we want to connect this BO server to a Lotus Domino Server (version 8 on a Windows Server Platform ) to show the data on Crystal Reports. The problem is that we can't fi

  • Free Bumper, UK residents?

    Hi, The only way to register for your free iphone 4 bumper at the moment is on apple.com (iphone 4 caseprogram), can UK residents register for the free bumper on here or do we have to wait for the iphone 4 case program to appear on apple/uk? Cheers

  • Errors During Instalation Of Final Cut Studio 5.1

    Aloha, I am having some trouble here!! I am trying to install FCP Studio Pro 5.1 on my mac. I tried to do an upgrade from FCP 4.5 HD on my orriginal Hard drive. The instalation went through its paces & asked me to put in the second disc. I did then i

  • Custom Process Type - Creating the variant screen

    My custom process type's logic is rather simple: run parts of the process chain only if it is the first day of the month, other parts only if it the last day of the month. I created a new custom process type (ABAP OO Class), but I am now struggling w

  • Please how can I print out my book from the laptop I have adobe digital edition and the print is faded

    Sorry but I can not print from Adobe Digital edition. I bought and down loaded a book and now can not seem to print as the print request is faded out. Can someone help me thanks