Refresh the hierarchical planning with maxi?

Is it possible to script and automate a refresh of planning database? Perhaps with MAXL?

Not with Maxl, but yes, there is a command line utility to achieve do - updating of databases with the help of a utility Application

See you soon

John

http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • BlackBerry Smartphones transfer phone company to the personal plan with AT & T

    I start from my place of work and the allowed me to take my Blackberry "BOLD" (AT & T).  My intention is to open a family plan with AT & T and use my Blackberry "BOLD". The problem I encounter is with the configuration of the installation of Blackberry.  For example, the blocking time is set up for 2 minutes and I have to log in to be able to make a call.  I would change the time of locking and some other preferences, but it is not allowing me access and it has a locked door icon where it would happen in the Setup menu. I thought that once I transferred to a personal account that the phone would "reboot" and reset all the preferences and me be it administrative rights.  I went to an AT & T store to ask them this question and they told me that I'll never be able to change the preferences because that's the way it was installed by my company.  And even if I switch to a personal account, the phone will be always programmed / setting up in this way. It makes no sense to me.  Someone has it on this experience and could point me in the right direction. Thanks in advance for any help or thoughts!

    Hello

    First of all, I'm sorry you've been given above incorrect information. (edit: Sgardne is correct - it posted before I could!)

    The necxt lock icon to the password option is set by your political previpous companies.

    This forces the devcie to have a password so that it cannot be read by people who 'happens' to find the BB.

    If the password does not arrive, the devcie is wiped clean to the factory settings.

    The exception is that this policy is not erased when the phone wiped (agaoni, there is another parameter in the IT strategy!)

    Thus, the ONLY way to remove the restriction must replace the it policy.

    Two ways:

    (1) reactivate the handset with a political BLANK/NULL. Some companies will allow you to do as a matte rof, but you need to ask your BES administrator to do this specifically. Alternatively you can ask them to simlpy reset IT policy if you are always active on the BES.

    (2) the method unofficial here:political Non-official Removal of IT

    Hope that helps!

  • Lightroom trial will refresh the full product with purchased pack?

    I did a test of lightroom (just expired) installed on my laptop and was yet to export pictures, so I don't bother uninstalling. Instead, I bought the creative plan pack cloud photography online and still when I try to open lightroom it still allows only the option to purchase / enter the activation code or to continue the trial (0 days remaining and therefore can only develop etc.). How can I approach this? Creating cloud said that Lightroom is "up-to-date" on my computer.

    dkdkdk123 in this case, please uninstall the 5 Lightroom application and reinstall it using the desktop creative cloud application that you purchased the plan of Photography Photoshop.

    You can uninstall the application of 5 Lightroom at the bottom of the location.

    Windows: Start > Control Panel > programs and features > uninstall a program.

    Mac: Trash the Photoshop Lightroom 5 icon from the Applications folder on your Mac (Mac HD > Applications).

    After uninstall is made disconnect and identify yourself to Creative Cloud App: click here for instructions: disconnection, identify yourself. Creative Office Cloud app.

    If you don't have Creative Cloud Desktop installed application, download and install it using below link free creative cloud | Download the free trial version Adobe Creative Cloud.

    Please answer if encounter you problems.

    Thank you.

  • hold the hierarchical querry with node current level 0 (zero)

    I had created and inserted values into the table
    create table emp_id
    ( 
     head_id number(4),
     tail_id number(4) 
     );
     
    insert into emp_id values (1011,1008)
    insert into emp_id values (1008,1003)
    insert into emp_id values (1012,1003)
    insert into emp_id values  (1020,1003)
    insert into emp_id values (1025,1003)
    insert into emp_id values (1015,1012)
    now I want to get the hierarchy starting with 1012 as shown below
    select     level,dt.head_id
    from       emp_id dt
              start with dt.tail_id = 1012        
    connect by prior  dt.head_id= dt.tail_id 
    
    
    output is like this :
    
    
    LEVEL     HEAD_ID
    
    1     1008
    2     1011
    1     1012
    2     1015
    1     1020
    1     1025
    but I want to inlcude 1003 in the output level 0

    How can I do?

    Thanks in advance

    Hello

    482 wrote:
    I had created and inserted values into the table

    create table emp_id
    (
    head_id number(4),
    tail_id number(4)
    );
    
    insert into emp_id values (1011,1008)
    insert into emp_id values (1008,1003)
    insert into emp_id values (1012,1003)
    insert into emp_id values  (1020,1003)
    insert into emp_id values (1025,1003)
    insert into emp_id values (1015,1012)
    

    Thanks for posting the sample data in a useful form. That really helps.

    now I want to get the hierarchy starting with 1012 as shown below

    select     level,dt.head_id
    from       emp_id dt
    start with dt.tail_id = 1012
    connect by prior  dt.head_id= dt.tail_id 
    
    output is like this :
    
    LEVEL     HEAD_ID
    
    1     1008
    2     1011
    1     1012
    2     1015
    1     1020
    1     1025
    

    Make sure that it is the hierarchy start at 10 h 12 and no 1003?
    >

    but I want to inlcude 1003 in the output level 0

    How can I do?

    Thanks in advance

    What you have is a single Arc table, where you have a line by the relationship between identifiers.
    Classic CONNECT BY work on base of knot tables, with a line by id.
    In a tree (for example your data), each id except the root is the child (head_id) or a relationship, so a node database tables will be all lines with a rainbow table only, as well as a line for each root.

    You can simulate a node database table by adding a line to the root by using the UNION, as shown below.
    You can add the real lines like that permanently to your table. They are easy to ignore when you don't want them, and they do queries like this simpler and more effective.

    WITH     got_root     AS
    (
         SELECT     head_id
         ,     tail_id
         FROM     emp_id
              --
         UNION ALL
                 --
         SELECT  1003     AS head_id
         ,     NULL     AS tail_id
         FROM     dual
    )
    SELECT     LEVEL - 1     AS lvl
    ,     head_id
    FROM     got_root
    START WITH     tail_id       IS NULL
    CONNECT BY     tail_id       = PRIOR head_id
    ;
    

    Output of your sample data:

    .      LVL    HEAD_ID
    ---------- ----------
             0       1003
             1       1008
             2       1011
             1       1012
             2       1015
             1       1020
             1       1025
    

    It works for the test case, you have published and can easily be adapted to handle a number any of given points of departure, not necessarily of roots.

  • Unable to get the database searched with MAX and GROUP BY function

    Hello
    All the

    I have a table as below:
    COLUMN TYPE
    User_id VARCHAR2 (10 byte)
    ID_processus VARCHAR2 (30 bytes)
    END_TIME DATE (STAMP)
    TO_LOC VARCHAR2 (12 bytes)
    TO_LOC_TYPE VARCHAR2 (15 bytes)
    FROM_LOC VARCHAR2 (12 bytes)
    ITEM_ID VARCHAR2 (25 bytes)
    CASE NUMBER (12.4)
    LMS_UDA1 VARCHAR2 (250 bytes)
    AREA VARCHAR2 (2 bytes)

    I only want to get one record with all the columns, have only one clause MAX (END_TIME)
    But the other column value of the difference.
    When I use MAX (END_TIME) and GROUP OF USER_ID, ID_processus, CASE...
    the sql did not a single record,
    It gives the number of records

    Please help me on this

    Concerning

    Saven

    >
    I only want to get one record with all the columns, have only one clause MAX (END_TIME)
    But the other column value of the difference.
    >
    Maybe it's not possible because it depends on your data.

    If the combination of all columns except END_TIME is not unique then there will be multiple records; a record for each unique combination (GROUP BY) of all other columns.

    The only way to ensure that a record is

    SELECT MAX(END_TIME) FROM myTable
    
  • dimension of the hierarchical attribute with Essbase Studio

    Hello world

    I need to load the product dimension that is organized in a parent-child relational table like this:
    (parent_code, member_code, member_alias, mark, consolidation, formula)

    Each product has a mark and I need to load brand as a dimension of the attribute. The thing is the brand isn't flat, but it has its own hierarchy. For the brand, I have another relational table, where the data are organized parent-child like this:
    (brand_parent, brand_child, brand_alias).

    I do this load with Essbase Studio but I know is not how to create the Product hierarchy in the cube schema in order to load the parent-child hierarchical attributes. Documentation and tutorials only show examples of dishes attributes. I thought of these two ways, but do not know if will work:

    hierarchy of case 1) product like this:

    Parent_code
    Member_code
    Brand_parent
    Brand_child
    Member_code

    hierarchy of case 2) product like this:

    Parent_code
    Member_code
    Brand_parent
    Brand
    Member_code

    Someone had to do this? How did you do?
    Any help will be much appreciated.

    Thank you
    Daniela

    Hello Daniela,
    Please see the following post. One of my colleagues ran into the same issue, and his post was answered in the post below.
    ESBase Studio question - how to set up the dim attribute?

    Thank you
    Daniel
    http://dvepm.com

  • Warning when I try to refresh the security planning

    Hello

    We get a warning we get a warning... That's the first time I have seen this in Version 11.

    WARNING: Refresh will recreate the outline for all Essbase cubes used in this Application based on the current definition of metadata in the planning for this application. Please save your file of outline and export data from all databases before proceeding. Click & #039; Refreshment & #039; to go forward.

    I want to know if I can go ahead and update the security if I get this warning and would even know why I'm getting this.

    Hello

    It is a standard warning that everyone gets, it's just basically saying that you have been notified that something goes wrong, you should always have a backup.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Rename the cRIO-9081 with MAX 5.5

    We have several cRIO - 9081 s.  We have deployed the year last two and deploy at least 4 more this year.  Those deployed last year is MAX 5.4 running and we were able to give them an alias so that our code can work on both systems.

    4 new run MAX 5.5.  There is no option to rename or give them an alias so that they correspond to older machines.

    Why MAX 5.5 does not create an alias?  Y at - it a new version of MAX that allows us to perform the alias?

    I wouldn't waste your time to reset your database MAX.  This isn't the problem, and unfortunately, it gets more prescribed as a solution.  It seems to me that if you have the runtime OR RIO, but not the support of configuration installed on the second computer.

    In the past, MAX don't would not show the device at all if the configuration management does not been installed, Ute 5.5 now shows always the device, but you may be missing the views of configuration if you have no support for configuration of the devices installed.

    The safest thing would be to install the full OR-RIO and make sure you only select the CompactRIO support.

    http://www.NI.com/download/NI-Rio-14.5/5129/en/

    There may be a smaller distribution somewhere that understands what you need, however I know that we have everything.

  • Question about running from two cameras at the same time with MAX

    Hello

    I have two cameras attached to NI PCIe-1430 frame grabber card (Atmel Aviiva M2 CL and Fairchild 2 K LS) IRLS. It's ok when I run two cameras individually, but I can't run them at the same time.

    This is the step that simultaneously run two device:

    1. open MAX, select the port and start image acquisition by pressing the 'Grab' button, I can see the image at this point.

    2. open another MAX session, select the other port and press "enter". I got following error:

    "Error 0xBFF60021".

    Unable to perform request; acquisition in progress'

    Sometimes, I got this error too:

    "Error 0xBFF60022".

    A timeout error occurred while you wait for the specified event. If you expect a picture, check the video data is acquired in the period. If in the meantime the signal, check that the assertion of signal has occurred within the period. »

    I already give enough timeout Fame to the tab settings of Acquisition.

    The MAX version used is 4.5.

    You have an idea on that? Makes simultaneous Imaging MAX support?

    Thank you

    -polarfox

    Thanks for the quick response Bruce.

  • Combine queries to get the result set with max Y

    Hello
    I use forms 6i and db 10.2.0.1.0

    With the query below
    Select ufam_usrgrp,ufam_filegrp,ufam_read,ufam_write,ufam_overwrite,ufam_delete from usr_file_access_master
    Where ufam_ecode = '0004108';
    the result set is
    UFAM_USRGRP     UFAM_FILEGRP    UFA UFA UFA UFA
    --------------- --------------- --- --- --- ---
    MGMNT           CV              Y   Y   Y   Y
    EMPLOYEE        GENERAL         Y   N   N   N
    EMPLOYEE        PERSONAL        Y   N   N   N
    Another query
    Select uul_usrgrp, ufl_file_grp,ufl_read,ufl_write,ufl_overwrite,ufl_delete from usr_usrgrp_lnk,USRGRP_FILEGRP_LINK
    Where usr_usrgrp_lnk.uul_usrgrp = USRGRP_FILEGRP_LINK.UFL_USR_GRP
    and usr_usrgrp_lnk.uul_ecode = '0004108'
    gives the result
    UUL_USRGRP      UFL_FILE_GRP    UFL UFL UFL UFL
    --------------- --------------- --- --- --- ---
    MGMNT           GENERAL         Y   Y   Y   Y
    EMPLOYEE        GENERAL         Y   Y   N   N
    MGMNT           CV              Y   N   N   N
    I need to combine these two queries to get a separate result set with maximum Y

    Like here "MGMNT CV" is repeated in both the result set, but the first has more, then it should come from the combined result set. reverse-case also the same (such as "EMPLOYEE GENERAL")

    So I want to combine the queries so that I get the result as set below
    UserGroup       FileGroup       Rd Wrt Owrt Del
    --------------- --------------- --- --- --- ---
    MGMNT           GENERAL         Y   Y   Y   Y
    EMPLOYEE        GENERAL         Y   Y   N   N
    MGMNT           CV              Y   Y   Y   Y
    EMPLOYEE        PERSONAL        Y   N   N   N
    Please help me to combine these queries

    Published by: Divya on August 14, 2011 21:24
    Changed the result set and the last exit

    NOT TESTED!

    select y.uul_usrgrp,
           y.ufl_file_grp,
           greatest(ufl_read,nvl(ufam_read,' ')) ufl_read,
           greatest(ufl_write,nvl(ufam_write,' ')) ufl_write,
           greatest(ufl_overwrite,nvl(ufam_overwrite,' ')) ufl_overwrite,
           greatest(ufl_delete,nvl(ufam_delete,' ')) ufl_delete
      from (select ufam_usrgrp,ufam_filegrp,ufam_read,ufam_write,ufam_overwrite,ufam_delete
              from usr_file_access_master
             Where ufam_ecode = '0004108'
           ) x,
           (select uul_usrgrp, ufl_file_grp,ufl_read,ufl_write,ufl_overwrite,ufl_delete
              from usr_usrgrp_lnk,USRGRP_FILEGRP_LINK
             Where usr_usrgrp_lnk.uul_usrgrp = USRGRP_FILEGRP_LINK.UFL_USR_GRP
               and usr_usrgrp_lnk.uul_ecode = '0004108'
           ) y
     where y.uul_usrgrp = x.ufam_usrgrp(+)
       and y.ufl_file_grp = x.ufam_filegrp(+)
    

    Concerning

    Etbin

    Edited by: Etbin on 14.8.2011 13:08
    deleted by group

  • Copy the hierarchical planning

    I am new to planning, I am currently working on planning 11.1.2 can someone tell me how to copy the example of planning plan apply to the new application I created. It is possible, what is the procedure involved?

    Kind regards
    SG

    You can use LCM to migrate the structures of the size of a source to a target, planning an application.
    If you have never used LCM reading http://www.oracle.com/technetwork/middleware/performance-management/tutorials/pln-lcm-obe-095602.html
    You will not need to make any in the example, but it should give you a good idea of what you need to do.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • I have a PCI-6221 NIC connected to a block of connection TBX-68. How can I see the wiring for the analog channels with MAX?

    Hi all

    I have a PCI-6221 NIC connected to a block of connection TBX-68. Once I found a drawing that shows me all the connections on my block of connection for each analog input tasks. I don't see this option now. Can someone describe to me how I can find this new?


  • detection cameras two PB GigE with MAX on the same pc

    I installed on the same GigE camera for two PCs, each device has its own interface card (IP), but only a camera in dtected with max.
    cam0 sometimes and sometimes cam1. I have to wear each camera fixed an IP address, but still only the camera is detected.
     
    My question is how to do the configuration to appear the two camera at the same time with max.
    I use the version of MAX 5.3
    NEITHER IMAQDX 4.0
    You think even match for your help.

    Are you running Windows XP? If, therefore, due to limitations in the underlying OS stack, you will need to place the cameras in different subnets or to fill the two devices together in one virtual device (preferably) NIC.

    Eric

  • Refresh the page after the fires of fileDownloadActionListener

    Hello experts!

    I use jDeveloper 11.1.1.7.0

    I have a table in a fragment of page jsfff with a button to upload the files that are shown in this table. After downloading the files, I need update the table.

    Downloading files when the user presses the button (partialsubmit = false) I invoke another button hidden (partialsubmit = false) which has af:fileDownloadActionListener that performs the action. (This is because I am doing other activities before you download files)

    It works fine, but I need to refresh the page (among others) after downloading the files. How can I do this?

    I tried to update the table of

    -method fileDownloadActionListener

    -Method of hidden commandButton action

    -The partial trigger table button

    But I could not update the table with any of these

    How can I refresh the table after uploading the files?

    Yes.

    I'm looking at the source code for FileDownloadActionListener.processAction ().

    After invoking the method property, he calls FacesContext.responseComplete (); which ignores the render response phase.

    And so you can not rynefall page at all.

    An in-depth, that you can do, is to use af:poll, IE, activate the survey by clicking on the button visible (in javaScript)

    Here you can see how to start the survey by javaScript:

    GEBS | Oracle Fusion Middleware 11g ADF progress indicator

    (search handlePoll )

    In the pollListener, you can refresh the page AND also disable survey by itself (by calling setInterval(-1))

    After questioning to stop, you must refresh the survey component, with

    AdfFacesContext.getCurrentInstance (.addPartialTarget(...your_poll...whatever));

  • Problem refreshing the page parent when a modal window is closed.

    I have the page that opens a modal window of a column in report link. In the modal window, I want to be able to make my changes and press a button so that the modal window is closed and the parent page is refreshed to display the details changed in the report. In Firefox all works well, but IE I get the error message 'Window.opener.location is null or not an object ".

    When I comment out window.opener.location.href = window.opener.location.href; the modal window is closed without error, but I want to refresh the parent page with the changes in the modal window.

    I'm afraid that my java script is very limited (the code is inspired other peoples examples.)

    Page parent I call this function of a column in report link to display a modal window. Sets the hidden field of the SAVE_STATUS to the landing page of "n".

    function modalWin (pshow)
    {
    var url;
    URL ='f? p = & APP_ID.: "+ pshow +": & SESSION. : SAVE_STATUS: NO;

    If (window.showModalDialog) {}
    window.showModalDialog (url, "name", "dialogWidth:650px; dialogHeight:700px"); }
    else {}
    Window.Open (url, "name", "height = 700, width = 650, toolbar = no, directories = no, status = no, menubar = no, scrollbars = no, resizable = no, modal = yes");
    }
    }



    Landing page (modal window)

    Header HTML.
    Function closeWindow should refresh the parent page and close the modal window.

    < base target = _self >
    < script language = "JavaScript" type = "text/javascript" >
    <!--

    htmldb_delete_message = "'DELETE_CONFIRM_MSG" ";

    function closeWindow() {}
    If (document.getElementById("SAVE_STATUS").value == 'Y')
    {
    Window.opener.Location.href = Window.opener.Location.href;
    Window.Close ();
    }
    }
    ->
    < /script >


    Attribute Html Body .
    onLoad = "closeWindow (); »


    P_UPDATE_DATE process called of the button changes. Games of the SAVE_STATUS flag 'Y' for the onload in the html body.

    UPDATE event
    SET event_date =: P5001_EVENT_DATE
    WHERE contract_reference =: P330_EVD_CONTRACT
    AND event_number =: P330_EVD_EVENT_NUMBER;

    : SAVE_STATUS: = 'Y ';


    Thank you in advance, I'll take a look when back in the office on Monday.

    Pete has soon

    Hi Pete,.

    In my view, that the refreshment of your page should happen on your parent Page. You can also check the JQueryUI there a beautiful modal dialog Widget.

    --
    Chris

