Reg:Folder Source in Admin

Hi
I have a question, In a Business Area i want create two folders F1 and F2.
For F1 the source will be a database table on which i have logged on now.
My question is "Can i specify/select a table as source for folder F2 which is coming from different Database with some DB link in Discoverer ?" I am using 10.2.X.X version.
Any advice would be of great help.
Thanks in Advance.

Hi
There is a gotcha with this in that if there is a schema in the local database by the same name as the schema in the remote database you will not be able to import the definition for any of the remote objects. This is a known bug.
The workaround is as follows:
1. Create a dummy folder in your business area that points to a known object in the local database. Make sure also that you have only one item in the folder.
2. Determine the database link.
3. Determine the owner of the data.
4. If the owner’s schema does not exist in the local database, use Discoverer’s normal Import folder from database procedure.
5. If the owner’s schema does exist in the local database, continue from here.
6. Locate and click on the Dummy Folder heading.
7. Press CTRL-C.
8. Click on the business area heading.
9. Press CTRL-V to paste a new copy of the template.
10. Right-click on the copy; and from the pop-up list select Properties.
11. Rename the folder and give it a new identifier.
12. Click on <Default Database>.
13. The Choose Database and User dialog box will open.
14. Click anywhere in <Default Database> and from the drop-down list select the actual database that you want to use. The system will display a list of all users in the new database.
15. From the list of users, select the owner that you want to work with, and then click OK.
16. Discoverer will tell you the folder is invalid. When it displays the warning, click OK.
17. The Folder Properties dialog box will now have the Database and Owner properties populated.
18. Click in Object. Discoverer will display the Choose Table or View dialog box, with the Owner selected in step 15 highlighted.
19. Click the + key alongside the Owner. Discoverer will now display a list of all database tables and views owned by the user you selected.
20. From the list of objects, select the object you want to import, and then click OK.
21. The final settings on the Folder Properties dialog box should now have the correct settings.
22. Click OK.
23. Right-click on the new folder; and from the pop-up list select Refresh.
24. As you only have one option, click Finish.
25. Discoverer will now import the new data definitions and present you with a Refresh screen.
26. The origina named item in your folder may or may not be available. If it exists in the new table you are fine. If it does not exist you will see it flagged as being unavailable. If Discoverer does flag it as being unavailable you need to check the box alongside.
27. To complete the refresh, click OK. Discoverer will refresh the folder and it will now be available for use within your business area.
I hope this helps
Best wishes
Michael Armstrong-Smith
URL: http://learndiscoverer.com
Blog: http://learndiscoverer.blogspot.com

