How to copy outline for ASO...

Hi...
i have a sample(BSO) application which is contains very large members in outline..Now i want the same outline for another application which is New sampleASO(ASO) application.So that,i have tried to copy/save as the outline....but i am not able to copy from BSO to ASO...is there any other way for this...please tell me...
Thanks in advance

If there is no Wizard in 7 (I haven't checked) you may just have to recreate the cube in ASO.
Easier if you have the dimensions stored elsewhere - either SQL database or files?
If not, and if no one has a superior solution, you'll have to extract the dimensions on the BSO side and build the dimensions on ASO side with rules files.
If you go this route you could extract the dimensions to Excel with 'Navigate without Data' on for efficiency, or use a very simple Report Writer script to pull them out (I'll post a sample if it's useful). With Excel or a report script there'll be some fiddling to get a 'buildable' file out of the results. Outline Extractor is another option, available at appliedolap.com. I think that would give you a more structured file that will require less (or no) massaging.

Similar Messages

  • How to copy data in ASO cube across two scenario's?

    How to copy data in ASO cube across two scenario's?

    There are multiple ways to do it.
    How is the source scenario sourced? If it is populated using load rules, then why don't change it in the rule itself?
    Regards
    Celvin

  • How to copy links for applications

    How do I copy links for applications? I do this and nothing happens. Where does it go❓      

    What you want to do is already possible to do. If you find an app while surfing the web that you are considering downloading, and you tap on the link for that app, it should open in the App Store. You can then add it to your Wish List in the App Store and download it later if you so desire. You can build a whole list of apps for downloading later.
    When the app description window is open in the App Store, tap the action icon - the upward pointing arrow inside the square - and select Add to Wish List.  You can come backs later to the wish list, select the app and download it when you are ready. To access the Wish List, tap the 3 horizontal lines next to the search field in the upper right corner of the App Store.
    Just keep keep adding apps to the wish list as you find ones that you like.

  • How to copy data for certain member from one dimension to another dimension

    Dear ,
    I want to copy data for certain member ("511102") from one dimension to another combinations of dimensions ,
    I have the following combinations for "511102" :
    _("Budget2012","FY12","Working.V01","SAR","BegBalance","1011","G_10","custom Grades")_
    I want to copy "511102"  to "salary"
    -salary have the following dimensions :
    _("Budget2012","FY12","Working.V01","SAR","BegBalance","General group","All grades","General Employees")_
    , I don't know if I could do it by datacopy of cross dimensional , But I don't HOW >>>
    Thanks in advance

    FIX("Budget2012","FY12","Working.V01","SAR","BegBalance","General group","All grades","General Employees")
    "salary"="511102"->"1011"->"G_10"->"custom Grades";
    ENDFIX
    or
    FIX("Budget2012","FY12","Working.V01","SAR","BegBalance")
    DATACOPY "511102"->"1011"->"G_10"->"custom Grades" to "salary"->"General group"->"All grades"->"General Employees";
    ENDFIX
    Key thing in datacopy is to place the dimensions in cross dimension in the same order. Both sides (before and after "TO") should have equal number of dimension members specified.
    Cheers,
    Alp

  • How to copy wd for abap program?

    Hi SAP GEARS!
    I'm developing a program (wd) in Minisap when i have not a net connection. How can i copy the wd program from this minisap to a real workplace?
    A solution is caching  data and cofile files but in standard minisap instalation the transport layers are not configured
    so, there is someone with enough goodness to help me with this thread?
    Tanks!

    Hello,
    If you want to download a Web Dynpro Component to your PC for moving between systems that aren't connected via transport, then I suggest that you look at SAPLink: http://saplink.org
    SAPLink is an Open Source community project for downloading and uploading ABAP development objects in XML format via simple report instead of the transport system. There is a plug-in for SAPLink that supports Web Dynpro Components.
    Hope this helps!
    Regards,
    Srilatha M

  • How to copy YouTube for PowerPoint

    OS: 10.8.2
    How can I copy a YouTube video for placement in PowerPoint (Version 14.2.5, Mac 2011)? Using Safari, I opened the video, pressed "control-option-A" which would supposedly open the Activity window. Nothing happened. I'm looking for the easiest way to do this.
    Thanks!

    You can't copy YouTube videos but YouTube has options for sharing them, see if any of them help.

  • How to copy documents for InfoProvider data from one cube to another cube

    Hello Everyone,
    We are using standard document feature to store document/comment about the data shown in the report/planning query. Relevant characteristics have the property 'characteristics is document attrib' turned on/selected for this purpose.
    Looks like the documents created gets tagged to a particular InfoProvider along with characteristic value assignment.
    Is there a way to move or copy documents from one InfoProvider to another InfoProvider.
    As per the design requirement, we need to move data from a real time InfoProvider (transaction cube) to a basic reporting cube. The data in the first/source cube stays for a period of approx 3 months before moved to other cube. We want the documents associated with InfoProvider data also to be moved, so that users can continue to see the document/comments what they  had created earlier.  
    I looked at the Documents tab in DataWarehouse workbench. No options seem to be available to copy or move documents.
    Any help will be highly appreciated and points will be rewarded accordingly!
    Best regards,
    Sanjeeb

    Hi
    Have you got any answer to this? I would also be interested in a copy function but more from one query ID to another.
    Kind regards,
    Daniel Müller

  • "Cannot put olap file object" exception when trying to copy outline

    Hi all,
    I'm trying to copy a given outline file to a remote essbase server (11.1.1 installed in Linux 64 bits).
    I already managed to create both application and DB, but when I'm trying to copy a file from my file server, I get the following exception:
    EssException: com.essbase.api.base.EssException: Cannot put olap file object. ..\data\1 (The system cannot find the path specified)
    def copyOutline(self,destOlapAppName, destOlapCubeName):
    print "* Copying outline for " + destOlapAppName + "/" + destOlapCubeName
    self.ess = IEssbase.Home.create(IEssbase.JAPI_VERSION)
    self.dom = self.ess.signOn(self.userName, self.password, "essbase", "EMBEDDED")
    destOlapSvr = self.dom.getOlapServer(self.essHost)
    destOlapSvr.connect()
    srcPath = '\\\\Some\\Existing\\Path\\To\\Outline.otl'
    try:
    destOlapSvr.getApplication(destOlapAppName).stop()
    except EssException, (e):
    print e.getMessage()
    pass
    try:
    destOlapSvr.lockOlapFileObject(destOlapAppName,
    destOlapCubeName,
    IEssOlapFileObject.TYPE_OUTLINE,
    destOlapCubeName)
    except EssException, (e):
    print e.getMessage()
    pass
    destOlapSvr.copyOlapFileObjectToServer(destOlapAppName,
    destOlapCubeName,
    IEssOlapFileObject.TYPE_OUTLINE,
    destOlapCubeName,
    srcPath,
    False)
    I get the exception at copyOlapFileObjectToServer.
    This is the header I'm getting when using EMBEDDED mode:
    Hyperion Provider Services - Release 11.1.1.3.00 Build 196
    Copyright (c) 1991, 2009 Oracle and / or its affiliates. All rights reserved.
    connection mode : EMBEDDED
    essbase.properties: essbase.properties
    domain.db location: domain.db
    console log enable : false
    file log enable : false
    logRequest : false
    logLevel : ERROR
    java System properties -DESS_ES_HOME: null
    What am I missing here? Maybe the fact that I dont have ESS_ES_HOME defined?
    Thanks all.

    Figured out what the problem was.
    found this reference: http://essbaselabs.blogspot.com/2009_05_01_archive.html where it says what DESS_ES_HOME should be.
    gave vm -DDESS_ES_HOME the correct value and voila....

  • MAXL Script for copying outline

    Can we write any MAXL Script for copying outline from one aplication/datbase to another application/database.
    Example copying olt from app1.dbb1 to app2.dbb2

    No and yes.
    There is no MaxL statement for copying an outline from one DB to another (Unless you are converting from BSO to ASO). But you can shell system commands like xcopy within a MaxL script (of course you could just do this in your batch or shell script) . Just make sure you stop the Dbs before doing the copy

  • How to copy the same address for multiple contacts in Address Book?

    Hi! I got a question, I didn't find an answer for yet.
    How to copy the post address from one contact to another, without manual entering. I mean if I have one contact with already entered post address, can I just copy it someway at once to another contact?
    I don't want cards to merge, I need separate contacts, that may have different phones, e-mails, but the same post address. Please, advise.

    Thanks! yes, this is a solution I'm following now. But I was wondering about the similar way as it is made in Daylite or Contactizer - you create company with name and post address first, and then can create a contact for that company. And company name and post address will appear in contact name.
    I just wonder why such a simple and useful solution isn't available in Address Book as default.
    I know there are many scripts written for Address Book. Maybe there is something for this purpose?

  • How do I disable copy/paste for most (but not all) of a .pdf?

    Hello, I'm trying to create a .pdf document that is a "how-to" guide.  I'd like to disable copy/pasting from 95% of this document, with the exception of a few sections that i'd like my users to be able to copy and paste and use as email templates.  I've gone ahead and set pasword security settings and un-checked the box for "enable copying of text, images, and other content".  Is there any way that I can enable copy/paste for just a few small sections of my document?  or is it an "all or none" function?
    Thanks in advance for your help.  -Geoff

    Graffiti, Can you please expand on that?  I'm using Microsoft Word as my original document.   I'll have mostly paragraphs of non-copyable text, with a few sections that contain sample email templates that will be copyable.  Example below.  Thanks, Geoff
    Here is my description of an amazing new process written in Word.  To use this process, copy the email template below and customize with your own name.
    Email Template
    Dear John,
    Copy this email and send it with your own name.
    Thanks,
    Geoff
    More non-copyable text.

  • How do I create outlines for created pattern (or swatch) for laser cut?

    Hi,
    I can't figure out how to create outlines (vector lines) for my patterns , as I need to laser cut the pattern, and all the lines have to be seen,
    Please help!
    I use Illustrator CS6.

    mer,
    What happens if you Object>Expand?

  • I downloaded CS6 and was told that it was possible to make a hard copy DVD for safety,is this correct and if so how is it done?.

    I downloaded CS6 and was told that it was possible to make a hard copy DVD for safety,is this correct and if so how is it done/.

    Use a DVD burning program:
    https://www.google.com/search?q=vdvd+burning+program&ie=utf-8&oe=utf-8&aq=t&rls=org.mozill a:en-US:official&client=firefo…

  • How to provide the license key after having the evaluation copy expired for SQL Server 2012 Standard?

    How to provide the license key after having evaluation copy expired for SQL Server 2012 Standard?
     I couldn’t figure out how to provide the license key after having
    evaluation copy expired for SQL Server 2012 Standard
     Thank you
     Best
     Jamal

    The following blog is on the topic: Upgrading from SQL Server 2012 Evaluation Edition
    Kalman Toth Database & OLAP Architect
    Free T-SQL Scripts
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Example to demonstrate how to make rebate for business

    Hello Gurus,
          please give a example to demonstrate how to make rebate for business?
    thanks very much!

    hi
    Rebates Processs in SAP is divided into three components
    1) Configuring Rebates
    2) Setting Up Rebates
    3) Managing rebate agreeeements and payments
    Pre-requsiistes- Check the following:
    1.The payer partner needs toi have the rebate field checked in the customer master on the sales area-billing doc tab.
    2.The Billing type must be marked as relevant for rebates.
    3.The Sales Organisation must be marked as relevant for rebates.
    Condition Technique :
    Rebates, use the condition technique, but distinguish themselves from pricing in applying to transactions over time, versus on a transaction basis. Rebates have their wn field catalog and their own condition table naming convention.So you could have two condition table "001" one for pricing and one for rebates, which could have different key fields. You need to use the technical names A001 For pricing and KOTe001 for rebates when you use the query type using transaction SE 16..
    Use create access sequence (AS). Enter 1 in field category for rebate specific. AS after going thru the right path of maintaining access sequence for rebates.
    The big difference between the rebate and the pricing access sequence is that there is no exclsuion flag available for rebate related AS. This means multiple tables for an access sequence can be aplied at the same time.
    Rebate related condition types are identified by codnition class -C.
    After defining and creating condition types for rebated include them in the pricing proceedure. The requirement should be 24 here which implies that the accruals are calculated on the basis of invoice/bill.
    The other fields- alctyp and altcbv does not allow you to manipulate how a rebate is calculated. Also, remove the requiremnt 24, if u want to see reabtes at order time.
    Now payment of rebates:
    Payments can be maunal or in full settlement. When you do manual payments, it defines how much can be paid out during a partial settlemetn. You use partial settlement only when rebate agreement is defined for a full year but the paoyouts are supposed to happen on a monthly, quarterly or anyother specified period.
    These accurals are based on sales volume and when they are posted billing is created int eh follwoing manner. Provision for accruals is debited and Sales revenue is credited. When rebate credit memo is created
    Customer account/ is debited and
    Accrual provision account is credited.
    Also, please note that when rebates are created without dependent ona material but on customer/material you need to refer to a material for settlement.
    First of all rebates are more or less discounts which are offered to customers. The rebates are based on the volume of the business the customer does with you within a specified time. for eg if the customer agrees for Rs.1 Crore worth of business with u in 1 year, then you activate your rebate porocess. if at the end of the year the customer DOES achieve the target u offer him say 2/3/4 % whatever is decided. The rebates are passed on to the customer in the form of Credit notes.
    The rebate can be given to the customer at one time or in installments also.
    This is broadly the outline of the rebate process.
    Note : I recomend you to study the theory part of why rebate and why not a discount.
    This will help you understand better.
    May be I can help you with rebate process.(IN -IMG)
    1. define a rebate agreement type
    2. define a condition type group
    3. define a condition type and place this condition
    Type in the pricing procedure.(REQUIREMENT=24)
    ALSO IN THE PROCEDURE- ACCRUAL KEY = ERU
    YOU ALSO HAVE TO DO THE ACCOUNT DETERMINATION FOR REBATES.
    Once you have defined all the 3 and assignment starts.
    Assign the agreement type to the condition type group
    Assign the cond type group to the condition type.
    Condition technique is also used in rebates.
    REBATE ACTIVATION- IN CUSTOMER MASTER, SALES ORGANISATION AND FOR THE BILLING DOCUMENT.
    After having done this please proceed to maintain the condition record for the rebates (transaction code-vbo1)
    Note: if you maintain the requirement coloumn with the requirement as 24 - the rebate will be affected in the billing document and if you dont give the requirement as 24 your rebate will be affected in the sales order.
    The rebate process is completed when you have created a credit memo to the customer.
    The document type for the partial settlement is R3.
    Please make sure you open two screens SO THAT YOU CAN COMPARE THE NEW ENTRIES WHAT EVER YOU'RE DEFINING WITH THAT OF THE STANDARDS or first you try with the standard condition type boo1, boo2
    boo3 boo4.
    AFTER YOU HAVE FINISHED A COMPLETE SALES CYCLE OF CREATION ORDER , DELIVERY AND BILLING.
    GO TO THE CONDITION RECORD IN CHANGE MODE (VB02) AND SETTLE THE ACCOUNT PARTIALLY.
    In a simple way,
    1. First you need to create a Rebate agreement.
    2. Create condition record for rebate giving the rebate rate and accrual rate.
    3. when the rebate relevent billing doc is generated, the rebate and accruals are determined and posted in a seperate GL account as a noted item - amount to be settled. Also it gets copied in the rebate agreement.
    4. create settlement run using credit memo request and then credit memo to settle this amount with the customer.

Maybe you are looking for

  • Purchase Order XML  Report

    Hi Experts, I am customizing the Purchase Order detail Report .Here I need to add total tax details . I found tax details are in po_distribution_all table.Here tax amount is caluculated for each and every line. in po_distribution table we have recove

  • Struts and validation question ?

    hi, i am using the struts framework for my application, i have a simple jsp logon page (username, password) i have defined a validtion.xml file <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE form-validation PUBLIC           "-//Apache Softwar

  • Why do i get 2 curves and not just 1 when i create a diagram from a row of data in a table ?

    Why do I get 2 curves and not just i when I create a diagram from a row af data in a table ?

  • IPod 5g, sad face BUT boots into disk mode

    Hey everybody, I have a iPod that my uncle brought me, he says it's his sons, but he doesn't need it. This ipod boots with apple logo, hdd making clicky sound, and then a sad face appears for about 4 seconds and shuts down. If I try holding center an

  • DNG editor color profile

    I have created color profiles in the DNG Profile Editor, saved the recipe and exported the recipe to C:\Documents and Settings\Dan\ApplicationData\Adobe\CameraRaw\CameraProfiles When I go to the calibration tab in Lightroom, these profiles do not sho