Stored Procedure Does Not Run Properly When Called From Portlet

We have a simple Java portlet that calls a PL/SQL stored procedure which we wrote. The stored procedure sends a large number of emails to users in our corporation using the "utl_smtp" package. The stored procedure returns a count of the emails back to the Java portlet when it's finished. This number is displayed in the portlet.
Our problem:
The stored procedure functions as expected when run from a PL/SQL block in SQL*Plus, and the Java portlet calls the procedure properly when sending out a smaller number of emails (Less than 200 usually). When we get into a higher number of emails the procedure hangs when called from the portlet, but it STILL functions properly from SQL*Plus. It does not return the number of emails sent
and the Java portlet is unable to return a SQLException. Also, we have noticed that emails are sent at a much slower pace from the stored procedure when it's called from the portlet.

Any Ideas?

Similar Messages

  • Insert SQL does not work properly when called using CALL

    I have a stored procedure (TEST_SP) which is used to insert a record in this perticular case. The SQL statement is 2526 characters long. I'm using
    dim Params : Params=chr(1) & "Insert query" & Chr(1) & "=300"
    runsql=&"{call TEST_SP(?,?)}"&Params 
    dim db : db=dbSelect("",0,"","")
    dbExecSQL db,runsqlto execute the stored procedure. I'm facing an issue when the 2000th character on the insert SQL (pUPDSQL) is a single quote, where the SQL is not getting executed (i.e. record is not getting created).
    The same stored procedure and the same SQL when run as below
    runsql=runsql&"DECLARE "
    runsql=runsql&"PUPDSQL VARCHAR2(4000); "
    runsql=runsql&"PRES VARCHAR2(300); "
    runsql=runsql&"BEGIN "
    runsql=runsql&"PUPDSQL := 'INSERT query..."
    runsql=runsql&"PRES:=300; "
    runsql=runsql&"MRT_LKIDFULUP(PUPDSQL => PUPDSQL,PRES => PRES); "
    runsql=runsql&"END; "
    dim db : db=dbSelect("",0,"","")
    dbExecSQL db,runsqlis working fine. Does anyone know if there is a limitaion in ODBC Call function or any explanation to above behaviour? I'm connecting to a Oracle 11g database using Microsoft ODBC for Oracle driver on Window 7
    The stored procedures:
    create or replace procedure TEST_SP(pUPDSQL IN VARCHAR2,pRES OUT VARCHAR2)
    AS
    BEGIN
    DECLARE
      emsg VARCHAR2(100);
    BEGIN
    if pUPDSQL<>'-1' then
      emsg:='Cant exec UPDATE';
      EXECUTE IMMEDIATE pUPDSQL;
        if SQL%RowCount=0 then
        pRES:='ERR:No row updated';
        return;
      end if;
    end if;
    pRES:='OK:';
    EXCEPTION
      WHEN OTHERS THEN
       pRES:='ERR:' || emsg;
    END;
    END;Edited by: BluShadow on 11-Dec-2012 15:47
    added {noformat}{noformat} tags for readability.  Please read {message:id=9360002} and learn to do this yourself in future.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    ... I'm facing an issue when the 2000th character on the insert SQL (pUPDSQL) is a single quote, ...Perhaps you need two single quotes? like:
    runsql=runsql&"PUPDSQL := 'INSERT query...Values(..,..,,,''This value in two single quotes'',..,...)' "
    ... I'm connecting to a Oracle 11g database using Microsoft ODBC ...Dump windoze ODBC and better use the Oracle client ODBC.
    :p

  • Subvi does not work properly when called inside a vi

    Hello Every body
    thanks for your help. i am using a sub vi for sine signal generation. as a vi it works fine. but when i called this subvi inside another VI it gives some problems. for example timer indicator works properly.it reinitializes as well in the sub vi, but in the main VI it does not work properly. means does not count the time.in the sub vi on the fly i can change the values of frequency and amplitude in real time, but when i use as sub vi, it does not reponse as i change the values in the control arrays.similarly pause and continue works properly in the sub vi, but once again in the main VI, it does not work properly.graph indicator also work properly in the sub vi. but here once again it does not work properly in the main VI.the pause resume indicator also does not blink, when it is continue. in the subvi it blinks very well.generally why the sub vi does not work properly inside the VI?i am sending my VI and sub vis.
    any tips would be highly appreciated.
    thanks
    Regards
    Attachments:
    vi.zip ‏87 KB

    I just want to add some more details to Dan's answer. The subVI is acting exactly like you've coded it. The mistake is in understanding how subVIs work. When you call a subVI (or a function in any other language), you pass some parameters to it, the subVI does it's thing and returns values. the subVI does not accept new parameters from the calling VI until it returns to the caller and the caller runs the subVI again. In your case, you have a subVI with a while loop. You have some front panel control wired to the subVI's stop terminal. When first called, the value is false. So the subVI will keep running until the subVI's stop button becomes true but you cannot change it from main until the subVI finishes and returns so the subVI will never stop. As Dan says, the solution is pass references of front panel controls to the subVI and have the subVI monitor those references for changes and to update references to indicators on Main. You subVI does not need any front panel controls or indicators of it's own.

  • Repaint not running properly when called in another class/actionlistener

    I've got this code that is suppose to call and create a JPanel
    (The frame and timeframe variables were declared statically at the beginning of the class)
    When I call the runGame1 method from the main, the code runs fine and my JPanel is being repainted with the time and pictures, but when I can this runGame1 method from an ActionListener/actionPerformed method, it doesn't repaint properly and the while loop is running properly but I think there isn't enough resources for the method to actually paint my JFrame?? The JFrames open but nothing is painted.
    Anyone know what I can do?
    More Info........................
    Basically my program contains a title JFrame and 2 game JFrames, I want to be able to call the game JFrames from the title JFrames and go back and forth from the JPanels.
    The title JFrame consists of just components such as JLabels and JButtons.
    One of the game JFrames consists of JLabels, JTextFields and JButtons, basically the method generates random numbers and an arithmetic operation that the user has to calculate and enter in the program and the program checks if its correct or not.
    One of the game JFrames consist of a paint method that paints circles and the user has to click on it and when a circle is clicked on, it is repainted to not show the circle.(a coordinate system is used etc etc)
    public static void runGame1(){
              k=20;
              kcolor=2;
              fillcolor();
              checkcolor();
              frame = new Circlepix();
              timeframe = new TimerPanel();
              time1 = System.currentTimeMillis();     
              //Repaints the count down
              while((60-seconds)>0){
                   try{
                        Thread.sleep(1000);
                   catch(InterruptedException e){
                   timeframe.repaint();
                   System.out.println("aaa");
              timeframe.dispose();
    public void actionPerformed(ActionEvent e) {
                   if (e.getActionCommand().equals("Reset Scores"))
                        game1score=0;
                        game2score=0;
                   else if(e.getActionCommand().equals("Speed Circles")){
                   mainframe.dispose();
                   runGame1();
              }

    main is running in a different thread (the main thread)
    action events are sent via the event dispatch thread, and painting is done on the event dispatch thread.
    You should always be calling your runGame1 method from a separate thread of your own, so you don't block the event dispatch thread and painting
    http://java.sun.com/docs/books/tutorial/uiswing/concurrency/index.html
    Edited by: bsampieri on Jun 5, 2008 4:50 PM

  • Report does not come up when called from Forms

    I have installed Oracle 9i database and dveloper suit on my pc. When I run reports from forms, the report does not come up. I have Adobe Acrobat reader 6. The report does get created, I can see it in the cache directory.
    It created an error file, I am posting the begining of this file here.
    Please help.
    Thanking you in advance.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x65553878
    Function name=Java_oracle_reports_engine_EngineImpl_CGetEnv
    Library=C:\orahome1\bin\rw90.dll
    Current Java thread:
         at oracle.reports.engine.EngineImpl.CGetEnv(Native Method)
         at oracle.reports.engine.EngineImpl.getEnvs(EngineImpl.java:453)
         at oracle.reports.engine.EngineClassPOATie.getEnvs(EngineClassPOATie.java:152)
         at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:205)
         at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:62)
         at com.inprise.vbroker.poa.POAImpl.invoke(POAImpl.java:2355)
         at com.inprise.vbroker.poa.ActivationRecord.invoke(ActivationRecord.java:104)
         at com.inprise.vbroker.GIOP.GiopProtocolAdapter.doRequest(GiopProtocolAdapter.java:492)
         at com.inprise.vbroker.IIOP.ServerProtocolAdapter.doRequest(ServerProtocolAdapter.java:64)
         at com.inprise.vbroker.GIOP.GiopProtocolAdapter.dispatchMessage(GiopProtocolAdapter.java:653)
         at com.inprise.vbroker.orb.TPDispatcherImpl$TPDispatcher.run(TPDispatcherImpl.java:99)
         at com.inprise.vbroker.orb.ThreadPool$PoolWorker.run(ThreadPool.java:76)

    Hi ,
    Looks like this is not a Forms side problem or even a Reports Servlet problem
    Some guesses.
    From the exception
    at oracle.reports.engine.EngineImpl.CGetEnv(Native Method)
    at oracle.reports.engine.EngineImpl.getEnvs(EngineImpl.java:453)
    it looks like engine crashing. Did you see the server GUI up and running ? Server might not have started
    Give
    rwserver server=<server_name> in command line.
    The server GUI should come up and show "ready "
    You have multiple Oracle Homes on the same machine. So this could be a PATH problem.
    1) Go to ControlPanel -> System - Advanced - Env variables - System Variables
    Copy the IDS specific PATH to clipboard
    Go to iDS_HOME\bin\ and open a command window. Set only the above PATH here. Start a standalone server
    rwserver server=<server_name>
    and try
    (If this works you could write a batch file later)
    2) For trouble shooting purposes use a different server name to start the standalone server.
    3) Also look in your registry
    HKLM\Software\Oracle\Home<x>\
    Here please see whether you have any "very long" environment variable (say more than 256 chars or 512 chars).
    This is just a guess.
    4) To confirm this is not a Reports servlet problem
    give
    rwclient report=<report_name> + ..... <server=server_name>
    If you get same error, then it is not a servlet problem. It could be that Reports server is crashing
    Thanks
    Ratheesh
    [    All Docs     ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf

  • Avery Barcode labels does not align properly when printed from Adobe Reader 11.0.0

    Hi,
    I have barcode labels in a PDF (Version 1.4, Acrobat 5.x). PDF producer is PPAlambic(Distiller). When I try to print the PDF on to Avery 5160 sheet containing 30 labels (10 rows; 3 labels in a row), always the barcodes on the first column goes beyond the left margins and hence does not print the full barcode. PDF size is 8.5" * 11" .I have tried following options in Print dialog box:
    1. Actual Size + Portrait + Letter size
    2. Shrink oversized pages + Portrait + Letter size
    3. Fit + Portrait + Letter size
    None of the above options resolved my issue.
    When I open the same PDF in Adobe Reader 11.0.07, it prints perfectly. Does someone help me understand if this is a known defect in Adobe 11.0.0 and is there any workaround in 11.0.0 itself to adjust the alignment?
    Note: PDF is not editable as it comes from a third party vendor. Please help.

    Hi,
    I have barcode labels in a PDF (Version 1.4, Acrobat 5.x). PDF producer is PPAlambic(Distiller). When I try to print the PDF on to Avery 5160 sheet containing 30 labels (10 rows; 3 labels in a row), always the barcodes on the first column goes beyond the left margins and hence does not print the full barcode. PDF size is 8.5" * 11" .I have tried following options in Print dialog box:
    1. Actual Size + Portrait + Letter size
    2. Shrink oversized pages + Portrait + Letter size
    3. Fit + Portrait + Letter size
    None of the above options resolved my issue.
    When I open the same PDF in Adobe Reader 11.0.07, it prints perfectly. Does someone help me understand if this is a known defect in Adobe 11.0.0 and is there any workaround in 11.0.0 itself to adjust the alignment?
    Note: PDF is not editable as it comes from a third party vendor. Please help.

  • Application does not work properly when I press a CommanButton

    Hi all, I am having a problem with weblogic 10.3.5.
    It turns out that an application built with JDeveloper 11.1.5, I test it, and everything goes well in the JDeveloper integrated Weblogic.
    But when deploy in a standalone weblogic 10.3.5 server, the application does not work properly when I press a CommanButton to go to another page search (the property "action" is set correctly) , but nothing happens, stays in the same home page. Similarly when a commanButton link to run a task-flow, It do not work , however in the JDeveloper integrated Weblogic it runs correctly.
    How I can solve these problems?
    Thanks.

    Thanks Frank for help us, but when I writing this comment we are doing at home. So, we going to test the page in a stand alone weblogic server 10.3.5. We wrote the URL as :
    " http://<our ip>:7001/myApp/faces/index.jspx "
    this application contains a report desing and compiled with iReport 4.5.1 ( last version in the moment ), we can see the report when I press a commanButton without any problem.
    But now, we need try your suggestions in the office, and give you more information about it . Thanks for the moment.
    In the Afternoon we gonna give you more information about it .

  • Javascript does not run properly in Firefox

    Firefox does not run javascript properly.
    For example:
    http://vk.com/app2622342_40916334#NEW/comp1427
    Comment form does not run at all in Firefox ( the last version = 20.0.1)
    but runs OK in Opera.
    WHY?
    Mozilla still is HALF-DONE SOFTWARE!!!!!!!
    WHEN YOU DO IT IN A GOOD WAY?

    I have javazcript-enabled = TRUE in my about:config. So your comment did not solve my problem. I noticed that javascript does not run properly in some websites (forms in vk.com) but those forms run OK in OPERA - how can you explain this!?
    And I have no errors in the Web Console (Firefox/Tools > Web Developer).
    I wrote you a link to the page where javascript does not work.
    ( you need to login to vk.com to see that page
    http://vk.com/app2622342_40916334#NEW/comp1427
    )

  • My Ipod touch does not work properly.When i charge it,it only works for 5 min.n gets discharge.I showed it to the apple store in banglore n the person told me its fine n It is working properly.Bt its not working properly.Can someone help

    My Ipod touch does not work properly.When i charge it,it only works for 5 min.n gets discharge.I showed it to the apple store in banglore n the person told me its fine n It is working properly.Bt its not working properly.Can someone help

    If after you charge it for about three hours and it only last about five minutes the battery is probably dead or there could be another hardware problem.  I would go back to the Apple store and ask them specifically how can it be OK if the fully charged battery only lasts five minutes.

  • Stationary credated in Mail does not appear properly when viewed in Outlook, is there aroundthis?

    Stationary credated in Mail does not appear properly when viewed in Outlook, is there around this? Or, can I export (as a PDF) the email drafted in Mail with stationary that does not have the meail info on top of the page . Thanks so much for your help.

    No real solution to problem 1, stationary tends to look different depending on the client, as for 2 Mail does not export to pdf but can print to pdf, however you still get the mail headers.

  • Music does not sync properly when updated to latest version.  Can see computer but can't play from ipod

    Music does not sync properly when updated to latest version.  Can see on computer but can't play from ipod.

    Hope this helps...
    I was having the same problem where only 1.7GB of 10GB of selected music would sync so I decided to start fresh.  The following steps worked for me:
    1.  Open itunes and connect iphone 5 if not already.  Uncheck all playlists, artists, etc. till nothing is checked to sync.  Then uncheck the sync music box so that all music will be removed from the phone.  Sync iphone
    2.  Eject device. Quit itunes (don't just close). unplug iphone.
    3.  Restart imac, macbook, or PC.
    4.  Restart iphone.
    5.  Now after power up, restart itunes then plug in iphone, check sync music and select music to sync.  Sync iphone
    6.  It worked for me!!!  Good luck.

  • Image display control scrolling does not work properly when zoomed in

    I am using a ROI on an image in the image display control. When zooming into the image to fine-adjust the positioning of the ROI, the image scrolling does not work properly. As far as I understand, the image should scroll automatically when the ROI is leaving the visible area. However, the scrolling behaviour seems to depend on the origin of the Labview panel, not the origin of the image display control, which might require to move the ROI way out of the visible area before the scrolling takes place. In other words: the coordinate system of the image display control is shifted with respect to the true visible image area, depending on where you place it on the front panel. As a consequence, when clicking on a ROI which is in the visible area, but is outside of what Labview thinks is the visible area, it might immediately jump to the left border of the image, making the positioning of the ROI really difficult.
    Has anyone noticed this behaviour, and what would be a reliable solution to avoid this? 
    Dirk

    Hello,
    no, I am not talking about the tools palette. Just place an image control with some image in it on a new VI front panel. Then, use the rectangle from the tools and select a ROI in the image. If you zoom in (using the magnification glass), and then grab the ROI and move it around, the image scroll with the ROI. So far, so good. If you now place the image control elsewhere on the panel, or add new control above it, resize the panel, etc. , this scrolling when moving the ROI will not work correctly if the origin (0,0) of the panel is far away from the image control.
    I have attached a VI for simplicity (although there is hardly any code in it).
    If you make a ROI and try to move it down, you will notice that scrolling starts if you move the mouse out to about 10cms below the image (depens on your screen, of course). After that, if you click on the ROI, the scroll bars and ROI might jump up to the upper end of the image. Imagine how annoying this is if you try to finely adjust the ROI position. 
    I think it is a bug in the implementation of the image display control.
    Thanks,
    Dirk
    Attachments:
    scrolling.vi ‏818 KB

  • Finder does not run properly after starting up [Mountain Lion]

    I've installed MountainLion from Snow Leopard 10.6.8
    My Mac is Macbook7,1 (Macbook White) Intel Core 2 Duo
    When the installation finish, it seems like Finder does not run. I have to click on the Finder icon on the Dock to make it run.
    And then I got some of problem after that
    1. When I Click "About This Mac", nothings happen.
    2. When I Click "Restart...", "Shutdown..." or "Sleep", nothings happen. So, I have to Shutdown or Restart my Macbook from "Login Window..." only.
    3. Some of my settings in "System Preferences" do not be saved. Such as Trackpad settings (I can't "Tap to Click" in every time I start up my Macbook, I have to use physical click instead.) and Spotlight Hotkey settings (When I switch the Language, the Spotlight is popping up.)
    I'm not sure what is the cause of these problem.
    Could anyone help me please.
    Thank You.

    I forgot to mention (and add a new level of strangeness) that Mail is retreiving all of my messages from my personal (AT&T) account without issue.
    And I just discovered an even bigger problem: all of my emails from my Sent and other folders from my work account are completely gone!
    I may have no choice but to revert to my Lion system as of yesteday, before I installed ML.

  • My keyboard does not work properly when texting etc

    Hi All
    My keyboard does not work properly on my Iphone 4 when texting, it brings the wrong letter or wont let me choose the one i want.  Anything i can do to correct this or is it a visit to apple?
    Cheers for any support in advance.

    I have rebooted and synchronised it with the mac.  I dont even have to touch the screen now and some letters get picked up.

  • Problem Executing Macro from Ribbon, Runs fine when called from intermediate, or 'normal' butons

    Hi,
    I've come across a very strange problem, we've been using some fairly simple macro's within excel for the last few months, I've recently come into a strange problem.
    I decided to make things easier by putting commands onto the ribbon and creating an addin, as this code is reused by most of our workbooks, and having thousands of files with this code in seems like an awesome way to fill up our drives :)
    Basically the code seems to just ignore the saveas command when run from the ribbon, code runs, ends saying successful, in the debugger stepping over the code it appears to step over the saveas command as appears that it's been excused without fail, however
    no file gets created, workbook does not get saved and it keeps its original book<x> caption
    here's a quick example of my code, I have a class module registering application commands
    the ribbon button i'm using is just a print button, using the application print which then calls this before print function
    this is the code that fires from the ribbon, we always print out 2 copies i'm not sure if this can be simplified?
    If Application.Workbooks.Count = 0 Then Exit Sub
    If CheckRangeExists("BVSID") = 1 Then
    ActiveWindow.SelectedSheets.PrintOut Copies:=2, Collate:=True, IgnorePrintAreas:=False
    End If
    Using CTRL P or File Print this works fine, BeforePrint triggers each time, but within Save Invoice it calls the Application.SaveAs function, when this print is fired from the ribbon this simply seems to get ignored
    Private Sub App_WorkbookBeforePrint(ByVal Wb As Workbook, Cancel As Boolean)
    'check worksheet belongs to bvs plugin
    If CheckRangeExists("BVSID") = 1 Then
    'code to save
    If SaveInvoice = 0 Then Cancel = True
    End If
    End Sub
    incase there is something weird i'm missing, this is the line that throws up no errrors, simply doesn't work, more annoyingly the SaveInvoice function returns no error, which in turn prints out the document, and its only until after you check for the file
    you would realise it didn't save, I've since put a check in to check the file has saved, so far everysingle time it does not save from the ribbon, pressing CTRL P or clicking File Print will always save the file?
    ActiveWorkbook.SaveAs Filename:=Path & Range("Invoice").Value & ".xlsx", FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
    before I have Application.DisplayAlerts = False and after Application.DisplayAlerts = True
    As the code is within an Addin my probably overly basic idea is to create a hidden range with the name BVSID, with the idea the events only fire with the sheets I've created
    Finally, If I type the
    ActiveWindow.SelectedSheets.PrintOut Copies:=2, Collate:=True, IgnorePrintAreas:=False
    in the debug window the code also runs, triggers the before print and saves the files
    any help would be most appreciated :)

    Thanks for the time!
    it works fine when using the normal print button on the custom ui, its when using a macro combined with
    ActiveWindow.SelectedSheets.PrintOut
    I've just created a blank workbook, with a class module to capture the before print, I've put 2 buttons on the custom ribbon, one using the default command, and the other to call a macro to reference the printout command
    before print gets activated on both tries, however the saveas command gets ignored, seems to run, but not do anything when called using the .PrintOut command.
    Here's the code I've used to test
    This Workbook code
    Private XLApp As CExcelEvents
    'set applications to be avaliable in the cexcelevents class module
    Private Sub Workbook_Open()
    Set XLApp = New CExcelEvents
    End Sub
    Module for custom button (not actually sure if this needs to be in a module but this is to mimic the same behaviour i'm getting with the addin
    Sub PrintInvoice(control As IRibbonControl)
    ActiveWindow.SelectedSheets.PrintOut Copies:=2, Collate:=True, IgnorePrintAreas:=False
    End Sub
    Class Events CExcelEvents
    'get application events
    Private WithEvents App As Application
    Private Sub App_WorkbookBeforePrint(ByVal Wb As Workbook, Cancel As Boolean)
    ActiveWorkbook.SaveAs "C:\Test\Book1_Copy.xlsm", XlFileFormat.xlOpenXMLWorkbookMacroEnabled
    End Sub
    Private Sub Class_Initialize()
    Set App = Application
    End Sub
    Private Sub Class_Terminate()
    Set App = Nothing
    End Sub
    CustomUI Code
    <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui">
    <ribbon startFromScratch="false">
    <tabs>
    <tab id="customTab" label="Custom Tab">
    <group id="customGroup" label="Custom Group">
    <button idMso="FilePrint" imageMso="FilePrint" size="large"/>
    <button id="btnPrint" label="Print" imageMso="FilePrint" size="large" onAction="PrintInvoice" supertip="Saves Invoice Then Prints to Default Printer" enabled="true"/>
    </group>
    </tab>
    </tabs>
    </ribbon>
    </customUI>
    the button id btnprint is what I've been testing with so I copy pasted that button from the customui code I had
    I can't see away to add the workbook as an attachment, if needed I can upload it here too, this workbook was just created from scratch just incase its the addin I've got making some weird error

Maybe you are looking for

  • Iphone 4.2 upgrade- can't find my music files

    I just upgraded my Iphone 3gs to version 4.2. Now when I go into my Ipod application is says I have no content even though there are 1400 music files on the Iphone. What do I need to do to have my iphone recognize the music on the phone?

  • Outbound Proxy is generating Mapping Transformation XSLT error in SPROXY Test

    Hi, I have searched already online but i am unable to find anything relevant. The scenario is that I have an Inbound proxy for processing the incoming payload and in this code the call is made to the oubound proxy method and i am gettin the MAPPING.T

  • Launch PowerPoint from within a Flash Document?

    I am new to this and have a question. Is it possible to launch a PowerPoint file from within a Flash Document? (It can open either internally or externally) And, if so, is there a simple way to do it, or can you give me directions to the proper tutor

  • USB interface of WRT160NL is slow?

    I connected a WesternDigital 1TB USB 2.0 hard drive to my WRT160NL's USB port; and connected my PC to the WRT160NL via Ethernet cable. I can detect and configure the hard drive without any problem. But the read/write speed to the USB disk is very slo

  • Any debugging tool available??

    Hi all i m m new to JAVA and i do not have any tool to debug the program code so can any1 please help me in this matter by sending the tool name or the URL from which the tool can be downloaded