Outbound merge not working with where conditions in 10g

Hi,
These are my database details both remote and local database
SQL> select * from v$version;
BANNER
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
PL/SQL Release 10.2.0.4.0 - Production
CORE    10.2.0.4.0      Production
TNS for HPUX: Version 10.2.0.4.0 - Production
NLSRTL Version 10.2.0.4.0 - ProductionI am doing a merge into a remote database from a local table using below query...
MERGE into sap_mmd_po_all@cosmic_dev.somedomainname trg using (select * from sap_mmd_cmas_po where upload_flag in ('I','U')) src
  on (trg.PO_NO=src.PO_NO and trg.LINE_DISTRIB_SEQ=src.LINE_DISTRIB_SEQ)
  WHEN MATCHED THEN
    update set
      trg.PO_STATUS_FLG=src.PO_STATUS_FLG,
      trg.SHIP_TO_FACILITY_CD=src.SHIP_TO_FACILITY_CD,
      trg.DELV_TO_PHONE_NO=src.DELV_TO_PHONE_NO,
      trg.DELV_TO_NM=src.DELV_TO_NM,
      trg.DELV_TO_ADDRESS_1=src.DELV_TO_ADDRESS_1,
      trg.PO_ITEM_NO=src.PO_ITEM_NO,
      trg.ITEM_DESCRP=src.ITEM_DESCRP,
      trg.PARTY_NM=src.PARTY_NM,
      trg.VENDOR_ITEM_ID=src.VENDOR_ITEM_ID,
      trg.PO_LN_CRTE_DT=src.PO_LN_CRTE_DT,
      trg.BILL_UOM_CD=src.BILL_UOM_CD,
      trg.COMMODITY_CD=src.COMMODITY_CD,
      trg.COMMODITY_NM=src.COMMODITY_NM,
      trg.BSNSS_UNIT_NO=src.BSNSS_UNIT_NO,
      trg.PO_LN_ORD_QTY=src.PO_LN_ORD_QTY,
      trg.DISTRIB_AMT=src.DISTRIB_AMT,
      trg.PO_LN_DEL_IND=src.PO_LN_DEL_IND,
      trg.PO_DEL_IND=src.PO_DEL_IND,
      trg.PO_TYPE=src.PO_TYPE,
      trg.DOC_DATE=src.DOC_DATE,
      trg.CRTE_DT_TM=src.CRTE_DT_TM,
      trg.UPD_DT_TM=systimestamp,
      trg.SOURCE_SYSTEM=src.SOURCE_SYSTEM,
      trg.PO_LN_LST_CHNGE_DT=src.PO_LN_LST_CHNGE_DT,
      trg.TXJCD=src.TXJCD,
      trg.PLANT=src.PLANT
      where (src.upload_flag='U')--if i remove this then it is working
  WHEN NOT MATCHED THEN
    insert( trg.PO_NO,
            trg.LINE_DISTRIB_SEQ,
            trg.PO_STATUS_FLG,
            trg.SHIP_TO_FACILITY_CD,
            trg.DELV_TO_PHONE_NO,
            trg.DELV_TO_NM,
            trg.DELV_TO_ADDRESS_1,
            trg.PO_ITEM_NO,
            trg.ITEM_DESCRP,
            trg.PARTY_NM,
            trg.VENDOR_ITEM_ID,
            trg.PO_LN_CRTE_DT,
            trg.BILL_UOM_CD,
            trg.COMMODITY_CD,
            trg.COMMODITY_NM,
            trg.BSNSS_UNIT_NO,
            trg.PO_LN_ORD_QTY,
            trg.DISTRIB_AMT,
            trg.PO_LN_DEL_IND,
            trg.PO_DEL_IND,
            trg.PO_TYPE,
            trg.DOC_DATE,
            trg.CRTE_DT_TM,
            trg.UPD_DT_TM,
            trg.SOURCE_SYSTEM,
            trg.PO_LN_LST_CHNGE_DT,
            trg.TXJCD,
            trg.PLANT)
    values( src.PO_NO,
            src.LINE_DISTRIB_SEQ,
            src.PO_STATUS_FLG,
            src.SHIP_TO_FACILITY_CD,
            src.DELV_TO_PHONE_NO,
            src.DELV_TO_NM,
            src.DELV_TO_ADDRESS_1,
            src.PO_ITEM_NO,
            src.ITEM_DESCRP,
            src.PARTY_NM,
            src.VENDOR_ITEM_ID,
            src.PO_LN_CRTE_DT,
            src.BILL_UOM_CD,
            src.COMMODITY_CD,
            src.COMMODITY_NM,
            src.BSNSS_UNIT_NO,
            src.PO_LN_ORD_QTY,
            src.DISTRIB_AMT,
            src.PO_LN_DEL_IND,
            src.PO_DEL_IND,
            src.PO_TYPE,
            src.DOC_DATE,
            systimestamp,
            src.UPD_DT_TM,
            src.SOURCE_SYSTEM,
            src.PO_LN_LST_CHNGE_DT,
            src.TXJCD,
            src.PLANT)
            where src.upload_flag='I'--if i remove this then it is working
            ;And it is throwing an error like...
