Newbie Qs: Copying an outline from one application to another

My apologies for accidentally posting this question twice!
Hello,
I want to copy an outline from one database to another, both on the same server. I know I can save the outline as a .otl file. But how do I actually copy this saved .otl file over to the other database? Sorry if this is a very basic question, complete newbie to Essbase. Thanks.
ps: Is there another way of copying the outline over from one database to another?
Edited by: Sam on Jun 27, 2010 1:48 PM

Open the outline in Edit mode, and from File > Save As, Select "Essbase Server" tab. Navigate to database where you would like to save. If you have data inside the cube, it will give you options on what to do with the data.
Hope this helps
Thanks,
Naveen Mikkilineni

Similar Messages

  • Error while copying a page from one application to another application

    Hi All
    I am using Oracle Apex 4.0
    I getting the error ORA-06502 Pl/Sql Numeric error character string buffer too small when i copying a page from one application to another application.
    Thanks & Regards
    Srikkanth.M

    I'm having the same issue. How did you solve this?

  • How to copy a plugin from one application to another,  is there an export possibility?

    I am using Apex 4.2.2 with 10g and OHS.
    There is a Gantt chart plugin in the Sample Calendar packaged application. I couldn't find that plugin for download.
    When I open it (Application Builder>Application 76373>Shared Components>Plug-ins>Create / Edit)
    it states:
    *Name (Value Required)    Gantt Chart
    *Internal Name (Value Required)    COM.ORACLE.APEX.GANTT_CHART
    Reference Master Plug-in From: 65708911358321918
    It refreshes without an error when I press the 'Refresh Plugin' button.
    I can copy the SQL code, can dowload the .css file,  etc., but I guess it is not enough.
    The Information section brings me the http://apex.oracle.com/plugins page, but there is no Gannt plugin.
    Is there any possibility to use this plugin in the same workspace in another application?
    Or sharing it? Or export and then import it?
    Thanks in advance.

    Hi,
    In Application Builder ->  Application XXXX -> Shared Components -> Plug-ins, click on plug-in name which will take you to plug-in details page. Here, on right hand side, you should see "Export Plug-in" under "Tasks". Click this link and follow the wizard.
    Regards,
    Hari

  • Copying a page from one application to another

    Is it possible to copy a page definition to a different application? When choosing "Copy' on the page definition the application# is hard-coded.

    Please take a look at this post, it might help.
    Recover Deleted Pages

  • Copying Outline from one cube to another cube

    please, Can any one help me with the following issues
    1) I am on planning 9.3v, can anybody tell me how to copy the outline from one application to another, what is the procedure involved?
    2)How can i change alias tables in data forms.
    Thanks.
    Edited by: 813627 on Feb 24, 2011 7:50 AM

    1) I am on planning 9.3v, can anybody tell me how to copy the outline from one application to another, what is the procedure involved?http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_hp_admin/ch09s01.html
    2)How can i change alias tables in data forms.http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_hp_admin/ch11s03s07.html
    Cheers...!!!

  • Export and Import a page from one application to another within same WKSPCE

    Hello,
    Can anyone help me out in moving a page from one application to another within the space workspace. I tried to export it and then import the page, but I am not able to do that. I think the problem is with the application IDs.
    Plz help me out with this issue.
    Thanks,
    Orton

    Hi Orton,
    moving a page from one application to another within the space workspace
    This U can get it, through copying the page from one application to another application within the same workspace
    In the top of the page, you have "copy" option.
    regards,
    Kavitha

  • Copying single page ,region from one application to another application

    Hi,
    I need information regarding How to copy single page or region from one application to another application in the same workspace

    Hi - have a look at this thread: -
    Synonyms
    Cheers,
    Mike

  • What are the diffrent ways to copy data from one application to another?

    Hi,
    Can you guys tell me what are the different ways to copy data from one application to another application??
    I know we can do it through script logic using DESTINATION_APP.
    Is there any other way to copy data from one application to another application?
    Please help me
    Thanks,
    Charly

    You can also call a custom DTSX package in SSIS via the datamanager.
    there are at least 5 ways of transfering data in BPC between apps.
    1. Through the front end (excel etc) via evdre/evsnds
    2. Through Script logic using *Dest App
    3. Using BPC's standard export dtsx package via DM
    4. Using SSIS using BPC's custom SSIS tasks
    5. Through Script logic using stored procs.
    i am sure people will come up with more.
    remember if you use ssis and move data into any table but the wb, you need to process the cube afterwards.

  • How do I copy the style from one control to another?

    I need to programmatically copy the style from one graph to another. I'm currently using the importstyle and export style functions but I'd like to avoid that since: 1) I'm creating >100 of the same graphs in a scrolling window and execution time is a concern, and 2) it makes it harder to redistribute the application, and 3) you shouldn't have to import/export from disk just to copy a graph style.
    I noticed the copy constructor was disabled so you can't just create a new one from the original. I suppose I could iterate through all the styles and transfer them from the master graph to all the copies but is there an easier way to do that? If not, is there some sample code for that?
    I'm using MStudio 7.0 for C
    ++.
    Thanks,
    -Bob

    One way that you could do this would be to create a helper method that configures your graph rather than configuring it at design-time, then use that helper method to apply the settings to the new graphs that you create. However, this would only work if you wanted all graphs to be configured exactly the same way - this would not work if the settings of your master graph are changing at run-time and you want the new graphs to be configured with the current settings of the master graph.
    Another approach is to query each control for IPersistPropertyBag, create an IPropertyBag, pass the IPropertyBag to the master graph's IPersistPropertyBag:ave, then pass the IPropertyBag to the new graph's IPersistPropertyBag::Load implementation. I'm not aware of any implementations of IPropertyBag that are readily available for use in applications, so the tricky part is creating the IPropertyBag. Below is a very simple implementation of IPropertyBag that should be enough to get the job done for this example. First, add this to your stdafx.h:
    #include <atlbase.h>
    CComModule _Module;
    #include <atlcom.h>
    #include <atlcoll.h>
    Here's the simple IPropertyBag implementation:
    class ATL_NO_VTABLE CSimplePropertyBag :
    public CComObjectRootEx<CComSingleThreadModel>,
    public IPropertyBag
    private:
    CAtlMap<CComBSTR, CComVariant> m_propertyMap;
    public:
    BEGIN_COM_MAP(CSimplePropertyBag)
    COM_INTERFACE_ENTRY(IPropertyBag)
    END_COM_MAP()
    STDMETHODIMP Read(LPCOLESTR pszPropName, VARIANT* pVar, IErrorLog* pErrorLog)
    HRESULT hr = E_FAIL;
    if ((pszPropName == NULL) || (pVar == NULL))
    hr = E_POINTER;
    else
    if (SUCCEEDED(::VariantClear(pVar)))
    CComBSTR key = pszPropName;
    CComVariant value;
    if (!m_propertyMap.Lookup(key, value))
    hr = E_INVALIDARG;
    else
    if (SUCCEEDED(::VariantCopy(pVar, &value)))
    hr = S_OK;
    return hr;
    STDMETHODIMP Write(LPCOLESTR pszPropName, VARIANT* pVar)
    HRESULT hr = E_FAIL;
    if ((pszPropName == NULL) || (pVar == NULL))
    hr = E_POINTER;
    else
    m_propertyMap.SetAt(pszPropName, *pVar);
    hr = S_OK;
    return hr;
    Once you have a way to create an implementation of IPropertyBag, you can use IPropertyBag and IPersistPropertyBag to copy the settings from one control to another like this:
    void CopyGraphStyle(CNiGraph& source, CNiGraph& target)
    LPUNKNOWN pSourceUnknown = source.GetControlUnknown();
    LPUNKNOWN pTargetUnknown = target.GetControlUnknown();
    if ((pSourceUnknown != NULL) && (pTargetUnknown != NULL))
    CComQIPtr<IPersistPropertyBag> pSourcePersist(pSourceUnknown);
    CComQIPtr<IPersistPropertyBag> pTargetPersist(pTargetUnknown);
    if ((pSourcePersist != NULL) && (pTargetPersist != NULL))
    CComObject<CSimplePropertyBag>* pPropertyBag = 0;
    CComObject<CSimplePropertyBag>::CreateInstance(&pPropertyBag);
    if (pPropertyBag != NULL)
    CComQIPtr<IPropertyBag> spPropertyBag(pPropertyBag);
    if (spPropertyBag != NULL)
    if (SUCCEEDED(pSourcePersist->Save(spPropertyBag, FALSE, TRUE)))
    pTargetPersist->Load(spPropertyBag, NULL);
    (Note that "CreateInstan ce" above should be CreateInstance - a space gets added for some unknown reason after I click Submit.)
    Then you can use this CopyGraphStyle method to copy the settings of the master graph to the new graph. Hope this helps.
    - Elton

  • How do I copy a list from one site to another that has a column that appends changes to existing text?

    I want to move a list from one SharePoint site to another, within the same collection. I have created a template and included the content but the column that is selected to append changes to existing text, has not copied in all cases, although it has for
    some items.
    I have a limited knowledge so won't be able to implement any solutions that require the use of code.

    Hi,
    According to your post, my understanding is that you wanted to copy a list from one site to another that has a column that appends changes to existing text.
    I recommend to use the custom workflow activity  Copy List Item Extended Activityto
    copy list items and files cross site.
    You can do this with codeless SharePoint Designer workflows as long as you can install the
    Codeplex Custom SharePoint Designer Workflow Activities. 
    These activities are also built-in to SPD2010.
    To install the custom activities, please follow the steps as below:
    Download the solution file form
    Useful Sharepoint Designer Custom Workflow Activities
    Copy the wps file to the Disk C.
    Open the SharePoint 2010 Management Shell.
    Run the command: add spsolution c:\ dp.sharepoint.workflow.wsp
    Open the Center Administration, click System Setting->Manage Farm Solution-> dp.sharepoint.workflow.wsp->Deploy to one or more Web Application.
    Open the SharePoint designer, add action from Custom Actions.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to copy List item from one list to another using SPD workflow using HTTP call web service

    Hi,
    How to copy List item from one list to another using SPD workflow using HTTP call web service.
    Both the Lists are in different Web applications.
    Regards, Shreyas R S

    Hi Shreyas,
    From your post, it seems that you are using SharePoint 2013 workflow platform in SPD.
    If that is the case, we can use Call HTTP web service action to get the item data, but we cannot use Call HTTP web service to create a new item in the list in another web application with these data.
    As my test, we would get Unauthorized error when using Call HTTP web service action to create a new item in a list in another web application.
    So I recommend to achieve this goal programmatically.
    More references:
    https://msdn.microsoft.com/en-us/library/office/jj164022.aspx
    https://msdn.microsoft.com/en-us/library/office/dn292552.aspx?f=255&MSPPError=-2147217396
    Thanks,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Can I copy my iTunes from one Mac to another to a distant location?

    I have 2 homes one in NYC and the other in upstate NY. I have multiple Macs at both locations all using Snow Leopard and the latest version of iTunes(9). I only have 1 iTunes library I maintain at the upstate location and have to bring my iPod to the NYC location to play my music. Can I not copy my iTunes library to the NYC location using Home Sharing or using some other method? I often forget to bring my iPod and am left without my music.

    Prince Moe wrote:
    Hi
    Since I had a problem with my Mac's drive that suddenly failed (I am able to read ONLY), I replaced the internal HD with my emergency HD that I had backedup a few months before. I would like to know if there's a way to copy my settings from one mac to another? Is there a specific folder for all apps or do I have to find out each and every single file for each app?
    I need the settings for
    System (view, font, color,)
    Finder (view, etc)
    iTunes (that include all library, playlists, etc),
    Firefox (Bookmarks, settings & plug-ins),
    Safari (Bookmarks, settings & plug-ins),
    Address Book (contacts)
    Thuderbird (emails accounts, contacts, passwords, etc)
    Stickies (stickies on the dock - i have info on there unsaved)
    Filezilla (FTP infos)
    Would appreciate.
    Thnx.
    All that info is found in your user/library folder, I just did a 60 machine rollout and copied all those settings from user/library, just be forewarned that if you upgrade software those setting will not take on the machine, for example Adobe CS 3,4 will not usable by CS5.  let us know if you need more help.  Also make sure you copy most of your preferences in the user/library/prefences folder.
    Note: If you are using an identical backup with all apps and user settings, you can just copy all folders from user to your new home folder.  Remember that only if the image or backup is identical to your production OS.

  • How To Copy Selected Music From One Library to Another?

    What is the best way to copy selected music from one library to another?
    I have a big and growing iTunes library -- 33,000 songs.
    A year ago I copied my library to my daughter's new iMac.  Now, a year later, I'm off to visit her and wonder how best to update her library.  In the past year I have added a number of items to my library and I'm sure she has done the same -- some might be the same but many will be different.
    How do I update her library with the new things I've added in the past year but not wipe out things she had added or duplicate when we each have a song?
    I can load any / all of my stuff on an external HD and take that to plug in to her computer.  Then what?  I want to avoid duplicates and make sure I get stuff like album artwork.
    I'm running iTune 10.4 on an iMac with OS X 10.6.8 -- my daughter will have the same iTunes and OS X once we update her software.
    Any advice would be great.
    Thanks

    If you're sharing the same Apple ID and all your songs are from the iTunes Store, it's easy:
    In iTunes on your computer, go to File->Preferences->Store and check the box next to MUSIC under AUTOMATIC DOWNLOADS.
    You should also read this article, the section titled TO DOWNLOAD PREVIOUSLY PURCHASED APPS, BOOKS, MUSIC, OR TV SHOWS TO YOUR COMPUTER:
    http://support.apple.com/kb/ht2519
    You could also use an rsync utility such as backuplist+ to perform a 2-way sync of the files in your two libraries while your computers are connected via FireWire with one of them in FireWire Target Disk Mode, or from your external hard drive with your daughter's computer and then to yours again. After that, you'll need to use iTunes on each computer to update its library with the new files:
    http://rdutoit.home.comcast.net/~rdutoit/pub/robsoft/pages/backup.html
    This last would also be the preferred method if you have authorized each other's computers for media purchased with each other's Apple IDs (i.e. you are not sharing the same Apple ID), or if you have music from sources other than the iTunes Store. Most likely, though, music from sources other than the iTunes Store would not be legal to copy in this way for this purpose, although there is probably no technical impediment.

  • Can i copy my settings from one mac to another?

    Hi
    Since I had a problem with my Mac's drive that suddenly failed (I am able to read ONLY), I replaced the internal HD with my emergency HD that I had backedup a few months before. I would like to know if there's a way to copy my settings from one mac to another? Is there a specific folder for all apps or do I have to find out each and every single file for each app?
    I need the settings for
    System (view, font, color,)
    Finder (view, etc)
    iTunes (that include all library, playlists, etc),
    Firefox (Bookmarks, settings & plug-ins),
    Safari (Bookmarks, settings & plug-ins),
    Address Book (contacts)
    Thuderbird (emails accounts, contacts, passwords, etc)
    Stickies (stickies on the dock - i have info on there unsaved)
    Filezilla (FTP infos)
    Would appreciate.
    Thnx.

    Prince Moe wrote:
    Hi
    Since I had a problem with my Mac's drive that suddenly failed (I am able to read ONLY), I replaced the internal HD with my emergency HD that I had backedup a few months before. I would like to know if there's a way to copy my settings from one mac to another? Is there a specific folder for all apps or do I have to find out each and every single file for each app?
    I need the settings for
    System (view, font, color,)
    Finder (view, etc)
    iTunes (that include all library, playlists, etc),
    Firefox (Bookmarks, settings & plug-ins),
    Safari (Bookmarks, settings & plug-ins),
    Address Book (contacts)
    Thuderbird (emails accounts, contacts, passwords, etc)
    Stickies (stickies on the dock - i have info on there unsaved)
    Filezilla (FTP infos)
    Would appreciate.
    Thnx.
    All that info is found in your user/library folder, I just did a 60 machine rollout and copied all those settings from user/library, just be forewarned that if you upgrade software those setting will not take on the machine, for example Adobe CS 3,4 will not usable by CS5.  let us know if you need more help.  Also make sure you copy most of your preferences in the user/library/prefences folder.
    Note: If you are using an identical backup with all apps and user settings, you can just copy all folders from user to your new home folder.  Remember that only if the image or backup is identical to your production OS.

  • I have no problems copying iMovie Events from one Mac to another, however, how can I copy iMovie Projects from one Mac to another?

    I have no problems copying iMovie Events from one Mac to another, however, how can I copy iMovie Projects from one Mac to another?  Any help will be appreciated.  Thank you.

    This should give you some good insight, I'd probably store them on an External HD on the old machine and then just drag and drop to the new machine.
    https://discussions.apple.com/docs/DOC-4141

Maybe you are looking for

  • Why cant I do the following...

    I'm trying to set a variable with the value of the error message from the session object. <c:set var="reason" value="<%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.ACEGI_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>"></c

  • Batch Loader File Name - Replace/Append?

    We employ a custom/smart merge in FDM that automatically removes previously loaded intersections in HFM 11.1.2.1 by appending NODATA lines at the end of our load file based on the information included in the previous load file.  In the FDM configurat

  • Firefox 16 will not close in mac 10.6.8

    I am using a MacBook (MacBook6,1) Mac OS X v 10.6.8 Firefox 16.0.2 When I close or quit Firefox the windows will disappear however the program will continue. I have to do a "Force Quit" to get it to completely shutdown. This seams to happen more the

  • Sales Process And EDI Idocs Integration

    Hi Friends,, Good Day To You All !!!! Please enhance my knowledge with your valuable reply. I am new to ABAP and would like to learn the following . 1. Sales process - Starting from the Purchase Order Till shipment is created (All TCodes and the defi

  • Having problems starting Web Services... need help!

    I'm running Mac Server 10.5.7 currently configured for email and I've just decided to start hosting websites. The problem I'm having is that Web Services will fail to start with any sites configured. Web Services will start if I don't have any sites