EXISTS vs. IN - EXISTS does not work by IN does

I have a query with 3 subqueries. Values must be in all three subqueries to be returned. My test case is commented out in the query below. When I use the subquery using an in statement /* in the commented section */ the test case does not get returned and it SHOULD NOT be returned. IN works. When I use the EXISTS subquery, it does get returned and it SHOULD NOT be returned.
Am I not using EXISTS correctly?
/* Formatted on 2006/07/21 11:14 (Formatter Plus v4.8.5) */
SELECT DISTINCT sa.email
FROM salesagent sa, security s
WHERE sa.vendor_id IN (SELECT vendor_id
FROM vendor_fed_classifications
WHERE vendor_type_id = 1)
AND sa.salesagent_id IN (SELECT salesagent_id
FROM salesagent_verticals
WHERE subcategory_id = 158)
AND sa.email_enabled = 1
AND s.user_id = sa.salesagent_id
AND s.security_status = 'Reg'
--AND sa.email = '[email protected]'
/* AND sa.salesagent_id IN (
SELECT salesagent_id
FROM salesagent_agency
WHERE agency_id =
(SELECT agency_id
FROM customer
WHERE customer_id = (SELECT owner_id
FROM auction2
WHERE auction_id = 29465)))
AND EXISTS (
SELECT salesagent_id
FROM salesagent_agency
WHERE agency_id =
(SELECT agency_id
FROM customer
WHERE customer_id = (SELECT owner_id
FROM auction2
WHERE auction_id = 29465)))
ORDER BY 1;

You'll also probably want to simplify either of those subqueries a bit.
SELECT DISTINCT sa.email
  FROM salesagent sa, security s
WHERE sa.vendor_id IN (SELECT vendor_id
                          FROM vendor_fed_classifications
                         WHERE vendor_type_id = 1)
   AND sa.salesagent_id IN (SELECT salesagent_id
                              FROM salesagent_verticals
                             WHERE subcategory_id = 158)
   AND sa.email_enabled = 1
   AND s.user_id = sa.salesagent_id
   AND s.security_status = 'Reg'
--AND sa.email = '[email protected]'
/* AND sa.salesagent_id IN (SELECT say.salesagent_id
                              FROM salesagent_agency  say
                                   customer  c,
                                   auction2  a2
                             WHERE say.agency_id =c.agency_id
                               AND c.customer_id = a2.owner_id
                               AND auction_id = 29465)
   AND EXISTS (
       SELECT 'x'
         FROM salesagent_agency  say
              customer  c,
              auction2  a2
        WHERE say.salesagent_id = sa.salesagent_id
          AND c.agency_id = say.agency_id
          AND a2.owner_id = c.customer_id
          AND a2.auction_id = 29465)
ORDER BY 1;

Similar Messages

  • Overwrite existing file not working for FTP

    Hi XI Folks,
    I am trying not to overwrite the file at receiver - FTP server.
    It is getting overwritten though I uncheck 'Overwrite existing file' checkbox in FTP. But the same is working fine for NFS. Please find the config details below.
    Receiver communication channel Configuration:
    Transport Protocol : FTP
    File construction mode: Create
    Put File: Use temporary file
    Overwrite existing file : Not checked
    The file is getting overwritten. Iam in SP15.
    Receiver Communication channel Configuration:
    Transport Protocol : NFS
    File construction mode: Create
    Write mode: Use temporary file
    Overwrite existing file : Not checked
    The file is not getting overwritten. It throws an error in Message monitor with wait status.
    Is the "overwrite exist file - checkbox" works only for NFS & not for FTP.
    eagerly expecting relevant response,
    Kiruthika S

    Sasi,
    If we have two files with the same name then what do you want to do? It is the same scenario here? If you dont check the overwrite existing file option then it can write the file also. If you check then it will overwrite. If you dont want this then you can add the timestamp to the existing file. Else you have to make sure of the naming conventions of the file.
    ---Satish

  • Adding a new Tab to an existing JTabbedPane not working

    Hello all,
    I am trying to add & display a new tab to an existing JTabbedPane when the user
    clicks on a button. For some reason the new tab, being added is not being displayed, and I don't know why. I have called invalidate(), validate() on the parent containers but haven't had any luck. I have also played around with SwingUtilities.invokeLater() and the Event thread, but have been unsuccessfull.
    Any help would be greatly appreciated.
          * This class is the parent that holds the internalFrame which is the
          * main parent for all subsequent containers
         public class QuoteRequestGUI implements QuoteRequestGUI_IF {
              protected JInternalFrame internalFrame_newQuoteRequest = new JInternalFrame("Quote Request");
              protected JTabbedPane tabbedPane = new JTabbedPane();
               * Create a new internal frame to which all the components of a new
               * QR will be added
              public JInternalFrame createNewQuoteRequestFrame() {
                   // Add a tabbed pane to the internal frame
                   internalFrame_newQuoteRequest.add(createQuoteRequestTabbedPane());
                   // .... Set various internalFrame properties
                   return internalFrame_newQuoteRequest;
              public JTabbedPane createQuoteRequestTabbedPane() {
                   // Create a new quote request details instance
                   QuoteRequestDetailsGUI_IF quoteRequestDetailsGUI =
                        new QuoteRequestDetailsGUI(quoteRequestStatusPassed);
                   // Create a new tab that will host all details of the quote request     
                   tabbedPane.addTab("Quote Request Details",
                             quoteRequestDetailsGUI.createQuoteRequestDetailsPanel());
                   return tabbedPane;
         public class QuoteRequestDetailsGUI extends QuoteRequestGUI implements QuoteRequestDetailsGUI_IF {
              private ProductDetailsGUI_IF productDetailsGUI = new ProductDetailsGUI();
               * Panel that will act as a container for both quote request and buyer
               * details
              public JPanel createQuoteRequestDetailsPanel() {
                   // Panel that will contain quoteRequest, buyer and buttons
                   JPanel panel_quoteRequestDetails = new JPanel();
                   // Create an intermediate panel so that components can be layed out properly
                   JPanel panel_quoteRequestIntermediatePanel = new JPanel();
                   // Set layout manager for panel
                   panel_quoteRequestIntermediatePanel.setLayout(
                        new BoxLayout(panel_quoteRequestIntermediatePanel,BoxLayout.PAGE_AXIS));
                   // Add the buttons
                   panel_quoteRequestIntermediatePanel.add(createQuoteRequestDetailsButtons());
                   // Add the intermediate panel to the main panel
                   panel_quoteRequestDetails.add(panel_quoteRequestIntermediatePanel);
                   return panel_quoteRequestDetails;
               * Panel that will hold all the buttons for the quote request details tabbed panel
              public JPanel createQuoteRequestDetailsButtons() {
                   // Panel to act as a container for the buttons
                   JPanel panel_quoteRequestDetailsButtons = new JPanel();
                   // Create, register action listeners and add buttons to the panel
                   JButton button_saveTabbedPane = new JButton("Save");
                   button_saveTabbedPane.addActionListener(new ActionListener() {
                        public void actionPerformed (ActionEvent actionEvent) {
                               saveTabbedPaneListener();
                   panel_quoteRequestDetailsButtons.add(button_saveTabbedPane);
                   return panel_quoteRequestDetailsButtons;
               * Display the save (product details) tabbed pane
               * @todo - Implement the save tabbed pane selected method
              public void saveTabbedPaneListener() {
                        log.info("tab count before added : " + tabbedPane.getTabCount());
                        // The product details of a particular quote request
                        tabbedPane.addTab("Product Details",
                                  productDetailsGUI.createProductDetailsPanel());
                        log.info("tab count after added : " + tabbedPane.getTabCount());
                        tabbedPane.invalidate();
                        tabbedPane.validate();
                        internalFrame_newQuoteRequest.revalidate();
         public class ProductDetailsGUI implements ProductDetailsGUI_IF {
               * Panel that will act as a container for both the product details (incl
               * table) and the buttons
              public JPanel createProductDetailsPanel() {
                   // Main product details panel
                   JPanel panel_productDetails = new JPanel();
                   // Add the scroll pane to the panel
                   panel_productDetails.add(new JButton("ok"));
                   // Add the buttons to the panel
                   // Add the scroll pane to the panel
                   panel_productDetails.add(new JButton("cancel"));
                   return panel_productDetails;
         }

    MS,
    Try copying one existing TAB and use that, this happens only when there is improper xml content. You can open the xml in the browser/visual studio for better clarity and then try making the changes. Doing IIS Reset will be required but in the meanwhile you
    can put the original RCDC which will work till the time you make any change in new TAB.
    Regards,
    Manuj Khurana

  • Dbx WS6U2 bulitin exists function not working

    The exists function always returns 1 regardless.
    This used to work in 5.0.
    This causes the prettyprint function in /opt/SUNWspro/WS6U2/lib/dbxrc not to work.
    Any fixes/workarounds available ?

    Ok...I got the function working.
    But now I need some help...
    I'm confused about how to properly use the function.
    I mean, I know I only want to pass to it two values, the user input Student ID and Date,
    but how does my function know to compare those dates/studentid's to the ones in the
    table student_schedule.
    here's my code:
    create or replace function student_GPA
    (StdntID IN Student_schedule.Student_ID%Type,
         DateAssgn IN Student_Schedule.DATE_GRADE_ASSIGNED%Type,
              EnterID IN Number, EnterDate IN VarChar2)
    return number is
         GPA number;
         InsDate varchar2(11);
         StdID varchar2(8);
    begin
    DBMS_OUTPUT.PUT_LINE('--------Get student GPA--------------');
    StdID := EnterID;
    InsDate:=EnterDate;
    -- Calculate the average grade point for this student based on all
    -- classes for which a grade has been assigned.
    select avg(decode(grade, 'A+', 4.25, 'A', 4, 'A-', 3.75,
    'B+', 3.25, 'B', 3, 'B-', 2.75,
    'C+', 2.25, 'C', 2, 'C-', 1.75,
    'D+', 1.25, 'D', 1, 'D-', 0.75, 'F', 0))
    into GPA
    from student_schedule
    where
    StdntID = StdID
    AND
    DateAssgn >=InsDate
    Order by Date_Grade_Assigned Desc;
    return GPA;
    end;
    declare
    StID student_schedule.Student_ID%type;
    DateGAssgn student_schedule.Date_Grade_Assigned%type;
    OutPut varchar2(50);
    Begin
    StID := &StudentID;
    DateGAssgn:=&DateForStudent;
    OutPut:=Student_GPA(StID,DateGAssgn);
    DBMS_OUTPUT.PUTLINE('Student GPA IS: '||OutPut);
    End;
    I'm rushing now, so maybe I'm missing the obvious...
    any ideas?

  • Existing stacks not working after upgrading to Aperture 3

    I am having an issue regarding my stacks after upgrading from Aperture 2 to the new Aperture 3. When I select any of my existing stacks that came over from my Aperture 2 library to Aperture 3's library, my stacks will not expand to show my images associated with that particular stack. Also, when I click to expand the stack, instead of showing how many images are in a stack, it shows "1 of x" (x being the number of images associated with that stack). When I go to unstack, it removes all of the stacked images, only leaving the pick visible in Aperture 3. This only happens with my existing stacks; it does not happen when I create a new stack in Aperture 3. Anyone else having this issue?!? Is there a solution to rectify this problem?

    As strange as this sounds, I may have solved my own question! I created a new blank project, and then I took the photos from the "Photos" section in the Library, and clicked and dragged them in -- and low and behold, the stacks were there! It took the photos out of the original project and moved them to the new project -- stacks, edits, and all. If anyone else is having this issue, this might be the fix.

  • 11.1.2.1 - Overwrite Existing Values - Not Working

    Hi,
    Client has ASO Essbase application. They have duplicate rows of data apparently. I have the 'Overwrite existing values' box checked on the 'Data Load Settings'. I also select the 'Overwrite Existing Values' selection in the 'Data Load' window. Not sure why this is even there as it seems new or is a ASO specific functionality or something. Anyways, I created a simple file with two duplicate rows. When I load it using the rule, it doubles everything up. Then I load just a single row file with same rule and it successfully overwrites the values and loads properly.
    Is there a know issue with duplicate rows within the same file that causes it to double the values during the load? Or am I fundamentally missing something on how to correctly 'Overwrite Existing Values'?

    Found below out there in the documentation but trying to decipher it. If I understand the 'Buffer' will combine like rows withing a datasource automatically? But I can't figure out if that's in different source files only or within the same file?'
    Rules File Differences for Aggregate Storage Data Loads
    Rules file specifications for loading values to aggregate storage databases reflect the aggregate
    storage data load process.
    For block storage data loads, through the rules file, you choose for each data source whether to
    overwrite existing values, add values in the data source to existing values, or subtract them from
    existing values.
    For aggregate storage data loads using the aggregate storage data load buffer, you make this
    choice for all data load sources that are gathered into the data load buffer before they are loaded to the database.
    To use a rules file that was defined for a block storage outline with an aggregate storage outline, first associate the rules file with the aggregate storage outline. See “Associating an Outline with an Editor” in the Oracle Essbase Administration Services Online Help.
    For aggregate storage databases only:
    •     If you are loading data and values exist in the database, select an option from the Data load values drop-down list for overwriting existing values, adding to existing values, subtracting from existing values, or replacing the contents of the database.
    •     Select whether to ignore missing values and zero values in the data source.
    •     Select whether to load the data as a new slice in the database.

  • My Time Capsule does not work with existing WiFi

    Following a question solved on March 24 by LaPastenague, but gone bad again.
    Apple AirPort Time Capsule
    I felt the need for a physical backup of my data, as I would not completely trust the different clouds. I use, and have used Dropbox for 4-5 years and are very satisfied with that, but I am still not sure if or when a political lunatic will shut off the internet.
    I purchased the Apple AP Time Capsule 2T, because all my other stuff are Apple, and that it's wireless. My old backup is Maxtor 300 GB.
    Since we stay 2-3 weeks on two locations, one in Norway and one in Sweden (two different countries) we must use Mobile Broadband 4G, cables or fibre connections are useless for us, and we don't have it up to the houses. I have one mini router for each country, we bring with us iPhones, iPads, iMac, Apple TV, APExpress. When we pass the boarder I change the mini router, and the system continues working perfect on the WiFi, except the APExpress that needs to be reconfigured,  but then it works.
    The APTC was difficult to make working as it would not accept to be in an existing network, but with good help from the Apple Community, LaPastenague, with forcing the TC connect to the APE with Ethernet cable in bridge mode, ref "My Time Capsule does not work with existing WiFi" from March 24, the problem was solved and all gadgets worked together in a perfect harmony, until we changed location.
    Now, as I have my second WiFi network, and the APExspress is reconfigured, it's like the TC thinks, I am the base boss here, I am not taking orders from APE one more time, and it simply does not work, not only that, it fluctuates all the time.
    I have a slight feeling that the two WiFi bands are making the trouble as during the configuration of the TC sometime the last figure 6 and 7 pops up, and that has something two do with the two different 2,4 and 5 GHZ bands
    So, I am curious if you have any idea ?
    I am thinking of returning the TC if I don't make it work now, but how do I delete all the data that's on it?

    I can deal with the last question first and easily.
    I am thinking of returning the TC if I don't make it work now, but how do I delete all the data that's on it?
    Open the airport utility .. go to the disk tab and select erase.
    When you select erase you will get mulitiple options.
    Quick removes the file table but does not delete the files,, it takes 2min or less.
    A Zero out data is the secure way,, by writing 0 ie low level drive format.
    It can take several hours..
    7 pass will take a week.. not recommended..
    35 pass erase is ridiculous.. it would take a month.. put an ax through the TC. It is quick and better.
    Now, as I have my second WiFi network, and the APExspress is reconfigured, it's like the TC thinks, I am the base boss here, I am not taking orders from APE one more time, and it simply does not work, not only that, it fluctuates all the time.
    The fact that it did work and has now failed might point to faulty unit.
    The only way to tell is reset it properly to factory and start over.
    Universal Factory Reset.. any model TC or AE.
    Unplug your TC/AE from power or turn off at the power point.
    Hold in reset. and power the TC/AE back on..  all without releasing reset and keep holding in for about 10sec. (this is often difficult without a 2nd person or a 3rd arm).
    Release it when the status light flashes rapidly. If it doesn’t flash rapidly you have missed it and try again.
    Note..
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC/AE will reboot after a couple of minutes with default factory settings and will wipe out previous configurations of the router.
    No files are deleted on the hard disk in a TC.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    Generally having multiple wireless AP should not cause problems.. but it is better to set channels manually.. so it doesn't go beserk rotating channels.
    Remember to keep all names short, no spaces and pure alphanumeric.
    Sadly though the Apple routers have no logging now and no SNMP and almost nothing to help diagnose a problem, so if it continues .. take it back to apple.. they have given you no other method of fixing it.

  • User does not exist in this period / ESS does not work anymore ;-(

    Hello experts,
    starting any ess application on portal side (leave request), I get the follwoing error code:
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: User TESTUSER does not exist in this period
    Starting application personal data I get the message: "There are no services in the area."
    I know, that this error has often been discussed in this forum. So I check the hints I found, but I could not solve my problem.
    The HR user TESTUSER is assigned to the portal user TESTUSER in IT0105 and the user is not exceeded.
    TESTUSER got SAP_ALL on HR side.
    The error appears for all users, that worked propably a few days before.
    Login on portal side and HR works. ESS overview is shown for TESTUSER. For a user that has not a login to HR system it does not appear. So the single singn on (SSO) between portal and HR system seems to work.
    The ESS applications worked fine until two days ago. Portal guys said, they had not done any changes on portal side.
    Where could the error occure on HR side? How can I recognize if any changes have been made on HR side?
    Thank you for your help.

    TX HRUSER seems not working.
    Using the function 'Set Up and Maintain ESS User (Overview)' in TX HRUSER with my test-PERNR it is shown under 'Employees with deleted users'.
    Clicking on it I got the Information:
    PERS.NO: 12345678 (i.e.) NAME: Test User FROM: 01.01.2011 TO: 31.12.9999 USER: Name:  FROM: TO: User does not exist.
    But in IT0105 the PERNR is assigned to user TESTUSER in that period.
    When I try to assign  PERNR to TESTUSER with TX HRUSER under 'Assign Employees to Existing Users' I read the follwing information:
    USER: TESTUSER Name: FROM: 01.01.2011 TO: 31.12.9999 USER GROUP: IT PERS.NO.: NAME: FROM: TO: no employee assigned.
    Trying to 'assign employees' I get the message 'Error occurred when creating relationship for user ESSUSER-B to employee'.
    Please create the appropriate assignment manually in HR master data.
    But I have assigned it manualy in IT 0105.
    Concurrent employment (CCURE PAUIX) is not activated.

  • Word documents (New and Existing) paper area does not work correctly

    Hello all. I have a rather hard to explain situation with one of our workstations. It is an HP 8760w and it has had Office 2010 installed on it for quite some time. Currently, when opening a new document or any existing document, the program will look normal
    but will not show a cursor on the page. Scrolling wll result in the page looking obscure as if a graphics inside the document stops working. Scrolling will cause lines of text to melt into each other and will duplicate lines of text. The ribbon functions fine
    and hitting File brings up the entire menu like it should. Switching back to the document will show what was over that section in the file menu. How do I fix this? Installing and uninstalling office did not work along with changing the Normal.dot and deleting
    the Data registry file. 
    All help is appreciated greatly. 

    Hi Travis,
    This sounds more like a Graphic Driver or Graphics Card problem. You might try switching out the Graphic Card if that is possible on the system.
    Another outside possibility might be a corrupt user profile, so you could create a different profile on the machine and try it. However, my guess would be the Graphics Card is failing.
    Are you also certain there are no other Office add-ins loaded that might be causing this. Start Word in Safe Mode and see if this clears the problem. If it does, then systematically disable add-ins one at a time until the culprit is found.
    Hope this helps
    Kind Regards, Rich ... http://greatcirclelearning.com

  • Acrobat X1, Purchased upgrade, failed as no valid product to upgrade from existed (my mistake but want my money back!). So purchased Acobat X1 std, install seemed OK, but does not work as I continue to get the upgrade screen saying no valid product to upg

    Acrobat X1, Purchased upgrade, failed as no valid product to upgrade from existed (my mistake but want my money back!). So purchased Acobat X1 std, install seemed OK, but does not work as I continue to get the upgrade screen saying no valid product to upgrade from? So now I have spent lots $$ and nothing working. Why is this so complicated? what do I need to do?

    Hi Rave,
    Thanks for this; my issue is that I have now supposedly purchased a retail version of Acrobat X1 (i.e just spent more $$, after the upgrade attempt  to Acrobat X1 failed), and while this feigns an OK install, it fails in someway to override the "Upgrade Acrobat X1 version".  E.G. once I load up to read an acrobat file the "upgrade version" executes/intercepts and ask for serial numbers and check for a previous qualifying version which I do not have, (BUT what I do have is the current retail version of acrobat X1 which is not recognised)
    Do I need to uninstall and start over again? (I am reluctant to do this as I am sure serial number issues will arise, as I assume downloaded file will be cleaned up etc, and I am not spending more money trying again!)
    Any suggestions?

  • Bridge does not work for wireless clients - connecting to existing network.

    Hi - I really hope somebody can help out here, after hours of trial & error, I have finally given up
    I need to connect my Airport Extreme Base Station to my existing network. I have a linksys router (192.168.15.1) connected to my modem and this linksys router acts as DHCP server too.
    I suppose I have to use "bridge mode" for that to work. But should the linksys be connected to the AEBS using the AEBS's WAN or LAN port?
    If I use "bridge mode", then wired computers to the AEBS works fine - getting an IP from the linksys etc. BUT, the wireless clients will have a self-assigned IP and not get through to the internet. It's like the AEBS will not allow wireless clients to "get through" unless AEBS itself is handing out IP addresses.
    Page 36 of this manual ( http://manuals.info.apple.com/en/DesigningAirPort_Networks10.5-Windows.pdf ) shows the setup I want. But in the picture, it says "Ethernet WAN port" but the text says: "The Apple wireless device (in this example, a Time Capsule) uses your Ethernet network to communicate with the Internet through the Ethernet LAN port ( <--> )." I don't know which one to use, WAN or LAN - they show WAN but say LAN?
    When I set it up as "share an IP address", the AEBS status tells me "double nat" and to change from "shared IP" to "bridge mode". I do that, and everything seems fine - for the wired clients. Now the wireless clients cannot connect, Airport on the MacBook Pro just say "Connection failed" and the MacBook says "Invalid password" (translated from danish), even though I set the Airport Utlity to save the password in keyring, so it should be correct... If I disable wireless encryption, the wireless clients will connect but get a self-assigned IP, and therefor not work (cannot get online)...
    It seems the only way I can get wireless to work, is if I set AEBS up as DHCP, but then it won't be on the "same network" as the linksys (192.168.15.1), but rather on 10.0.x.x as I select. If I select 192.168.x.x within AEBS, I'm also getting some error messages, conflict/subnet thing.
    Anyway - I really hope somebody knows how to get wireless clients to get an IP address from existing ethernet when connected to the AEBS.
    Thanks!!

    I've given up and had to go back to running "Double NAT" which also reports as a "problem" within the AEBS, but I just "ignore" it so the light will always be green.
    It still ***** though, as "Double NAT" is also a reason for "Back to my Mac" not working properly, but how the ** am I supposed to avoid Double NAT when the wireless will not work in bridged mode?!

  • Validation of existing certificate does not work since release 9.3.3

    Hi everyone,
    Since I updated to Adobe Reader 9.3.3 the validation of digital signatures does not work properly anymore. Though I try to validate the certificate that used to be OK before the upgrade to 9.3.3 I now get an error on the same document and signature that used to work before. In the signature details Adobe Reader now states that "The certificate ...is not trusted...". This has to do with the new Adobe Approved Trusted list (AATL) I assume since nothing else changed.
    Does anybody know a workaround or is anybody aware of a bugfix that will be released in the near future?
    Thanks in advance,
    Mike G

    Works for me.
    What OS/JDK etc are you using?

  • Webutil_host.blocking is not working when an existing Chrome browser is already open

    Hi Everyone,
       I've a small issue which I would like to share with you and hopefully you might have come across this problems before and assist me to resolve it.
    The problem is I'm using Oracle Forms [32 Bit] Version 11.1.2.0.0 (Production) version and in one of the Form's button I'm calling an external API to display the image in a Chrome browser and once it completes, it would return control back to the Oracle Form. In the ideal situation where there isn't any existing Chrome browser opened, the logic would work perfectly as I was using the webutil_host.blocking command that block Form processing until the Chrome browser is terminated. However, as soon as I have one or more existing Chrome browsers open, I was still able to call the external API to display the image but the locking or blocking of the Oracle Form would not work. By the way, all clients accessing the oracle Forms are using Window 7. Is that a solution for that? Is that a Chrome, OS or/and WebUtil issue? Thank you for your assistance and time.
    Regards,
         John

    Hello,
    does anyone have any thoughts on this or a workaround?
    We use the blocking feature to allow the user to make changes to the document and then restore those changes to the database. Without this feature the code falls through and breaks the link between the document and the forms application.
    appreciate all help
    Jim

  • Cfmail "failto" not working with non-existent internal email addresses

    We've hard-coded cfmail TO value in many places across many
    applications, i.e.
    <cfmail to="[email protected];[email protected];[email protected]"
    ...>
    Suppose when one of the users (user1,user2, user3) left
    company and his email address was removed from the MS Exchange
    server, cfmail would fail saying
    A problem occurred when attempting to deliver mail.This
    exception was caused by: javax.mail.SendFailedException: Invalid
    Addresses; nested exception is: class
    javax.mail.SendFailedException:
    550 5.1.1 User unknown
    in the server exception log and cfmail wouldn't report the
    error to the email address of "failto".
    So I'm wondering if it's possible to have cfmail ignore the
    bad one(s) and continue to send the email? Or is there anything I
    should do with the Exchange server?
    Advice is much appreciated.

    Thank you, Dan.
    Sorry, what I meant by "non-existent" is not quite
    straightforward. Let me explain this way:
    I observed the problem only occurred to emails of our
    company. For instance: our company's email address ends with
    @abc.com.
    my email address: [email protected]
    my previous colleague's address: [email protected] (he's gone and
    the email is invalid / deactivated now)
    my client's email: [email protected] (used to be valid)
    If I code this way:
    <cfmail to="[email protected]" failto="[email protected]"...>
    "failto" does work and I got the email.
    but if these:
    <cfmail to="[email protected]" failto="[email protected]"...>
    <cfmail to="[email protected];[email protected]"
    failto="[email protected]"...>
    I never got emails reporting the failure but error lines in
    the mail log and the exceptions log which read:
    "Error","scheduler-3","01/28/09","11:55:32",,"Invalid
    Addresses"
    "Error","scheduler-3","01/28/09","11:55:32",,"Invalid
    Addresses"
    javax.mail.SendFailedException: Invalid Addresses;
    nested exception is:
    com.sun.mail.smtp.SMTPAddressFailedException: 550 5.1.1 User
    unknown
    at
    com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1196)
    at
    com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:584)
    at coldfusion.mail.MailSpooler.deliver(MailSpooler.java:832)
    at
    coldfusion.mail.MailSpooler.sendMail(MailSpooler.java:731)
    at
    coldfusion.mail.MailSpooler.deliverStandard(MailSpooler.java:1021)
    at coldfusion.mail.MailSpooler.run(MailSpooler.java:986)
    at coldfusion.scheduling.ThreadPool.run(ThreadPool.java:201)
    at
    coldfusion.scheduling.WorkerThread.run(WorkerThread.java:71)
    Caused by: com.sun.mail.smtp.SMTPAddressFailedException: 550
    5.1.1 User unknown
    at
    com.sun.mail.smtp.SMTPTransport.rcptTo(SMTPTransport.java:1047)
    ... 7 more

  • BEx formula change not working in existing Analysis for Olap/Analysis for Excel reports

    Hello all,
    I posted this in Analysis for OLAP, but there has been no response so I'm hoping perhaps you BEx experts can help me.
    I had to modify a formula in a Bex query to have it calculate the results of the formula by summation.
    I checked the query using BEx Analyzer and it summed correctly.  If I create a new analysis for olap report, it sums correctly.
    If I modify an existing report, it does not pick up the change.  Existing Analysis for Excel reports also do not pick up the new summary calculation.
    Using the CMC, I edited the connection and reselected the Bex query, but that did not work either.
    Here it is working in the query:
    Line Discount is a formula with logic checking to see if "product list price total amount" is 0, set the line discount to 0; otherwise calculate it as "product list price total amount" - Net Sale.  So the total needs to sum of the line discounts (0+2820+2820 = 5640) and not be the Overall result "product list price total amount" - Overall Result "net sale" (13960-96720= -82760).
    Here it is in an existing Webi report - working:
    Here is what is happening in an existing Analysis for OLAP report - not working:
    I also tried to unselect Line Discount as a key figure from the existing report and reselect it, but that did not work.
    I'd like to find a solution so that all the reports that use this query won't have to be rewritten.
    I'm on BW 7.0 EP 1 SP 10 and BI 4.0 SP7 Patch 5.
    Thank you for your help,
    Susan

    Hi,
    Apply Exception aggregation on line discount formula--Exception aggregation as Total---Reference characteristic as Promega product.
    Make sure to refresh the webi report once after the changes has been done.
    If this does not work then you can apply summation calculation for that column at webi level as well.
    Regards,
    AL

  • System.IO.File.Exists - Not working

    I Hide/Show an image based on the existence or not of that image. If the image exists, then I show the image the report has to show. If the image does not exist, then I show a default image. Think of it as an eCommerce web site which shows a catalogue of products. If we do have a picture for that product, then we show the product's picture. If we do not have a picture for that product, then we show a default images that says image not available.
    To achieve this, I tried to use System.IO.File.Exists("image path") in the Hidden property of the image field but it does not work.
    I thought it could be the due to the location of the image but I also moved the image to my local machine where I am designing this report and it still fails.
    I created a very simple console project just to see if the library works and it does, when I run the code on a console application, it perfectly works, it returns True.
    I also modified rssrvpolicy.config changing all PermissionSetName to FullTrust and still nothing.
    I will really appreciate any possible solution, links, ideas, comments...
    Thanks in advance for your help.
    Miguel Gonzalez.

    Hi Miguel,
    I have tested the thing you described. All works fine.
    The only thing I would like you to check it again is that:
    "Report_Expressions_Default_Permissions" is set to be FullTrust.
        <CodeGroup
                        class="UnionCodeGroup"
                        version="1"
                        PermissionSetName="FullTrust"
                        Name="Report_Expressions_Default_Permissions"
                        Description="This code group grants default permissions for code in report expressions and Code element. ">
    Thanks,
    Jin ChenJin Chen - MSFT

Maybe you are looking for

  • Need help trouble shooting on how to fix my MacBook Pro so it will start

    Ok, this is going to be a bit of a long one, cuz there are a good amount of details that go into the problem and how I have tried to fix it. To start, late last summer I got my Macbook Pro 15" with high resolution anti-glare, 500 GB X 7200 RPM hard d

  • UPS "misplaced" my iPhone 5

    My iPhone 5 was supposed to be delivered today. Instead, the UPS tracking update reads: "Merchandise is missing. UPS will notify the sender with additional details. / Package was damaged and is being held at a UPS location." I called UPS, and custome

  • I can not open "www us army mil/" or most related web sites ...

    I use the site a lot at work; it is also known as ako.  It is a site created for use by US DoD personnel.  If you type: - ako - into google several links appear.  I can only open the one for their help page and their publicly available information pa

  • MRP Job taking more time

    Dear Folks, We run the MRP at MRP area level with total 72 plants..Normally this job takes 3 to 4 hour to complete...but suddenly since last two weeks it is taking more than 9 hours. with this delaying business is getting problem to send the scheudle

  • Hide / Show a block in Selection screen

    Hi, How to hide or show a block in selection screen. Plz help. Regards, Sriram