Problems using KORG microKONTOL for Garageband

Hello,
I am using a KORG microKONTOL for Garageband. I cannot get the piano keys on the controler to match that of Garageband. For instance, when I hit the "C" note key, Garageband plays the "B" note beneath it. Any ideas?
I have the controller in "Logic"mode since there was no Garageband mode to put it in. I figured "logic" was the next best thing.

Did you ever get this to work? I just today bought a Fast Track Pro. I have it hooked to my MBP via USB. I can see in control Panel two inputs:
M-Audio Fast Track Pro UDB: Line Input
M-Audio Fast Track Pro UDB: S/PDIF
Problem is, there is no sound registering on the Input Level on either choose.
I have the Power On and have tried both Input 1 & 2, bith in stereo and mono mode.
(Just to be clear, I connect the electric guitar directly to the Fast track pro, correct?)
I have read the owners manual but it is worthless. I thought this would be easy to set up.
Also note that GarageBand preferences the Audio Output and Input are selected to Fast Track Pro.
What am I doing wrong?

Similar Messages

  • HT1295 Is it possible to use vst plugins for garageband from an external hard disk? (Without installing to the system hard disk)

    Hi,
    I got my MacBook pro 17" installed a 250GB of SSD as a system disk.
    And i got 4TB of Thunderbolt External Disk.
    The thing that i want is: to use my VST plugins for Garageband or Logic without fulling the system disk. Is it possible use them from an external disk?
    Thnx

    Garageband can't use VST plugins.
    If you're talking about AUs: you could try to put an alias into the HD/Library/Audio/Plug-Ins/Components folder instead of the actual files, and see if GB loads them.

  • Problems using multiple joins for search

    I am new to dreamweaver and coding and I am battling to get my head around joining tables and using multiple joins to create a search result recordset.
    I have a the following tables setup;
    Venues table
    venueID
    name
    category (text)
    city
    provinceID (numeric)
    country
    maxcapacity
    Province table
    provinceID
    province (text)
    Category Table
    categoryID
    category (text)
    Max Conference Table
    conferencefacilitiesID
    venueID
    maxcapacity
    I am passing the search $_POST variables via a form and displaying it in a results page.
    I have successfully done the search using only one table the problem results in using multiple joins. I cam not sure of the syntax to use but have successfully created the results page, using the outer join to link the province, category and maxcapacity to the venues table. Not all the venues have conferencing so I think need to use outer join for conferencing.
    I can't seem to access the search and not sure if I can use the WHERE command to set varialbe 'category' = varCategory 
    Below is my code which doesn't work;
    SELECT wp_dbt_venues.venuesID, wp_dbt_venues.name, wp_dbt_venues.category, wp_dbt_venues.province, wp_dbt_venues.city, wp_dbt_province.provinceID, wp_dbt_province.province, wp_dbt_conferencefacilties.venueid, wp_dbt_conferencefacilties.maxcapacity
    FROM ((wp_dbt_venues LEFT OUTER JOIN wp_dbt_province ON wp_dbt_venues.province = wp_dbt_province.provinceID)  LEFT OUTER JOIN wp_dbt_conferencefacilties ON wp_dbt_venues.venuesID = wp_dbt_conferencefacilties.venueid)
    WHERE 'category'=varCategory
    I would like to get on variable working and then expand onto the others like WHERE maxcapacity < varCapacity

    Hi bregent
    Thank you for all the help, below is the code. I have clened it up as best I could as dreamweaver seems to add recordset everytime I edit it. I then have to delete the old code. It also seems adds a totalRows variable and moves one of the runtime variables to the totalRows variable. Its all very confusing but its working.
    Results Page
    <?php require_once('Connections/tova.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
       $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    if (isset($_POST['delegates'])) {
      $varDel_results = $_POST['delegates'];
    $varProv_results = "-1";
    if (isset($_POST['province'])) {
      $varProv_results = $_POST['province'];
    $varCat_results = "-1";
    if (isset($_POST['category'])) {
      $varCat_results = $_POST['category'];
    mysql_select_db($database_tova, $tova);
    $query_results = sprintf("SELECT wp_dbt_venues.venuesID, wp_dbt_venues.name, wp_dbt_venues.category, wp_dbt_venues.province, wp_dbt_venues.city, wp_dbt_province.provinceID, wp_dbt_province.province, wp_dbt_conferencefacilties.venueid, wp_dbt_conferencefacilties.maxcapacity FROM ((wp_dbt_venues LEFT OUTER JOIN wp_dbt_province ON wp_dbt_venues.province = wp_dbt_province.provinceID)  LEFT OUTER JOIN wp_dbt_conferencefacilties ON wp_dbt_venues.venuesID = wp_dbt_conferencefacilties.venueid) WHERE wp_dbt_venues.category = %s AND wp_dbt_venues.province = %s AND wp_dbt_conferencefacilties.maxcapacity < %s", GetSQLValueString($varCat_results, "text"),GetSQLValueString($varProv_results, "int"),GetSQLValueString($varDel_results, "int"));
    $results = mysql_query($query_results, $tova) or die(mysql_error());
    $row_results = mysql_fetch_assoc($results);
    $totalRows_results = mysql_num_rows($results);
    ?>
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <p>Search Results</p>
    <table width="200" border="1">
      <tr>
        <td> </td>
        <td>Name</td>
        <td>Category</td>
        <td>City</td>
        <td>Province</td>
        <td>Delegates</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><?php echo $row_results['venuesID']; ?></td>
          <td><?php echo $row_results['name']; ?></td>
          <td><?php echo $row_results['category']; ?></td>
          <td><?php echo $row_results['city']; ?></td>
          <td><?php echo $row_results['province']; ?></td>
          <td><?php echo $row_results['maxcapacity']; ?></td>
        </tr>
        <?php } while ($row_results = mysql_fetch_assoc($results)); ?>
    </table>
    <p> </p>
    </body>
    </html>
    <?php mysql_free_result($results);
    ?>
    Search Page
    <?php require_once('Connections/tova.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_tova, $tova);
    $query_category = "SELECT category FROM wp_dbt_categories ORDER BY category ASC";
    $category = mysql_query($query_category, $tova) or die(mysql_error());
    $row_category = mysql_fetch_assoc($category);
    $totalRows_category = mysql_num_rows($category);
    mysql_select_db($database_tova, $tova);
    $query_province = "SELECT * FROM wp_dbt_province ORDER BY province ASC";
    $province = mysql_query($query_province, $tova) or die(mysql_error());
    $row_province = mysql_fetch_assoc($province);
    $totalRows_province = mysql_num_rows($province);
    ?>
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Search</title>
    </head>
    <body>
    <p><strong>Advanced Search</strong></p>
    <form action="results.php" method="post" name="form1" target="_blank" id="form1">
      <p>
        <label>Category
          <select name="category" id="category">
            <?php
    do { 
    ?>
            <option value="<?php echo $row_category['category']?>"<?php if (!(strcmp($row_category['category'], $row_category['category']))) {echo "selected=\"selected\"";} ?>><?php echo $row_category['category']?></option>
            <?php
    } while ($row_category = mysql_fetch_assoc($category));
      $rows = mysql_num_rows($category);
      if($rows > 0) {
          mysql_data_seek($category, 0);
                $row_category = mysql_fetch_assoc($category);
    ?>
          </select>
        </label>
      </p>
      <p>
        <label>Province
          <select name="province" id="province">
            <?php
    do { 
    ?>
            <option value="<?php echo $row_province['provinceID']?>"<?php if (!(strcmp($row_province['provinceID'], $row_province['provinceID']))) {echo "selected=\"selected\"";} ?>><?php echo $row_province['province']?></option>
            <?php
    } while ($row_province = mysql_fetch_assoc($province));
      $rows = mysql_num_rows($province);
      if($rows > 0) {
          mysql_data_seek($province, 0);
                $row_province = mysql_fetch_assoc($province);
    ?>
          </select>
        </label>
      </p>
      <p>
        <label>Delegates
          <input name="delegates" type="text" id="delegates" value="" />
        </label>
      </p>
      <p>
        <label>
          <input type="checkbox" name="Facilities" value="golf" id="Facilities_0" />
          Golf</label>
        <br />
        <label>
          <input type="checkbox" name="Facilities" value="game" id="Facilities_1" />
          Game</label>
        <br />
      </p>
      <p>
        <label>Search
          <input type="submit" name="submit" id="submit" value="Submit" />
        </label>
      </p>
    </form>
    <p> </p>
    </body>
    </html>
    <?php
    mysql_free_result($category);
    mysql_free_result($province);
    ?>

  • Problems using - EPP RTK for Java

    Hello, I'm having problems using the EPP RTK for Java, I've got the message below:
    java.io.IOException: No ssl props location specified
         at com.tucows.oxrs.epp0402.rtk.transport.EPPTransportTCPTLS.connect(EPPTransportTCPTLS.java:116)
         at br.com.redenetworks.temp.Temp.<init>(Temp.java:21)
         at br.com.redenetworks.temp.Temp.main(Temp.java:35)
    Please, someone could help me?
    Thanks a lot,
    F�bio Kazahaya.

    Como vc deve saber eu virei Gerente de Copyright e Propriedade Intellectual do setor RBS da empresa.
    Eu encontrei esse artigo hoje e estou sendo for�ado a denunciar essas informa��es por quebra de copyright da prpriedade intellectual da empresa.
    Eu te conhe�o como um funcionario da IBM e estou muito desapontado
    Aguarde a IBM entrar em contato contigo.
    Abra�os

  • Problem using application client for local stateful session bean

    Hi,
    I have deployed a local stateful session bean in Sun J2EE 1.4 application server.
    On running the applclient for the stateful session bean application client i get the following error:
    Warning: ACC006: No application client descriptor defined for: [null]
    cant we use application client for local stateful session beans. becoz the application runs smoothly when i changed the stateful sesion bean to remote.

    Hi,
    No, an ejb that exposes a local view can only be accessed by an ejb or web component packaged within the same application. Parameters and return values for invocations through the ejb local view are passed by reference instead of by value. That can't work for an application client since it's running in a separate JVM.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Mutating Error problem using audit trigger for UPDATE

    I need to add 4 columns to all of my tables named:
    INSERT_BY
    INSERT_DATA
    UPDATE_BY
    UPDATE_DATE
    I intend these to act as "inserted" and "last updated" audit trails within the table, as opposed to creating a new table and storing the audit information there. The insert columns appear to be easy, as I can just use a DEFAULT clause within the definition of the table. However when I attempted to write a (my first) trigger then I run into problems with mutating tables. Presumebly because I am attempting to change the table while the trigger is referencing it.
    create or replace trigger test_audit
    after update on dictionary
    begin
    update dictionary
    set update_by = user, update_date = sysdate
    where entity_id = :old.entity_id;
    end;
    I thought I could maybe get around this by calling a procedure from inside the trigger. Something like:
    create or replace procedure test_audit(vColumn in varchar2, vData in varchar2, vTable in varchar2) is
    -- vTable is table name
    -- vColumn is PK of table
    -- vData is value of PK in current row
    begin
    update vTable
    set update_by = user, update_date = sysdate
    where vColumn = vData;
    commit;
    end test_audit;
    However I cannot use variable for table names. Will this mean I have to create a procedure for each table/trigger? Is there a way to reference the table name as a variable and keep this a generic procedure? Or is there an easier way to record the auditing UPDATE information for each changed row within the original table?
    Many thanks in advance......

    Will
    this mean I have to create a procedure for each
    table/trigger? I think you've answered that question already.
    Is there a way to reference the table
    name as a variable and keep this a generic procedure?Not that I'm aware of.
    Or is there an easier way to record the auditing
    UPDATE information for each changed row within the
    original table?Well, there's the AUDIT feature.
    C.

  • Problems using different tables for base class and derived class

    I have a class named SuperProject and another class Project derived from
    it. If I let SchemaTool generate the tables without specifying a "table"
    extension, I get a single TABLE with all the columns from both classes and
    everything works fine. But if I specify a "table" for the derived class,
    SchemaTool generates the derived class with just one column (corresponds
    to the attribute in derived class). Also it causes problems in using the
    Project class in collection attributes.
    JDO file:
    <jdo>
    <package name="jdo">
    <class name="Project" identity-type="application"
    persistence-capable-superclass="SuperProject">
    <extension vendor-name="kodo" key="table" value="PROJECT"/>
    </class>
    <class name="SuperProject" identity-type="application"
    objectid-class="ProjectId">
    <field name="id" primary-key="true"/>
    </class>
    </package>
    </jdo>
    java classes:
    public class Project extends SuperProject
    String projectSpecific
    public class SuperProject
    BigDecimal id;
    String name;
    tables generated by SchemaTool:
    TABLE SUPERPROJECTSX (IDX, JDOCLASSX, JDOLOCKX, NAMEX);
    TABLE PROJECT(PROJECTSPECIFICX)
    Thanks,
    Justine Thomas

    Justine,
    This will be resolved in 2.3.4, to be released later this evening.
    -Patrick
    In article <aofo2q$mih$[email protected]>, Justine Thomas wrote:
    I have a class named SuperProject and another class Project derived from
    it. If I let SchemaTool generate the tables without specifying a "table"
    extension, I get a single TABLE with all the columns from both classes and
    everything works fine. But if I specify a "table" for the derived class,
    SchemaTool generates the derived class with just one column (corresponds
    to the attribute in derived class). Also it causes problems in using the
    Project class in collection attributes.
    JDO file:
    <jdo>
    <package name="jdo">
    <class name="Project" identity-type="application"
    persistence-capable-superclass="SuperProject">
    <extension vendor-name="kodo" key="table" value="PROJECT"/>
    </class>
    <class name="SuperProject" identity-type="application"
    objectid-class="ProjectId">
    <field name="id" primary-key="true"/>
    </class>
    </package>
    </jdo>
    java classes:
    public class Project extends SuperProject
    String projectSpecific
    public class SuperProject
    BigDecimal id;
    String name;
    tables generated by SchemaTool:
    TABLE SUPERPROJECTSX (IDX, JDOCLASSX, JDOLOCKX, NAMEX);
    TABLE PROJECT(PROJECTSPECIFICX)
    Thanks,
    Justine Thomas
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Problem using an image for a background

    Hi,
    My environment is Crystal Report 2008 SP2
    I am adding an image for a table header background in my report. The image is of type png.
    I use insert picture when I add it to the report. Up to there everything works fine.
    My problem happens when I try to draw lines on top of the image.
    All the lines that I draw stay underneath the image. Even though I move the image to the back and move the lines to the top.
    Any idea why?
    Is there something that I should do differently if I want to use an image as background?
    Thanks

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Problems using Dragon Dictate for Mac.

    I used Dragon Naturally Speaking for years on my PC.  Switched to an IMac.  Dragon for Mac leaves a lot to be desired - training, recognizing, editing.  Any suggestions about how to improve performance or other voice recognition software for Mac users?  I dictate a lot of reports using MS Word.

    First of all I have no expertise in installing programs if they are problematic, I can only pass on my experience which relates to trying to purchase and install an Upgrade from MacSpeech Dictate 1.5 to Dragon Dictate 2.5 and the past experience I have had with MacSpeech, the company before Nuance.
    The 800-number doesn't get you to Technical Support and I think I was hung up on as well.  The wait for technical support was about 10 minutes.  If you are paying for the phone call by the minute that could be costly.
    Technical Support
    781-565-4960
    The tech was patient and his directions were easy to follow.  He logged into my screen using Join Me and if you find that too invasive, it may also be a reason not to continue with Dictate.
    Do I understand that you purchased a physical copy of the program on disk? Was it as an Upgrade that Nuance shipped to you?  And it wouldn't let you register the product?  The other criticism I had of MacSpeech and it seems to have carried on to Nuance was that the matter of accounts and registration accounts can be a forest. 
    The website to register the program is www.macspeech.com/licenses/. (There is another site for registering other Nuance products but it doesn't recognize your account for products that have been registered on the MaSspeech site.).To register the product you will need to set up an account (not an uncommon process) but that account will not be the way you access the download if you purchase the product by digital copy.If you purchase the program as a physical copy, I would suggest you register the product before you start installing but it really shouldn't be necessary because the program will prompt you to register if the install goes well.
    I can't recall which identification they asked for when I called technical services - the product code, the order number, or my registration account but I was prepared with all of them.
    Once you do register a program, the code can be accessed in the future if you keep track of the account and website on which you registered it.  I see there is also an option which downloads the code to your computer but heaven-knows-where it is stored.  On some other programs the code is stored in the application icon menu. My account on the Macspeech registration website stores the codes for 3 programs I have had since Nuance took over from MacSpeech.
    If you have purchased a physical copy and the registration site I listed above won't let you register it, I would call the 800-number which is
    Customer Service
    800-654-1187
    What I was trying to do was purchase the Upgrade of Dragon Dictate 2.5 as the result of an email offer because I was a previous customer of MacSpeech Dictate 1.5.  The website only seemed to offer to send me a physical copy with shipping of either $24 or $30 to Canada. When I decided I wouldn't buy the Upgrade because of the shipping cost, I found that I couldn't remove the item from the shopping cart and eventually couldn't even access the shopping cart.  When I called the 800-number to complain they told me there was a problem on the website which wasn't offering the download which was my preference.  They offered to sell me the digital download over the phone which I could then retrieve from the website www.findmyorder.com with the login which asks for the order number and a password (which I think was assigned when I placed the order, but as I said, registration, download access, etc can be a forest and I was very confused by this time.)
    At the www.findmyorder.com website, there were two files to download, the program for 2.5 and the data disk. When I tried to install the program and the data, the process started going around in circles asking for things over and over again.I wondered what I was doing wrong (a common reaction) so I tried to install the program on another computer.  The install on the second computer was easy and although I hadn't yet registered the product the program prompted me to register it. It also updated to 2.5.1 (although I only am aware of that in retrospect.)  So I went back to the first computer and tried to install again. The same problem happened.  At one point I exceeded the number of downloads which is 5 because I was trying to get rid of downloads that didn't seem to be working.  I called the 800-number and without too much difficulty, the person reset the downloads.  But the same thing happened, with the program asking for the data disk.  That is when I called Tech Support.
    After the tech showed me where to retrieve 2.5.1 from their website (because he said 2.5 was buggy) and I reinstalled the data disk from the www.findmyorder.com website, the install worked well.  BTW I found it hard to understand on the www.findmyorder.com download website which file was which.  I got very confused and ended up not getting the data disk.  The program disk image which is listed second is called Dragon_Dictate_Englishes.2.5.dmg.  The data file listed first is Dragon_English_Data2.5dmg.  You need both files normally but if you are getting the 2.5.1 file, I don't believe you have to have installed 2.5 first.
    In retrospect I may have not understood how to install the two files - the program file and the data file but I can't remember exactly what was happening. By that time I was pretty lost.
    Back to MacSpeech Dictate 1 or 1.5, I assumed that I would have to have this installed on my computer in order to install the Upgrade of Dragon Dictate 2.5. Remember, I was trying to install 2.5 on a new computer. Although I had done this before I tried to purchase the Upgrade 2.5 (because the computer was new and MacSpeech 1.5 hadn't been installed on it yet), I am not sure it was necessary.
    There didn't seem to be any "secret codes" that hadn't to be removed first.  You may be talking about old or corrupted plist files which sometimes interfere with applications.  The tech just told me to drag any 2.5 applications to the trash after we got off the phone, of which by now I had about 5 on the computer.  I have had old versions on a previous computer and they never seemed to interfere with one another. I think I still have iListen 1.0 on a very old computer as well as every fresh version and upgrade.
    I hope this reply wasn't too long and didn't add to the confusion.  As I said in the first message, the criticisms are well founded.  Installing MacSpeech iListen and accessing services has been a minefield from the beginning and it isn't improving.  For someone interested in easy-to-use voice recognition I would suggest the Dragon Dictate app for an iPad or iPod Touch.  Works wonderfully but it has very limited features.
    My husband, who has physical disabilities but until recently could type better than MacSpeech Dictate was working for him and didn't have a computer that would work with MacSpeech Dictate, has been using Dragon Dictate 2.5.1 on his new computer without a microphone for a couple of days.  He believes there is hope, although with past versions he was frustrated after an hour and quit.  One new thing in Dragon Dictate 2.5 is that editing on the keyboard before you finish the document does not mess up further voice input.  He continues to struggle with voice control (a good exercise for the voice) and his tendency to talk as if there he has a secretary taking shorthand.  You really do have to talk to the computer in a conversational way, speaking in full sentences or full phrases if possible, not in separate words.
    From iListen 1.0 I kept saying that voice recognition would work well for everyone.  It has been a long road but I can see on the horizon that it will be available for everyone.  The iPad/iPod app is close.
    Frangelica

  • Sincere Eclipse 3.0.2 build problems using a package for all Eclipse Java p

    Hi,
    I had the following problem:
    - jar-file put into a directory (for jdbc-access)
    - Environment variable set in Window/preferences/Java/BuildPath/ClassPathVariables:
    Name: classpath (could be any other name, does not correlate with WIN env. var.)
    Path: C:\java\eclipse\jars\mysql-connector-java-3.1.8-bin.jar
    - class-file was automatically built by Eclipse, error message:
    �. java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    In Windows I set the classpath environment variable to
    classpath=.;C:\java\eclipse\jars\mysql-connector-java-3.1.8-bin.jar
    In Windows/i.e., a DOS-Shell. It works
    As it didn�t work in Eclipse, I deleted Eclipse and installed it again (from an elder version I had on another workstation)
    After starting Eclipse asked me to rebuild all -> Yes (it then needed some time to do so)
    Then it worked
    So, right here I thought I knew how to go on in other projects using this jar-file, but:
    The same problem appears in another project, but it works in WIN/DOS command line, but not in Eclipse. Project/Clean und rebuilding automatically or manually doesn�t help.
    As a workaround for this project I did in
    Project/Properties/Java/BuildPath/Projects I marked a link to the project where it works (see above), and now it works, too.
    But I am not satisfied, I don�t like trial and error solutions.
    I suppose that Project/Clean doesn�t really clean properly.
    Has anybody made similar experience and knows the real solution?
    Thanks
    Michel

    JediKnight wrote:I didn't find it in AUR
    What search term did you use??  Here is monodevelop-git already in the AUR.
    It seems it may have been abandonded, but perhaps you could take over that package rather than starting a new one.
    Additionally, a patch is applied in that PKGBUILD.  Perhaps that could be needed to solve your problem.

  • Problems using unixODBC Driver for 64-bit Linux

    Good morning
    We are incurring a problem with the unixODBC Driver via Oracle Heterogeneous Services for connecting from a 64-bit SUSE Linux Server to a Windows PostgreSQL database (8.2). Oracle is 11.2.0.3. We are receiving an error when retrieving SMALLINT data from PostGreSQL. This should "automagically" convert to NUMBER(5) in Oracle but we are receiving a conversion error.
    Here is the text of the HS Trace file. Any help in diagnosing this would be much appreciated.
    Oracle Corporation --- MONDAY DEC 17 2012 17:14:36.779
    Heterogeneous Agent Release
    11.2.0.3.0
    Oracle Corporation --- MONDAY DEC 17 2012 17:14:36.778
    Version 11.2.0.3.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "DEBUG"
    Entered hgosdip
    HOSGIP returned value of "50" for HS_OPEN_CURSORS
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of HS_TRANSACTION_LOG
    HOSGIP returned value of "0" for HS_IDLE_TIMEOUT
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "AL32UTF8"
    setting HS_FDS_TIMESTAMP_MAPPING to default of "DATE"
    setting HS_FDS_DATE_MAPPING to default of "DATE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    HOSGIP returned value of "100" for HS_FDS_FETCH_ROWS
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    HOSGIP returned value of "TRUE" for HS_FDS_RSET_RETURN_ROWCOUNT
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    setting HS_FDS_SUPPORT_STATISTICS to default of "FALSE"
    setting HS_FDS_QUOTE_IDENTIFIER to default of "TRUE"
    setting HS_KEEP_REMOTE_COLUMN_SIZE to default of "OFF"
    setting HS_FDS_GRAPHIC_TO_MBCS to default of "FALSE"
    setting HS_FDS_MBCS_TO_GRAPHIC to default of "FALSE"
    HOSGIP returned value of "64" for HS_FDS_SQLLEN_INTERPRETATION
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics;gtw$:SQLGetInfo"
    setting HS_FDS_DELAYED_OPEN to default of "TRUE"
    setting HS_FDS_WORKAROUNDS to default of "0"
    Exiting hgosdip, rc=0
    ORACLE_SID is "dev"
    Product-Info:
    Port Rls/Upd:3/0 PrdStat:0
    Agent:Oracle Database Gateway for ODBC
    Facility:hsa
    Class:ODBC, ClassVsn:11.2.0.3.0_0011, Instance:dev
    Exiting hgogprd, rc=0
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=178
    HOCXU_DRV_NCHAR=873
    HOCXU_DB_CSET=873
    HS_LANGUAGE is american_america.we8mswin1252
    LANG=en_US.UTF-8
    HOCXU_SEM_VER=112000
    HOSGIP for "HS_FDS_REMOTE_DB_CHARSET" returned "we8mswin1252"
    Entered hgolofn at 2012/12/17-17:14:36
    HOSGIP for "HS_FDS_SHAREABLE_NAME" returned "/usr/lib64/psqlodbcw.so"
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9530
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f4e70
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f8110
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f4f30
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f6d20
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5610
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f98e0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5790
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5880
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9b20
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5980
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5a60
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9de0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5b20
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f7370
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5d80
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5e00
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5f10
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5fa0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa160
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa130
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f97c0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f4f60
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f52e0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5530
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f53a0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5680
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f6eb0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9ec0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9bf0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9c60
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9c90
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9d40
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5bc0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9f60
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5cd0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5e80
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f74f0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f77a0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f7af0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa020
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa280
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa0b0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f63e0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f66d0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Exiting hgolofn, rc=0 at 2012/12/17-17:14:36
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    HOSGIP for "HS_KEEP_REMOTE_COLUMN_SIZE" returned "OFF"
    HOSGIP for "HS_FDS_DELAYED_OPEN" returned "TRUE"
    HOSGIP for "HS_FDS_WORKAROUNDS" returned "0"
    HOSGIP for "HS_FDS_MBCS_TO_GRAPHIC" returned "FALSE"
    HOSGIP for "HS_FDS_GRAPHIC_TO_MBCS" returned "FALSE"
    treat_SQLLEN_as_compiled = 1
    Exiting hgoinit, rc=0 at 2012/12/17-17:14:36
    Entered hgolgon at 2012/12/17-17:14:36
    reco:0, name:onstar, tflag:0
    Entered hgosuec at 2012/12/17-17:14:36
    Exiting hgosuec, rc=0 at 2012/12/17-17:14:36
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned "HS_TRANSACTION_LOG"
    HOSGIP for "HS_FDS_TIMESTAMP_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_DATE_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULTSET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_RSET_RETURN_ROWCOUNT" returned "TRUE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using onstar as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    Entered hgocont at 2012/12/17-17:14:36
    HS_FDS_CONNECT_INFO = "PecanStreetDB"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2012/12/17-17:14:36
    dsn:PecanStreetDB, name:onstar
    optn:
    Entered hgocip at 2012/12/17-17:14:36
    dsn:PecanStreetDB
    Exiting hgocip, rc=0 at 2012/12/17-17:14:36
    Exiting hgogenconstr, rc=0 at 2012/12/17-17:14:36
    Entered hgolosf at 2012/12/17-17:14:37
    Exiting hgolosf, rc=0 at 2012/12/17-17:14:37
    DriverName:psqlodbcw.so, DriverVer:08.03.0200
    DBMS Name:PostgreSQL, DBMS Version:PostgreSQL 8.2.15 (Greenplum Database 4.1.1.1 build 1 Community Edition) on x86_64-unknown-linux-gnu, compiled by GCC gcc (GCC)
    Exiting hgocont, rc=0 at 2012/12/17-17:14:37
    SQLGetInfo returns Y for SQL_CATALOG_NAME
    SQLGetInfo returns 0 for SQL_MAX_CATALOG_NAME_LEN
    Exiting hgolgon, rc=0 at 2012/12/17-17:14:37
    Entered hgoulcp at 2012/12/17-17:14:37
    Entered hgowlst at 2012/12/17-17:14:37
    Exiting hgowlst, rc=0 at 2012/12/17-17:14:37
    SQLGetInfo returns 0x1d for SQL_OWNER_USAGE
    TXN Capable:2, Isolation Option:0xa
    SQLGetInfo returns 64 for SQL_MAX_SCHEMA_NAME_LEN
    SQLGetInfo returns 64 for SQL_MAX_TABLE_NAME_LEN
    SQLGetInfo returns 0 for SQL_MAX_PROCEDURE_NAME_LEN
    HOSGIP returned value of "TRUE" for HS_FDS_QUOTE_IDENTIFIER
    SQLGetInfo returns " (0x22) for SQL_IDENTIFIER_QUOTE_CHAR
    2 instance capabilities will be uploaded
    capno:1989, context:0x00000000, add-info: 0
    capno:1992, context:0x0001ffff, add-info: 0
    Exiting hgoulcp, rc=0 at 2012/12/17-17:14:37
    Entered hgouldt at 2012/12/17-17:14:37
    NO instance DD translations were uploaded
    Exiting hgouldt, rc=0 at 2012/12/17-17:14:37
    Entered hgobegn at 2012/12/17-17:14:37
    tflag:0 , initial:1
    hoi:0xcca42008, ttid (len 27) is ...
    00: 534D5254 47524444 2E306635 35343862 [SMRTGRDD.0f5548b]
    10: 352E392E 392E3732 323038 [5.9.9.72208]
    tbid (len 24) is ...
    00: 534D5254 47524444 5B392E39 2E373232 [SMRTGRDD[9.9.722]
    10: 30385D5B 312E345D [08][1.4]]
    Exiting hgobegn, rc=0 at 2012/12/17-17:14:38
    Entered hgodtab at 2012/12/17-17:14:38
    count:1
    table: dev.onstar_view
    Allocate hoada[0] @ 0x7794d0
    Entered hgopcda at 2012/12/17-17:14:38
    Column:1(dataid): dtype:5 (SMALLINT), prc/scl:5/0, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:2(timestamp_localtime): dtype:93 (TIMESTAMP), prc/scl:19/0, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:3(use): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:4(gen): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:5(grid): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:6(air): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:7(furnace): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:8(car): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    The hoada for table dev.onstar_view follows...
    hgodtab, line 1092: Printing hoada @ 0x7794d0
    MAX:8, ACTUAL:8, BRC:1, WHT=6 (TABLE_DESCRIBE)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    5 SMALLINT Y 2 2 0/ 0 0 0 0 dataid
    91 DATE Y 16 16 0/ 0 0 0 0 timestamp_localtime
    3 DECIMAL Y 31 31 28/ 6 0 0 0 use
    3 DECIMAL Y 31 31 28/ 6 0 0 0 gen
    3 DECIMAL Y 31 31 28/ 6 0 0 0 grid
    3 DECIMAL Y 31 31 28/ 6 0 0 0 air
    3 DECIMAL Y 31 31 28/ 6 0 0 0 furnace
    3 DECIMAL Y 31 31 28/ 6 0 0 0 car
    Exiting hgodtab, rc=0 at 2012/12/17-17:14:38
    Entered hgodafr, cursor id 0 at 2012/12/17-17:14:38
    Free hoada @ 0x7794d0
    Exiting hgodafr, rc=0 at 2012/12/17-17:14:38
    Entered hgopars, cursor id 1 at 2012/12/17-17:14:38
    type:0
    SQL text from hgopars, id=1, len=40 ...
    00: 53454C45 43542022 64617461 69642220 [SELECT "dataid" ]
    10: 46524F4D 20226465 76222E22 6F6E7374 [FROM "dev"."onst]
    20: 61725F76 69657722 [ar_view"]
    Exiting hgopars, rc=0 at 2012/12/17-17:14:40
    Entered hgoopen, cursor id 1 at 2012/12/17-17:14:40
    hgoopen, line 87: NO hoada to print
    Deferred open until first fetch.
    Exiting hgoopen, rc=0 at 2012/12/17-17:14:40
    Entered hgodscr, cursor id 1 at 2012/12/17-17:14:40
    Allocate hoada @ 0x779478
    Entered hgodscr_process_sellist_description at 2012/12/17-17:14:40
    Entered hgopcda at 2012/12/17-17:14:40
    Column:1(dataid): dtype:5 (SMALLINT), prc/scl:5/0, nullbl:1, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:40
    hgodscr, line 464: Printing hoada @ 0x779478
    MAX:1, ACTUAL:1, BRC:100, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    5 SMALLINT Y 2 2 0/ 0 0 0 0 dataid
    Exiting hgodscr, rc=0 at 2012/12/17-17:14:40
    Entered hgoftch, cursor id 1 at 2012/12/17-17:14:40
    hgoftch, line 133: Printing hoada @ 0x779478
    MAX:1, ACTUAL:1, BRC:100, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    5 SMALLINT Y 2 2 0/ 0 0 0 0 dataid
    Performing delayed open.
    SQLBindCol: column 1, cdatatype: -15, bflsz: 2
    SQLFetch: row: 1, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 1, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 2, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 2, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 3, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 3, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 4, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 4, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 5, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 5, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 6, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 6, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 7, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 7, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 8, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 8, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 9, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 9, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 10, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 10, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 11, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 11, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 12, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 12, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 13, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 13, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 14, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 14, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 15, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 15, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 16, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 16, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 17, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 17, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 18, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 18, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 19, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 19, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 20, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 20, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 21, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 21, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 22, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 22, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 23, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 23, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 24, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 24, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 25, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 25, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 26, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 26, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 27, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 27, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 28, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 28, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 29, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 29, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 30, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 30, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 31, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 31, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 32, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 32, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 33, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 33, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 34, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 34, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 35, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 35, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 36, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 36, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 37, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 37, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 38, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 38, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 39, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 39, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 40, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 40, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 41, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 41, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 42, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 42, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 43, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 43, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 44, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 44, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 45, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 45, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 46, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 46, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 47, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 47, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 48, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 48, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 49, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 49, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 50, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 50, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 51, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 51, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 52, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 52, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 53, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 53, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 54, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 54, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 55, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 55, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 56, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 56, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 57, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 57, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 58, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 58, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 59, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 59, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 60, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 60, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 61, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 61, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 62, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 62, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 63, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 63, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 64, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 64, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 65, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 65, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 66, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 66, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 67, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 67, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 68, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 68, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 69, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 69, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 70, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 70, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 71, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 71, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 72, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 72, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 73, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 73, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 74, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 74, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 75, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 75, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 76, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 76, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 77, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 77, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 78, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 78, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 79, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 79, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 80, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 80, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 81, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 81, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 82, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 82, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 83, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 83, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 84, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 84, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 85, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 85, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 86, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 86, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 87, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 87, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 88, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 88, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 89, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 89, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 90, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 90, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 91, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 91, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 92, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 92, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 93, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 93, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 94, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 94, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 95, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 95, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 96, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 96, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 97, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 97, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 98, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 98, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 99, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 99, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 100, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 100, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    100 rows fetched
    Exiting hgoftch, rc=0 at 2012/12/17-17:14:40
    HS Agent received unexpected RPC disconnect
    Network error 1003: NCR-01003: NCRS: Read error.
    Entered hgoroll at 2012/12/17-17:15:36
    tflag:0 , cmt(38):Unexpected EOF from Oracle - Rollback
    hoi:0x756988, ttid (len 27) is ...
    00: 534D5254 47524444 2E306635 35343862 [SMRTGRDD.0f5548b]
    10: 352E392E 392E3732 323038 [5.9.9.72208]
    tbid (len 24) is ...
    00: 534D5254 47524444 5B392E39 2E373232 [SMRTGRDD[9.9.722]
    10: 30385D5B 312E345D [08][1.4]]
    Entered hgocpctx at 2012/12/17-17:15:36
    Exiting hgocpctx, rc=0 at 2012/12/17-17:15:36
    Exiting hgoroll, rc=0 at 2012/12/17-17:15:36
    Entered hgodafr, cursor id 1 at 2012/12/17-17:15:36
    Free hoada @ 0x779478
    Exiting hgodafr, rc=0 at 2012/12/17-17:15:36
    Entered hgolgof at 2012/12/17-17:15:36
    tflag:0
    Exiting hgolgof, rc=0 at 2012/12/17-17:15:36
    Entered hgoexit at 2012/12/17-17:15:36
    Exiting hgoexit, rc=0

    Update
    Changed the support flag to 32 bit and all now works.
    SPK

  • Problems using Quicken 2004 for Mac under Leopard?

    I am using Leopard and still using my old Quicken 2004. It works fine for the most part but there are just small glitches. For example, I am continually prompted to set up charges as a recurring bill and it will not let me check the "No" button. I have installed allof the updates. There are no major problems, just minor annoyances.

    Quicken warns of possible data corruption with even 2006, so while I wanted to wait for 2008 (stripped down as they will 'start all over' in features) 2007 has worked and had a couple updates.

  • Problem using ebook text for LR4

    I have been using the ebook text Classroom in a Book for Lightroom 4.  I am working on two screens:  Classroom in a Book is on the secondary screen; LR4 is on the main screen.  I have gone through 4 of the lessons.  At some point during Lesson 4 I must have done something and I can't figure out how to undo it.  What happens is that Classroom in a Book disappears from the secondary screen when I move the curser from the secondary screen to the main screen where I work on LR4 exercises.  What appears on the secondary screen is either a LR4 photo or a blank LR4 screen that says "No Photo Selected".  I can get back to Classroom in a book if I move the curser to the left margin and click.  But then I have to do this every time I move the curser from the secondary screen to the main screen.  How do I undo this so that Classroom in a Book remains on the secondary screen as I go from one screen to the other screen.  How do I undo this?  Any help would be appreciated. 

    I'm not at all familiar with classroom or book, but since no else has responded I'll throw this out there.
    Try going to Window -> Secondary Display and trying switching some of the options in there. Hope that helps

  • Problem using PAPI-WS for external process notifcation

    Hello,
    I'm trying to have an external Java application send a process notification using PAPI-WS.
    I have a process instance currently sitting at a notifcation wait step (configured to wait for an external notification) but each time I call processSendNotification I get the an unspported operation exception. I'm not even sure this is the correct ws operation to use but looking at the PAPI API reference it seemed the most likely.
    Below is a snippet from the code I'm testing this with and the corresponding output including the exception:
    for (InstanceInfoBean instance : instances.getInstances())
    String waitStep = "WaitForDelivery";
    System.out.println("-> process id = " + instance.getId());
    // find which instance are waiting on delivery
    if (waitStep.equals(instance.getActivityName()))
    System.out.println(" -> " + instance.getAuthor() + " is waiting on delivery!");
    papiWebServicePort.processSendNotification(instance.getId(), waitStep, null, null);
    Process: WhatToHave
    -> process id = /WhatToHave#Default-1.0/2/0
    -> process id = /WhatToHave#Default-1.0/1/0
    -> Andy is waiting on delivery!
    Could not perform the requested operation
    stubs.OperationException_Exception: The BEA AquaLogic® BPM Engine version does not support the required operation.Please ask BEA AquaLogic® BPM Administrator for assistance.
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:127)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:254)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:224)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:117)
         at $Proxy31.processSendNotification(Unknown Source)
    I'm doing this all using BPM Studio 6.0.2 (build 85749) on Linux.
    Any help or pointers greatly appreciated,
    Thanks,
    Mike

    Hello,
    I'm trying to have an external Java application send a process notification using PAPI-WS.
    I have a process instance currently sitting at a notifcation wait step (configured to wait for an external notification) but each time I call processSendNotification I get the an unspported operation exception. I'm not even sure this is the correct ws operation to use but looking at the PAPI API reference it seemed the most likely.
    Below is a snippet from the code I'm testing this with and the corresponding output including the exception:
    for (InstanceInfoBean instance : instances.getInstances())
    String waitStep = "WaitForDelivery";
    System.out.println("-> process id = " + instance.getId());
    // find which instance are waiting on delivery
    if (waitStep.equals(instance.getActivityName()))
    System.out.println(" -> " + instance.getAuthor() + " is waiting on delivery!");
    papiWebServicePort.processSendNotification(instance.getId(), waitStep, null, null);
    Process: WhatToHave
    -> process id = /WhatToHave#Default-1.0/2/0
    -> process id = /WhatToHave#Default-1.0/1/0
    -> Andy is waiting on delivery!
    Could not perform the requested operation
    stubs.OperationException_Exception: The BEA AquaLogic® BPM Engine version does not support the required operation.Please ask BEA AquaLogic® BPM Administrator for assistance.
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:127)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:254)
         at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:224)
         at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:117)
         at $Proxy31.processSendNotification(Unknown Source)
    I'm doing this all using BPM Studio 6.0.2 (build 85749) on Linux.
    Any help or pointers greatly appreciated,
    Thanks,
    Mike

  • Problem using function module for infotype 21

    hi
    im uploading the infotype 21 (family details) through function module hr_infotype_operations. i found that infotype 0106 (family/related person)
    is a secondary infotype and that a record is created for 0106 ,everytime you create a record in 21. so i upload the family data of an employee using the function module for infotype 21 initially. and then fetch the same record from the table pa0106 and modify the same record with other information.
    for example : u have the address details of a dependent(father subtype 11) in infotype 21. this address data is stored in the table pa0106 .  im not able to modify the record for infotype 0106 using the function module 0106.
    i would like to know the reason for the same. Is it because that infotype 0106 is a secondary infotype and u cannot modify the record using the fn module..?/
    thanks
    sridharan

    Hi Sir,
    I am also facing the same issue...i need to update dependents Information  Date Of Birth n Perid(Which is stored in IT0106)...in IT 0021..
    Kindly correct my code....
    I am using the following code for this...
    data: w_return type  bapireturn1.
    data: p0021_struc TYPE p0021,
          p0106_struc TYPE p0106,
          p_pskey   TYPE pskey.
    start-of-selection.
    get pernr.
    p0021_struc = p0021.
    p0021_struc-favor = 'Gaurav'.
    p0021_struc-fgbdt = '05/10/1955'.
    Move p0021_struc-favor to p0021-favor.
      p0106_struc = p0106.
      p0106_struc-stras = '2235 BOmbay Road'.
      p0106_struc-perid = '123456789'.
      MOVE p0106_struc-stras to p0106-stras.
    Enqueue personnel number
      call function 'BAPI_EMPLOYEE_ENQUEUE'
        exporting
          number = pernr-pernr
        importing
          return = w_return.
      CALL FUNCTION 'HR_INFOTYPE_OPERATION'
        EXPORTING
          infty            = p_pskey-infty
          number           = p_pskey-pernr
          subtype          = p_pskey-subty
          objectid         = p_pskey-objps
          lockindicator    = p_pskey-sprps
          validityend      = p0021-endda         " '99991231'
          validitybegin    = p0021-begda
          record           = p0021_struc
          operation        = 'mod'
          tclas            = 'A'
          dialog_mode      = '2'
         nocommit         = p_test
          VIEW_IDENTIFIER  = '07'              "p0003-viekn
          secondary_record = p0106_struc
        IMPORTING
          return           = w_return
         key              = familykey
        EXCEPTIONS
          OTHERS           = 0.
    Enqueue personnel number
      call function 'BAPI_EMPLOYEE_DEQUEUE'
        exporting
          number = pernr-pernr
        importing
          return = w_return.

Maybe you are looking for