BSO in ASO formula Conversion - need help

ASO is not my forte... I'm trying to get a simple formula to work in cube ASO as part of the OSI - & gt; Conversion of the ASO.

If this is the entity of level 0, the formula is (last shipped (PU) * Volume of the part)... works very well.
If its higher level, it should simply add up the values of his children. The OSI equivalent that we use generally is @SUM (@CHILDREN (@CURRMBR("Entity"))).
I tried the same thing in the ASO MDX script as shown below, it is not giving me good result... of ideas why this is not working?

Thanks in advance.

Nima

Formula Member*.

BOX WHEN ISLEVEL (Entity.CurrentMember, 0) THEN+.
Last shipped (PU) Volume of the part x+.
Else+.
Sum (Children (Entity.CurrentMember))+.
END+.

Published by: Nima.V on November 12, 2008 19:12

Have you tried to specify how you want the NAP?

for example

CASE WHEN ISLEVEL (Entity.CurrentMember, 0) THEN
Last shipped (PU) x Volume of the part
ON THE OTHER
Sum (Children (Entity.CurrentMember), [measures]. [Part Volume])
END

also I'm not sure if the SUM is correct. This might work as it certainly specified tuples:

SUM ({Products.CurrentMember.children}, [Measures]. [Part Volume])

It will be useful,
Gee

Tags: Business Intelligence