Similar Messages

  • Can't delete a file or folde after using admin. password.

    Can't delete a file or folder after using admin. password.

    Solving Trash Problems...
    http://thexlab.com/faqs/trash.html

  • Change name on "Home" folder or new admin

    I just got a Mac at ABT Electronics and it was a open box return with the old OSX on it so they instaled it for me. But since it wasnt purchased by me they got all the names wrong. I want to change the home name but I cant find a way. Would it be easier to just get a whole new admin account and delete this one?

    Hi There
    I suggest creating a new admin user and deleting the current one as changing the name can cause erratic behaviour, just make sure to move any important files over to the new admin user before deleting the current one.
    I also suggest creating a standard account to be used for everyday computing eg. checking email, web browsing etc. and just using the Admin account to install software and updates. This also adds an extra layer of security to your machine.
    Hope this helps
    J.C

  • Reg- Folder in ABAP Webdynpro

    Hi Experts,
        I Need to create Folder in View.How 2 create older in Webdynpro.
       My Req is Once select file and Upload mean it will stored in Particular folder.At any time we can see that file.
    Regards:
    Prabu

    HI,
    I would suggest you to follow this approach :
    1. Create a Table in your View in which FileUpload is there.
    2. Populate this value with valid file extension.
    3. Make it invisible by default.
    4. Now when you have entered value in Fileupload and click on Ok button.
    5. Check whether Mimetype matches any value in Table.
    6. If it is invalid, Throw an error message and mke Table of Valid extension Visible.
    Sample code to have Table with Valid entries.
    types : begin of str,
                 valid_ext type string,
             end of str.
    data : wa type str,
              itab type table of str.
    wa-valid_Ext = 'EXL'.
    append wa to itab.
    wa-valid_ext = 'DOC'.
    append wa to itab.
    lo_nd->bind_Table( itab ).
    here lo_nd is your ref to node of Table having valid extensions.
    7. Bind this Table's Visible property wiht wdui_visiblity .
    8. Set it Visible - 02 , Inviisible - 01.
    I hope it is clear.

  • Lightroom recognition of folder source

    Recently I copied a large number of TIF and JPEG photos from 6 different EHDs into my HP Personal EHD that slips easily into the computer bay. In this way I had hoped to have all of these phtotos easily accessible and recognizable using LR 2.1 rather than having them reported as "photo missing or offline." I then started trying to import them into LR so that LR would know that those files were on this drive. But I continue to get the comment that "this file is already in a catalog" and yet when I try to have LR import it from this drive I get blanks and comments "image is missing or offline." If I right click on a missing image or folder I do not get an option to find the missing folder or photo. So what do I do to get LR to recognize that all of these folders and photos are now in one HD?

    No, I never did get a response. I did learn that I had to import each
    folder from the EHD into LR and ultimately they were all recognized.
    jdm

  • How to Pass Multiple Parameter to Discoverer Custom Folder Created in Admin

    Hi,
    I have done as describe in doc id (metalink) note 304192.1 and it's ok.
    Now, my scope is to use the parameter declared in SETPARAMS not with the "=" condition but with "IN CLAUSE" (multipe values).
    for example (SQL Inspector):
    SELECT i106116 as E106116,i106117 as E106117,SUM(i106118) as E106118_SUM
    FROM ( SELECT DS_COMMESSA AS i106116, DS_SCENARIO AS i106117, DS_VALUE AS i106118 FROM (select ds_commessa, ds_scenario, DS_VALUE
    from dw_ods.ods_mbo_commessa
    where DS_TIPO_COSTO='COSTI MEDI'
    and ds_label='DIR'
    and cd_scenario in (1,2)
    and ds_commessa IN DW_ODS.SETPARAM.GET_PARAM1
    union all
    select 'Totale' as ds_commessa, ds_scenario, sum(DS_VALUE)
    from dw_ods.ods_mbo_commessa
    where DS_TIPO_COSTO='COSTI MEDI'
    and ds_label='DIR'
    and cd_scenario in (1)
    and ds_commessa IN DW_ODS.SETPARAM.GET_PARAM1
    group by ds_scenario
    ) CUO106102 ) o106102
    WHERE (1 IN (DW_ODS.SETPARAM.SET_PARAM1(:"Commessa")))
    GROUP BY i106116, i106117;
    where the parameter "commessa" is used with "IN" operator.
    Also tried to modifiy the SET_PARAM1 and GET_PARAM1 in order to use a "table of varchar2" ... but with no succes.
    Help please

    Rod,
    for the first "problem" I find the solution on metalink (note 304192.1) and works fine (also combining SET and GET together)... otherwise I don't know how use this "workaround"...
    for the multiple values on a single parameter (for example: Month='Jan,'Feb') I have tried to understand how DISCO pass these values to the SET function (I suppose like an array of varchar2) but don't work. After the first values (Jan) the reports stop... The problem in not how stored the values but understan how DISCO "pass/manage" these values (Jan,Feb)... Can u help me?
    my actual SETPARAMS package body is (like metalink):
    CREATE OR REPLACE PACKAGE BODY SETPARAM AS
    FUNCTION SET_PARAM1(P1 IN VARCHAR2) RETURN NUMBER IS
    BEGIN
    param1 := P1;
    return 1;
    END;
    FUNCTION GET_PARAM1 RETURN VARCHAR2 AS
    BEGIN
    return param1;
    END;
    FUNCTION SET_PARAM_MBO(p_anno IN VARCHAR2) RETURN NUMBER IS
    BEGIN
    anno := p_anno;
    return 1;
    END;
    FUNCTION GET_PARAM_MBO RETURN VARCHAR2 AS
    BEGIN
    return anno;
    END;
    END SETPARAM;
    ----------------------------------------------------------------------

  • In Windows 8, where does sources \ etwproviders folder locate ?

    In my windows 8 notebook,  I accidentally move a folder  sources\etwproviders (which is actually an empty folder) to my deaktop. I don't know where to move it back. Could someone advise me what to do ?   Thank you much. 

    While I can't provide definitive answer, recommend searching around
    Windows Deployment with the Windows ADK
    http://technet.microsoft.com/en-us/library/hh824947.aspx
    The proposed answer of C:\sources\etwproviders may be incorrect.  For one, using Administrative Command Prompt, and running (type and enter)
    echo %SYSTEMROOT% is believed to give the location of the "root of the Windows system folder".  On my machine with Windows 8.1, this gave
    C:\windows.
    (Running the command echo %WINDIR% gave the same result.) 
    C:\Windows\WinSxS\FileMaps contains two files whose names begin with
    sources_etwproviders ... and sources_etwproviders_en-us ..., but I don't know how to use these files.  My reply should be more of a question since I am looking for the correct answer also.
    [email protected]

  • Why do I get timeout when deploying SQL Server data source in Weblogic Admin Console?

    Hi all
    I'm attempting connectivity between WLS 10.3.6.0 and SQL Server 2008R. I've downloaded sqljdbc4.jar and added to the end of the Weblogic Classpath in commEnv.cmd. Then I set up a data source in Admin Console and pressed the Test Data Source button - success. But when I tick the box to deploy to AdminServer it hangs for ages and I get timeout exception.
    Any ideas?
    Many thanks
    James

    Make sure the web server settings between the QA and the Production servers are also compatible.
    I suspect your suspecion about permissions is the closest to the answer.  But this is a little out of my depth of expertise.
    Realize that ColdFusion default behavior is to NOT generate and actual swf FILE.  Rather what it does is generate the swf content in memory and directly deliver it to the client.  But if the web server is configured to look for an actual file system file you may have a clash going on

  • "ADMINI~1" folder left behind

    I use MDT 2013 to build reference images, and SCCM to deploy them, as I'm sure most people do. I get a folder left behind in the Users folder: C:\users\ADMINI~1\AppData\Local\Temp. The folder is empty, so I'm not sure how to figure out how to find what's
    leaving it there. I've seen other folders where a Java log file is left behind, but no such luck with me.
    It's happened with a Windows 7 image, as well as a Windows 8.1 image.

    Hi,
    Here is a workaround:
    Manually running sysprep.
    Booting into a WinPE environment.
    Capturing a WIM using imageX.
    Reference.
    Windows 7 Temp folder within capture
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/9bb435c8-07dd-4ca7-979e-3eb9a6237522/windows-7-temp-folder-within-capture?forum=configmgrosd
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Creating a reports folder that's only visible to the Admin role

    Hi all,
    I want to create a new Shared Custom Analyses folder to contain Admin reports. I need to make this folder only visible to users with the Administator role. But you can't seem to add the Admin role when setting up User Visibility to Shared Report Folders. Help says that it's because the Admin role has visibility to all folders.
    I understand this - but how can you resrict access to a reports folder to just the Admin role (ie. it should not be visible to other roles)??
    Many thanks.

    You will need to assign all the other folders to rest of the roles.This would be the only way so that your required folder access is given only to admin and not to other users.
    -MR

  • Local admin user's folder damaged / missing on 10.4.2 server

    my admin account on my 10.4.2 server cropped up a new problem over the weekend. The user folder is missing or damaged, so upon login, i get a default dock et al, and a warning that the folder in /users/admin can't be found. If I look there in the finder, it lists it, with no icon, no contents, messed up ownership, etc. Any idea how I can fix this?? My client is a bit worried about their server due to this. thanks! Running disk utility and repairing permissions didn't help.
    [email protected]
    Dual 2 GHz G5   Mac OS X (10.4.2)  

    Again... never got a response.

  • Unable to refresh SQL Server data source through Data Management Gateway

    I just installed the version 1.1.5226.8 of Data Management Gateway and tried to refresh a simple query on a table connected to SQL Server, with no transformations in Power Query.
    This is the error I obtain:
    Errors in the high-level relational engine. The following exception occurred while the managed IDataReader interface was being used: transfer service job status is invalid.
    I am wondering whether my Power BI is still not updated to handle such a connection type, or there could be something else not working?
    I correctly created the data source in admin panel following instructions in Release Notes, and
    test Power Query connection is ok.
    Marco Russo http://www.sqlbi.com http://www.powerpivotworkshop.com http://sqlblog.com/blogs/marco_russo

    I made other tests and I found important information (maybe there is a bug, but read the following).
    The functions DateTime.LocalNow and DateTime.FixedLocalNow
    work correctly, generating these statements to SQL Server:
        convert(datetime2, '2014-05-03 06:37:52.1135108') as [LocalNow],
        convert(datetime2, '2014-05-03 06:37:52.0525061') as [FixedLocalNow],
    The functions DateTimeZone.FixedLocalNow, DateTimeZone.FixedUtcNow,
    DateTimeZone.LocalNow, and DateTimeZone.UtcNow
    stop the scheduled refresh with the error I mentioned
    in my previous messages, generating these statements to SQL Server:
        '2014-05-03 06:37:52.0525061+02:00' as [TZFixedLocalNow],
        '2014-05-03 04:37:52.0525061+00:00' as [TZFixedUtcNow],
        '2014-05-03 06:37:52.1135108+02:00' as [TZLocalNow],
        '2014-05-03 04:37:52.1135108+00:00' as [TZUtcNow]
    I solved the issue by placing the DateTimeZone calls after a Table.Buffer call, so query folding does not translate in SQL these functions. However, it seems like something to fix.
    Marco Russo http://www.sqlbi.com http://www.powerpivotworkshop.com http://sqlblog.com/blogs/marco_russo

  • Dynamic data source

    everybody please help me.
    I want to create a data source without Admin Tool and I don't
    use lib folder in WEB-INF/lib
    please help me.
    thanks

    thank you for your reply
    but I don't have permission to access to Admin Tool.
    Do you have a sample code to connect to MS Access by using
    CFCs without using Data source in Admin Tool?
    Thanks.

  • Not able to import metadata using BI Admin tool

    Hi folks,
    I've installed OBIEE 11g server(Version 11.1.1.6.0) in my local machine which is lying on Windows 7 environment. Tried importing metadata(Oracle Database) using BI Admin tool, it throws "The Connection has failed" error.
    I've copied TNSNAMES.ora file to the path D:\Oracle\Middleware\Oracle_BI1\network\admin and D:\Oracle\Middleware\oracle_common\network\admin(In D:\Oracle\Middleware\oracle_common\network, admin was not there, I've created a new folder with name admin and placed the TNSNAMES.ora file over there).
    Have modified the user.cmd and bi_init.cmd files in the below path D:\Oracle\Middleware\instances\instance1\bifoundation\OracleBIApplication\coreapplication\setup
    Any help would be appreciated
    Regards,
    Arun

    Hi,
    The problem was your tnsnames.ora file your not please in the right path.
    Check this steps:
    Copy the tnsnames.ora from Oracle Database home (ORACLE_HOME\NETWORK\ADMIN\) to the following locations.
    Step 1 - <obiee11g_home>\OracleBI1\network\admin
    Step 2 - <obiee11g_home>\oracle_common\network\admin
    Set the TNS_ADMIN environment variable value with one of the copied locations in the step 1 in user.cmd or user.sh file depending on your OS.
    This file will be found under <obiee11g_home>\instances\instance1\bifoundation\OracleBIApplication\coreapplication\setup
    Solution:
    Copy the tnsnames.ora from Oracle Database home (ORACLE_HOME\NETWORK\ADMIN\) to the following locations.
    Step 1 - <obiee11g_home>\OracleBI1\network\admin
    Set the TNS_ADMIN environment variable value with one of the copied locations in the step 1 in user.cmd or user.sh file depending on your OS.
    This file will be found under <obiee11g_home>\instances\instance1\bifoundation\OracleBIApplication\coreapplication\setup
    Run User.cmd or User.sh
    Recheck below steps also.
    ORACLE FOLDER
    C:\Oracle\product\11.2.0\client_1\network\admin\sample
    We have tnsnames.ora file in this oracle folder coppy that and save it in
    C:\Oracle\product\11.2.0\client_1\network\admin
    Tnsnames.ora
    This tnsname.ora file should contain the details of
    Data Source name – ORCL
    Host name – xxxx.xxxxxx.com
    Portno - 1531 (This port no is default port in oracle)
    Service Name – ORCL
    OBIEE FOLDER
    C:\OBIEE\oraclebi\orainst\config\OracleBIServerComponent\coreapplication
    Tnsname.ora (need to have this file in the above path which is same in ORACLE FOLDER)
    GOTO – Start – Control panel – Administrative Tool – Data Source(ODBC) in this
    1. Goto System DSN tab
    2. Select Add at right side
    3. A new pop-up window opens – ‘Create New Data Source’
    4. Select from the list – Oracle in OraClient11g_Home
    5. A pop-up window opens –‘Oracle ODBC Driver Configaration’ in that
    6. Data Source name – Mandatory (You can give any name) e.g –ORACLE DSN
    7. Description – Optional (you can give r leave it blank).
    8. TNS Service Name – HOST:PORT/Data Source Name e.g –xxxx.xxxxxxx.com:1531/ORCL (xxxx.xxxxxx.com may be IP Address also)
    9. User ID – Give Database USERID (If you are going to take data from SERVER you have to give Server Data Base USER ID / If you are going to take data from Local Machine use your Local machine database User id ) e.g –USER id – ‘system’ where password is – ‘Manager’
    Note: If still not yer resloved Please read below threds.
    Re: Error in Importing Metadata in OBIEE 11G
    [46028] Unable to get the DLL path for the CLI xx from the NQSConfig.ini
    Award points it is useful.
    Thanks,
    satya

  • Mapping of logical resource-name to absolute jndi-name for data source

    Hi,
    I am using SJS AS 8.1. I do a lookup for datasource using logical name specified in ejb-jar.xml using resource-ref element as below :
    <resource-ref>
            <res-ref-name>jdbc/db-resource</res-ref-name>
            <res-type>javax.sql.DataSource</res-type>
            <res-auth>Container</res-auth>
            <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>jdbc/db-resource is mapped to absolute jndi name 'jdbc/jndi-db-resource' in sun-ejb-jar.xml as below :
    <resource-ref>
            <res-ref-name>jdbc/db-resource</res-ref-name>
            <jndi-name>jdbc/jndi-db-resource</jndi-name>
    </resource-ref>I have configued data source using admin GUI with JNDI name jdbc/jndi-db-resource. When I do a look up of datasource as below :
    initalContext.lookup("jdbc/db-resource"); from the EJB I get NameNotFoundException. How do I configure logical datasource name using admin GUI ?
    Thanks,
    Manisha.

    Hi Manisha,
    When doing a lookup of standard j2ee connection factories like jms or jdbc "java:comp/env" need to be prefixed.
    initalContext.lookup("jdbc/db-resource");
    need to be
    initalContext.lookup("java:comp/env/jdbc/db-resource");
    For more information :
    http://docs.sun.com/source/819-0079/dgjndi.html#wp24616
    Thanks,
    -Jagadish

Maybe you are looking for