How to display keywords in browser view

I watched the tutorial for keywords at
http://www.apple.com/aperture/tutorials/#organizecompare-keywords
and it shows a view that I can't seem to replicate.
The tutorial shows a browser window and the keywords are displayed below the images.
Also, I am having difficulty adding a keyword to multiple images. I can select multiple images but I can only seem to change the highlighted image.
-Mark

OK, now I see what you mean. If you had written "below each image" in the first place, it would have been easier to understand what you mean.
First you have to create a view that show only the keywords. This can be done in the Metadata pane in the Inspector. Click the gear wheel and choose "New view..." followed by giving it a name. Then, check "Keywords" after clicking the IPTC button in the bottom of the pane.
Then, to set the preference for this view, you go to the Metadata pane in the Preferences. In the first section; "Viewer" you can set which metadata view you want to show up either below or over each image. Over each image means on top of each image but in the bottom part of the images. You will see the difference.
Then, to show only the keywords just uncheck the "Show Labels" checkbox.
Regards
Paul K

Similar Messages

  • QuickTime 7.6.5 doesn't display controller on browser viewing

    This happened with QT 7.6.4 for Windows. When 7.6.5 came out, I uninstalled the old and freshly installed the new. But still...going to QuickTime.com for movie trailers and clicking to watch movies (not HD) for browser viewing doesn't display the QuickTime controller but instead a black empty blank void. Clicking in this void controls the movie being played. You just can't see the controller. Anybody having this issue?
    Running Windows 7 x64, 4GB Ram, nVidia 8800GTS 512.

    The "blank" controller for QuickTime formats in browsers is a known issue for Windows 64 bit OS's.
    Check your help files to earn more about 32 bit "compatibility" mode.

  • How to display FDF in browser

    Hi! I have a big problem! I have a HTML form. Data from the HTML form go to FDF file. What can I do to the user's browser displays the filled PDF file? Here's my code (downloaded from: http://koivi.com/fill-pdf-form-fields/):
    INDEX.PHP:
    <?php
        include dirname(__FILE__).'/pdf_process.php';
        echo '<?xml version="1.0" encoding="iso-8859-2"?>',"\n";    // because short_open_tags = On causes a parse error.
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
      <title>Using HTML forms to fill in PDF fields with PHP and FDF</title>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />
      <meta name="description" content="A PHP solution to filling a PDF file's form fields with data from a submitted HTML form." />
    </head>
    <body>
    <?php
        if(isset($CREATED)){
    ?>
       <div id="pageResults">
        <h1>Your Result</h1>
        <p>You can now <a href="<?php echo str_replace(dirname(__FILE__).'/','',$fdf_file) ?>">download</a> the file you just created. When downloaded, open the FDF file with your Adobe Acrobat or Acrobat Reader program to view the original PDF document with the fields filled in with the information you posted through the form below.</p>
       </div>
    <?php
    ?>
       <div>
        <h1>HTML form</h1>
        <form method="post" action="<?php echo $_SERVER['REQUEST_URI'] ?>">
         <table cellpadding="3" cellspacing="0" border="0">
          <tr><td>Name</td><td><input type="text" name="__NAME__" value="<?php if(isset($_POST['__NAME__'])) echo $_POST['__NAME__']; ?>" /></td></tr>
          <tr><td>Title</td><td><input type="text" name="__TITLE__" value="<?php if(isset($_POST['__TITLE__'])) echo $_POST['__TITLE__']; ?>" /></td></tr>
          <tr><td>Email</td><td><input type="text" name="__EMAIL__" value="<?php if(isset($_POST['__EMAIL__'])) echo $_POST['__EMAIL__']; ?>" /></td></tr>
          <tr><td>Address</td><td><input type="text" name="__ADDRESS__" value="<?php if(isset($_POST['__ADDRESS__'])) echo $_POST['__ADDRESS__']; ?>" /></td></tr>
          <tr><td>City</td><td><input type="text" name="__CITY__" value="<?php if(isset($_POST['__CITY__'])) echo $_POST['__CITY__']; ?>" /></td></tr>
          <tr><td>State</td><td><input type="text" name="__STATE__" value="<?php if(isset($_POST['__STATE__'])) echo $_POST['__STATE__']; ?>" /></td></tr>
          <tr><td>Zip</td><td><input type="text" name="__ZIP__" value="<?php if(isset($_POST['__ZIP__'])) echo $_POST['__ZIP__']; ?>" /></td></tr>
          <tr><td>Phone</td><td><input type="text" name="__PHONE__" value="<?php if(isset($_POST['__PHONE__'])) echo $_POST['__PHONE__']; ?>" /></td></tr>
          <tr><td>Fax</td><td><input type="text" name="__FAX__" value="<?php if(isset($_POST['__FAX__'])) echo $_POST['__FAX__']; ?>" /></td></tr>
         </table>
         <input type="submit" />
        </form>
       </div>
    </body>
    </html>
    createFDF.php:
    <?php
    *   createFDF
    *   Takes values submitted via an HTML form and fills in the corresponding
    *   fields into an FDF file for use with a PDF file with form fields.
    *   @param  $file   The pdf file that this form is meant for. Can be either
    *                   a url or a file path.
    *   @param  $info   The submitted values in key/value pairs. (eg. $_POST)
    *   @result Returns the FDF file contents for further processing.
    function createFDF($file,$info){
        $data="%FDF-1.2\n%âãÏÓ\n1 0 obj\n<< \n/FDF << /Fields [ ";
        foreach($info as $field => $val){
             if(is_array($val)){
                 $data.='<</T('.$field.')/V[';
                 foreach($val as $opt)
                      $data.='('.trim($opt).')';
                 $data.=']>>';
             }else{
                 $data.='<</T('.$field.')/V('.trim($val).')>>';
        $data.="] \n/F (".$file.") /ID [ <".md5(time()).">\n] >>".
            " \n>> \nendobj\ntrailer\n".
            "<<\n/Root 1 0 R \n\n>>\n%%EOF\n";
        return $data;
    ?>
    pdf_process.php:
    <?php
        require_once 'createFDF.php';
        $pdf_file='http://localhost/generator/test.pdf';
        // allow for up to 25 different files to be created, based on the minute
        $min=date('i') % 25;
        $fdf_file=dirname(__FILE__).'/results/posted-'.$min.'.fdf';
        if(isset($_POST['__NAME__'])){
            $_POST['__CSZ__']=$_POST['__CITY__'].', '.
                              $_POST['__STATE__'].' '.
                              $_POST['__ZIP__'];
            // get the FDF file contents
            $fdf=createFDF($pdf_file,$_POST);
            // Create a file for later use
            if($fp=fopen($fdf_file,'w')){
                fwrite($fp,$fdf,strlen($fdf));
                $CREATED=TRUE;
            }else{
                echo 'Unable to create file: '.$fdf_file.'<br><br>';
                $CREATED=FALSE;
            fclose($fp);
    ?>
    submit_form.php:
    <?php
        // check that a form was submitted
        if(isset($_POST) && is_array($_POST) && count($_POST)){
            // we will use this array to pass to the createFDF function
            $data=array();
            // This displays all the data that was submitted. You can
            // remove this without effecting how the FDF data is generated.
            echo'<pre>POST '; print_r($_POST);echo '</pre>';
            if(isset($_POST['Text2'])){
                // the name field was submitted
                $pat='`[^a-z0-9\s]+$`i';
                if(empty($_POST['Text2']) || preg_match($pat,$_POST['Text2'])){
                    // no value was submitted or something other than a
                    // number, letter or space was included
                    die('Invalid input for Text2 field.');
                }else{
                    // if this passed our tests, this is safe
                    $data['Text2']=$_POST['Text2'];
                if(!isset($_POST['Text3'])){
                    // Why this? What if someone is spoofing form submissions
                    // to see how your script works? Only allow the script to
                    // continue with expected data, don't be lazy and insecure ;)
                    die('You did not submit the correct form.');
                // Check your data for ALL FIELDS that you expect, ignore ones you
                // don't care about. This is just an example to illustrate, so I
                // won't check anymore, but I will add them blindly (you don't want
                // to do this in a production environment).
                $data['Text3']=$_POST['Text3'];
                $data['Text4']=$_POST['Text4'];
                $data['Text5']=$_POST['Text5'];
                // I wanted to add the date to the submissions
                $data['Text1']=date('Y-m-d H:i:s');
                // if we got here, the data should be valid,
                // time to create our FDF file contents
                // need the function definition
                require_once 'createFDF.php';
                // some variables to use
                // file name will be <the current timestamp>.fdf
                $fdf_file=time().'.fdf';
                // the directory to write the result in
                $fdf_dir=dirname(__FILE__).'/results';
                // need to know what file the data will go into
                $pdf_doc='localhost/generator/Project2.pdf';
                // generate the file content
                $fdf_data=createFDF($pdf_doc,$data);
                // this is where you'd do any custom handling of the data
                // if you wanted to put it in a database, email the
                // FDF data, push ti back to the user with a header() call, etc.
                // write the file out
                if($fp=fopen($fdf_dir.'/'.$fdf_file,'w')){
                    fwrite($fp,$fdf_data,strlen($fdf_data));
                    echo $fdf_file,' written successfully.';
                }else{
                    die('Unable to create file: '.$fdf_dir.'/'.$fdf_file);
                fclose($fp);
        }else{
            echo 'You did not submit a form.';
    ?>
    Thank You in advance! This is VERY important for me... Matthew

    I would like to ask you one more thing - how to encode utf-8? I would like to have Polish characters in pdf. I don't know where change encoding - this is not so easy... I found a script (http://koivi.com/fill-pdf-form-fields/):
    createXFDF:
    <?php
    KOIVI HTML Form to FDF Parser for PHP (C) 2004 Justin Koivisto
    Version 1.1
    Last Modified: 2010-02-17
        This library is free software; you can redistribute it and/or modify it
        under the terms of the GNU Lesser General Public License as published by
        the Free Software Foundation; either version 2.1 of the License, or (at
        your option) any later version.
        This library is distributed in the hope that it will be useful, but
        WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
        or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
        License for more details.
        You should have received a copy of the GNU Lesser General Public License
        along with this library; if not, write to the Free Software Foundation,
        Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
        Full license agreement notice can be found in the LICENSE file contained
        within this distribution package.
        Justin Koivisto
        [email protected]
        http://koivi.com
    * createXFDF
    * Tales values passed via associative array and generates XFDF file format
    * with that data for the pdf address sullpiled.
    * @param string $file The pdf file - url or file path accepted
    * @param array $info data to use in key/value pairs no more than 2 dimensions
    * @param string $enc default UTF-8, match server output: default_charset in php.ini
    * @return string The XFDF data for acrobat reader to use in the pdf form file
    function createXFDF($file,$info,$enc='UTF-8'){
        $data='<?xml version="1.0" encoding="'.$enc.'"?>'."\n".
             '<xfdf xmlns="http://ns.adobe.com/xfdf/" xml:space="preserve">'."\n".
              '<fields>'."\n";
        foreach($info as $field => $val){
             $data.='<field name="'.$field.'">'."\n";
            if(is_array($val)){
                foreach($val as $opt)
                    $data.='<value>'.htmlentities($opt).'</value>'."\n";
            }else{
                $data.='<value>'.htmlentities($val).'</value>'."\n";
            $data.='</field>'."\n";
        $data.='</fields>'."\n".
             '<ids original="'.md5($file).'" modified="'.time().'" />'."\n".
             '<f href="'.$file.'" />'."\n".
             '</xfdf>'."\n";
        return $data;
    ?>
    but this doesn't work! When opening the error occurs: "XML parsing error: undefined entity (error code 11), line 5, column 8  of file  /C/Users/Matthew/AppDataLocal/MOzilla/Firefox/Profiles/kymhbeiz.default/Cache/2FEB01d01" -  what is this? Ehh, I have no strength....
    Thank You in advance!!! Matthew

  • How to display the one BSP View page (not a start page)Through URL link..

    Hi Sir/Madam,
                 I want to open one BSP view page through URL link...
    Let me Explain clearly..
                I have an Z application ZHRRCF_APPROVAL..In this application approve.bsp file i have added som more Fields..and Finally I am going to click ApproVe Buton /Reject Button.When i click the reject button the the items are rejected.Its working fine.....
              My Requirement is :
                   1. I want to display the approval page directly when i click the URL link from mail box.--i am getting this .. No issues..(Got the URL link from function module)
                   2. After opening the approval page when i click URL link, when i click the reject button-- i am getting the error "The following Error Text was processed in the system GR2."Access via NULL object reference not possible"
                   3. How to proceed the this URL link without error .. the URL link is
    https://abd00093.de.abb.com:8200/sap(bD1lbiZjPTIwMA==)/bc/bsp/sap/zhrrcf_approval/application.bsp?objid=50003421&otype=NB&plvar=01&requestdate=20090121&requestedRsnCode=01&requestedstatus=1&requester=USRECRUITER1&SAPWFCBURL=https%3a%2f%2fabd00093%2ede%2eabb%2ecom%3a0000000000008200%2fsap%2fbc%2fwebflow%2fwshandler%3f_sapwiid%3d000000018491%26_saptask%3dTS51807979%26_saplogsys%3dGR2CLNT200%26_sapuname%3dLINEMANAGER%26_saplangu%3dE%26sap-client%3d200
    ( I got this URL directly using my own function module.. In this function Module i was not getting the SAPGUID -- the error is because of that i am not sure..)How to get this sapguid dynamically..
                    Please guide me to proceed this req asap..
    I am waiting for your reply ....Please
    Thanks and Regards
    Mohan,P

    Please have BPEL loggers both at domain and system level to DEBUG mode. Set all loggers to DEBUG as you are interested to see the entire sequence flow..however, some loggers give you unnecessary info ;/ apart from cube, activation, delivery, dispatch, persistence.
    Added to this, you might want to try SOAPUI, Fiddler, HTTP Analyzer.

  • How to display files in thumbnail view ???

    i want to display my avi file list in thumbnail view as windows explorer is providing... can anyone tell me... how can i implement the same??

    You can use a [url http://java.sun.com/docs/books/tutorial/uiswing/components/list.html]Wrapped JList to display item in a grid. You would need to provide a custom renderer.

  • How to display Call list Large view as the initial view dynamically.

    My requiremet is that 
    1) User chooses a call list -> then clicks display calls -> then clicks Calls Full view
    Now ClmCallListDetailsLarge View is displayed
    2) Now the user chooses a call and then prceeds to Account confirmation, Interaction Record and then ends the call.
    3) Now when the Call list is choosen from navigation bar Available 'ClmAvailbleCallLists' View is displayed, but the requirement is to display 'ClmCallListDetailsLarge' view.
    4) There is some standard code related to this in 'DO_REPLACE_INITIAL_VIEW' method of the window controller. but this method is not getting triggered at all.
    Please let me know how this can be achieved

    Thanks for idea.
    Assume I stored my data in a List of HashMap.
    Could you provide an example of JSTL for displaying this list?

  • How to displayed multiple report in View selector in OBIEE

    I have one table in that AM and PM hours wise data is having.My requirement is if I select in filter AM or PM the respect data only displayed in the below report.How it is possible other wise how to use in View selector.
    Edited by: user8035288 on Mar 23, 2009 10:40 PM

    hi..
    you have changed your subject name from column selector to View Selector.. :-)
    To do this,
    I assuming that AM and PM are columns
    Create a pivot view with AM column and PM column is excluded here...
    Create another Pivot with PM and AM excluded..
    Now go to view selector, from the available view select Pivot, and Pivot1 views Rename them as you want to show in drop down..
    add View Selector to Compound Layout..
    If AM, PM are values, then just keep the corresponding column in Pages of Pivot .. which acts as prompt...
    You need not to go for view selector in this case....

  • How to display image in the view

    hi friends
    I created one small webdynpro application it contains one default view.
    Now I want display one image on that view.(image is located in my local machine)
    i am new to webdynpro
    help me out.
    thanks
    ram.

    hi,
    refre the following link.
    http://help.sap.com/saphelp_nw70/helpdata/EN/f3/1a61a9dc7f2e4199458e964e76b4ba/frameset.htm
    Upload Image file from system in Web dynpro view
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0e599cc-2862-2b10-54a9-dcf1376b52d7
    Dynamic images in Web Dynpro for Java applications
    Dynamic images in Web Dynpro for Java applications
    Thanks
    Abhilasha
    Edited by: Abhilasha Dahare on Sep 17, 2008 6:24 AM

  • How to display Titles in Browser using Flex 3

    Hi ,
    How is it possible to have a Title Name on the Browser window ??
    Any ideas ??
    Thanks in advnace .

    Hi Kiran,
    If you want to set the title only once in the application and if it remains same for rest of your app...you can simpley put pageTitle="Some Title" in your
    main Application Root tag..
    <mx:Application pageTitle="Some Title" />
    But if you want to change the title of your application frequently as you navigate through various screens in your app..then you can put a public function which chnages the title as I posted in my previous code and call that function from various screens by calling that public function using Application.application.setBrowserTitle(passmesage);
    Thanks,
    Bhasker Chari

  • Question: How to display rating in SURVEY VIEW

    Hi,
    I've been using Lightroom for years. I love to use the SURVEY mode.  But today, I couldn't see the rating stars under each photo in Survey mode; I only see the flag status.  Now, it's probably something I did, like hitting a shortkey or something... but for the life of me, I can't figure out how to bring back that visual information.  After searching online + fiddling around with the settings, I finally thought I'd come here and ask if anyone knows...
    Thanks!
    PS. Lightroom 4.3RC  (why 4.3 RC, because I'm one of those plagged with a super slow Lightroom in develop mode, especially with my D800 files! I'm crossing my fingers with each RC update that the software will be faster... )

    Thanks Rikk!
    your screenshot pointed me in the right direction. It just happens that I had changed the background color of the Survey View, and the stars rating were now blending with the background, creating the illusion of them not being there.

  • How to display hourglass while ADF view link is retrieving rows in a swing.

    I posted this yesterday but did not get a solution, here is my posting again:
    Hi All,
    I have an ADF panel which includes several interdependent ADF View Objects and View Links. The query of the top view object might return several rows, then once user navigates from 1st to second row and so on, the dependent (child) view links display corresponding data. This is a swing app and not a web or jsf app.
    Sometimes it might take 8 to 12 seconds for the corresponding data from child view links to be retrieved, during this time window the ADF Panel might appear to be frozen to the user.
    So my question is what do I have to do so the ADF Panel would display hourglass while it is retrieving the rows for the corresponding child view links. If I have to manually update the java generated by Jdev, then what java line and where would I introduce it?
    Your inputs are most appreciated.
    Thanks.

    Check af:progressIndicator , af:statusIndicator
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/tagdoc/core/progressIndicator.html
    http://download.oracle.com/docs/cd/E15051_01/apirefs.1111/e12419/tagdoc/af_statusIndicator.html

  • How to display hourglass while ADF view link is retrieving rows.

    Hi All,
    I have an ADF panel which includes several interdependent ADF View Objects and View Links. The query of the top view object might return several rows, then once user navigates from 1st to second row and so on, the dependent (child) view links display corresponding data.
    Sometimes it might take 8 to 12 seconds for the corresponding data from child view links to be retrieved, during this time window the ADF Panel might appear to be frozen to the user.
    So my question is what do I have to do so the ADF Panel would display hourglass while it is retrieving the rows for the corresponding child view links. If I have to manually update the java generated by Jdev, then what java line and where would I introduce it?
    Your inputs are most appreciated.
    Thanks.

    from the component palatte drag n drop this component into your jsf page.
    more info:
    http://download.oracle.com/docs/cd/E15051_01/apirefs.1111/e12419/tagdoc/af_statusIndicator.html
    Using javascript you can change the mouse cursor to an hourglass. Try using clientListener within commandButton and use javascript.
    document.body.style.cursor = "wait";
    document.body.style.cursor = "default";
    Edited by: Puthanampatti on Jan 12, 2010 1:56 PM

  • How to display keywords of a picture ?

    I am a complete beginner with LR.
    I am trying to work with keywords.
    I am able to assign various keywords to a picture.
    I know that made several mistakes when assigning keywords.
    When I select a picture to control which keywords have been assigned I am not able to display them.
    Sorry if it is confused, english is not my mother tongue.Thanks for your help

    Go to the Keywording panel (see image below)
    When you select a thumbnail in the library you can see the keywords for that photo.
    You can add, delete or change the information. Add a comma between each keyword or phrase.

  • How to display a IE page in a view ,not popup  ?

    Hi! All
    Question 1st:
    I have create a html page by webdynpro,
    I want display this page in a view ,
    but when run this code,
    the IE page popup ,
    can you help me set the IE page in current view ?
    public void wdDoInit()
       //@@begin wdDoInit()
       String text = "<html><head></head><body>this is my test</body><html>";
       try
           IWDCachedWebResource resource = WDWebResource.getWebResource
             text.getBytes("UTF-8"), WDWebResourceType.UNKNOWN
            resource.setResourceName("test.html");
            IWDWindow window =
    wdComponentAPI.getWindowManage().createNonModalExternalWindow(
            resource.getUrl(WDFileDownloadBehaviour.OPEN_INPLACE.ordinal()), 
            resource.getResourceName());
            window.show();
        catch(Exception ex)
            wdComponentAPI.getMessageManager().reportException( new WDNonFatalException(ex), false );
    Question 2nd:
      I have create a value context attribute under context.
      it's  name is "mywindow"
      it's  type is "com.sap.tc.webdynpro.services.session.api.IWDWindow"
      Do you know how to display  "mywindow" in a view ?
      I try to put mywindow in a InputField or a IFrame,
      but all failed !
    Thanks!

    Hi,
    This is the code to open up a window
        IWDWindow win = wdComponentAPI.getWindowManager().createModalWindow(wdThis.wdGetAPI().getComponentInfo().findInWindows(<window_name>));
        wdContext.currentContextElement().set<window_context>(win);
        win.setWindowPosition(WDWindowPos.CENTER);
        win.setWindowSize(250,150);
        win.setTitle("New Window");
        win.show();
    This will open up as a pop-up. If you want to open a html page on the same window then put an iframe in your view and set its source property correspondingly.
    Regards,
    Murtuza

  • Pictures placed in design wont display correctly in browser.

    As I continue to work on my website I continue to come across issue with muse.  Following issues I have is with the display of photos placed on a webpage not being correct.
    Below is an image of my page design:
    Page setting is as follows:
    Page Width 960px; Min Height 521px
    Columns 5; colums Width 168px and Gutter 20px
    Margins Top 20 Bottom 20 Left 20 Right 20
    Padding: Top 119; bottom 0; left 0.
    Centre Horizontally.
    As you can see that images placed on the page are placed next to each other.
    The first Image of the cargo ship, is as follows
    x: 100  y: o   w:441  H:292
    the second image of the lighthouse is as follows;
    x:341  y:0   w:243   H: 413
    When I preview it I get the follows;
    This is just one of many issue I am facing with using Muse.  The images have been optimised for web using Photoshop CC, Save for Web, and the sizes have been reduced as well.
    I am not sure whether this is an issue with Muse CC or whether I am doing something wrong.  I cannot find any tutorials that address this issue, and I have no clue where to go from here.
    These images were placed on the page using the Place command.
    The control bar's pin has help solve some of the issue I was having but not on this occassion.  Any advise would be appreciated as it is stopping me from fully publishing my site on the web.
    My default web browser is Google Chrome.

    Hi Aish I did what you asked by it didnt have an effect on what I wanted.  I left pin both picture, they were together, and showed in the browser to left of centre of the page.  I want the lighthouse pic to be centre in the middle of the page, and the picture of the cargo ship, to go from the left of the browser to the edge of the Lighthouse, which is shown in the design mode in my first post.  It is obvious that Muse is not wysiwyg (what you see is what you get).  As what is displayed in the design mode, first image above and what is displayed in the browser view ( second image) are two different images and not similar at all.  And when I centre pin the two images they are togther in the middle of page and the second images doesnt touch the left edge of the page.  The lighthouse should be the full height of the page from just touching the header and footers.  But I think the issue is that the pages could be set to scrolling or expanding pages and not a fixed height.

Maybe you are looking for

  • Owbsys.wb_rt_api_exec.open fails after upgrade to OWB 11gR2

    The following code is used as a PLSQL wrapper to execute OWB mappings and is based on the good old run_my_own_stuff.sql. We have been mandated to use Tivoli as the corporate scheduler, meaning we do not have Workflow as a solution. We have implemente

  • Using USB device with Virtual Com port

    I have an actisys IR USB device that creates a virtual serial port. I can read from it using VISA, however it will not write. I have the same setup working on LV 6.1 running windows 2000. I need to make it work on my system running XP and LV 7.1.

  • 30-pin Digital AV Adapter error

    Hi! i have almost this adapter for Iphone 4 modell (non 4s) i connected my TV with HDMI kabel.Display black screen,but the audio working perfectly! What's the problem? I must be downloading something application?Please answer me thank you!

  • Mail not sending anymore with multiple accounts

    Hi I am experiencing some problem with Mail (v4.5 with SnowLeopard). I cannot send e-mails anymore. This has happened on and off in the last 4 months but now it doesn't seem to be able to send at all. When sending I get an e-mail that tells me that t

  • Which query is using which Hierarchy?

    Hello All, Where can i get the information like which query is using which hierarchy!? I tried to make it happen by combining lot of tables like RSRREPDIR RSZELTPROP RSZELTXREF RSHIEDIR RSZCOMPDIR but couldn't arrive at a solution. Did u guys come ac