New BI redesign tool

Hi all,
I have an DSO in production system containing huge amount of data...
the DSO contains 0MAT_PLANT but I have a new requirement to report on nav. attributes of 0MATERIAL, which is not in the DSO, and I wonder if the new BI redesign tool can help on adding 0MATERIAL to the DSO and copy the content of 0MAT_PLANT to 0MATERIAL , but I cannot find any documentation about this new feature of BI 7.0.
Has anyone used it before or has any documentation about?
Many thanks in advance,
Elena

Hello Elena,
Well the new feature with BI7.0 is Remodelling.
But even with BW3.x you can add any characteristics to the Cube/ODS without having to delete the data. Remodelling is only more useful when you have to remove some characteristics from the existing setup without deleting the entire data.
Let me know if you need more info.
Regards
Rohit
Edited by: Rohit Rakhan on Oct 21, 2008 6:51 PM
Ohh yes, you won't be able to copy the data for 0MAT_PLANT to 0MATERIAL

Similar Messages

  • I am trying to use the new iwork beta tools on iCloud.  I currently have 10.8.4 OSX on my iMac and 6.0.5 version of Safari, but when I try to open documents on my iphone in the cloud it tells me my browser isn't supported

    I am trying to use the new iwork beta tools on iCloud.  I currently have 10.8.4 OSX on my iMac and 6.0.5 version of Safari, but when I try to open documents on my iphone in the cloud it tells me my browser isn't supported

    Note that iWork for iCloud is only designed for PCs and Macs > http://support.apple.com/kb/HT5779
    To access to your iWork documents on the iPhone, install Keynote, Numbers or Pages from the App Store

  • IWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    iWeb is not working for sending podcasts to iTunes, so I need a new web building tool. What is the closest thing to iWeb that I can use, which also supports podcasts?

    There's no reason you can't go on using iWeb for this - with iWeb '08 you have to publish to a local folder (i.e. on your Mac) and then upload the contents of the folder (not the folder itself) to your hosting service: and you have to make sure you enter the new URL in the Publish information or the feed won't work properly; this done, an iWeb podcast should work fine.
    Of course there is still the problem that iWeb is not supported and sooner or later a system upgrade may break it. You could look at RapidWeaver: you can make podcasts with that, though the last time I looked into that - which was admittedly some time back - I didn't feel it was ideal for this. There are lots of other podcast creation programs or services around. WordPress is OK but it may be a bit of a steep learning curve: Libsyn is an online service that seems to work reliably. Blogger writes messy feeds but does usually work. Podcast Maker used to work well - I used it myself a few years back - but it rather looks as if it's gone moribund and it may not be reliable with Lion/Mountain Lion, so you would want to check into that.

  • Anyone tried the new Weblogic Scripting Tool (WLST)?

    Has anyone tried using the new WebLogic Scripting Tool (WLST) that was recently
    posted on the dev2dev WebLogic Utilities site: http://dev2dev.bea.com/resourcelibrary/utilitiestools/adminmgmt.jsp
    It looks to be a handy tool that is built upon jython and enables you to easily
    navigate, inspect and manipulate the WebLogic MBean tree on a running server.
    It also has a nice scripting tool which allows you to convert a config.xml file
    into a script that can be run to recreate a domain or specific resources within
    the domain. This is exactly something I have been looking for because we occasionally
    recreate domains or subsets of a domain for testing and POC purposes.
    The utility is fairly well documented and works well for the most part. The only
    issue I have run into so far is that is does not seem to understand JMS Distributed
    Destinations. When I try to convert a config.xml that contains a DD to a script
    it throws a null pointer exception. I have not tried a cluster yet.
    I noticed the utility was authored by someone at BEA. Is there potential that
    BEA will support this in the future if it catches on? Has anyone had experience
    with WLST or jython that would cause you to reccomend (or not) using it?
    Thanks.

    Darryl,
    Thanks for the valuable feedback. My comments are inline.
    Darryl Stoflet wrote:
    As a fairly long time wlshell user who recently started testing wlst there are
    few features I have found lacking in wlst.
    1. For monitoring purposes I am frequently using the -g and -r options to wlshell's
    get command for graphing and repeating respectivelyI haven't looked at -g and -r options in wlshell, but will do so.
    Although there is no graphical monitoring of attributes in wlst, but
    there is certainly some monitoring capability (which will be enhanced
    further in the coming version). Please take a look at the
    monitorAttribute() function.
    wls:/(offline)> help('monitorAttribute')
    Description:
    Monitors the specified attribute every by polling every interval.
    Syntax:
    monitorAttribute(attributeName, interval, monitorFile)
    attributeName = Name of the attribue that you would like to monitor.
    interval = Time (in seconds) to wait before the next fetch
    monitorFile=[optional] File path where the monitored data will be
    written to.
    Example:
    wls:/mydomain/runtime/ServerRuntimes/myserver/ExecuteQueueRuntimes/weblogic.kernel.Default>
    monitorAttribute("ServicedRequestTotalCount",10)
    Press Return to quit monitoring
    Monitoring started for attribute ServicedRequestTotalCount
    wls:/(offline)>
    >
    2. wlshell 2.0 adds the option when connecting to the admin server to also connect
    to all managed servers in that domain. This is a nice feature for monitoring because
    you then have access to all the runtime mbeans in each managed serverYes, this indeed seems to be a very nice feature. We will consider this
    for our next release.
    >
    3. There is not a good way to pass cmd line options(variables) to wlst. In wlshell
    I can send cmd line options via -v. I have tried something similar with wlst using
    -loadProperties but this is a little laborious because I do not necessarily want
    to create a properties file when a passing in only one or two variables. Also
    I find loadProperties lacking somewhat (see 4 below)ok, I just realised that there is indeed a bug in wlst where the command
    line arguments are not being honored. In Jython one can access the
    command line arguments from the sys.argv variable. For example,
    java weblogic.WLST -i foo.py var1 var2 var3
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to Weblogic Server Administration Scripting Shell
    Type help() for help on available commands
    wls:/offline> print sys.argv
    ['foo.py', 'var1', 'var2', 'var3']
    wls:/offline>
    But this isn't working properly, please keep using the loadProperties
    untill this has been fixed.
    >
    4) loadProperties treats all created variables as strings. While this is understandable
    from the perspective that getProperty returns a string, it would be nice if wlst
    was smart enough that when a property is numbers only its an int, otherwise a
    string etc.
    wlshell does this logic/conversion for you which really simplifies calling methods
    that expect the particular datatype. To get around this problem you can create a script file say,
    variables.py which would look like,
    # variables that will be used
    theInterpreter.set('var1',10)
    theInterpreter.set('var2','i am a string')
    java weblogic.WLST variables.py
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to Weblogic Server Administration Scripting Shell
    Type help() for help on available commands
    wls:/(offline)> print var1
    10
    wls:/(offline)> print var2
    'i am a string'
    >
    5. I'd like to be able to send cmd output etc to a file while running within wlst.
    In wlshell its a simple as adding >> filename to the end of the command. In wlst it is not as simple as doing >>, it is more than that. You can
    choose any output stream to direct your output to. In your case you can
    create a FileOutputStream and route the output to this stream for any
    particular command.
    Example,
    # create a file output stream say fos
    from java.io import FileOutputStream
    fos = FileOutputStream("output.txt")
    # save the default output stream to a variable to
    # switch it back
    sys.stdout=fos
    # Now all output for any function will go to output.txt
    ls()
    cd('foo')
    # after done with your functions switch it back
    sys.stdout=origOutput
    This is the right Jython way to do it. This works for all output streams
    , very useful when you embed an interpreter in a servlet and would like
    to display the output via a PrintStream etc.
    >
    >
    All in all wlst is a nice tool. Personally if the above features were added it
    would be much easier to transistion to wlst for good.
    Also I really like the wlst offline tool. Its nice to be able to do the whole
    create and configure domain process with one tool. Will this be supported. Yes indeed. We are working on merging both the tools into one.
    I do
    not want to rely on it too much if it will not work in future weblogic versions.It will be supported in future release of weblogic.
    Thanks,
    -satya
    >
    Thanks,
    Darryl
    "Steve Hess" <[email protected]> wrote:
    Hello,
    I am the BEA Product Manager behind WLST.
    WLST, as it appears today on dev2dev, is an early release version of
    a tool that
    BEA does intend to support as part of our next major release. We decided
    to issue
    early versions of the tool because of the demand for a supported scripting
    solution,
    and to generate feedback from our user community. I encourage you to
    work with
    WLST, and assure you that this tool represents our current direction
    in management
    scripting.
    Also note, this newsgroup can be used to issue questions, concerns and
    feedback
    about WLST. The engineering and PM team will monitor this group and
    respond to
    your questions as quickly as we can. While we will not be able to respond
    to
    every feature request, we really value your suggestions, and will endeavor
    to
    improve the tool in ways that meet your real-world needs.
    Cheers,
    Steve Hess
    Director, WLS PM
    "George Lupanoff" <[email protected]> wrote:
    Has anyone tried using the new WebLogic Scripting Tool (WLST) that was
    recently
    posted on the dev2dev WebLogic Utilities site: http://dev2dev.bea.com/resourcelibrary/utilitiestools/adminmgmt.jsp
    It looks to be a handy tool that is built upon jython and enables you
    to easily
    navigate, inspect and manipulate the WebLogic MBean tree on a running
    server.
    It also has a nice scripting tool which allows you to convert a config.xml
    file
    into a script that can be run to recreate a domain or specific resources
    within
    the domain. This is exactly something I have been looking for because
    we occasionally
    recreate domains or subsets of a domain for testing and POC purposes.
    The utility is fairly well documented and works well for the most part.
    The only
    issue I have run into so far is that is does not seem to understandJMS
    Distributed
    Destinations. When I try to convert a config.xml that contains a DDto
    a script
    it throws a null pointer exception. I have not tried a cluster yet.
    I noticed the utility was authored by someone at BEA. Is there potential
    that
    BEA will support this in the future if it catches on? Has anyone had
    experience
    with WLST or jython that would cause you to reccomend (or not) using
    it?
    Thanks.

  • Can not open new blank tab window from file, new tab.In Tools/Options/Tabs ticked open new windo w in new tab?

    Can not open new blank tab window from file, new tab.In Tools/Options/Tabs I have ticked open new window in new tab?

    The Ask Toolbar is probably causing that in the Firefox 3.6.13 version. Disable that extension or un-install it.

  • New Chromatic Aberration tools kills old settings.

    I've just recently found that new chromatic aberration tools kills settings for old chromatic aberration tools.
    Lets say I have a PV2010 photo with adjusted sliders for chromatic aberration reduction and selected defringe "all edges".
    Now I'm importing this photo to LR 4.1.
    Note: I'm not updating process version!
    Photo is automatically updated by Lightroom to new CA controls (note it still PV2010 photo).
    Well, I must say the the results are superb - they are the same as I was achieving with manual sliders, but now with only one click.
    But the problem is - Lightroom says that metadata have been changed, and I am writing back changes to XMP.
    But now XMP contains settings for new CA tools, but settings for old CA tools are LOST.
    So if I want to open this image in ACR 6.6, or send it to someone with older LR version I end up with completely resetted CA settings, because ACR 6.6 does not have new CA tools, and settings for old tools are killed by LR 4.1 - they are just removed from XMP.
    So I am loosing CA removal settings completely when opening image in earlier version of application.
    And I am NOT updating process version!
    Any comments on this?

    Here is screen shot in which you can see that even PV2010 photo has new CA tools and old ones are gone with their settings applied in LR3.
    I have tried to import CR2 files without any settings in the XMP into newly created empty catalog and have same result.
    When I am switching photo to PV2003 or PV2010 only new CA tools are available.
    And saving metadata to file kills old CA settings and writes settings for new tools (even for PV2010 photo) which previous versions does not understand.
    To my opinion this is very serious bug!
    Here is photoshop feedback message created 5 days ago: http://feedback.photoshop.com/photoshop_family/topics/lightroom_new_cromatic_aberration_to ols_kills_old_settings
    Looks like noone cares...
    Can someone at least say do I am the only person having this issue, or you can see this behaviour too.

  • Just updated my photoshop cc and wanted to try out the new focus selection tool but it's not there.  Why isn't it there?

    Just updated my photoshop cc and wanted to try out the new focus selection tool but it's not there.  Why isn't it there?

    Use menu Help>About Photoshop make you have started CC 2014 and have not started CC... Its in menu Select under Color range

  • Confused by the lists shown on new CC desktop tool

    After finally getting the new CC desktop tool installed and running, I see lists on the thing that appear
    to be contradictory. One list shows the tools "Up to date" but the other list shows them to be installed.
    Maybe a couple of screen shots will help show what I'm getting at.
    Shot 1 just shows a partial menu under the APPS menu item, but you will note it shows my  applications
    as up to date. 
    Shot 2 shows; when you scroll down to Find New Apps.
    There you see all the same apps showing to be "INSTALL" [ed]. (Note that both lists are only partial to avoid
    so many screen shots) but the two lists do completely overlap.
    Does any one know for sure what that means?  Are the ones showing "up to date" the old lot, and those
    showing to be installed are all actually new (but the same name) apps...?
    I ask because my updates have been coming one at a time as application was debugger or upgraded
    in some way, now is this a whole slug of the same apps that have to be reinstalled? 
    Now scrolling down to  Find New Apps we see they are all listed as being ready to install.

    As per screenshot the applications show "up to date" are already installed on the machine.
    Hereby, they showed under "Your Apps" section  and those showed under "New Apps" are new applications and yet to be installed.
    You can check all these new applications are CC(Creative Cloud) not same as already installed.
    Creative Cloud version of application is totally different and full version all together. They need to be installed separately.

  • After using "migration assistant" from my old iMac to my new iMac, some tools stick while using Photoshop CS 6 Extended. My current operation system is 10.10 Yosemite. I was wondering if UN installing then RE installing CS 6 might solve the problem. If th

    After using "migration assistant" from my old iMac to my new iMac, some tools stick while using Photoshop CS 6 Extended. My current operation system is 10.10 Yosemite. I was wondering if UN installing then RE installing CS 6 might solve the problem. If this is recommended, I would need complete instructions on doing this. I have there serial number for the product.

    using migration assistant is problematic.
    at this point yes, you should uninstall everything migrated, clean and then reinstall properly using the installation files.
    cleaner:  Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    installation files:
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.
    window using the Lightroom 3 link to see those 'Important Instructions'.

  • New Speed Change tools

    Can anyone elaborate on the usage of the new speed change tools? I'm having trouble getting the easing to work correctly, and am pretty lost about the envelope/keyframe editing.

    Go here: http://www.rippletraining.com/provideoapps.html
    Then click on the "New Speed Tools" movie.
    -DH

  • Using New LabVIEW Merge Tool LVMerge With Tortoise SVN

    Hi,
    I've just posted a new blog article Using New LabVIEW Merge Tool LVMerge With Tortoise SVN to my blog at ExpressionFlow. Check it out!
    Tomi
    Tomi Maila

    The LV merge tool really does become far more powerful when integrated into SVN than when used manually.  Here's an article on Using LVmerge LabVIEW Merge Tool with TortoiseSVN with all the necessary setup instructions for LabView 8.5 and 8.6.
    Jesse

  • What's New in Pro Tools 11

    This week the music industry is just buzzing with word of the new standard for digital audio workstations. Avid has just announced Pro Tools 11, which has some long awaited changes that may seem minor to some, but drastically change the way artists, producers, and engineers work.
    Avid has fully redesigned the audio engine and 64-bit architecture. The Avid Audio Engine will dramatically improve the processing power (multiple times that of Pro Tools 10) on the same hardware configurations. The 64-bit architecture will exponentially increase the performance of sophisticated sessions with simultaneous virtual instruments.
    The change that everyone seems to be talking about most is the Offline Bounce. With no longer having to wait, you will have your mix bounced and ready to go up to 150 times faster than in real time! You will also be able to bounce WAV and MP3 simultaneously – which is pretty awesome. If you’re an organizational freak, you may also like to know that there will now be a folder for your bounced files in your Session folder - Avid says, “You’re welcome.”
    Personally, I’m excited about the new metering options that will be at my disposal. Besides the broad range of built-in metering options from peak and average VU and PPM, we’ll also now have gain reduction for all dynamics plug-ins on each channel. For all those visual people out there, like me, this is going to be very helpful. They’re also bigger – in fact, the track meters are 30% taller with higher resolution – Quick! What’s the Quick Key for Narrow Faders?!
    There’s also a big change for any post production people out there – you can actually edit video in Pro Tools properly! Not only can you now edit video in Pro Tools, but it’s now in HD. The Media Composer Avid Video Engine is now integrated into Pro Tools. We’ve gained the ability to play formats such as XD Cam, Avid HNX HD, Avid DNX HD, MXF HD, Apple Pro Res, as well as others formatted by Avid Media Composer. Along with the Media Composer Avid Video Engine now being integrated, Pro Tools will support the same range of video interfaces, including Avid Mojo DX, Avid Nitris DX, AJA, Black Magic Design, etc. I’m sure everyone who does post production is finally screaming, “Thank you!”
    There’s so much more yet to find out with Pro Tools 11. I’m very excited to get my hands on it and learn all of the different smaller things we have yet to know. Please feel free to share any knowledge of changes you find in Pro Tools 11!
    By the way… the answer is Command+Option+M.
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

    Err, so I thought this would be an easy question...not so?

  • While Opening a New Window all Tool Bars and Bookmark Bar Dissapearing

    Dear Mozilla Team,
    I loved the new Firefox 4 it is fast and more space for webpages and many other a lot of good stuff. Congrats and thank you for the hard work. However something weird happening every time I opened a second new window .
    I will try to explain and be clear;
    File --> New Window;
    In the new window;
    - The biggest problem is it seems like there are two Microsoft Windows window within each other. There are two minimize, fullscreen and close icons at the top right corner.
    - Some of the google toolbar icons lost
    - My boomarks toolbar lost
    - My homepage is not loading and there is not attempt to load.
    This is happening every time I try to open 2 new window.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * [[Troubleshooting extensions and themes]]

  • Newbie problem with new objects and tools.

    in chapter 4 of the after effects essential training series from Lynda.com in the section about controlling animation with the pick whip. when he applies the null object the red bar immediately populates (correct usage?) the timeline to the right. when i apply the null object it's hidden to the left, under all the layer info, and i need to drag it out into view.
    ive found that whenever i have a problem, e.g., im using a tool and nothing is happening, it always comes down to this same thing: the layer is not with everything else and i need to drag it out into view.
    not only am i new to mac, but im only marginally literate and a total newb to anything more advanced than iphoto, any advice would be appreciated.

    Rick Gerard wrote:
    I'm not understanding what you are asking.
    If you have a layer in the timeline, a null, and the parenting column is visible you simply click on the pickwhip next to the layer and drag it to the name of the null layer. The Parenting box now says that Layer 1 is connected to Null 1.
    Now, when you move the null, the layer will move.
    i understand what they do and how to set them up.
    my question is more specific, but also applies more generally to other tools and layers. when Ian creates his null layer in the video (as well as other layers ive seen him create) the red bar that represents his null layer immediately appears in the timeline with the begining of the red bar at the left end of the work area. it is fully visible. when i create one the file shows up in the list of layers on the panel to the left of the time line, but it is not visible in the comp window and the red bar is hidden to the left side of the visible timeline to where you have to click its right end and drag it out from behind the panel on the left.
    this has happened with other layers ive created using other tools and before i figured out what to look for it was very frustrating. now, whenever i can't find something, or a tool that im using isnt doing anyhting (besides creating more and more layers) ive learned to look and see if theyre just hidden. it seems like it's probably a setting. but clearly, something is different: he creates a null layer and it appears in the timeline, and mine appear slid to the left.

  • New Overlay Creator tools (Pullout Tabs)

    Hello DPS community,
    My question is in regards to the new tools available in DPS. I have created my folio for my senior degree project over the last few months. I have a 3rd generation iPad that I am previewing my project with the new version of Content Viewer.
    I would like to use some of the new tools available in the latest version of the Overlay Creator, mostly for the new pan & zoom features like those Pullout Tabs Adobe has shared with us on the DPS tips app. However my Overlay Creator panel must not be up to date because it does not display these new functions like Scrollable Frame. How can I update my Overlay Creator Panel so that I can take advantage of these new features? Do I just run an update on InDesign or do I have to download a new version of the Overlay Creator? Also will updating the Overlay Creator Panel negatively effect my overall project in any way? I am a little hesitant to update because everything works well as is and I don't want to break it and go into freakout mode. Has anyone had any experiences updating to the new tools, any problems while previewing or creating on InDesign. I am waiting to hear back before I attempt to update.
    Thanks in advance,
    Ryan

    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60-21ba9a4512e5e5e0b8d-8 000.html

Maybe you are looking for

  • Duplicate line in Global variable

    Hi Experts, I have one BODS job which will load the data from BW to Non SAP.  As per my business requirement I have to trigger this job from BW Process chain. For that I have added BODS job in Process Chain Variant and given input to global variable

  • Report duplicate charges

    I was trying to make a purchase of an app and got the message to try again, now I have 5 times the same charge, how can I cancel those charges?

  • How to make spry menubar first button different colour?

    Hi When making spry menubar how do you make the first button or whatever page you are on a different colour to show that you are on that page? thanks alix

  • Where to check the Material distribution Accounts in OPM inventory

    Hi, I have created a Purchase Order for OPM item and received the Item through Receipts window in Inventory module. I cannot view the transaction details and costing details in the material transactions window in Inventory responsibility. Where can I

  • How to start learning endeca ?

    Hi All, I am new to endeca I am ATG developer now I want to start learning endeca but I dont know how to start the order I dont know which one should I start first(MDEX,PS,T& F,CAS). Could you please suggest me the order & what all required ? Thanks