Custom folder

I created a custom folder and when I access this folder to create a workbook, I can't choose other folders as all get dimmed or disabled. Can someone tell why this is happening.
Also, I am not able to see other records from the database that I see when I connect administrator. In Discovere Office I see that custojm records and a few other issues irrelevant, how can I see some of the other databases of records, please notify

Thank you

Hello

I notice that even though I have some common columns between two custom folders, other custom file is not anbaled when I select one.

Common columns are insufficient, you must create a join in the EULS that connects these elements in 2 files.

Also for database records if there is joined column then also other folders are disabled after selecting one of the folder. I'm doing something worng?

Only records that have a join to all the folders that you have selected in your worksheet is activated. If you have a file attached to B to C, and you select an element of A, then you will need to select an element in B to activate the C folder.

Rod West

Tags: Business Intelligence

Similar Questions

  • I added my yahoo email account in Thunderbird and it did not bring a custom folder that I created in Yahoo. How can I move or import these files

    I added my yahoo email account in Thunderbird and it did not bring a custom folder that I created in Yahoo. It was just the default folders: reception, sent and trash box. How can I move or import records custom website E-mail Yahoo in Thunderbird? It's just a free email account Yahoo and it shows as a POP in Thunderbird account.

    You must configure an IMAP account to show custom in TB cases.

    http://KB.mozillazine.org/Yahoo

  • How can I request the parameters of custom folder to a specific group of records under XP?

    Hello everyone.

    I'm THAT n00b-ish person asking the stupid question. But I can't understand for save the children. So I want to open with 1 million wishlist.

    I'm organizing my files of music inside the folder 'my music '. I am aware that since he is a 'special' folder, I can not customize it at the root.
    SO, I'm trying to customize the folders inside and make sure the radio button for "apply it to all subfolders" is checked. However, the options that I can apply are quite limited (essentially, I have the choice to make all files to display as thumbnails or icons, which isn't exactly the most intuitive way to search for music).
    I went to come a taken ONE of my files and converted to retail and added columns flow, track number, etc. so theoretically, I can fix my list in order: artist, title of song, duration, flow, track number, album, genre, folder

    (It's because I'm always organize a lot of my music as its most often jumbled together from various sources incorrectly appointed or mixed compilations or what have you).

    I tried everything under the Sun to figure out how to make this setting this record, applied to all of the folders inside my music. BUT there seems to be no way to save it as a template or apply it to a group of files (all I see is that I can do EVERY file on my computer that I don't want).

    Any help is very appreciated. Thanks in advance. See you soon.
    * original title - forgive my innanity, how I apply some settings to custom folder as a specific group of folders.*

    Hello

    I suggest to refer to the link below and follow the troubleshooting steps to customize folders.

    How to modify your folder view settings or customize a folder

    http://support.Microsoft.com/kb/812003

  • Custom folder - basic questions

    Hello world

    Hope everything goes well...

    I am aware that one can create a
    Declaration and to use it to create a custom folder of discoverer.

    I was wondering when you tend to go with this approach?

    You do this so that you can-
    (1) avoid complex queries of Discoverer - for example, you want to avoid using too many analytical functions
    in order to prepare the data using SQL?


    (2) create a NEW query to scout out this custom folder
    This technique is so want to do a query on a query

    I would like to create a custom for these 2 reasons folder.

    What are your opinions? TX, sandra

    Hi Sandra,.

    Let's specify the terms:

    Normally, you developed your Select statement that returns the data you need in the discoverer. Now, you have two choices:

    1. send the SQL your administrator to Disco and to allow him to create a custom Discoverer folder, where it uses your SQL directly (copy & paste is discoverer admin)

    2. you can use your Select statement and store it in the database and give it a name. do you it through:
    Create view your_view_name
    as
    Select in...;

    You can use this view as any other table to select:
    Select * from your_view_name;

    And it returns the same results as your first select statement. The advantage is that this view exists as an object in the comic book, means that anyone can use (for example for testing), while you as developer maintain.

    When you have a view, then in the administrator of discoverer rather than create a custom folder you can create a 'normal' folder through "New database folder". Then it will list all your tables and views in the database, if you select your point of view "your_view_name" and it will create a folder for this (each column in the view will get something in the etc folder).

    With regard to performance: you usually can't tell that this or that performs better, because the select statement of the view and in the custom folder may be the same. However if it is in the comic book as a point of view, then the DBA can monitor and optimize the performance of better, since it can be seen as an object.

    Beside that, there are some limitations for select statements that you can use in a custom folder. You don't have these limits in the views of the DB. However, these are fairly complex statements that you maybe do not miss so far...

    Benefits for testing regarding:
    The advantage with a view of DB is: you create a view for your select statement and then you can ask someone else to check if it returns the correct data. They will have to do a:
    Select * from your_view_name where...;

    If something is not correct, you change the view, but you don't need to send them the SQL Mail again... SQLs mail is something I try to avoid, because people always copy & paste errors or e-mail program does stupid things with the code or something else... I prefer to keep the 'application' (statement of code / select source) hidden from the person that tests... they can validate based on the results.

    But I don't want to focus too much on this one, since normally it should test your users in Discoverer, it is that they will use, so they should test here. And here, it doesn't have a difference for the end user you have views or custom folders.

    With regard to the control of Source Code or "Version Control":
    We use CVS or Subversion to store the code of our program. Then all the program code is stored in a version control system, so that you can keep track of the evolution over time, see which version is installed when (we 'labels' with the date of the deployment on the version installed) etc.

    I assume that you store your program code somewhere in a folder, and you are using different folders for different versions or something. It's pretty nasty, CVS or Subversion or systems like this easier ;)

    Regarding the automatic deployment:
    Once we have developed a certain program (statement, package), and it works fine, then store us it as a new version in our CVS (version control). Then we do a UAT (user acceptance testing). IF all goes well and approved for production, so it must be installed on the production server.
    For this, we have a so-called deployment & generation system. We use ANTS to it (comes from the Java community I think).

    What we do when we want to have something installed: we run a script called 'build.sh' with some parameters:
    Build.sh deploy_production mon_project

    This means we want to deploy the program "mon_project" on the production system. the rest is handled by the script:
    1. download the latest version of the program from CVS code
    2. prepare & copy all the files on the production servers
    3. run one or several scripts on the production servers installation install everything (for example it will run our "create view... "script via SQLPlus)."
    4. check if the installation goes very well
    5. put a label/sticker in CVS that this version of the specific program has been installed on the current date on the production system

    You can add things more if you want... of course not everything is automated on our site, for example the discoverer files are always born manually. But it is an action of time. If you make a minor change to the view of DB (not), then you must install the new version of the view only, but nothing should be done in discoverer with the folder.

    Well, I could go on for a long time explain the concept more... But meanwhile, I forgot already what was the initial problem :-D

    Best regards
    David.

  • Which is better: view or custom folder

    Hi all
    I work in Discoverer 10 g 2 and 10 gr 2 Oracle database.
    I developed a few business sectors and handed over to the company and the system works well.
    Now business wants a link or a feature that requires to connect 5 existing folders and this link will appear on the screen 7 items these records.
    As it is a complex join, I think to provide a custom folder with all elements of reaquired (which exist in those folders) in the tables that connects all these tables in a view.
    There are two ways to do:
    One, create a view in the database and map a simple folder to it.
    Two, create a cutom folder with the same query.
    I was wondering if a method is preferable on other maintenace point of view or any other consideration.
    There are no restrictions in our society to create new views. If I create a view, I grant all users the right to select on that. In the custom folder I need not to worry about privileges.
    I was reading another thread last: migrate folders customized views of the database which, in my view, that view is a better option.

    Please suggest.

    Thank you

    Published by: amar Sep 14, 2009 08:26

    Hello

    If you are able to create views this option is always better for complex joins. Dependencies are managed in the database and complex queries are stored in the database to which they belong.

    You don't need to select all your users privileges, because you should use database roles. You just need to grant the role of discoverer database selection.

    Rod West

  • With the help of interpreters and collect with sys datatype in custom folder

    I use the casting and collect functions and the datatype sys.odcivarchar2list sys in a custom in the discoverer admin folder.
    Select
    ...
    ,cast(collect(ppe) as sys.odcivarchar2list) AS "PPE"
    ...
    The SQL is valid, but the new item of PPE is not added to the list of available items in the folder. Is it because the discoverer does not recognize the data type? Is there a solution?

    The goal is to get a list of categories appear in a single column in the form of values separated by commas

    Of
    part ppe
    A1    hat
    A1    gloves
    A1    glasses
    TO
    part  ppe
    A1    hat,gloves,glasses
    I use the cast, to collect and datatype in Toad (RDBMS: 10.2.0.3.0) and SQL * Plus (version 10.1.0.4.2) but not in Discoverer Admin (10.1.2.48.18)

    -Tracy

    Hello

    Discoverer will not be able to cope with the odcivarchar2list data type. You will need to use a PL/SQL function or a group by to generate a list separated by commas in a VARCHAR2 column.

    Rod West

  • How to create a custom folder shortcut

    In the folder my documents, I created a new folder of element in which I have various things to help the new catalogue items as they come to my attention. Right now whenever I want to create a folder for a new article I have to click with the right button on the new folder, click on copy, move the cursor to a location on the desktop to any other folder, click on paste, do a right click on the newly created folder "copy a new item" click "Rename" and then rename the folder. How can I create a shortcut that will cut all right to a "copy of the new record" ready to be renamed? »

    There is no shortcut for this.  You can write your own script to do it, but otherwise your method just to copy the existing (duplication it) and naming then he is already the most quick manual solution.

  • Send Messages to the custom folder

    Hello

    I need to make a request that can record messages from that specific sender in the specific folder. Is this possible? If yes then how?

    I need advice with some snippet or link.

    Thank you

    http://www.BlackBerry.com/developers/docs/7.1.0api/NET/RIM/BlackBerry/API/mail/folder.html#deleteMes... Deletes the message from the record 1, http://www.blackberry.com/developers/docs/7.1.0api/net/rim/blackberry/api/mail/Folder.html#appendMes... add to folder 2.

    There is no method to move or copy.

  • Put the app icon in the custom folder

    Hi all

    I have a question on where the icon of the application is implemented. I use OS 5.0, BlackBerry JDE Plugin for Eclipse and after deployment of my application, the icon is placed in the download folder and it is not visible in the home screen. If I manually put the icon in the screen of the main menu, 1st place, I see the icon on the screen at the first position. Is there a way to automatically put the icon in this position? I saw the homescreen class, but I have not found any method to do this...

    Thanks in advance.

    Kind regards

    Gianni.

    lol the position is controlled by the theme (download folder is the default on most)

  • Folder redirection to a custom folder

    Can I redirect C:\folder with several clients at a location that is centralized on the server. If yes how?

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums:
  • where windows stores these custom folder icons?

    Can you help me?

    I use windows 7.

    When I create a new folder, I wish to customize its icon by clicking on the original yellow to the "icons of width Properties\Customize\Folder" and then clicking on the button 'change icon '.

    My question is: I like these icons, so I would like to know where the windows store?, in other words, I want to find a path of windows.

    Thank you very much!

    They are contained in:

    C:\Windows\System32\shell32.dll

    They are not individual icons within a folder

  • Custom folder settings (details, sort order, etc.) are not persisted

    Do not save the changes I make to my files. If I move the icons on my desktop, the next time I have to disconnect or reset, they're going to order by default/placement (is all concentrated at the top on the left side of the screen). If I change the "details" that appear in a certain folder, or view records or sort order, these details disappear the second I click the folder, click again it in the Navigation pane (or if I close the Windows Explorer window, and then open a new).

    Global settings (from the display of folders in the control panel option) are OK, it's just customizations to records that disappear.

    Is there a way I can force my folder for each folder customizations to persist?

    Compaq Presario CQ57 Notebook PC running Windows 7 Home Premium Service Pack 1.

    This type of problem with saving settings often indicates a corrupt user profile.  I suggest test you in a different user account (create one if necessary) and see if the same problem occurs or not.

  • Share a custom folder in VM Fusion 6 with Windows 7/Mavericks

    Hello

    I searched hard and not able to find what I'm looking for.

    Basically, I can't see how you can select specific folders on the side Mavericks and share them with windows 7, and I see how Desktop/Documents/downloads/movies/music/and photos can be mirrored. I would also be able to browse the windows from my mac side, ideally the entire C: drive, but I'd settle for being able to access specific folders that I can select colouring.

    Is this something that is possible, or can I do what I do, no matter what file I need to access the mac side must be moved there from Windows 7.

    Any help would be appreciated, thanks.

    Jason

    You will need enable folders in network inside the windows prompt (I fear I don't know how to do this), then connect to the network share on the side OSX in the finder.

  • Custom folder names import

    I've recently switched to Lightroom and I was wondering if it is possible to change the date format for the files used to inport. Ideally, I would like to use a structure like this:

    2012

    | _ 01 - Jan

    | _ 02 - Feb

    As far as I can see this is not possible with the buit - in import presets organized by date. Is it possible to customize these formats to add 2012/01 - Jan etc.?

    Norman put this in your TranslatedStrings.txt:

    "$$$/AgImportDialog/ShootArrangement_6/Template=%Y/%m - %b.

    ' $$$ / AgImportDialog/ShootArrangement_6/Label = by date: 2012/04 - Apr.

  • I need to put a custom in widows folder background 7 (was possible in XP)

    I use to have a Server Windows 2003 and XP clients, and it was good.

    I have the current setup, I use the server 2008R2 and Win7 enterprise.

    I need to find a way to put a visible brand in specific folders that are changed on request.

    It has been relatively easy in XP mode :) with a background of record.

    However, I do not find this option for Windows 7.

    Did you ever meet such a problem and can offer you a working solution

    Thanks in advance for your support

    Hello

    Thanks for posting the question on Microsoft Community.

    According to the description, it looks like you want to use a custom folder Windows Server 2008R2.

    As this problem is better suited in this Technet forum, I suggest you to save the query in the server instances.

    http://social.technet.Microsoft.com/forums/en/winservergen/threads

    Using the windows-related issues feel free to post on Microsoft Community.

Maybe you are looking for

  • Problem of overheating for Qosmio X 770 - 103 after installing Win 8

    Recently updated my material with a series of samsung SSD 840 and installed windows 8 pro (64-bit) (due to business needs). After you have installed windows 8 I ran Wizard upgrade toshiba, to get the drivers that I needed, the I updated my nvidia 320

  • iPhoto is closed

    It doesn't hurt when I want to add information about a picture, under EDIT. (iPhoto 9.4.3) I put the information located above the photo, then it's OK. Is it the way it should be done now?

  • What wireless network for Time Capsule backups?

    Just installed a new Capsule of time at home. The time Capsule is a wireless router, and I can connect all my devices wirelessly to the Network Time capsule wireless. I still 2 other active wireless networks because I use 2 additional wireless router

  • Code 31, ECS does not

    In Device Manager, under 6 to 4 cards network adapters does not properly because windows cannot load req were pilots. Code 31. same message two adapters. The most recent change is dial up internet broadband cable.

  • How do I get drivers

    I have HP Pavilion dv6-6b25tx Entertainment Notebook PC product number-B0N59PA #ACJ and I am using Windows 7-32 bit. I tried to download the latest drivers for my pc, but on the HP website driver for 64-bit are available, so what do I do?