Error trying to set Do Not Aggregate through JAPI

Hi
API Version :11.1.2
API Version Detail :Essbase JAPI version: 11.1.2.0.0.615
I have an ASO outline with a two level dimension as follows:
[-]-Unit Stored # Default # <1> (Label Only)
L___dummy_u (+)
I want to change the Level Usage for Aggregation to 'Do Not Aggregate' because once the dimension has a full complement of children, showing data against the "Unit" member will make no sense. Using EAS it's no problem and I end up with
[-] Unit Stored # Do Not Aggregate # <1> (Label Only)
L___dummy_u (+)
But using the following JAPI method:
member.setAggregationLevelUsage(IEssMember.ESS_AGGLEVELUSAGE_NOAGGREGATION);I get:
I get:
com.essbase.api.base.EssException: Cannot set aggregate level usage. Essbase Error(1060243): Invalid Aggregate Level Usage. Primary hiearachies cannot have usage 'Consider Bottom Level Only', Secondary hierarchies cannot have usage 'Consider Top Level Only' or 'Never Aggregate to Intermediate Levels'
Does anyone know why it's possible through EAS but not the JAPI?

I assume you're passing a numerical width value and not css attributes.
I usually get this exception when I'm attempting to convert from a String to a numeric value and there is a leading or trailing space. Is there some white space in your properties file around this value?