Similar Questions

  • BSO in ASO formula Conversion

    Hello

    Can you please help me in converting the BSO formula ASO. This is common is a member of the year (time) dimension.

    IF (@ISMBR (Current)) 'Member' = ('Member'-'member_In' + 'member_Out');
    ELSE 'Member' = @PRIOR (member);
    ENDIF

    Thanks in advance for your help.

    Kind regards
    UB

    Published by: user640496 on January 20, 2010 22:44

    Try something like

    CASE WHEN IS([Year].CurrentMember, [Current]) THEN
    [MCEB] - [Net_In] + [Net_Out]
    ELSE
    [MCEB].lag(1) END
    

    I just wrote this from memory, don't have the time to test at the moment, but should be close.

  • BSO to ASO formula conversion

    Hi all

    I'm new with the ASO MDX formulas and I can't seem to understand the problem here for the help NOT in the formula.

    When I use IS in syntax of the formula withdraws, but when I replace it with NOT the slightest mistake what I'm doing wrong here? can someone help me reach this goal

    CASE WHEN (IS([scenario]. CurrentMember, [real])) THEN

    ([ACCT1] * [ACCT3]) + [ACCT2]

    END

    Basically, with the first line, I'm trying to achieve in OSB is IF (NOT (@ISMBR("Actual"))), but I can't convert that into MDX

    Any help will be greatly appreciated and links or documents that you can share for my to improve my skills MDX will also be appreciated

    Thank you

    I don't not a ton of experience with MDX, but my understanding is that IT is a function, it returns True or False, but is NOT an operator who basically returns a Boolean value, try using this:

    BOX WHEN (IS NOT ([scenario]. CurrentMember, [real])) THEN

    ([ACCT1] * [ACCT3]) + [ACCT2]

    END

    There is useful information about MDX in Essbase Technical Reference

  • String conversion, need help

    I have the String I need to convert a RichTextField

    Here is my String

    "Hello World.

    some text here

    I'm new here text here

    I really need help

    "Help me.

    I want to get

    Hello world

    some text here

    I'm new here of the text here

    I really need help

    Help me

    no idea how to do it?

    Does that help?

    http://supportforums.BlackBerry.com/T5/Java-development/simple-HTMLTextField-implementation/m-p/4543...

  • 2.0 to 3.0 conversion NEED help

    I used Flash Professional with AS 2.0 to create flash banners using the .flv video, banners have a layer of button to click to go to a url. That's all that I'm using Flash Professional, so I don't know anything about Actionscript.

    Now works with Flash Professional CC which supports AS 2.0 is no longer.

    On the line of action to the framework that I defined 1 Action in AS 2.0 as follows:

    button_99.onRelease = function() {}

    getURL ("http://www.vrcworld.com/common/redirc.ashx?0, 0,1226", "_blank");

    };

    I get the following errors when you compile the project:

    Scene 1, Layer 'Actions', frame 1, line 1, column 111119: access of property may be undefined onRelease through a reference with static type flash.display:SimpleButton.
    Scene 1, Layer 'Actions', frame 1, line 2, column 21180: call to a method may be undefined getURL.

    Can someone help me with this problem for AS 3.0?

    Thank you very much

    Pieter

    put that on the first picture of you fla file, where your button is actually on scene:

    import flash.events.MouseEvent;

    import flash.net.URLRequest;

    import flash.net.navigateToURL;

    button_99.addEventListener (MouseEvent.CLICK, _getURL);

    function _getURL(e:MouseEvent):void {}

    navigateToURL (new URLRequest ("http://www.vrcworld.com/common/redirc.ashx?0, 0,1226", "_blank"));

    }

  • need help on queries of the ASO

    Hi all

    I'll be all right with a more help in correcting my two mdx queries as validation with no error, but unable to see my data.

    Formula Member BSO:

    1st formula

    IF (@ISMBR ("06000", "06001", "07000", "07001"))

    Mnth3Fcst-> & CurrBW;

    ON THE OTHER

    ((& Mnth1Fcst-> «Réels») +(&Mnth2Fcst->"Actual") + (& -> Mnth3Fcst & CurrBW));

    ENDIF

    2nd formula

    IF (@ISMBR ("06000", "06001", "07000", "07001"))

    0;

    ON THE OTHER

    IF (@ISMBR (Q1:Q4))

    @VAR ('2 + 1', & CurrBW);

    ON THE OTHER

    0;

    ENDIF

    ENDIF

    ASO mdx query:

    1st formula

    case [accounts]. CurrentMember

    When ([06000], [06001], [07000], [07001])

    then ([& Mnth3Fcst], [and CurrBW])

    ON THE OTHER

    (([&Mnth1Fcst],actual) + ([& Mnth2Fcst], real) +([&Mnth3Fcst],[&CurrBW]))

    END

    2nd formula

    case [accounts]. CurrentMember

    When ([06000], [06001], [07000], [07001]) then 0

    ON THE OTHER

    case [as possible]. CurrentMember

    When ([Q1], [Q2], [Q3], [Q4])

    then ([2 + 1])-([& currBW])

    0 otherwise

    End

    End

    Please help me fix my two mdx formulas. Thanks in advance...

    SM

    Hi sm...

    First of all, a trick of troubleshooting for this kind of problems - separate conditional logic to the logic of value. For example something like this:

    CASE [accounts]. CurrentMember

    WHEN ([06000], [06001], [07000], [07001]) THEN

    1

    ON THE OTHER

    2

    END

    But in your case - I've never seen this construction before, and I do not think that it can possibly work:

    CASE [accounts]. CurrentMember WHEN ([06000], [06001], [07000], [07001])

    "I'd give on the use of a ' searched when clause" (see the case for an explanation simple vs sought when clauses) because it offers no advantage when you test a condition with each case only. That done, there are several ways to test "is X A, B or C one member."  This is one:

    CASE

    WHEN contains ([accounts]. CurrentMember, {[06000], [06001,] [07000], [07001]}) THEN

    ...

    ON THE OTHER

    ...

    END

    In short, I think you need to get replace all of your tests on the current Member (two [accounts] and [time]) with the style above the test using Contains.

  • Hi, I recently bought numbers in order to create a commercial newspaper. I'm the pen and paper. I need help to create a formula. A purchase column determines if the entry price column is subtracted from the price of output column or output subtracted

    Hi, I recently bought numbers in order to create a commercial newspaper. I'm the pen and paper. I need help to create a formula. A purchase column; Determines if the entry price column is subtracted from the price of output column (buy) or subtracted from (Sell) entry exit. Thank you for your help

    Hi B',.

    Buying and selling in column B

    Price of entry in column c.

    Exit in column D price

    Formula (and outcome) in column E

    If the column will B always contained 'Buy' or 'Sell', it works. It is default to a calculation of 'sell' if sale or has been specified.

    E2: = IF (B = "Buy", D - C, C - D)

    If you want to delay the calculation until the amounts entered in C and D, use this version:

    E2: = IF (OR (LEN (C) < 1, LEN (D) < 1,"", IF (B = "Buy", D - C, C - D) ")

    If you want to delay the calculation until all three ducks are on a line (B contains buy or sell, C and D contain both data), use this version:

    E2: = IF (OR (LEN (C) < 1, LEN (D) < 1,"", IF (B = "Buy", D - C, IF(B="Sell",C-D,) "" ")))

    Third version used in this table.

    Kind regards

    Barry

  • Member of ASO formula - Concat

    Hi all

    First of all, please forgive me because it is my first stab at MDX ever.  My experience is only with BSO.

    I'm trying to concatenate a part of a member name and a string in a member of a cube ASO formula.  The dimension that I'm referencing is 'DATE' and I'm trying to concatenate the first 15 characters of the Member with a '01 '.  For example, the member name ' DATE. Day.20110115' really has to come as a "DATE. Day.20110101' because I am concatenating ' DATE. Day.201101 'and '01'.  The member formula that I have written includes the following elements do not validate:

    STRTOMBR (concat ([DATE].) (([CurrentMember.Member_Name, '01']))

    I'm trying to fix the first day of the month after the user is the recovery and cross (tuple) dim with a reporting line

    Thanks in advance!

    You will need a command of substring to get the 15 character and then concatenate something like STRTOMBR (concat (substring ([DATE].)) (CurrentMember.Member_Name,1,15) '01'])).

    Another way is to add an attribute to these members and get their value from the attribute for you tuple.

    Concerning

    Celvin Kattookaran

  • Need help with an expiration date

    I have as of today on my spreadsheet, need help to make a column of expiry date which will go to the Red 20 days before expiry. Not to find the formula, please help? Thank you.

    Hi Emtsrus,

    Conditional highlighting in column A. Select the cells and then click Conditional highlighting

    Add rule > Dates > in the next

    Another reminder, formula in B2 (and fill down)

    = DATEDIFF (TODAY (), A2, "D")

    Kind regards

    Ian.

  • Support stand not provided my replacement WRT-ngn350 - need help with Cisco contact

    Hello!

    I'm starting to feel like Michael Douglas in the movie Falling Down and need help.

    History:
    Finally, I sent to my bad WRT-ngn350 router and when I got the replacement of all but the plastic leg support has been included. I want to have my router stand up to save desktop space, but now I have no foot.

    "OK, should not be difficult to get Linksys to send me the missing foot stand" was my thought. Now, I called the online RMA and also emailed them and I get a similar response as Michael Douglas took with a smile

    I hear that I can't get the part because it is not on the list the content of the product. As this is * my * problem. I want the part and do not care if it's on a list or not. It is the part on the router in the image. I even asked the representative of Linksys to Google a little bit WRT-ngn350 and there are foot stands on almost all of the images and it is certainly included in the box. I was told that I could go nowhere elsewhere to help with that. I really some doubt but fail to find a channel of Linksys, which may be able to help.

    If some representative of Linksys sees this please help me!

    Thanks, Niklas

    RMA XXXXX - lack of router support/foot

    (Mod Note: under the guidance of the compliance of the directive.) E-mail deleted conversation.)

    SOLVED!

    The representative of Linksys has managed to dig a booth for me to a warehouse. It is mentioned that it is a unique thing because some parts should be sent. Don't forget to remove the stand and send only: router, power and eventually cable NW.

    Thanks to Linksys representative.

  • Need help importing music mp3 file to my windows movie maker

    I've added music files to my films on windows, Director of music from cd that I ripped to my Windows Media Player, never had any problems.

    Today, I bought several songs from Amazon mp3 in order to add to my Windows Movie maker, and they will not import the Windows Movie Maker program.  They play on my Windows Media Player, however, will not import Windows Movie Maker.  The files say they are mp3 files and Windows Movie Maker says he takes these files, however, I get aRED X and the message 'could not be imported'.  Help!  What can I do to get these files to import to my movie on Windows Movie Maker.

    Thank you...

    I put the questions about music and its forum.  I really need help importing MP3 files that I just bought today from Amazon for the sole purpose to add to my movies in Windows Movie maker.

    In the past I have imported music music files that I ripped to CDs.  Now, today, I tried to import music files MP3 to Windows Movie Maker and it will not import files.  I get a message says"could not be imported" and a RED X.  Window Movie Maker, says it accepts MP3 files, but it does not accept these MP3 files.  Help!

    Thank you...

    ======================================
    Movie Maker may have problems of compatibility with MP3
    files... may be worth a try to convert MP3 files
    to WMA before you import into Movie Maker.

    There are many programs that can do conversions...
    The following freeware is an example...:

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Format Factory
    http://www.videohelp.com/tools/Format_Factory (the file you want to download is: > FFSetup260.zip
    (FWIW... installation..., you might want to
    Uncheck the box 'all' boxes on the last screen)

    First, you will need to decompress the file or just open the
    Drag FFSetup260.exe out of the folder
    and drop it on your desktop. To install left click.

    Next, after the download and installation of Format
    Factory... you can open the program and
    left click on the toolbar, the "Option" button and
    "Select an output folder to" / apply / OK.
    (this is where you find your files after they)
    are converted)

    Drag and drop your MP3 clips on the main screen...

    Select "while"WMA"/ OK...

    Click on... Beginning... in the toolbar...

    That should do it...

    Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • NEED HELP USING VISTA TO BURN/COPY AN AUDIO CD EXISTING

    NEED HELP USING VISTA TO COPY/BURN A CD EXISTING ON A VIRGIN CD

    To copy a CD of Vista, you need 3rd Party Software:

    This one is very good:

    http://www.SnapFiles.com/get/burningstudiofree.html

    Ashampoo Burning Studio Free is a full CD/DVD/Blu-Ray suite which allows you to create data disks, music, video and audio burning. You can also create backups that span multiple discs, rip music from an Audio CD and create or burn disc in ISO or BIN/CUE format images. The task-oriented interface makes it easy to get started and will spare you most of the technical details. Other features include the conversion of files to WAV, MP3, FLAC, WMA and Ogg audio automatic, disk copy compressed backup file and restore, erasing the disc, VCD/SVCD, burning project and support more. Free registration required after 10 days.

    See you soon.

    Mick Murphy - Microsoft partner

  • Need help to set up AP 1142 standalone

    Hi all

    Need help. I am trying to configure Cisco Aironet 1142 standalone, this access point has been previously connected to WLC and the previous post, I found that we need to delete and reload the AP

    private-multiple-fs, c1140-k9w8 - mx.124 - 21A .JHA

    Now when I try to configure the IP address for the AP, he is in error:

    Ip address of AP1142 #lwapp ap 10.61.1.151 255.255.255.0
    ERROR! Command is disabled.
    AP1142 #.

    Current flash content:

    AP1142 #dir
    Directory of flash: /.

    2 - rwx 10264 March 1, 2002 01:25:57 + 00:00 private-multiple-fs
    3 - rwx 90396 March 1, 2002 01:18:04 + 00:00 event.log
    drwx-5 128 1 March 2002 00:12:24 + 00:00 c1140-rcvk9w8-mx
    8 - rwx 0 March 1, 2002 01:26:06 + 00:00 config.txt
    9 - rwx 337 March 1, 2002 01:18:04 + 00:00 env_vars

    total 32385024 bytes (30019584 bytes free)
    AP1142 #.

    Please let me know whatelse is required for the configured in stand-alone mode access point.

    Thanks in advance

    The image that is on the device's LWAPP, not the autonomous... If you want to use the AP autonoous mode then the image must be W7... It's...

    C1140-k9w7 - mx.124 - 21A .JHA not c1140-k9w8 - mx.124 - 21A .JHA.

    Please feel free to download any image from the below link and perform the conversion of image LWAPP to stand alone...

    http://tools.cisco.com/support/downloads/go/PlatformList.x?sftType=IOS+Software&mdfid=282439881&treeName=Wireless&mdfLevel=Model&url=null&modelName=Cisco+Aironet+1140+Access+Point&isPlatform=N&treeMdfId=278875243&modifmdfid=null&imname=&hybrid=Y&imst=N

    the methos to convert is...

    Download TFTPd32 of google and install it on your PC... point of the image that you downloaded on the TFTP server.

    Connect a cable ethernet between your notebook and AP... both should be on the same subnet... Connect a cable from the console and access the hyperterminal console with the command...

    AP > en

    AP #debug lwapp console cli or debugging console cli capwap

    T AP #config

    AP (confg) int FA 0

    AP(confg-IF) ip addr (same subnet as the laptop)

    End AP(confg-IF)

    Force - reload DOWNLOAD - AP #archieve sw / overwrite tftp: / /.

    This will solve the problem...

    Concerning

    Surendra

  • BSO in ASO data push when the data is saved to the form online

    Hi all

    I'm in a Situation where I need to send data from Cube BSO to ASO cube whenever a user saves data to the online form.

    If the background is that the user will enter a data in a cube BSO using the online form. When registering online, data must be pushed in reporting cube ASO user which will see at the end.

    BSO cube is created using the EMPA and ASO is Pure Essbase cube.

    All thoughts.

    See you soon

    Anubhav

    Anubhav here you go

    Send data in real time from planning to ASO ~ Oracle - Hyperion Labs...

    Concerning

    Celvin Kattookaran

  • Need help to Support Adobe re: verification of education

    I ordered a 5/2. Asked me to send documents for verification. I sent the college ID through a case that was opened by a representative in a conversation. It's been almost two weeks now and I haven't heard anything yet. I tried to start a new Cat several times and were left waiting for someone to answer each time. No one never came for the cat at the end of an hour, and I can't sit staring at a screen Virgin cat all day in the hope that the customer service could answer in fact.

    I am very frustrated and now either want my documents to be checked immediately or my order be cancelled and the money refunded.

    My order no: AD003789531EDU

    Thank you.

    This isn't an attempt to request a decision on your part, but in both cases (Finalize versus cancel order) you must contact Adobe Support by chat or phone.  These are mainly the user forums where no other users have any greater capacity than yourself.   All employees who visit these forums may offer more than the same level of support, but that would be an exception.

    To the link below, click on the still need help? the option in the blue box below and choose the option to chat...
    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If it fails to connect, try to use another browser.

    Creative cloud support (all creative cloud customer service problems)
    http://helpx.Adobe.com/x-productkb/global/service-CCM.html ( http://adobe.ly/19llvMN )

Maybe you are looking for

  • A30 start of Word of past Admin

    Hello My A30 does not start. When I try to run the recovery console, he asks the administrator password. Windows XP Home Edition does not have an admin at power-on/installation initial password, so I don't know what the admin password and I can't fix

  • Satellite C850-1j1 not boot not

    my PC laptop Satellite C850-1j1 unbootable.He arrived after the partition is changed. Displays an error screen telling me that the computer must be repaired with recoverymedia. I have a work hirens boot cd and usb (tested on other COMP.), but the lap

  • How can I decode a stream of jpeg images?

    Hello I use the stream jpeg tranfered to a scanner module I need to decode and display as an image on my vi. Question: With what method I can do on the fly? or do I need to record the flow of data (string) first to decode then with "playback JPEG fil

  • Win media player 11 won't start

    Win Media 11 housing starts of player in the taskbar, but will maximize not on the desktop, it will open with mini Player. I am running Windows XP Home with SP3

  • Synchronization of lists

    Hi, can someone tell me how do I save my LIST of SYNCHRONIZATION?  My MP3 player is having a problem at the moment and I don't want to lose all my music that I spent in the sync list. Thank you!