Template Datafile Location issue

Hello,
I previously created a new database template based on an existing database. I later deleted this template i created. Now when i attempt to create a new database with the DBCA using ANY template, i.e. General Purpose etc, i receive a DBCA screen that was not displayed before.
The screen is labelled; Template Datafile Location
It gives the following message:
The template datafile “{ORACLE_HOME}\assistants\dbca\templates\Data_Warehouse.dfj” specified in the template doesn’t exist. Specify new location of the template datafile:
I looked in the registry and made sure the parameter for {ORACLE_HOME} is the same as the location of the 'assistants' folder.
The template files currently in the “{ORACLE_HOME}\assistants\dbca\templates\ location are;
Data_Warehouse.dbc
General_Purpose.dbc
New_Database.dbt
Transaction_Processing.dbc
Transaction_Processing.dfj
Any useful advice would be appreciated. Thank you

Hello,
My mistake, the files are *.dfj as you say.
I am using Oracle 9i on a Windows server. I will look into the files on the disks and i will check if any of my colleagues have these files in thier systems too.
Thanks again.
I don't know what may have occurred to delete them!!!

Similar Messages

  • Adobe Reader X save location issue

    Hi All, i would like to seek expert helps on Adobe Reader save location issues. After we upgrade from Adobe Reader 9 to Adobe Reader X.
    There are changes on how save location works in Adobe Reader X
    If save PDF via Internet Explorer – the save location will according to last save location, HOWEVER
    If save PDF via Adobe Reader X – the save location will set according to location the file is being open
    Let me show you what i mean over the pictures
    I open a reader_X_help.pdf using Adobe Reader X and then save the file using Ctrl+Shift+S at: C:\Users\xxxx\Documents\My last location save
    refer my last save location.jpg
    Now i want to save another new file back to C:\Users\xxxx\Documents\My last location save, I open the file Adobe file2.pdf located at desktop and when i do Ctrl+Shift+S, the location point to my desktop and not C:\Users\xxxx\Documents\My last location save
    refer my last save location change to desktop.jpg
    I have tested this features in Adobe Reader 9 and it's different whereby it's will point according to my last location save.
    There is no issue with computer as i have 3 machine running different enviroment, Windows XP SP3, Windows 7 Enterprise, and all using same version of Adobe Reader X version 10.0.1.
    So my questions & concern:
    Is there any way to change the save location features same as Adobe Reader 9?
    If YES, how to do it? By Computer Changes or Adobe Reader X packages modification using Adobe Customization tools?
    If NO, Where can i find this source of documentation stated about this new changes so i can publish this information in HP website as new design changes to avoid complaint or negative feedback.
    Looking forward for expert reply as soon.
    Thank you very much and Have a great day.
    Best Regards
    Edmund Lau
    [email address removed by host]

    Solved it!
    1-go to "edit", select Preferences.
    2-select from the left pane: Security (enhanced)
    3-click on "add folder path" button just below the big white box
    4-pick a folder of your choice and click "ok". (your selected folder path will appear in that white box above the "add folder path" button in step 3)
    5-if you want to add additional folders, just repeat steps 3 & 4
    6-once you are done, click "ok" on the preferences screen and click "ok" again to accept the changes.
    Yes, it seems illogical, but it worked.
    I tested by closing the Reader (X), then surfed the web and did what Neher5 was explaining he/she wanted to do just after opening a pdf from a website and lo-and-behold,  it worked!. No more "save to temp folder" issues.
    Hope this helps.

  • Callmanager Conferencing with remote locations Issue

    I am new to using callmanager, and I need a little help.
    I have created a meet me number on my callmanager. Once a session is begun, all local network users are able to join the conference call with no problems..
    If a remote location hosts a meet me call, all my local network users are able to join THAT session with no problems as well.
    But if I host a meet me session on MY local network, remote locations CANNOT reach my session. The line remains silent when they dial in.
    I've been told to check the codecs which seem fine and we are checking for a firewall issue, but all normal calls local and remote work just fine. It's only the conference bridging that causes issues.
    Please help.
    Thanks

    Hello,
    Thank you very much for replying.
    The configurations, I've been told, are correct. G711 for intrasite and G729 for intersite. And region and device pools correct as well.
    I presented the HW conf bridge solution to a coworker who said it makes sense, but at this time, I don't have access to a hardware conference bridge. Is this the only solution? 
    From: prbt
    To: Nichole Ketchum
    Sent: Wednesday, August 3, 2011 1:54 PM
    Subject: - Re: Callmanager Conferencing with remote locations Issue
    Cisco Support Community
    Re: Callmanager Conferencing with remote locations Issue created by Priya B.T in Unified Communications Applications - View the full discussion
    hi,
    please check the following on the call manager,
    -  Check the region configuration on each device pool.
    -  Then check the region configuration between the two regions.
    -  One of the best practices followed by Cisco is, the intrasite region settings should be g711.
    -  And the region settings between inter site should be g729.
    -  G729 is not supported by software conference bridge, it is only supported by hardware conference bridge.
    -  So add the hardware conference bridge to the MRGL of the phone.
    -  And the hardware conference bridge has to be first in the list, that is before the software conference bridge.
    please let me know if this helps or we can do further trouble shooting on this issue.
    Reply to this message by going to Cisco Support Community
    Start a new discussion in Unified Communications Applications at Cisco Support Community

  • Datafile location migration

    Due to lack of space that may happen in next few months I have to move oradata(datafiles) to different disc subsystem(partition). Is there manual on how to do it properly?
    Thanks to all replies!!
    Edited by: gracic on Nov 10, 2008 3:30 PM

    For UNDO tablespace you can create a new undo tablespace with datafiles on new location and drop the old one but since you have to restart database to change system datafile location, you can do it with system tablespace,
    basic steps are:
    Connect as SYS DBA with CONNECT / AS SYSDBA.
    Shutdown the database instance SHUTDOWN immiediate.
    Rename or/and move the datafiles at OS level.
    Start Oracle database with STARTUP MOUNT.
    ALTER DATABASE RENAME FILE ‘<original datafile name>’ TO ‘<new datafile name>’;
    Open Oracle database instance ALTER DATABASE OPEN.

  • Change datafile locations

    How to change datafile locations through RMAN.
    D:\user.dbf
    I want to move it to E drive. So first i copy the datafile to E drive then how i updated controlfile for new datafile location. Please guide me.
    Thanks

    change datafile locations You can do it when the Database is open...for this the tablespace must be in read only.
    For this first you need to move the tablespace to read only - as the database is open...
    ALTER TABLESPACE current_tablespace read only;
    copy the datafiles to the new location.
    Take the current_tablespace offline
    ALTER TABLESPACE current_tablespace offline;
    SQL> ALTER DATABASE RENAME FILE
    2 'd:/user.dbf'
    3 TO
    4 'e:/user.dbf';
    SQL> ALTER TABLESPACE current_tablespace online;
    and then make it online
    SQL>alter tablespace current_tablespace read write;
    If you want to check the status - i mean
    how i updated controlfile for new datafile locationsql>alter database backup controlfile to trace;
    This syntax produce a readable copy of the contents of your controlfile which will be in user_dump_dest.
    And dont forget to remove the datafiles from the old location using OS commands...

  • How can I set the workgroup templates file location in Office 2013 to point at a folder stored on Sharepoint (2010/2013)?

    Hi All,
    Been doing quite a bit of research on this but drawn nothing but blanks or alternative suggestions, none of which are viable.
    So the outline of the issue:
    Deploying Office 2013 suite to organisation and wanting to have custom templates available for users to choose from, but want those templates to be centrally stored and managed on a SharePoint site. 
    In Word 2013, for example, when you create a new document, you are presented with a page to choose from 'Featured' templates (or blank document)
    So, if you wanted to have custom corporate templates, you could modify the file location for work group templates, thus creating a Custom Office Templates folder locally on your PC. 
    Great. This means when you select 'New' in Word 2013 you can pick from the 'Featured' templates, or the 'Personal' templates area.
    However, I have a collection of test corporate templates (for Word, Excel, PowerPoint etc). These are stored on a SharePoint site internally. 
    If I try to modify the work group templates location in Word 2013 to point towards my SharePoint site (or any HTTP address for that matter) it won't work.
    I know that I could point it towards a Network Share location instead, but I don't want to do that. 
    Is there any way of getting it to point towards a SharePoint site, any way of modifying it? Or perhaps an even better solution that I could use? 
    Any help, thoughts or ideas would be massively appreciated! And forgive me if any of my logic is off, but it does seem like this should be a straight forward thing to do given that Office and SharePoint are both developed by Microsoft and you
    would like to think they would inherently have better links!
    NOTE: Going to Office 365 is also not an option either!
    Eagerly awaiting an answer from someone incredibly clever!

    Hi Tony, 
    Thanks for your response but this is not what I was looking for. 
    Those articles relate to setting a default template in a SharePoint document or form library.
    I will try to be more concise.
    What I want is:
    (1) For users to be able to load MS Word 2013 on their laptops/desktops (connected to corporate Wireless/LAN)
    (2) Once they have opened MS Word 2013, I want them to be able to choose a template from the welcome screen. (There are MS Word Defaults like 'Blank Document' or 'Cover Letter' etc)
    I want to add a second tab which is called 'Personal' or 'Corporate'.
    (3) MS Word 2013 allows you to create custom WORD templates and save them locally on your machine (either in the default location for templates, or a user-specified custom location (e.g. My Documents, Desktop etc).
    (4) In advanced settings, there is an option to modify file locations. This is where you can point MS Word 2013 towards the folder (locally) that contains the personal templates that you have designed which you want to use.
    (5) QUESTION: Is there a way to have lots of corporate WORD templates (perhaps one for Marketing, Sales, Procurement, Project etc) - Basically LOTS of different templates all stored in one location on SHAREPOINT, or in a SharePoint document
    library. THEN... once those templates (documents) are stored on SharePoint,
    IS THERE A WAY to go back into the advanced settings within MS WORD 2013 and modify the file location for templates so that it points towards the SharePoint document library? 
    I want all the templates to open in MS Word 2013, not within a browser, and I don't want users to have to go to SharePoint to find a template, I want it to be integrated into their local MS Word 2013 so they can choose a corporate template the moment they
    load up MS Word 2013.
    When I have tried to modify the custom file location for templates, I can only set it to an address locally on my machine, or a network address (mapped network drive). 
    However, I do not want the templates to be stored on a shared network folder, I want them to be in a SharePoint Document Library. 
    The issue I have found is that I cannot enter a SharePoint Library URL as my file location, nor can I enter any HTTP address. 
    IS THERE A WAY AROUND THIS? 

  • Mc.9 Multiple storage location issues

    Hi,
    I am fetching data from mc.9 in my program but if the use enter multiple storage  in selection only 1st value is printed following is code and how will i come to know which material is for which storage location since mc.9 data is not getting stored anywhere
    SELECT-OPTIONS : SLOC LIKE S031-LGORT.
    SUBMIT RMCB0300 WITH SL_WERKS-LOW = PLNT
                        WITH SL_LGORT IN SLOC
                      WITH SL_MTART = 'HALB' WITH SL_MTART = 'VERP'
                        WITH SL_MTART = 'ROH' WITH SL_MTART = 'FERT'
                        WITH SL_SPMON-LOW = FPERIOD
                        WITH SLV_NO = 'STK'
                        WITH SL_SPMON-HIGH = FPERIOD EXPORTING LIST TO MEMORY AND RETURN.
    while append to internal table  even if i specify both high and low value it prints low and high incorrectly how will this problem will solved
    itab-lgort = sloc-low.
    Help required for same.
    Thanks
    Shruti

    Hi Shruti,
    I simulated the code given by you and all the storage locations are being populated in the backed.
    You can check this by putting a breakpoint at the below code in RMCB0300 and checking the value of sl_lgort[]. You will receive the number of SLOC inputs provided.
    AT SELECTION-SCREEN OUTPUT.
      FLG_FOUND = FALSE.
      PERFORM SPEZIAL_AT_SELECTION_SCREEN_O IN PROGRAM (LIS_PROGNAME)
                                            CHANGING FLG_FOUND
                                            IF FOUND.
    This is a data issue and you may not have any records for the selected input.
    Regards,
    Jovito.
    Edited by: dsouzajovito on Dec 29, 2010 5:56 AM

  • RTF Template Blank Spaces Issue

    Hi,
    I have one issue in the RTF File. I have developed templates for the dunning letter report.
    If i have only one line in the main body table and below this table i have some contents information for the customer to print in the report. The issue is there is blank spaces between the table and the contents when i am printing one or two invoices in the report.
    I want to remove this blank spaces and bring the contents information to print just below the table even it is sinle report or many records in the report.
    please guide me if any one come accross with this issue.
    with regards
    Ram

    Hi,
    Make sure there are no spaces before/after your form fields - put them on their own line with no spaces in between. On their own line they don't generate an extra line.
    If you are still having problems email me the xml and rtf ggr888 [AT] gmail [D0T] com
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • 4.2.2 upgrade from 4.1 and images location issue

    I've just upgraded from 4.1 to 4.2.2, and am having an issue with the referenced location of the images directory (/i/) resources. I am running apex listener on weblogic server, and have copied the new images into the i.war that I use. I have an unusual reverse proxy situation where my base URL includes a path, i.e., https://www.my.website.com/mysite/ is the URL that the proxy returns to the user, so my APEX addresses look like https://www.my.website.com/mysite/apex/f?101:1:::::, and my image directory references get put together like https://www.my.website.com/mysite/i/image.jpg.
    However, with the upgrade, one of the things that popped up was all of the datepickers in my application were changed to classic datepickers, which worked and displayed fine. When I change them to the new datepicker, the small calendar image doesn't show next to the field (red x), and when I look at the properties of the image, it's URL is https://www.mywebsite.com/i/asfdcldr.gif (no "/mysite/" path offset). ALL of the other images directory references seem fine, but not this. Has 4.2.2 changed how it composed the #HOST# when it's generating these new controls (same result when I make a datepicker from scratch)? Why do all of my other images directory references work? The only other problem that I'm seeing is that my charts no longer work, either. I used to have to hardcode my URL into the XML of the charts for them to work, but I don't see the URL referenced in the code anymore. Not sure if that's related, but that has always been an issue with my reverse proxy situation (I don't control the proxy server).
    Thanks in advance for any light anyone can shed on this,
    -warren

    Hi Warren,
    +> The only other problem that I'm seeing is that my charts no longer work, either. I used to have to hardcode my URL into the XML of the charts for them to work, but I don't see the URL referenced in the code anymore. Not sure if that's related, but that has always been an issue with my reverse proxy situation (I don't control the proxy server).+
    With APEX 4.2, we've changed how charts are initialized to be JavaScript only, and as part of the changes, we no longer expose the region source for charts. See *4.8 Updated AnyChart Flash Charts* in the APEX 4.2 Release Notes, here: http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35121/toc.htm#CACEJBCD. So it's no longer feasible to hardcode a reference to your URL in the region source for a chart. If you have a reverse proxy, the CGI environment variables REQUEST_PROTOCOL, HTTP_HOST, SERVER_PORT, and SCRIPT_NAME, have to be correctly set to the public facing web server and not to the internal forwarding connection. If you execute the following query in SQL Workshop on your APEX instance, do you see the settings for the public facing web server?
    select owa_util.get_cgi_env('REQUEST_PROTOCOL'), owa_util.get_cgi_env('HTTP_HOST'), owa_util.get_cgi_env('SERVER_PORT'), owa_util.get_cgi_env('SCRIPT_NAME') from dual;Regards,
    Hilary

  • Oracle Database VM Template - too many issues

    Just wanted to offer my experience with the Oracle VM Template, specifically for 64-bit Oracle Database 11g (11.1). We decided to try out Oracle VM and the templates on a new server, we thought the promise of the templates could drastically decrease our time spent installing and setting up new boxes.
    Setting up the template and getting it running was a breeze, although Oracle could have better documented things. Some passwords and important steps were left out that I had to figure out after the fact.
    The real nightmare is the Oracle database installation it comes with. I guess they call this an OEM installation - but it's complete crap. Nothing really works like it should, and I found it to be a lost-cause trying to get it to work after awhile. Enterprise Manager comes disabled - what kind of database installation is this without enterprise manager? I guess they think everyone is using Grid Control - although I'm not even convinced Grid Control would have worked with all the issues going on.
    I spent a day trying configure the installation to get things working, then realized packages were missing, needed for anything other than the database engine to run, due to the stripped version of oracle linux the template uses.
    None of this was documented or explained at all. There's nothing on metalink..pretty much nothing. If you want a simple database that you can connect to and run sql queries through sql plus, this might just work. But it's far from a typical production setup. I would steer clear of this.

    Hi there,
    VPD (Virtual Private Database) is a feature of the Oracle Enterprise Edition:
    http://www.oracle.com/technology/deploy/security/database-security/virtual-private-database/index.html
    It's in the dbms_rls package.
    HTH, Peter

  • Having window location issues when waking from sleep

    Since upgrading to Mavericks, sometimes when my Mini wakes from sleep the application windows are located off screen. At first I would quit and reopen most of the applications affected (especially FileMaker), but I find I can bring the windows back within view by going to Displays in System Preferences, changing the rotation, then cancelling after the redraw. My monitor is a BenQ GW2450H, but it doesn't seem like this is a monitor issue (no problems in System 10.7).

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and Wi-Fi on certain models.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Acrobat 7 open file locations issue

    Using Adobe Acrobat 7.  When trying to open the file from a drive the message,  "There was an error opening this document. Path does not exist." appears.  I can open it fine from the C:. None of the other drives show under File/Open.  Using Windows 7 (I know this causes compatibility issues).  Any idea why the locations won't show?

    Are there any characters outside the normal English character set in any of the directory names on the drive (e.g. accented letters)?

  • Web Template Nav Block issue with a characteristic

    Hi folks,
    We have an issue with one of our web templates. In one of the navigation blocks there are some characteristics, for example, some are like as below.
    G/L Account
    Asset
    Cost Center
    Order
    Network
    WBS Element
    Cost Center (Accoung string -correct object)
    Sales document
    The second object from bottom supposed to show as 'Account String' since the char is accounting string itself, insted, it is showing as Cost Center which is not correct.
    The web template has 'personalization' checked.  It is based on a BEx query.
    This issue is happening with one user id. For other users (using their logon credentials), it is showing correctly.
    I really appreciate any inputs.
    Thanks.
    G.

    Suman,
    The parameter ID column is blank for this user.
    However, the same query displays same for other users.
    By the way, we are on BW 3.5 now.
    Thanks for your input.
    RK

  • Could not retrieve Enterprise Global Template - Load balancer issue

    Hi,
    We have 4 Project Server 2010 servers. The 4 web servers are load balanced by networking team with sticky session configured.
    When we try to connect to the Project Server using MPP 2007 SP2, it fails saying 'Could not retrieve Enterprise Global template'. It works perfect when we point to a specific server by specifying the IP address for server name in the 'hosts'
    file.
    Earlier we observed some errors in the event viewer related to the SharePoint's internal load balancer for which restarted the 'Project Server Application' on each web server and it got fixed.
    Now, the only entries that we see related to load balancer are as mentioned below as Information (not errors).
    SharePoint Web Services Round Robin Service Load Balancer Event: Initialization
    Process Name: w3wp
    Process ID: 15080
    AppDomain Name: /LM/W3SVC/539065287/ROOT-1-130462463500778047
    AppDomain ID: 2
    Service Application Uri: urn:schemas-microsoft-com:sharepoint:service:ae7c7ee5c09b4e8198bdbb1ecb8c1c1b#authority=urn:uuid:9f626d347784423eb14bde4a1f4d13fc&authority=https://lonms12546:32844/Topology/topology.svc
    Active Endpoints: 4
    Failed Endpoints:0
    Endpoint List:
    http://lonxxx2532:32843/ae7c7ee5c09b4e8198bdbb1ecb8c1c1b/PSI
    http://lonxxx2545:32843/ae7c7ee5c09b4e8198bdbb1ecb8c1c1b/PSI
    http://lonxxx2546:32843/ae7c7ee5c09b4e8198bdbb1ecb8c1c1b/PSI
    http://lonxxx2566:32843/ae7c7ee5c09b4e8198bdbb1ecb8c1c1b/PSI
    Could the issue be due to network load balancer?
    Could the issue be due to Sticky session configuration on the load balancer.?
    How can we get to the root cause of the issue?
    Which logging category should we set to 'Verbose' that can give us some hint.
    Update: We tried to capture the requests through fiddler and observed that when fiddler is running on the client computer then the connection works perfectly fine even through the load balancer. Probably fiddler is reformatting the SOAP
    envelop of the web service requests the way it should before sending the request to the server.
    If we do not run fiddler and run some other similar tool (like Charles) then it again gives the issue and the request stucks at /PWA/_vti_bin/psi/winproj.asmx
    We ran Wireshark on the servers and found the following for that web service call:
    [TCP Previous segment not captured] Continuation or non-HTTP traffic.
    Please let me know if someone could provide any hint what can be done next.
    Regards, Amit Gupta

    There are several ways to configure your load balancer.   I would suggest that you work with the network engineer, the load balancer vendor and your project administrator to resolve this issue. 
    Basically you need URL to be resolved correctly.  Also, I don't believe PS2007 did a good job handling load balancing, so you may need to bring someone in good with IIS and see they can tweek IIS to manage the cache better.
    As I go back and look at your analysis, I think you should probably look at upgrading to Project Server 2013.  They made some improvement in load balancing and the management of distributive cache.
    I assume you have 4 WFE because you have thousands of project users.  Roughly how many  you have?  Over 1000, over 5000
    Have you tried to see if using two load balancing work?  How about just one front end.  I often see companies scaling SharePoint and Project server to extremes. 
    Michael Wharton, MVP, MBA, PMP, MCT, MCTS, MCSD, MCSE+I, MCDBA
    Website http://www.WhartonComputer.com
    Blog http://MyProjectExpert.com contains my field notes and SQL queries

  • Aperture 3 not in Media Browser - Non-Default Library Location Issue

    Hi Everyone,
    My Aperture Library cannot be viewed in the media browser. I created a new Aperture library in the default location which resolved the issue; however, I have my library on an external hard drive and it is too big to put on my internal HD.
    Any suggestions on how to tell iLife & iWork to look in my external HD?
    Message was edited by: ZerbyPhotography

    Hello Everybody,
    Ok...I went to the Genius Bar, but to no avail. (by the way, my issue about not being able to open programs while holding alt was due to my not depressing the alt key for the required length of time. So, false alarm on that one. Oops!)
    I just updated to 3.0.1. I continued to have the same issues with accessing my files through the media browser. I called tech support; and through their instructions, I was able to gain access to my library through the media browser. This seemed to be by accident, so I don't know if it was due to the update, a particular logarithm of library selection, or a combination of the two.
    What I remember being the last actions were to create an alternate library, >file, >>switch to library, >>>other, select the new library, (possibly restarting Aperture), then switching back to my main library through the same selection as previous (i think...possibly by a different method).
    Regardless, my library is now accessible in the media browser in iLife & iWork programs.

Maybe you are looking for

  • Warning message assignment to accounts

    Hi Is it possible to assign warning messages to some certain accounts or is it always the way that warning messages are related to all accounts. I have tried se91 but did not find a solution. Where you can handle these messages and is it even possibl

  • File Vault issues

    When we try to log in we receive a message that says " we cannot log in because file vault will not allow it, does anyone have a clue what this means?

  • Editable Spreadsheets in InDesign/DPS

    Anyone have any suggestions for importing Excel or Google Spreadsheet data into a customized table created in InDesign? The other issue I'm working around is I would like the option of making edits inside the spreadsheet and be able to easily update

  • Gray Screen repeating tone

    Upon start-up does not proceed beyond repeating tone and gray screen. Will not start in safe mode. Any ideas?

  • Material Based Plant Allocation

    Dear All, My requirement is - Suppose my company deals in manufacturing of Pencils and we have three major materials - wood, lead, and paint. So what i want is whenever a PR is raised for material type a particular parameter should be automatically a