Similar Messages

  • CO07 - got error Reference operation set DOOR not found

    Hi PP Experts,
    I'm unable to create prod order without material (transaction CO07).
    The error says 'Reference operation set DOOR not found',
    but I can't click the error to find the message number.
    I checked that reference operation set DOOR has been created correctly.
    Please give me some light.
    Thanks and regards,
    Thomas Wahid

    Many thanks for all your suggestions.
    The problem is now solved.
    We use the unit SHE, this is actually the commercial of unit ZSH, you can see it if you check in CUNI.
    The referenced operation set DOOR uses unit M3, but we do not have the same dimensiond in CUNI.
    The unit M3 has dimensions VOLUME, but the ZSH has not been assigned any dimension so it get the default one AAAADL which is different, so the system can not convert the unit and the error happens.
    Best regards,
    Thomas

  • Error trying to set up web services/HP Connections (ePrint) for HP Envy 5530

    I have been trying to set-up my new Envy 5530 printer and I can get the printer, computer, and wireless network to communicate with each other. However, when I try to get the printer and network to talk to each other to set up Web Services and HP Connections, the printer tries to download the latest product updates and has a server error saying it cannot connect to the server It wants me to check the connections or set a proxy server address. Also, when I try to get a claim code printed, I run into this same issue. Help!!

    Hello Woodpeckyr,
    Welcome to the HP Support Forums!
    I see that you are trying to setup Web Services on your ENVY 5530 but are unable to connect to the server. A colleague of mine as worked with this issue here: Envy 5530 Web Services
    Please review the steps afforded and give them a try. Hope this helps, cheers.
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Iphoto can't share via email; error message: Your email did not go through because the server did not reply.

    I can never share via email, using iPhoto. The error: Your email did not go through because the server did not reply. always pops up. I have no problems with my server or internet connection.
    Any ideas?
    thanks.

    Go into iPhoto's Accounts preference pane and delete the   email account there. Then add it back.  If that fails you can select Mail as your email client in iPhoto as that's more reliable and flexible.  It also offers stationary for photos that are not unlike those in iPhoto's client:
    and using Mail as the client will allow you to have a Sent copy automatically.
    OT

  • I get errors trying to set my IPAD back to the factory setting.  error:  backup session failed.  If I try to sync I get 3 more errors - 1) the IPAD cannot be synced, an internal error occurred. 2) required file not found. 3) folder specified instead of fi

    Any help with errors setting IPAD back to factory setting?  I received this error when trying to back up - backup session failed.  Has any one had the following errors when trying to sync to computer?
    1) the IPAD cannot be synced, an internal error occurred. 2) required file not found. 3) a folder specified instead of file.
    Any help appreciated

    Type "13019" into the search bar at the top of this page by "Support" and read the resulting help articles.

  • Help with #2170 error: tried suggested solutions, still not working

    Hi,
    I have a xcelsius movie which calls a web service that is located (in the same directory) on the same server as the movie.  The web service makes a call to a remote database.  I have tried following the suggested solutions of changing the flash security settings on the web server and placing a crossdomain.xml file in wwwroot directory of the web server.  Both have not fixed the error.  Does calling a remote database have anything to do with my inability to fix this problem?  The web server is running windows server 2008 and the database server is running windows server 2003 with sql server 2000 as the database.  The movie and web service are in a virtual directory of IIS.  Any help would be much appreciated.
    Thanks,
    Jacob

    I did some more testing and seemed to have figured out my problem.  In my movie I referenced my WSDL url using localhost.  I changed this and the error went away.

  • Anyone else getting server error trying to set up ipad after latest ios update?

    New IOS 7.03 was installed on my ipad2 today and Ive been having issues trying to sign in to my account all day.  I finally got my login figured out but now when go through the setup process for the new update, after I accept the Terms & Conditions it keeps telling me "Apple ID cannot be created due to server error".
    I'm really getting annoyed with all these updates.  Starting to think that purchasing this was money wasted.
    Somebody, please help!!!  This is ridiculous!
    Thank you.

    Instead of going through the rest of the setup and logging in, I skipped it and also skipped the passcode.  My iPad allowed me to get on to it and enter a password for iTunes.  We'll see how long this lasts.  Don't know why I didn't think of trying this earlier.  Let's keep our fingers crossed.

  • Trying to set application item value through javascript

    Hi,
    I am not sure what I am doing wrong here can someone possibly shed some light? I have the following in my
    HTML Header of my login page
    <script language="JavaScript1.1" type="text/javascript">
    function setAppItem(val){
      var req = new htmldb_Get(null, &APP_ID., 'APPLICATION_PROCESS=dummy', 
      &APP_PAGE_ID.);
      req.add('F_LOGIN_MESSAGE', val);
      var gReturn = req.get();
      req = null;
    </script>
    <script language="JavaScript1.1" type="text/javascript">
    function doLogin()
      var err = false;
      alert(document.getElementById('P101_USERNAME').value);
      if((document.getElementById('P101_USERNAME').value == '') ||
        (document.getElementById('P101_PASSWORD').value == '')) {
        setAppItem('You must enter a username and password.');
        err = true;
      if(!err) {
        doSubmit('Login');
    </script>The setAppItem function does get called but it is not setting the application items text?
    Thanks in advance for any help!

    Thanks for all of your help Jari it is appreciated!
    For others the solution was to add the following to my HTML Source
    <div id="LOGIN_MESSAGE"></div>and then created the javascript routine
    <script language="JavaScript1.1" type="text/javascript">
    function setAppItem(val)
      $x('LOGIN_MESSAGE').innerHTML=val;
    function doLogin()
      var err = false;
      if($v('P101_USERNAME') == '' || $v('P101_PASSWORD') == '')
        setAppItem('You must enter a username and password.');
        err = true;
      if(!err)
        doSubmit('Login');
    </script>
    Thanks

  • Error trying to set up the "find my iPad2" feature

    I am following the instruction for setting up the "free find my iPad2" feature.  When I get to the point of enabling Mobile Me, it is asking for my Apple ID.  Well that is fine, I enter my AID and password, but am then told it will only accept AIDs that are in the form of email addresses.  Mine isn't.
    Going to account management, I attempt to change my AID to my email address, but that is rejected because there is already an email associated with my AID (of course).
    Setting up a new AID using my email is impossible, because my current email is being used (and I can't change that).
    Anyone have any advice for how to get out of this catch 22?

    Did check those setting, they are on. I got it fixed eventually after completly reseting the handset and settings

  • Error when trying to set a date type edit field

    Hi all
    I have an edit text field in a form which is bounded to a date type
    database field using dbDataSource.
    When i try to set the edit text field value with Today's date by code.
    I recieve an error message that the value which
    i'm trying to set is not legal. the  error number is [131-183].
    I use the following code to set the edit field:
    If oEditText.Value.Trim = String.Empty Then
                Dim strDate As String
                Dim sboBob As SAPbobsCOM.SBObob =
                 oCompany.GetBusinessObjec(SAPbobsCOM.BoObjectTypes.BoBridge)
                 rs = sboBob.Format_DateToString(Microsoft.VisualBasic.Today)
               strDate = rs.Fields.Item(0).Value.ToString().Trim()
    Try 
           oEditText.Value = strDate
    Catch ex As Exception
        SBO_Application.MessageBox("error setting
    current date: " & ex.Message)
    End Try
    End If
    My question is how can i set the edit field with a valid value?

    Hi!
    When writing to EditText.Value you must always use the B1 "DB-Format" as String.
    The following examples are assuming (it's a must!) that the EditText-Fields are bound to a corrosponding DataSource (Type Date, Price etc...)
    MyDateEditTxt.Value="20080207"
    MyPriceEditTxt.Value="1341.79"
    The best of it: It's Windows and SBO-GUI-Language independent.
    EditText.String must always be written with the format of the actual Language of the SBO-GUI, which can be changed by the user....
    You may also have a look at my statements regarding these problems near the end of this thread:
    [How to pass date value to an UDF;
    Cheers,
    Roland

  • Updated to yosemite, now in iPhoto when I try to send a photo I get the following error'Your email did not go through because the server did not reply'. Help please.

    Hi, I've recently upgraded to Yosemite. I tried to send a picture out from iPhoto as I regularly do without issue. Now I get this error message, 'Your email did not go through because the server did not reply'. Can you help please?

    Try rebuilding your iPhoto library. Directions are simple Rebuilding the iPhoto library. Please post back after doing the rebuild and then re-testing.

  • Cfdisk error, trying to install Arch

    When it comes to partition my HDD i have one 500GB partition containing Windows, and 500GB free space, yet when i come to manually set up the partitions using cfdisk i get this error:
    FATAL ERROR: Bad primary partition partition ends in the final partial cylinder
    This stops me from continuing the install all together as i can't set up a partition...
    The output of fdisk -l shows everything looking fine except i get this error:
    Partition 2 does not end on cylinder boundary.
    I am trying to set up a partition through an Ubuntu live CD with Gparted so we will see how that goes, but in the mean time does anybody have any idea what is causing this or a way it can get solved?
    Thanks a lot

    Greetings,
    I ran into this issue when setting up my wife's new laptop. It came with windows 7, which she hated, having found linux mch easer for her to use. So She asked me to setup arch linux on her machine, and completely wipe out windows 7.
    Well for some reason windows 7 is set up with an invisible partition. cfdisk seems unable to see this partition, and it completely throws it off. Using gparted (on a puppy linux disk I had laying around) was my way around the partitioning issue.

  • Iphoto Your email did not go through because the server did not reply.

    I have recently upgraded to Yosemite. Since then I have been unable to send photos by mail from iPhoto and on attempting get the following error message 'Your email did not go through because the server did not reply'.

    Have you enabled two-step verification? Then you need to create an app-specific password, see the post below:
    Re: I am using iPhoto version 9.6 and I can no longer get an email sent with a photo attached. I get an error message saying the email did not go through because the server did not reply. I can send the photo with Mail. Help!in response to Gary Kissler
    This solution is for those of you using 2-step verification for your Apple ID and are using iCloud as the mail server that you are trying to mail photos with.
    I too had this issue. The problem in my case occurred because I had setup 2-step authentication for my Apple ID. If you have done this then you will get the error message "the mail server did not recognize your email/password...". To solve the problem go to:
    https://appleid.apple.com
    Click "Manage Your Apple ID"
    Verify your identity with the device you selected (if this step does not show up then you have not likely set up 2-step authentication and this is not your solution)
    Click Password and Security in the left column
    Click Generate an app-specific password
    Enter iPhoto as the name of the app
    Copy the password and paste this into the password box in iPhoto where you would normally enter your apple ID (in the mail account section in iPhoto preferences).
    And...voila' (I hope)

  • Itunes 7.0.1 download not coming through

    Since I've installed ITunes 7.0.1, the last two albums I tried to download did not come through. It tell me there is an error. I was charged for both, and clicked on "Report a problem" on my account, but nothing has happened. What do I need to do? Who should I contact?

    If you haven't found your solution yet, try here
    http://discussions.apple.com/thread.jspa?messageID=3370584#3370584
    It fixed my problem.

  • Your Application Set does not match the applications in your Retrieval Rule

    Hi,
    While creating the time card iam getting the error:Your Application Set does not match the applications in your Retrieval Rule Group.
    Please Suggest the solution.
    Thanks

    In Our case, we created a new PERSON TYPE in HR and we forgot to add this type to OTL Preferences.
    So in the above scenario:
    Go to US OTL Application Developer -> Preferences ->
    In the Eligibility Tab. add new row
    Name of Rule => any unique name
    Name of Branch => enter the name of an existing branch which the time card preferences are going to be the same.
    Link By => We use Person Type... You can choose PERSON here but i would not know why you would want to do that
    Linked To => Person Type you want to have this for
    Precedence => Unique Number
    From => make sure to enter an earlier date especially when people are required to enter older than todays timecard since this field defaults to today.
    If you totally dont have or want to build a new preference, then you will have to go to the Preference Tab and create a new branch.
    in ours, we have Timekeeper and TimeStore and Employees
    in Timekeeper -> we have timekeeper timecard layout
    in TimeStore -> we have approval style, entry level processing rule, time entry rule groups, timestore retrieval rule group
    in Employees -> all we have is really those preferences we;d like to see. Date Format, Enter Negative Hours, Enter Override Approver, Number of Empty Rows, Timecard Delete Allowed, Timecard Layout, Number of Recent Timecards displayed, timecard status allowing edits.
    Hope the above helps

Maybe you are looking for

  • What happened to the " street view " function in the maps app in iOS6?

    What happened to the "street view" function in the maps app of iOS6?

  • ABAP Function Module where-used in BI-Transformations

    Hi, we have developed some ABAP-Z-Function-Modules. These are used in several BI-Data-Transformations and work fine and performant. The problem we have now is to find out in which transformation a Function-Module is used. The where-used-list in SE37

  • Removing Logic / Dynamic logic

    Hello all... this is something I have been thinking about for a few weeks and every once and a while I get inspired to see if I can find a simple solution to a rather annoying (but not critical) problem I am having with a bit of code... and in fact..

  • Safari 5.0.5

    hi iam usnig macbook core 2 duo my os is 10.6.7 fully updated but i am wonder how to save images from google while searching using safari when i open high resolation image in safari by open new tab its ok full size when i right click then save as com

  • Trouble with new logicboard

    I just got a new logic board, battery, and super drive. now the battery will read that that there is 0% it wont turn on sometimes, and the serial number is no longer showing on my computer. also when I try to play my itunes it made me put in a passwo