Displays only support Plans in the 'load Plans & scenarios' possible?

Hi fellow ODI.

I was wondering if there is a feature in the ODI to hide all the scenarios generated in the 'load and scenarios tab Plan' in the browser designer.

The reason I ask is because I have several batch processes in ODI with several packs a lot. Each packages are compiled in a scenario which I use to control the flow (through the load Plan)

Unfortunately, there are already too many scenarios in the 'load and tab Plan scenarios' and I only want to see support Plans. Please let me know if there is a function that allows me to see the Plans to charge only in ODI. It would be really cool if there is something like that.


Kind regards
Dave Null

Hello
You can't turn them off as such, but you can use folders to categorize how ever you like, a folder for charge plans (or leave them at the root) and hide all the scenarios in subfolders. Easier on the eyes.

Tags: Business Intelligence

Similar Questions

  • I need to display a corporate tutorial site which is only supported by Microsoft Windows.  Is it possible to load windows on an external hard drive and a MacBook to view the Web site?

    I need to post a tutorial for some training company corporate site only supports Microsoft Windows.  I'll buy a MacBook in the coming weeks when I go to training and I wonder if there is a way to load windows on an external drive and launch it on my MacBook?  I know you can use bootcamp, but I don't want to burn up that much of my Flash memory by placing it on the MacBook itself.  I have a 1 to Seagate that I use on my iMac at home for Time Machine.  Could just operate with Windows on it to visit the society tutorial with my MacBook?

    Boot Camp will not allow that.

    It is possible that one of the many emulators Windows for Mac can allow you to run with such a disk configuration.

  • Windows Media Player displays only one album with the unknown artist.

    Original title: strange going ons

    When I go to my music using windows Explorer, it shows a folder named unknown artists with 7 subfolders.

    When I bring the windows media player, it displays only an album with an unknown artist.

    When I open one of these subfolders, writing the name of the artist, but all the tracks have been listed as track 1, track 2, track... in the library, that I went to this artist's album. He entered all the information correctly. When I clicked open the location of the file that shows the location of the albums as one of the subfolders under unknow artist and all tracks as track 1...

    so, how did we can list everything correctly in the library but point to incorrect information?

    Hello

    What are the file format of the files shown in the subfolders of the library?

    Follow these methods.

    Method 1: I suggest you follow these steps and check.

    You can try to clear the database of Windows Media Player.

    To do this, follow these steps:

    Step 1

    a. exit Windows Media Player.

    b. for Windows Vista: click Start, click run, type %LOCALAPPDATA%\Microsoft\Media Player , and then click OK.

    c. Select all files in the folder, and then click delete on the file menu.

    Note you don't have to remove the folders that are in this folder.

    d. restart Windows Media Player.

    Note Windows Media Player automatically rebuilds the database.

    Step 2

     If this does not resolve the problem, disable the Windows Media Player database cache files. To do this, follow these steps:

    a. exit Windows Media Player.

    b. If you run Windows 7, click Start, click Run, type % LOCALAPPDATA%\Microsoft and then click OK.

    c. Select the folder Media Playerand then click delete on the file menu.

    d. restart Windows Media Player.

    Note Windows Media Player automatically rebuilds the database.

    Also note before performing the steps above, I suggest to save the songs and try the steps above.

    Method 2:

    If the steps above do not resolve the problem, you can try to disable Windows Media player and then enable the feature that is as good as the uninstall and put it back. Follow the steps below to do the same.

    To enable or disable the Window Media Player, follow these steps:

    a. click the Start button, select Control Panel, click programsand then click Windows turn on or off features. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    b. develop media features , uncheck the box next to the Media Player functionality to remove Media Player. Click OK and restart the computer.

    c. turn on the player again by selecting the check box next to the feature of Media Player.

    Access the link below for more information on the steps above to turn off or on the features of Windows 7.

    http://Windows.Microsoft.com/en-us/Windows-Vista/turn-Windows-features-on-or-off

    See also:

    The Windows Media Player library: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows-Vista/Windows-Media-Player-library-frequently-asked-questions

  • How can I display only a part of the screen?

    My screen contains a title and simple 5 LayoutManagers.

    (but it's not complicated, we could simplify to only three LayoutManagers: upper, middle and lower).

    I want only one of them to be scrollable (one named "_fieldManagerMiddle"), since it will contain long text, others must stay fix, since they contain graphics and Menu. In particular, the last Director downstairs (_fieldManagerBottom) must remain where it is.

    (1) my problem is:

    When the_fieldManagerMiddle contains a long text (by clicking a button in the menu of the _fieldManagerMenu above) he is floating, but it means that the entire screen becomes scrollable.

    I tried to add Manager.NO_VERTICAL_SCROLL to other managers, but it did not help.

    It's pretty simple.

    How can I get that only the mid-level becomes scrolls and the rest does not move?

    It's code; What is missing? What's wrong?

      super();
        setTitle(new LabelField("results"));
    
            /* add the five layout managers */
        _fieldManagerTop = new HorizontalFieldManager();
        _fieldManagerMenu = new HorizontalFieldManager();
        _fieldManagerMiddle =  new VerticalFieldManager(Manager.VERTICAL_SCROLL |
                    Manager.VERTICAL_SCROLLBAR){
            protected void sublayout( int maxWidth, int maxHeight )
            {
                int remainingplace = Display.getHeight()-_fieldManagerTop.getPreferredHeight() -_fieldManagerMenu.getPreferredHeight() - _fieldManagerBottom.getPreferredHeight() - title.getPreferredHeight() ;
                super.sublayout( Display.getWidth(), remainingplace);
                setExtent( Display.getWidth(), remainingplace);
                }
            };
            _fieldManagerBottom = new HorizontalFieldManager(HorizontalFieldManager.FIELD_RIGHT)
            {
                public void paint(Graphics graphics)
                {
                    graphics.setBackgroundColor(Color.NAVY);
                    graphics.setColor(Color.WHITE); // foreground color
                    graphics.clear();
                    super.paint(graphics);
                }
                protected void sublayout( int maxWidth, int maxHeight )
                {
                    int displayWidth = Display.getWidth();
                    int displayHeight = 25;
                    super.sublayout( displayWidth, displayHeight);
                    setExtent( displayWidth, displayHeight);
                }
            };
    

    I would be very grateful if you could help me with that!

    (2) I also have a second question (but less important): the Middle Manager has to take all the remaining space of the screen, so I subtracted the other Manager height and the height of this Manager at the result of this subtraction:

    int remainingplace = Display.getHeight()-_fieldManagerTop.getPreferredHeight() -_fieldManagerMenu.getPreferredHeight() - _fieldManagerBottom.getPreferredHeight() - title.getPreferredHeight() ;
                super.sublayout( Display.getWidth(), remainingplace);
                setExtent( Display.getWidth(), remainingplace);
    

    This seems not to be correct: if I, the last Director downstairs doesn't have enough room.

    Any ideas?

    The best way to do it, is to use the screen, which is already divided into 3 sections, superior, medium and low, of which only half is scrolling.

    The top depends on what you add to setTitle (who may be a Manager), the background is determined by what you add using setStatus (even once, you can add a handler), and just use the normal add to add the scrolling of the Middle component.

  • Displays only a 'window' of the real mail and I can't go full screen

    Emails all show when I open Outlook.com like folder/emails/body text (ie the display pane) but when I click on the email address to wear open full screen, that it does not open nor the display pane. Someone at - it help him?

    That's all the messaging application No.  There is no view full screen "message only".  If you want that, you can use your normal e-mail program (everything that you used to use: Live mail, Office, Outlook, etc.).

  • Fonts to display only as outlines for the upgrade to Firefox 13

    I first noticed this problem after upgrading to Firefox 13. I did a quick search on the forums, but I don't know if anyone else is having the same problem as me. I'm running on a laptop HP, Windows 7.

    A lot of text on Web sites shows only the outlines of each character are visible. The police on these forums is affected, it could have something to do with specific fonts, I don't have the problem on other sites.

    As it is quite a difficult thing to describe, I have included links to a few screenshots here:

    BBC FOOD

    Problem of fonts Firefox Forums

    I also noticed the problem on the BBC Food website, for whatever policies to use these two sites, it has the same problem.

    First of all, I noticed this when I was on the screen to update Java (like FF13 said that I had to upgrade the plugins). I updated to Java, assuming it was a Java based issue, but it must be something within Firefox.

    Disabling 'Allow Web sites to use their own fonts' solves the problem, but everything is now in Times New Roman (as is the default font).

    A test, I tried the same websites in Internet Explorer (which I never use) and it works fine.

    One last thing, I guess I should mention - I design work on my laptop sometimes and I have a Windows of Helvetica (the font standard Mac) version. This has not posed no problem before, and I can't remove it because I need it to work!

    Any advice would be really welcome. I have had a look in the code for two Web sites and does not make wise, which would suggest problems.

    Thank you

    Rob

    OK, I found a solution. There is a problem with the way Firefox detects fonts Helvetica (not only in windows, but in OS 9 and OS X too). I noticed that it makes police Helvetica Neue strangely (on Twitter), as it makes it difficult to read and very crushed.

    Here is the solution: http://www.keyvan.net/2010/10/helvetica-on-firefox/

    Post advises to install an add on which allows a custom CSS script to run. In this script, it forces Firefox to change any instance of Helvetica, Arial.

    Works a treat! Thanks again for your help, I would not have know the conclusions of the police add on that led me to the solution.

    See you soon,.

    Rob

  • How can I display only a part of the scale in the waveform graph

    This is the first time I try to use the waveform graph, since now, I used the table of waveform.
    The reason why I moved to the chart, it's that I need cursors.

    I have 2 problem

    the first: in the diagram, the graph moves when I add a new data and the scale of the x-axis stay the same size, in the right size I always saw the new data. How can I do that with waveform graph?

    Second: How do I say Labview to the day I click on the graph, I need that because when move graphic I lose the day, and to make I need to zoom out, I drag the imprecateurs.

    All this must be done programmatically. The LabVIEW graphic accepts tabular data, not only as the table and the graph doesn't have the ability to retain the previous points, like the story of a graph. You will need to retain previous values and then continually update the graph with the old and new values to get a shift register "chart as behavior. Cursors should be written programmatically re of each iteration, since you rewrite the entire graph.

  • When you print an e-mail message, it displays only a quarter of the page and then another quarter of page in the next and following pages.

    My printer works perfectly on all other programs, but when I print an e-mail message from windows mail it only prints on one quarter of the page. I looked at the properties of the printer and it is selected for the 8 1/2 x 11 papper and all other properties appear to be the same as for any other program. Think there must be something in Windows Mail which is the cause of the problem

    Check your Internet Explorer (Yes, IE), margins.

    IE | File | Page layout. Default is 0.75, (19mm), all around.

    Bruce Hagen ~ MS - MVP [Mail]

  • How can I display only ten lines in the answer?

    I want to show only the record top ten report.
    I tried to use the function above, but when the tenth record is identical to 11th, it will be posted both of them and I only want 10 record.
    What should I do?
    Thank you very much for the help!

    Hello

    Try this...
    use order (asc/desc according to your requirement) and create a dummy column, giving Rcount (col) and filter it on this column.

    see you soon,
    Aravind

  • display only one instance if the value is repeated

    HII everyone,

    I have a requirement that I want to show the sequence of data

    no name
    1 a

    1 b

    1 c

    d 2

    2 e

    3 f

    3 g

    3: 00



    in this form


    1 a

    b

    c

    d 2

    e

    3 f

    g

    h

    That is to say if the items are reeating then show their single instance
    I'm using oracle 11g is possible to write this on sqlplus?


    Thank you

    Hello

    810345 wrote:
    I'm using oracle 11g is possible to write this on sqlplus?

    SQL * more command is

    BREAK   ON  no
    

    After you give this command, if the first column in the output is called no., then SQL * more he will not show if it is the same as that on the line just above.

    You may have noticed that this site noramlly compresses white space.
    Whenever you post the text formatted (for example, the result of the query) on this site, type the 6 characters:

    \

    (small letters only, inside curly brackets) before and after each section of formatted text, to preserve spacing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    
  • How to display only specified characters in the text control

    Hello

    I use the text control in the swf file. In this file, I want to display text up to 15 charaters and if more, then present them with [...]

    Please provide a solution for this.

    Here ya go to 15 characters maximum.

    This example uses textInputA as a box of textInput that someone can type in.  As a result, in the text/label component, it checks the length of the value of textInputA and if it is longer than 15 characters, it removes all characters beyond 15 and adds [...] at the end.

    You can substitute other things instead of a textInput control, but I used it here as it's the easiest way to explain.

    Let me know if this helps you

  • When open Mozilla it displays only a white screen, the only Visual is the close buttons and minimize

    Operating system: Windows 7 64.b
    RAM 2 GB:
    This bug is generated whenever I try to open Mozilla, it looks like its opening a window, but everything is black or with some. Everything is invisible unless the closure and minimize button in the upper right! It's just like an large empty window with three buttons!

    as described above, you will get in safe mode when you press shift lance firefox...
    have you tried the route through the graphics driver update yet?

  • Display only certain layers of the master by page

    Hello

    First of all, I'm pretty new to Adobe Indesign.

    I'm doing a kind of operating instructions, where all the pages are divided horizontally in three rows.

    each line can contain a certain part of the manual, it can be:

    • A step that people should perform
    • A warning
    • A graph
    • A table

    So I made a master page, with each of the four option all three rows in separate layers.

    I thought that I would be possible to turn on or turn off the layers individually for each new page, but it's not.

    each page will be the same.

    So is it possible to individually change the visible layers for each new page that I want to do?

    Or what I do with master pages for every layout possibility is it possible?

    See the image below for the layers I've done and two examples for the manual.

    Adobe Indesign CC 2015

    Windows Pro 10

    With the PDF preview, I couldn't do what I wanted to do.

    But I found how to get exactly wat I wanted originally:

    I've done several layouts on 3 rows on a page.

    Then I discovered on CC libraries:

    I selected the text field and the field of the image and recorded in CC libraries.

    Now I just take a page blank and choose the correct layout of the library

  • Clip displays only when moving in the program monitor

    From CS6, I'm putting in tune with first CC 2014.  I noticed that when the zoom level select anything less than 100%, the element in the program monitor goes black when he doesn't play.  In other words, if the level is set to the Fit or 75%, I can't see him once he stops playing.  Has anyone seen this behavior and most importantly, can you tell me how to correct?

    Thank you!!

    I'm happy to announce that I suspect to be a problem of setting is proven true.  Activation of the grid 'transparency' by clicking on the two key in the source monitor and program fixed the problem.

  • Virtual machine has 12 virtual processors, but the host only supports 8?

    Hi all I am using ESX 5.1 and have a machine Windows 2012 R2 Standard of virtual (vmx-09) comments that I'm moving to 8 processors to 12 processors.  But when I turn on the virtual machine after changing the UC 12 I get the error message

    "Virtual Machine has 12 virtual processors, but the host only supports 8. The number of virtual processors can be limited by the selected guest OS for the virtual machine or the granting of licenses for the host".

    Now, I know that 2012 R2 Standard Windows can handle 12 processors and I thought that ESX 5.1 could also, but I'm wrong?  This is the Standard of vSphere license 5.  Thank you!

    Hello

    vSphere 5.1 Standard license has a 8 vCPU per VM limit.

    Company = 32 vCPU

    Business + 64 vCPU

    You must upgrade to vSphere 5.5. This can be done with your vSphere license 5, as it is for all versions 5.X of vSphere and vCPU limit has been deleted in 5.5.

    So you can have as many vCPU per VM that your host has logical cores.

    Tim

Maybe you are looking for

  • z840: Z840 - 40 minutes to start Windows 10?

    New with Win 10 installed on the internal drive.  The system is sitting with the logo of hp led the drive or just on the screen for 40 minutes more, rest, disabled keyboard (cap / NumLock does not change the keyboard lock lights) before windows "whir

  • Upgrade SSD for Satellite Pro A120

    HelloI have a satellite pro A120, which feels a little tired. I did research SSD upgrades to replace the HARD drive, but I don't know if I can update or not. I would really appreciate any advice or information you can give me. Thank you

  • 10.11.4 slow

    My Macbook Pro is slow after update to 10.11.4, and "Disk utility" is more a function that I can run. What can I do, if I already ran first aid, and all applications on the Macbook Pro are slow, including simply Start Up.

  • Games with Satellite Pro A100

    Hello guys! Want to buy Satellite Pro A100 with ATI mobility radeon x 1600 with up to 512 MB of memory, hyper, and I want to know if I can play games like a 3D ' need for speed ', "doom3" or "cell support" if I buy it! Thank you!!!

  • LaserJet M451: How can I buy printer HP Laserjet Pro M451 110V version in the United Kingdom.

    I live in England but would like 3 x HP Laserjet Pro M451 printers 110v version for a project on an industrial site. Where can I buy these in the United Kingdom. If I can can can I buy them anywhere in Europe?