Writing to a Saved Assumption Member

         Greetings, I am looking what line of script I need to write a value to a saved assumtion member in Planning. I put the value in brackets, quotes and parentheses and the script doesn't validate. Any help is appreciated. Thanks.

Hello Sree, see script below. I am trying to assign the text, "Approve" to all intersections but, its not validating. Any help is appreciated.
SET EMPTYMEMBERSETS ON;
SET CREATENONMISSINGBLK OFF;
SET UPDATECALC OFF;
SET AGGMISSG ON;
FIX ("Forecast","FY14", "Stage 1","Unspecified Budget Item",
"Unspecified Element", @LEVMBRS("Employee", 0), @LEVMBRS("Position", 0),@LEVMBRS("Entity", 0));
"Approval Status Input" = {Approve};
ENDFIX;

Similar Messages

  • Mail program takes forever writing changes and saving index

    Over the past couple of weeks, my G3 PowerBook (recently loaded with OSX), when I go to the Mail program, has taken to spending up to a minute at a time Writing Changes to Disk and then Saving Index. Tonight it did it every time I sent a message or accessed a message. It's now impossibly slow, and I can't find any way to stop it doing this every few minutes or with every message. How do I make it stop, or do this less frequently - say, once a day? I only have 400 messages in my Inbox, so I don't think it's overloaded.

    Hi again
    Select the mailbox you're are having problems with - you can find the Rebuild option under "Mailbox" from the menu at the top of the screen.
    You can download a fully functional trial of Cocktail from here
    http://www.maintain.se/cocktail/
    I should point out I don't work for Maintain or receive payment for recommending Cocktail to other users, it's just my favourite utility =0)

  • How to delete Hyperion Planning member using ODI

    Hi All,
    Anyone know how to delete Hyperion Planning member using ODI? And how to update account type on Hyperion Planning Using ODI?
    e.g.:
    I have a member with account type Saved Assumption, and I need to change to Revenue, but it cannot change. But if I change to Expense, it can. So what's wrong with the mapping?
    This is my csv file for update a member on Hyperion Planning.
    Parent,Account,Default Alias,Operation,Data Storage,Two Pass Calculation,Account Type,Time Balance,Skip Value,Data Type,Exchange Rate Type,Use 445,Variance Reporting,Source Plan Type,Aggregation,Member Formula
    Account,Statistics,,Update,,,,,,,,,,,,
    Account,Meal,,Update,Store,,Expense,,,,,,,,,
    Account,Test1,,Update,Never Share,,Saved Assumption,Average,None,Non-currency,none,,,Consol,~,
    Account,Test2,,Update,Never Share,,Revenue,Average,None,Non-currency,none,,,Consol,~,
    Account,Test3,,Update,Never Share,,Saved Assumption,Average,None,Non-currency,none,,,Consol,~,
    Thanks in advance.
    Regards,
    Sumardi
    Edited by: Sumardi Wijaya on Mar 31, 2009 10:57 PM

    Hi,
    To delete a member you use the Operation column, the following values can be used.
    Update – This is the default and is used if not populated, it Add, updates, moves the member being loaded.
    Delete Level 0 - Deletes the member being loaded if it has no children
    Delete Idescendants –Deletes the member being loaded and all of its descendants.
    Delete Descendants –Deletes the descendants of the member being loaded, but does not delete the member itself.
    Does the member you trying to change to Revenue have a variance reporting set to "Expense" as it will need to be set to "Non Expense"
    Also in your interface you can add logging options in the IKM, this maybe will give a clearer indication where your problem lies.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Cannot find .TIF file saved with Acrobat 9 Pro

    I have a Canon document scanner that I use with Acrobat 9 Pro on Windows 7. I can scan the document into Acrobat, and save it as a PDF just fine. However, if I try to save it as a .TIF or a .TIFF, it appears to save just fine, but I'm unable to locate it afterwards. Here's what I've done so far:
    - Checked to make sure hidden files are visible in Windows Explorer
    - Made sure the permissions for the folder allowed writing files (even saved the TIF files to the same folder as the PDF files)
    - Searched for the filename with Windows Search. It finds the file, but when I try to click on it to open the file, Windows says that the file cannot be found.
    We're needing this for importing documents into a LIMS program, and we can't get that working until this part gets resolved. Anything that you can think of to help would be great. Thank you!

    Solved: It appears to be a Microsoft Word issue as it doesn't occur with other apps. When using the built-in 'convert to PDF' tool within Word the file name length is respected. It's an older version of Word (Word 2002 SP3). I printed a file using the same name length with Wordperfect and it works fine.
    I know this isn't a Word help forum, but if anyone does have a solution to offer it would be appreciated :-)
    Russell

  • Newbie question: Saving User Data on iPad

    Hi
    I am working on an App for iPad in Flash CS5.5.
    In the app the user will be writing poetry and saving text on the iPad locally.
    I need them to be able to decide which poem they load back into the app.
    It seems to me this will qualify ofr saving to the /Documents folder.
    I have looked at shared objetcs and dont think it will do that job.
    Can I use FileReference on an iPad?
    Will the user be able to browse the different files he/she has saved?
    Can someone point me to some example code for saving to and loading from /Documents?
    Best
    Tommy Banana

    Here is some basic code that will work.
    import flash.filesystem.*;
    import flash.events.Event;
    var f:File;
    var fs:FileStream;
    var myDATAstring:String;
    function CheckSettings():void{
                f = File.applicationStorageDirectory.resolvePath("Storage_File_Name.txt");
                if(f.exists){
                    getDATA();
                }else {   
                 trace("Nothing stored yet");
    function getDATA():void{           
              fs=new FileStream();
              fs.addEventListener(Event.COMPLETE, onFileOpened);
              fs.openAsync(f, FileMode.READ);
    function onFileOpened(e:Event):void{
                myDATAstring=fs.readUTFBytes(fs.bytesAvailable) as String;
               fs.close();  
    //****** Use this to save the high score *******       
    function SaveDATA(s:String):void{       
                f = File.applicationStorageDirectory.resolvePath("Storage_File_Name.txt");
               fs=new FileStream();
              fs.openAsync(f, FileMode.WRITE);
              fs.writeUTFBytes(s);
             fs.close();

  • Variance Reporting problem in Planning

    Hi,
    I am facing an issue in variance reporting in Planning. I have a memeber X (dynamic calc, account type: saved assumption, variance reporting: non expense).   Now member formula of X is @sum(W,Y,-Z). W, Y & Z are expense members. Their variance reporting settings is expense. Now lets say W=5, Y=5, Z=5. So for actual scenario value of X is 5 and for variance scenario it should be 5. But it is coming as -5  because for variance scenario W Y & Z values are -5, -5 & -5. So as per formula X value is (-5-5+5)= -5
    So variance reporting settings of X is overwritten by member formula value. Is there any way to stop this?
    Regards
    SB

    I don't think that's the problem Rahul, it's a calculation order issue.
    I think the current calculation order is:
    1. Variance->W (sign flip occurs), Variance->Y (sign flip occurs), Variance->Z (sign flip occurs)
    2. Variance->X (no sign flip occurs)
    Net result, sign flip.
    What the OP wants is:
    1. Actual->X (no sign flip occurs), Budget->X (no sign flip occurs)
    2. Variance->X (no sign flip occurs)
    Net result, no sign flip.
    If X was a stored member this would 'just work'.  Another option would be to tag X as 'Expense' even though it really isn't.  This would flip the sign back for the Variance scenario only.
    Alternatively, 'roll your own' by writing the formula on 'X' to check for @CURRMBR("Scenario") and perform the extra sign flip when Variance is selected.

  • Currency Code

    I have a simple data form that has saved assumptions currency accounts, saved assumptions non - currency and some revenue currency accounts. I have unchecked Allow multiple currencies per entity and unchecked Show currency codes in the data form design, still I see currency codes in the data form!!! i have selected local in the layout and its in point of view, what can be possibly wrong? I dont want to display the Currency Codes, does it have to do anyting with the saved assumptions currency and non - currency accounts?
    Thank you for your time and help

    Members with member formulas (dynamic calc members included) need to have "IF (@ISMBR("HSP_InputValue"))" check in their formula otherwise the value will be returned as the currency code as well. If the value is not #MISSING then the currency cell will be displayed as expected.
    The IF statement above needs to be added. If this is done, then the currency code will be "missing" as expected and the currency cells will not appear on the web form.
    HTH-
    Jasmine.

  • How to set the date date type to work

    This may be a silly question, but I can't seem to get the Date data type to work for a date account member. When I go into the Planning app and choose an account that I want to set as a date entry account, the web form doesn't seem to show that the date setting works for the account. I even set my account type to be Saved Assumption. For example, I expect to see the date formatted to 10/20/2009 when I enter that value in the web form under my account "Hire Date". I also checked the display options under the Planning preferences. So does anyone know if this function even works on 9.3 or 11.1?

    Hi,
    Sounds like you have not set the evaluation order for accounts. Administration > Dimensions > Evaluation Order > select plan type > move accounts to the other window, apply.
    Try the form again.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Planning Dim Load - Acct and Currency Issue

    Hi,
    I am trying to push metadata via outline load in utility in blank test application.
    In Acct Dimension -
    I designed a member as below
    Account     Parent     Data Storage     Description     Data Type     Account Type     Aggregation (Plan1)
    Statistical Drivers     Account     Dynamic Calc          Non-Currency     Saved Assumption     ~
    It gives me below error in Exception log
    Error occurred loading data record 23: Statistical Drivers,Account,Dynamic Calc,,Non-Currency,Saved Assumption,~
    [Fri Jul 06 06:04:30 PDT 2012] com.hyperion.planning.HspRuntimeException: Exchange Rate must be None if Data Type is Non-Currency, Percentage, Smart List, Date, or Text. Member: Statistical Drivers
    In Currency Dimension -
    I designed a member as below
    Currency     Parent     Data Storage     Description Data Type     Triangulation Currency     Reporting Currency
    GBP     Currency     Store     Great British Pound     Unspecified          TRUE
    It is loaded successfully but when I checked in Planning application - I can see £ symbol as well.
    How symbol come up automatically when I have not defined in data file.
    Please advice.
    Thanks,

    user593397 wrote:
    Currency     Parent     Data Storage     Description Data Type     Triangulation Currency     Reporting Currency
    GBP     Currency     Store     Great British Pound     Unspecified          TRUEAre you asking that you loaded the following information through the outlineload and £ appears in planning, if so that is because GBP will default to £ as it one of the standard currencies.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Loading relational dimension into AW

    Hi, I'm trying to create my first AW from a relational model (using the AW wizard). I actually sent the script to a file so I could run things manually to see where the problem is.
    Everything works fine for populating the first 4 dimensions, all of which are pretty small (< 300 members each).
    However, when I get to the "ownership" dimension, which has about 250,000 members in it, the session just seems to hang on the following call:
    execute DBMS_AWM.REFRESH_AWDIMENSION('POWELS10', 'RMGMT', 'RMGMT1OWNERSHIP', 'TESTFri Oct 15 15:34:22 EDT 2004');
    This has been running for at least an hour. Is that typical performance? I remember Express being MUCH faster than this - what can be happening?
    Thanks,
    Scott
    p.s. I'm not sure how to even debug this, there doesn't seem to be a log file like the Express Administrator data loads used to generate to show how much data has been read. About the only thing I've been able to find was the v$aw_calc view, which shows these statistics:
    aggregate cache hits / misses: 0 / 0
    session cache hits / misses: 0 / 0
    pool hits / misses: 39,658,051 / 1,130,980
    pool new pages: 1,132,276
    pool reclaimed pages: 0
    cache writes: 1,150
    pool size: 2,048
    Why has a simple dimension load generated almost 40 million hits against the pool?
    Thanks!
    Scott

    Hi John,
    Yes, i am trying to load "Saved Assumption" against the UDA column. I tried using one more column with Account_Type specifying as "Saved Assumption". Here i need to have the UDA also as "Saved Assumption". But the error result was same.
    Cannot load dimension member, error message is: java.lang.RuntimeException: The specified UDA "Saved Assumption" is not defined.
    I would like to communicate few more as per my requirement;
    1. I have created the Single currency application, which was fine.
    2. By default i have Account, Period, Year, Scenario, Entity, Version. Later i added custom dimensions like BU, Product in Planning.
    3. First dimension (with members) which i was trying to load was Account.
    When i reversed the planning application in ODI models. I got one additional Column called UDA which is not in the dimension liast. If i would require UDA's to be added to the account, do i need to define the required UDA's using ODI to Planning? If so, can you please guide me?
    Thanks
    Damodhar Reddy

  • Planning Webform

    Hello All,
    I am currently having issue with a web form, User requested to have few accounts to have read and others to have write access. I have set up security accordingly. 3 Lev0 accounts still have Write access even i have set them to read access for all groups. I have refreshed security, verified security, verified none of its parent has write access to all of its descendants.
    Here are member properties, it may helpful to assist me,
    Account Type: Saved Assumption
    Variance Reporting: Non-Expense
    Time Balance: Balance
    Skip: None
    Exchange Rate Type: NoRate
    Data Storage: Never Share
    Data Type: Non Currency
    Appreciated for your time and advise,
    Thanks,
    Ram Y

    Hi Ram,
    I am not sure why the security on the accounts is not working, but one other option would be to enable Read-only option on the data form itself. You can find the option under Segment Properties: http://docs.oracle.com/cd/E12825_01/epm.111/hp_admin/form_lay.html
    Cheers,
    Mehmet

  • My swing Application has to start..

    hi all
    I have an application which has to be started once the system is started. ie it has to be set up as an startup item and my application has to run in the task bar.
    do help me..
    regards
    Pradheep

    I'm not really sure what u want to do exactly...
    if you want your application to be autostarted by every system start (and you are using a WIN system) you might write a batch file that contains the following order:
    @ECHO OFF
    ECHO Executing 'myApplication'
    JAVA yourApplicationECHO produces a System output. You might insert some comments by writing REM yourComment
    Saving this file as filename.bat and setting a link to your autoexecute/autostart folder.
    Alternativly you might tell your system to run your application by writing the same command line inside your autoexec.bat file.
    Hope this is what you wanted to know and it helps you...
    Thof

  • "File in use" pop up while trying to open excel files

    Hi,
    We are regularly experiencing difficulties accessing excel documents residing in our Sharepoint site collection that are shared by numerous members of the department for updating.
    We are aware of the 10 minute rule for excel documents, where if you try to open a document that has been saved by another member previously, you must give 10 mins before the system releases the lock.
    Recently several occurrences have stopped members from being able to open excel documents, where the document has been updated and saved by member A and closed. Then member B tries to open document well past 10 mins after member A had closed the document,
    only to receive the 'File in use' pop up and not able to open the document in edit mode.
    Any suggestions please?
    Thank you.

    Try below:
    http://support.microsoft.com/kb/899709
    Check below:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/7966c35d-b815-4951-8374-d64840ccf16c/documents-becoming-locked-for-editing-by-self-when-no-other-edits-are-happening?forum=sharepointadminlegacy
    If this helped you resolve your issue, please mark it Answered

  • Making particular rows as non editable before displaying the TABLE

    Hi everyone,
                               I would like to know how to make a particular rows as non editable in UI element "TABLE" before it is displayed . The scenario is :
    On entering the Personnel number, I am getting family dependants in the table. Then, I am selecting any of the family members on some condition and saving each member with the request.
    Next time when i enter the same personnel number, I would like to show the table with already saved request for the family members rows as non editable & other members row as editable.????
    Please provide a feasible solution.

    Hi Pradeep,
    follow as per suggested. if not work use cell variants concept. it will work.
    Please check this wiki...
    http://wiki.sdn.sap.com/wiki/display/WDABAP/WebDynproforABAPCellVariants
    Cheers,
    Kris.

  • HT5330 If I move from Mac/Mobile Me email to iCloud, will my current account's email vanish?

    Probably a silly question. I am running Snow Leopard and for a couple of days have not been able to send mail from my long-time Apple email account.  I have started the move from Mac/Mobile Me email to iCloud, when all I really need is to enable the iCloud SMTP server, I think.   
    When  I was a few steps into the move, I reached the point where I had to either "continue" with my current email address/password, or create a new email account   If I follow Apple's direction and "add" an account with my core user info, will I end up with "my" account as iCloud, but with my current account's email "vanished?" 
    I go back far enough that my Apple user name is not an email address, and my email address is dot.Mac, and I'd like to keep it that way, but right now I just want to be able to "send."  Since my problem began I have been writing and then saving emails on my iMac, then opening them on my iPad or iPhone and sending the emails from those devices.  Thank heaven for IMAP!!!!
    Thanks,
    Laura

    [email protected] [email protected] and [email protected] are all the same thing: emails to all three go to the same inbox. You must presumably have gone through the migration process from MobileMe to iCloud before 1 August last, or you would have lost access to the account. However if you didn't set up Mail for the different iCloud server settings I wouldn't have expected to go on working this long.
    In any case, I would suggest you delete the account from Mail (this won't delete anything on the server) and set it up again from scratch following the process described in this illustrated article:
    Entering iCloud email settings manually in Snow Leopard or Leopard

Maybe you are looking for