SQL Error: ORA-00904: "A3"."UPLOAD_FLAG": invalid identifierBut when I replace the remote table name with local table name then query is functioning fine...
table structure in local database..
CREATE TABLE SAP_MMD_CMAS_PO
   (     "PO_NO" VARCHAR2(10 BYTE) NOT NULL ENABLE,
     "LINE_DISTRIB_SEQ" NUMBER NOT NULL ENABLE,
     "PO_STATUS_FLG" VARCHAR2(40 BYTE),
     "SHIP_TO_FACILITY_CD" VARCHAR2(100 BYTE),
     "DELV_TO_PHONE_NO" VARCHAR2(50 BYTE),
     "DELV_TO_NM" VARCHAR2(100 BYTE),
     "DELV_TO_ADDRESS_1" VARCHAR2(1000 BYTE),
     "PO_ITEM_NO" VARCHAR2(100 BYTE),
     "ITEM_DESCRP" VARCHAR2(200 BYTE),
     "PARTY_NM" VARCHAR2(1000 BYTE),
     "VENDOR_ITEM_ID" VARCHAR2(100 BYTE),
     "PO_LN_CRTE_DT" TIMESTAMP (6),
     "BILL_UOM_CD" VARCHAR2(50 BYTE),
     "COMMODITY_CD" VARCHAR2(50 BYTE),
     "COMMODITY_NM" VARCHAR2(50 BYTE),
     "BSNSS_UNIT_NO" VARCHAR2(50 BYTE),
     "PO_LN_ORD_QTY" NUMBER,
     "DISTRIB_AMT" NUMBER,
     "PO_LN_DEL_IND" VARCHAR2(10 BYTE),
     "PO_DEL_IND" VARCHAR2(10 BYTE),
     "PO_TYPE" VARCHAR2(10 BYTE),
     "DOC_DATE" TIMESTAMP (6),
     "CRTE_DT_TM" TIMESTAMP (6),
     "UPD_DT_TM" TIMESTAMP (6),
     "SOURCE_SYSTEM" VARCHAR2(100 BYTE),
     "PO_LN_LST_CHNGE_DT" TIMESTAMP (6),
     "TXJCD" VARCHAR2(50 BYTE),
     "PLANT" VARCHAR2(10 BYTE),
     "UPLOAD_FLAG" VARCHAR2(1 BYTE),
      PRIMARY KEY ("PO_NO", "LINE_DISTRIB_SEQ")
--table structure in remote database table
CREATE TABLE SAP_MMD_PO_ALL
   (     "PO_NO" VARCHAR2(10 BYTE) NOT NULL ENABLE,
     "LINE_DISTRIB_SEQ" NUMBER NOT NULL ENABLE,
     "PO_STATUS_FLG" VARCHAR2(40 BYTE),
     "SHIP_TO_FACILITY_CD" VARCHAR2(100 BYTE),
     "DELV_TO_PHONE_NO" VARCHAR2(50 BYTE),
     "DELV_TO_NM" VARCHAR2(100 BYTE),
     "DELV_TO_ADDRESS_1" VARCHAR2(1000 BYTE),
     "PO_ITEM_NO" VARCHAR2(100 BYTE),
     "ITEM_DESCRP" VARCHAR2(200 BYTE),
     "PARTY_NM" VARCHAR2(1000 BYTE),
     "VENDOR_ITEM_ID" VARCHAR2(100 BYTE),
     "PO_LN_CRTE_DT" TIMESTAMP (6),
     "BILL_UOM_CD" VARCHAR2(50 BYTE),
     "COMMODITY_CD" VARCHAR2(50 BYTE),
     "COMMODITY_NM" VARCHAR2(50 BYTE),
     "BSNSS_UNIT_NO" VARCHAR2(50 BYTE),
     "PO_LN_ORD_QTY" NUMBER,
     "DISTRIB_AMT" NUMBER,
     "PO_LN_DEL_IND" VARCHAR2(10 BYTE),
     "PO_DEL_IND" VARCHAR2(10 BYTE),
     "PO_TYPE" VARCHAR2(10 BYTE),
     "DOC_DATE" TIMESTAMP (6),
     "CRTE_DT_TM" TIMESTAMP (6),
     "UPD_DT_TM" TIMESTAMP (6),
     "SOURCE_SYSTEM" VARCHAR2(100 BYTE),
     "PO_LN_LST_CHNGE_DT" TIMESTAMP (6),
     "TXJCD" VARCHAR2(50 BYTE),
     "PLANT" VARCHAR2(10 BYTE),
     "DELETE_FLAG" VARCHAR2(1 BYTE) DEFAULT 'N',
      PRIMARY KEY ("PO_NO", "LINE_DISTRIB_SEQ")
  )It seems to me like a bug, but not quite sure...
your suggestions are appreciated.
Thanks,
Ravi Kumar
Edited by: ravikumar.sv on Dec 14, 2009 1:31 PM
Commented the where conditions in merge query

Hi,
Yes, i hit the same error....
SQL> ed
Wrote file afiedt.buf
  1  merge into hr.test1@test_dblink using test2 on (test1.id = test2.id)
  2  when matched then update set test1.col1=test2.col2 where test2.id=2
  3* when not matched then insert (id, col1) values(test2.id,test2.col2)
SQL> /
merge into hr.test1@test_dblink using test2 on (test1.id = test2.id)
ERROR at line 1:
ORA-00904: "A3"."ID": invalid identifier
ORA-02063: preceding line from TEST_DBLINKBUT here is a work around...to add the where condition while joining(ON) itself.
SQL> ed
Wrote file afiedt.buf
  1  merge into hr.test1@test_dblink using test2 on (test1.id = test2.id and tes
t2.id=2)
  2  when matched then update set test1.col1=test2.col2
  3* when not matched then insert (id, col1) values(test2.id,test2.col2)
SQL> /
2 rows merged.
SQL>For you the condition would be...
on (trg.PO_NO=src.PO_NO and trg.LINE_DISTRIB_SEQ=src.LINE_DISTRIB_SEQ AND src.upload_flag='U')cheers,
Edited by: Avinash Tripathi on Dec 14, 2009 2:53 PM

Similar Messages

  • Sales doc copy control not working with price condition

    Here's the situation.
    For OR sales document I have  Procedure ZSALES and price conditions Z001
    For a QT Sales document I have Procedure ZQUOTE which does not have a Z001 condition in that procedure.
    If I create an OR (with the proper customer / matieral) the Z001 populates, based on it's defined record.
    If I then create another OR with reference to the original OR, the Z001 populates with no problem.
    Up to now everything's fine, now here's the probem......
    If I create an OR with reference to a QT, the Z001 does not populate in the OR order.I know there is no Z001 in the QT for it to copy from, but if I do [New Pricing] in the order it still does not come in.(I've tried [new Pricing] with Pricing type A..G)
    I have found OSS Note 413066, but this is in reference to 46c systems. we are on ECC 6.0
    any ideas ?

    Hi Bill,
    If PP assigned for both are different it's not going to populate field even if you are redertermining price, since it would be following the PP of Quotation (ZQUOTE), not Sales Order (ZSALES) because it's gonna copy the elements of that PP in order. Are your PP assigned are same or different?
    Hope this will answer your query
    Regards
    SD

  • Oracle 11g XE not working with oracle BI publisher 10g after enabling ACL

    Hello,
    I previously work with oracle 10gXE and Oracle BI publisher 10g and it work fine. now i install oracle 11g XE and try to configure it with oracle Bi Publlisher, it show this error
    "ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1324 ORA-12570: TNS:packet reader failure" after runing the ACL package to neable network service.
    on the database.
    Please can any body tell be why this is not working. Tanx.

    You'll need to add the apex engine owner to the ACL (Access Control List). Depending on your version of apex the user name varies. i.e. 4.0 is APEX_040000
    See Joel's blog for info about the ACL and APEX.
    [http://joelkallman.blogspot.com/2010/10/application-express-network-acls-and.html]

  • Lightroom link to PS Panorama merge Not working with Photoshop CC 2014 upgrade

    I recently received an upgrade to PS CC to PS CC2014. After Upgrading I now notice the Option in Lightroom 5.5 to edit in PS and merge to Panorama is no longer working.
    When used, PS program starts, but does not con tune with the script to load existing files and merge into a panorama image.
    Does PS CC 2014 use a different script? as it seems to be failing.
    Has anyone else had this issue, is there a fix coming?

    This worked for me, and a simple solution...
    Start PS - restart LR :-)

  • I generated a new Itunes Account and now the App sync. does not work with theapps I bought with the old account. Is it possible to merge the old and the new account ?

    I generated a new Itunes Account and now the App sync. does not work with the apps I bought with the old account. Is it possible to merge the old and the new account ?

    It is not possible to merge Apple IDs. 
    Why did you create a new one?

  • PreparedStatement not working with Oracle

    Hi All,
    I am using preparedStatement in my JDBC code to fetch/insert values from oracle9i database.
    I am checking condition like if a given record does not exist then insert it else update it.
    First time it works when there is no row in database, however for subsequent run it's not able to return me the result though that row exist in database and this resulting in DuplicateKeyException becuase it try to create the row in db again.
    The code is working fine for MySQL DB2 and SQLServer but doesn't work in case oracle 9i
    Here is mycode
    //problem is here 1st time it works next time it is not retunring true though record is there in DB.
    if(isItemExist("1","CORP"))
    updateItem("1","CORP","DESC1");
    else
    insertItem("1","CORP","DESC1");
    public boolean isItemExist(String itemid, String storeid)
    String FIND_SQL = "SELECT item_desc from item where item_id = ? and store_id = ? ";          
    c = utils.getConnection();
    ps = c.prepareStatement();
    int i = 1;
    ps.setString(i++, storeid);
    ps.setString(i++, itemid);
    rs = ps.executeQuery();
    if(rs.next()){
         return true;
    utils.close(c, ps, rs);
    else{
         return false;
    utils.close(c, ps, rs);
    public void createItem(String itemid, String storeid, String item_desc)
    String INSERT_SQL = "INSERT INTO item(item_id,store_id,item_desc)values(?, ?, ?)";
    c = utils.getConnection();
    ps = c.prepareStatement();
    int i = 1;
    ps.setString(i++, itemid);
    ps.setString(i++, storeid);
    ps.setString(i++, item_desc);
    ps.executeUpdate();
    utils.close(c, ps, null);
    public void updateItem(String itemid, String storeid, String item_desc)
    String INSERT_SQL = "UPDATE item SET item_desc = ?, store_id=? WHERE item_id = ?";
    c = utils.getConnection();
    ps = c.prepareStatement();
    int i = 1;
    ps.setString(i++, item_desc);
    ps.setString(i++, storeid);
    ps.setString(i++, itemid);
    ps.executeUpdate();
    utils.close(c, ps, null);
    Kindly suggest what's wrong with code. because same code works with other databse like SQL Server, MySQL but it is not working with oracle9i.

    if(isItemExist("1","CORP"))
    updateItem("1","CORP","DESC1");
    else
    insertItem("1","CORP","DESC1");
    String FIND_SQL = "SELECT item_desc from item where item_id = ? and store_id = ? ";
    ps.setString(i++, storeid);
    ps.setString(i++, itemid);
    String INSERT_SQL = "INSERT INTO item(item_id,store_id,item_desc)values(?, ?, ?)";
    ps.setString(i++, itemid);
    ps.setString(i++, storeid);
    ps.setString(i++, item_desc);
    String INSERT_SQL = "UPDATE item SET item_desc = ?, store_id=? WHERE item_id = ?";
    ps.setString(i++, item_desc);
    ps.setString(i++, storeid);
    ps.setString(i++, itemid);My first guess, looking at the above snippets, would be that the item_id field is a number and not a string and so you should be calling ps.setInt instead of ps.setString when setting that parameter.
    This is only a guess, however, since you have not posted what the actual error is, which will probably give a hint to what the actual error is.

  • Adobe creative cloud eea 1.5 is not working with our asus Eee box , celeron j1900 2.00 ghz, 4gb of ram, 64bit. can settings be changed in adobe?

    adobe creative cloud eea 1.5 is not working with our asus Eee box , celeron j1900 2.00 ghz, 4gb of ram, 64bit. can settings be changed in adobe?

    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Flash player does not work with Ie or Firefox with win 8.1?

    Flash player does not work with Ie or Firefox with win 8.1 64, If i try and play a video I get the message to install Flashplayer.
    If I try and install it it says it is already installed. Your onsite  installer says it is not applicable to my machine.
    I have followed all the normal steps re enabling addons and active filters etc.
    all to no avail Pc is Dell 6 months old, Flashplayer has never worked on this machine. Last MS update mid Dec 2014.
    Version of flashplayer is 15....03.......

    Flash Player is a built-in component of Internet Explorer.  There's nothing separate to download or install.
    Firefox requires a different version of Flash Player (the NPAPI plug-in), which will be served to you if you go here: http://get.adobe.com/flashplayer using Firefox; however, there are some unique stability issues related to Firefox on Win8.1, and you're probably better off using Google Chrome if you want a more optimal experience with Flash Player.
    For problems where IE isn't being detected by sites that require Flash:
    First, confirm that ActiveX Filtering is configured to allow Flash content:
    https://forums.adobe.com/thread/867968
    Internet Explorer 11 introduces a number of changes both to how the browser identifies itself to remote web servers, and to how it processes JavaScript intended to target behaviors specific to Internet Explorer. Unfortunately, this means that content on some sites will be broken until the content provider changes their site to conform to the new development approach required by modern versions of IE.
    You can try to work around these issues by using Compatibility View:
    http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-11

  • Bought iPhone as "SIM-Free", but it not work with my local SIM card

    I have bought iPhone Serial No: 82108W75A4T in Canada as "SIM-Free", but it not work with my local SIM (Orange in Israel) card. Where to check: it is or not Factory Unlocked or have any hardware/software problems or have carrier ("adhered" any phone company)

    In the local Orange: They tried with them SIM, the same negative result.
    I have addressed to Canadien phone wireless carriers.
    From some [Rogers'] has already received the answer:
    ... have checked our system and did not find your iPhone listed...  Please contact Apple...

  • CISCO Box not working with Infrared Remove Control Repeater

    There was an Infrared Remote Control Repeater set-up in my newly purchased house.  It works for my LG DVD player, but does not work with my CISCO CHS435HDB box.  Are there any work around for this?  Should I change to a different box?

    If you are using a repeater, make sure the piece that is relaying the IR signal is pointing directly the font of the Cisco box and nothing is plugged into the IR input port in the back of the box.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • 27" TFT TV not working with my mac mini

    My brand new mac mini does not work with my 27" TFT TV (D-Boss) using the DVI connection. The mac mini works fine if connected to a 17" or 20" TFT display, but the screen of my TV is black and I get the error message "out of range" (strange with digital). The TV is working with my Windows laptop (analog and digital). I really have no idea where the problem is. Somebody can help me?
    Thanks
    -Linus

    10.9.1
    This is the pop up message that I get when I try to load the set up file from the disc.
    "You can’t open the application “HP Installer” because PowerPC applications are no longer supported."
    Thanks for your help

  • My apple ID is not working with my apple store

    My apple ID is not working with my apple store

    I have the exact same problem as "Jan Olsen 1"
    I sent them feedback:
    "I was given a $25 iTunes gift card. 
    When trying to log on to my account, my password didn't work (though I entered the correct password THREE TIMES). 
    I requested help changing the password through an e-mail. Went through the process, changed the password.
    I successfully logged on to my account and entered the gift card information and was given a $25 credit.
    When I tried to buy mp3s, I was asked to enter my password - AGAIN. 
    I got one of the following messages each time I tried to enter my NEW password:
    'We could not complete your iTunes Store request. An unknown error occurred (5002).
    There was an error in the iTunes Store. Please try again later.'
    or
    'Verification is required.
    You must enter your AppleID and password, click Billing Info, and verify your payment information in order to make purchases.
    The Apple ID you entered couldn't be found or your password was incorrect. Please try again.'
    Don't know where to go from here."
    And then, just to log on to this forum, I had to enter my AppleID TWICE! Once, then again to verify my AppleID!
    Ridiculous! Frustrating!

  • Modifer keys do not work with mouse in Illustrator

    Below is a copy of a bug report I just submitted to Adobe. I don't suppose any users have run across this and found a solution or workaround?
    I found someone else with this problem in an archived topic thread, but the only response that poor fellow got was an accusation of not following instructions (His problem wasn't user error, BTW).
    Thanks
    ******BUG******
    Concise problem statement:
    Modifer keys do not work with mouse: For example, free transform or rotate behaviors that require "Click-Ctrl" .
    Steps to reproduce bug:
    1. select object
    2. select free transform tool
    3. left click (without releasing) a corner of the bounding box.
    4. start dragging
    5. press ctrl
    Results:
    object behaves as though the ctrl key was not pressed. i.e. the cursor does not change shape and the object scales rather than distorts.
    Expected results: The cursor should change shape as the ctrl key is pressed and the object should distort rather than scale.
    Additional information: This behavior is intermittent. Occasionally Illustrator recognizes the "Click-Ctrl" combination and behaves exactly as the help file predicts it will. The cursor changes shape and the object distorts rather than scales. I can offer no rhyme or reason for when Illustrator will behave as advertised and when it will ignore the modifier keys.
    The example above involves the free transform tool, but the problem occurs just as often with other tool behaviors that require a modifier key + mouse combination.
    Primarily using Wacom Intuos3 tablet. (with latest drivers), but have also tried combinations with microsoft mouse or both mice installed.
    Also, immediately after an occurrence Illustrator bug, left AI open, went to a different app that uses mouse+modifier (Ctrl+Click). That different app recognizes Ctrl+Click with no problems whatsoever.

    Thanks Guys,
    Good to know it's working for you. I guess that's the nature of intermittent bugs. Of course, Adobe's bug report form has a field for version, which I, of course, filled in. Sorry I didn't add it to this post. I'm using the latest version CS3 v13.0.2.
    Stephen,
    Sorry I was not more clear when I said, "For example, ...". I was talking about the modifier keys not working with several different tools. The Free Transform tool advertises functionality that is supposed to work with a "Click (down, but don't release)then hold down Ctrl" combination. The Rotate tool advertises a behavior that is supposed to work with an "Alt-Click" combination. These are just 2 examples of the modifier keys not working. I focused primarily on one example in the bug report(ctrl after and in addition to click in the free transform tool, not alt-click in the rotate tool).
    Here is what I expect(quoted from Adobe's CS3 help file)
    (From the "Distort Objects with the Free transform tool" help topic)
    "Select one or more objects.
    Select the Free Transform tool .
    Start dragging a corner handle on the bounding box (not a side handle), and then do one of the following:
    Hold down Ctrl (Windows) or Command (Mac OS) until the selection is at the desired level of distortion.
    Hold down Shift+Alt+Ctrl (Windows) or Shift+Option+Command (Mac OS) to distort in perspective."
    (from the "Rotate an object by a specific angle" help topic:)
    You can control the exact angle of rotation with the Rotate command.
    Select one or more objects.
    "Do one of the following:
    To rotate around the center point, choose Object > Transform > Rotate, or double-click the Rotate tool.
    To rotate around a different reference point, select the Rotate tool. Then Alt‑click (Windows) or Option‑click (Mac OS) where you want the reference point to be in the document window.
    Enter the rotation angle in the Angle text box...."
    These Tool based mouse-key combinations do occasionally work as they are supposed to, so I know what the expected results are supposed to look like, but whether they work or not appears to depend on the phase of the moon, the day of the week, and the color of the president's underwear.
    Other non-tool based mouse-key combinations in Illustrator work consistently all the time - Ctrl-A for Select All as just one example that always works.
    Thanks Again

  • Applet does not work with a proxy server.URgent

    Hi,
    I have an asp page being hosted from a IIS server.
    The asp page has an applet which gets data from a server side component which is hosted as a service on the server side.For connection to the server I am using URLConnection object and trying to connect over a TCP connection.
    The problem occurs when I use an proxy in the middle.
    I have changed the browser settings to include the proxy.
    The following is the error I recieve:
    Full :http://172.25.11.63:4590/
    <-------------------------------->
    OPening input stream
    in Run ::::
    ERROR: Created data socket but can't open stream on
    it.172.25.11.63:4590//
    172.25.11.63:4590//
    java.io.FileNotFoundException: 172.25.11.63:4590//
         at com/ms/net/wininet/http/HttpInputStream.connect
         at com/ms/net/wininet/http/HttpInputStream.<init>
         at com/ms/net/wininet/http/HttpURLConnection.createInputStream
         at com/ms/net/wininet/WininetURLConnection.getInputStream
         at TalkClientApplet.rendezvous
         at TalkClientApplet.actionPerformed1
         at TalkClientApplet.start
         at com/ms/applet/AppletPanel.securedCall0
         at com/ms/applet/AppletPanel.securedCall
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.run
         at java/lang/Thread.run
    ...Disconnecting.
    Following is my code.
    url = new URL("http://" + host +":"+i);
    urlconnection = url.openConnection();
    urlconnection.setDoOutput(true);
    urlconnection.setDoInput(true);
    System.out.println("Successfully opened the URL connection at " + "http://" + host + ":" + i );
              System.out.println ("Protocol: " + url.getProtocol());
              System.out.println ("Host :" + url.getHost());     
              System.out.println ("Port :" + url.getPort());
              System.out.println ("File :" + url.getFile() );
              System.out.println ("Full :" + url.toExternalForm());
              System.out.println ("<-------------------------------->");
    os = new BufferedWriter(new OutputStreamWriter(urlconnection.getOutputStream()));
    System.out.println("OPening input stream ");
    // is = new DataInputStream(urlconnection.getInputStream());
         System.out.println(urlconnection.getInputStream());
    is = new DataInputStream(urlconnection.getInputStream());
    The exact place where I get the error is whn i call URLConnection.openInputStream().
    Usually this error comes with a malformed URL.But the same code words without a proxy.Also I am not making any changes to my code in both scenarios that is with or without proxy.
    Please help.This is urgent and a showstopper

    Thanks for your nice solution, but unfortunatelly it does not work with lines longer than 100 chars with Netscape. It works fine with IE and appletviewer too.
    Example:
    I use this code:
    try {
                URL url = new URL(protocol,hostName,portNumber,URLstring);
                InputStream in = url.openStream();
                BufferedInputStream bis = new BufferedInputStream(in);
                StringBuffer input = new StringBuffer(60);
                int c;
                while ((c = bis.read()) != -1){
                    System.out.print((char)c);
                    input.append((char)c);
                bis.close();
                dataFromServer = input.toString();
            catch(Exception ex) {
                ex.printStackTrace();
            }I use input file test.html with exactly 100 chars ('a')
    Netscape Java Console:
    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadataFromServer : aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaI use input file test.html with exactly 101 chars ('a')
    Netscape Java Console:
    ?JL?yyxk?cedataFromServer : ?

  • Uploading files to website not working with Safari in Windows 7

    Safari version: 5.1.7
    OS: Windows 7
    Hi,
    I am a website owner, and I have a feature on my site where users can upload large (up to 50MB) music files to my server. The feature works in Firefox on OSX & Windows platforms and it also works in Safari on OSX. The uploading feature is not working with Safari for Windows. Do you have any idea why and how to fix this? It can't be an issue with my server as it works in other browsers fine and works fine in Safari for OS X.
    If you have any information on how to solve this or things for me to try to rectify this for use with Windows operating system it would be much appreciated.
    Thanks.

    GREAT NEWS!!!!
    I have solved this issue myself with some help from my a user on Microsoft Forums. The issue stems from the mime type of each Browser Chrome, IE, & Safari for Windows defaults as audio/wav. When the mime type is changed to audio/x-wav everything works. Firefox defaults to audio/x-wav and when changed to audio/wav it DOES NOT work.
    Once I input some code in my .php upload page to change the mimetype if audio/wav is detected everything works GREAT!!!
    So Here is what you need to do: Find your upload page and input this code:
    echo "<p>MIME Type: ".$_FILES["file"]["type"]."</p>";   
    right before your "If/then" statement of file type. For me it was near line 30 in my upload.php page, but I'm sure this is different for everyone.
    This will detect and DISPLAY the default mime type of your browser on the error page when your upload doesn't work. Once you know what mime type works for your file type then you can change your "if/then" statement for mime type upload to change your mime type to the correct one.
    I don't want to give the code here, because I'm sure it's specific to your file types and your site construction, but this should lead you on the right track.
    ***This is the solution if you ARE NOT ABLE to upload any certain file in a certain Browser. It has to do with mime type construction***
    I hope this helps others like it helped me!!!!!

Maybe you are looking for

  • Accidentally deleted a purchased app

    I accidently deleted a purchased app from my purchased list (specifically OS X Lion). Does anybody know how I can add it back on my purchased list?

  • How to configure SNMP agent for Oracle 10g

    Hello, I've installed oracle 10g in a Windows 2000 SP4 and I want to monitor database using SNMP. I've already installed Windows SNMP agent but I haven't any idea how to configure Oracle in order to grant SNMP monitoring. What should I do? Is Oracle

  • How to call stored procedure in ASP pages

    After I migragate MS SQL server database to Oracle 8i database, all the call to stored procedure in ASP has problems. I have been had a problem to find some document about how to call oracle stroed procedure from SQL*plus or using ADO. If anybody can

  • Passing input parameters from an applet to a JSP page

    Hello all, Yes, its one of these questions which I have tried to find a solution from the already large number of postings but with no luck. I'm still a novice to Java/JSP so bear with me. Consider this scenario. 1. An applet which has two input boxe

  • Did anyone worked on integration Siebel 7.8 ecommunications with Oracle RTD

    Gurus, We are inprocess of implementing integration between Siebel eComunication Version 7.8.2.14 with Oracle RTD 2.2.1. As part of that we have imported all the SIA sifs related to 7.8 and all the .dat files, configuration defination (.def) files an