Maybe you are looking for

  • Time Machine broke my office

    My story I had just to edit a picture on my desk at the right size. "Not much". I thought "I'll just use time machine." I want to use time machine, but my macbook pro crashed and had to restart. I went back to time machine and tried. Files said they

  • Toshiba Store E TV 3.5 "500 GB PA4208E-1HE0 - no visible files

    I have an external USB HARD drive MODEL: PA4208E-1HE0 Toshiba Store E TV 3.5 "500 GB Multi Media Player and I can not see my files to.Is it possible that I can use to get back them? When I view the drive in 'my computer' it shows that there is data,

  • Satellite C850: Ability to switch to Intel GPU Radeon graphics card

    Model is Toshiba C850 - possible to change my 7610 M Radeon graphics to the graphics card Intel integrated on the CPU?

  • How to implement a time UI?

    I would like to implement a user interface as time blackberry widget - Options-> Date/time, and we select Formate of time 24 hours / 12 hours. In the hour or minute field we can only enter a legal data. How can I implement the function in my own appl

  • 5.2 ACS with different RADIUS authentication servers

    Hello I want to migrate from ACS ACS 5.2 4.1. I have already configured authentication GANYMEDE +, but now I've stuck to the RADIUS authentication for remote access WebVPN configuration. Please see the following diagram: I want to configure ACS to us