Cursor finding zero records is not going into an exception - Why?

Hi:
I have a stored procedure I am running that opens and returns a ref cursor but if the cursor doesnt have any records in it, it isnt firing an exception.
Thanks for any help
PROCEDURE GetPaymentHistory
     (     pi_seq_memb_id      IN NUMBER,
          out_status           OUT NUMBER,
          out_message           OUT VARCHAR2,
          po_curPmtHist          OUT P_EBIZ_DIAM_CONN.cursorType)
     AS
          vsql                VARCHAR2(2000);
          memb_id           NUMBER;
          vSpc                VARCHAR2(1);
          vComma           VARCHAR2(1);
          vLength           NUMBER;
          vDescription      VARCHAR2(60);                    
     BEGIN
          memb_id := pi_seq_memb_id;
          vSpc := '';
          vComma := ',';
          vDescription := '';
          vsql := '' || '';          
          OPEN po_curPmtHist FOR
          SELECT
               (SELECT DISTINCT BB.BILLING_SCHEDULE_TYPE
          FROM HSD_MEMBER_ELIG_HISTORY MEH
               INNER JOIN BILLABLE_GROUP_BCONFIG BGB ON BGB.SEQ_GROUP_ID = MEH.SEQ_GROUP_ID
               INNER JOIN BILLING_BATCH BB ON BGB.BATCH_ID = BB.BATCH_ID
          WHERE MEH.SEQ_MEMB_ID= m.SEQ_MEMB_ID
                    AND MEH.EFFECTIVE_DATE <= sysdate)      AS billFrequency,
               i.invoice_id                               AS InvoiceNumber,
               i.INVOICE_DATE                               AS InvoiceDate,
               i.INVOICE_FROM_DATE                          AS BillFrom,
               i.INVOICE_THRU_DATE                          AS BillTo,
               i.REPORTED_INVOICE_BALANCE                AS InvoiceAmount,
               i.PAYMENT_DUE_DATE                          AS DueDate,
               T.POST_DATETIME                               AS PaidDate,
               T.AMOUNT                                    AS PaidAmount,     
               i.TOTAL_NEW_CHARGES                          AS NewCharges,
               i.TOTAL_APPLIED_PAYMENTS                AS AppliedPayments,
               i.TOTAL_APPLIED_ADJUSTMENTS                AS AppliedAdjustments,
               i.TOTAL_APPLIED_TRANSFERS                AS AppliedTransfers,
               i.TOTAL_APPLIED_RETRO_TRANS                AS AppliedRetroTransactions,
               i.CURRENT_INVOICE_BALANCE                AS InvoiceBalance,     
               i.PREVIOUS_ACCOUNT_BALANCE                AS PreviousAccountBalance,
               i.TOTAL_REPORTED_PAYMENTS                AS ReportedPayments,
               i.TOTAL_REPORTED_ADJUSTMENTS           AS ReportedAdjustments,
               i.TOTAL_REPORTED_TRANSFERS                AS ReportedTransfers,
               i.TOTAL_REPORTED_RETRO_TRANS           AS ReportedRetroTransactions,
               i.REPORTED_ACCOUNT_BALANCE                AS AccountBalance,     
               F.UNAPPLIED_AMOUNT                          AS unappTotalCash,
               F.POST_DATETIME                               AS unappPostDate,
               F.CREATE_DATETIME                          AS unappTransDate,
               F.FUNDS_TYPE                               AS unappType,
               F.AMOUNT                                    AS unappAmount,
               F.DESCRIPTION                               AS unappDescription
          FROM
               invoice i
               INNER JOIN ar_account a ON i.ar_account_id = a.ar_account_id
               INNER JOIN HSD_MEMBER_MASTER m ON a.SEQ_BILL_ENTITY_ID = m.SEQ_FAMILY_ID
               LEFT OUTER JOIN AR_TRANSACTION T ON T.APPLIED_INVOICE_ID = i.INVOICE_ID
               LEFT OUTER JOIN FUNDS F ON F.funds_id = a.ar_account_id
          WHERE
               m.seq_memb_id = memb_id AND
               a.bill_entity_type='S' ;
          --IF po_curPmtHist%ROWCOUNT = 0 THEN
               --out_status := -1;
               --out_message := 'No record found for Get Payment History';
          -- ELSE
          out_status := 0;
          out_message := 'Get Payment History Success';
          --END IF;           
          EXCEPTION
          WHEN NO_DATA_FOUND THEN
               out_status := -1;
               out_message := 'No record found for Get Payment History';
          WHEN OTHERS THEN
               out_status := -1;
               out_message := 'Exception occured: Error Number:' || SQLCODE || ' Err Msg:' || SUBSTR(SQLERRM,1,100);
     END GetPaymentHistory;

I have a stored procedure I am running that opens
s and returns a ref cursor but if the cursor doesnt
have any records in it, This is a fairly common misconception. A cursor is simply a pointer to a compiled or prepared SQL statement with a plan for how to return the data.
Cursors do not contain data. With a ref cursor you are passing a pointer that will allow the caller to fetch the data using the prepared SQL statement.
Re: Regarding the data in a cursor

Similar Messages

  • Invalid record not going into E$ table

    Hi,
    I am using Oracle as source and target but source and target table is on different database.lets say
    base table EMP_SRC table --> ABC database
    fact table EMP_TRG table --> XYZ database
    and some dimension table are also in XYZ Database. and all FK constraint are there in fact table.
    I created one interface in which on source dataset i drag base table and dimension table for lookup and join the code columns with base table code and on target side i am populating keys and measures value correspondence the  base table data which matched with dim table.
    I am using KM
    LKM SQL to SQL
    IKM SQL incremental update
    Option:
    Flow control : true
    CKM SQL
    when i run the Interface it is getting successful with valid records but in base table there is some invalid record also which is not going into E$ table
    why it is happening ? did I miss something ? Please help me
    Thanks.

    I am doing little modification here
    BASE_DATA:
    RSN_CODE
    QUANTITY
    DATA_DIM:
    ID_RSN (PK)
    RSN_CODE
    your join need to be BASE_DATA.RSN_CODE = DATA_DIM.RSN_CODE(+)
    your target table will have as mapping
    TGT_DIM:
    ID_RSN (PK): DATA_DIM.ID_RSN
    QUANTITY: BASE_DATA.QUANTITY
    Now
    Base_Data
    RSN_CODE       Quantity
    1A                    120
    1B                    260
    1C                     130
    1E                    300
    DATA_DIM
    ID_RSN          RSN_CODE
    1                    1A
    2                     1B
    3                    1C
    4                    1D
    ------------------------------OK--------------------------
    After execution
    TGT_DIM
    ID_RSN          QUANTITY
    1                    120
    2                    260
    3                    130
    and in E$ table
    ODI_ROW_ID    :    F                   
    ODI_ERR_MESS  :   ODI-15066: The column ID_RSN cannot be null.
    ODI_CHECK_DATE  :   24-JUL-13
    RSN_CODE   :    (null)
    Quantity       : 300
    ---------------------OK----------------------------------
    but I want in E$ table consist following result
    ODI_ROW_ID    :    F                   
    ODI_ERR_MESS  :   ODI-15066: The column ID_RSN cannot be null.
    ODI_CHECK_DATE  :   24-JUL-13
    RSN_CODE   :    1E  
      Quantity       : 300
    Thanks

  • Project Server Task Approvals not Going into Plan

    Hi,
    After approving a task, we are finding that it is not going into the plan - on our separate test environment, the same steps work ok.
    Any ideas?
    Thanks

    Hi,
    Could you please let me know, if the issue is happening for only one projects or all the projects.
    Also, Check for failure transactions.
    select
    ASSN_UID,
    * from pub.MSP_ASSIGNMENT_TRANSACTIONS
    where ASSN_TRANS_STATE_ENUM
    =4 and
    proj_uid like'Proj_Uid'
    Also let me know on which patch level you are on?
    Check if you have any projects affected with lost resource bug
    http://blogs.technet.com/b/projectsupport/archive/2014/02/06/project-server-2013-and-project-online-what-happened-to-my-resources.aspx
    SELECT DISTINCT A.PROJ_UID, P.PROJ_NAME
    FROM DRAFT.MSP_ASSIGNMENTS A
    LEFT JOIN DRAFT.MSP_PROJECT_RESOURCES PR ON A.RES_UID = PR.RES_UID AND A.PROJ_UID = PR.PROJ_UID
    INNER JOIN PUB.MSP_RESOURCES ER ON A.RES_UID = ER.RES_UID
    INNER JOIN DRAFT.MSP_PROJECTS P ON A.PROJ_UID = P.PROJ_UID
    WHERE PR.RES_UID IS NULL
    UNION
    SELECT DISTINCT C.PROJ_UID, P.PROJ_NAME
    FROM DRAFT.MSP_PROJECT_CALENDARS C
    LEFT JOIN DRAFT.MSP_PROJECT_RESOURCES PR ON C.CAL_UID = PR.RES_UID AND C.PROJ_UID = PR.PROJ_UID
    INNER JOIN PUB.MSP_RESOURCES ER ON C.CAL_UID = ER.RES_UID
    INNER JOIN DRAFT.MSP_PROJECTS P ON C.PROJ_UID = P.PROJ_UID
    WHERE PR.RES_UID IS NULL
    ORDER BY P.PROJ_NAME
    Thanks,
    Phani

  • Records are not inserted into MTL_TXN_REQUEST_HEADERS,MTL_TXN_REQUEST_LINES

    Hi all,
    I am doing pick release thru API.
    For that , I have run following API successfully but my problem is that records are not inserted into MTL_TXN_REQUEST_HEADERS , MTL_TXN_REQUEST_LINES
    tables so that I cannot generate the move order. Can anyone suggent the valuable tips for that ?
    1. WSH_DELIVERIES_PUB.create_update_delivery
    2. WSH_DELIVERY_DETAILS_PUB.Detail_to_Delivery
    3. WSH_PICKING_BATCHES_PUB.CREATE_BATCH
    4. WSH_PICKING_BATCHES_PUB.RELEASE_BATCH
    5. WSH_DELIVERIES_PUB.Delivery_Action ( for p_action_code = 'PICK-RELEASE' )
    regards with thanks in advance
    sanjay

    Hi All,
    To create a Move Order Header & Line Record in MTL_TXN_REQUEST_HEADERS and MTL_TXN_REQUEST_LINES tables , I have run an seeded
    procedure : CreateMoveOrderHeader & CreateMoveOrderLines .
    The procedure : CreateMoveOrderHeader was run successfully but when I am going to run procedure : CreateMoveOrderLines , it is giving
    an error .
    Following Error text I am receiving at the time of running of procedure : CreateMoveOrderLines .
    Initialized applications context: 5707 50138 660
    *==========================================================*
    Calling INV_MOVE_ORDER_PUB.Create_Move_Order_Lines API
    *==========================================================*
    Return Status: E
    Error Message :INV
    *==========================================================*
    From the above error message, no specific error is received . Only " Error Message : INV " is received hence it is very difficult to judge & resolve an error .
    Can anyone guide me that what is an error ? For what reason I am getting an error ?
    regrads
    Sanjay

  • MIRO.......Quality doc not going into block

    Hi,
    When we are posting invoice through MIRO against materials in Quality its not going into payment block..
    We maintaing everything from QM point of view, control keys and select block invoice options.
    we are unable to trace/ fine the settting related from FICO.
    Can any body guide me.
    Regards,
    Venkat

    hi
    In MM02,
    Quality management view,
    Activate "QM in Procurement is Active"
    Enter QM control key - "0007" i.e. Del. release, invoice block
    U have to also maintain QM Info Record, use QI01
    Test 1 complete cycle PO > GR > LIV
    It will start working
    Regards

  • My iphone 4 has a SIM card and lately is saying that it is not installed when it is, and it has a small light in the screen where the card goes into the slot, why is this happening?

    my iphone 4 has a SIM card and lately is saying that it is not installed when it is, and it has a small light in the screen where the card goes into the slot, why is this happening?

    Hi cosmoph1,
    If you are having issues with your iPhone not recognizing the installed SIM, you may find the following article helpful:
    iPhone: Troubleshooting No SIM
    http://support.apple.com/kb/ts4148
    Regards,
    - Brenden

  • PXI-8431 not going into receive mode with VB6

    I am using a PXI-1045 chassis with a PXI-8431 RS422/485 card and communicating via a VB6 program
    The output of the PXI-8431 RS485 module works OK when it is in send mode, the signal levels are approx 1v and 3v for high and low, but when it is in receive mode the outputs remain at 1v and 3v instead of going into passive mode and both lines floating at approx 2v with approx 300mV differential as they should. This means when the remote devices send, the amplitude of the signal is approx half as they are competing with the PXI module, and that the centre point of the two signals are at 1v and 3v respectively. Our software does not receive the signals from the PXI module which is consistent with my theory that it is still in send mode and taking control of the lines, or maybe it has changed it to 4 wire mode.
    I have swapped over the PXI card and the remote cards with our good system and the problem does not move.
    I have eliminated ALL the hardware on the new ring by replacing it with a 67 Ohm resistor on the pins of a 9 way D connector plugged onto the PXI card directly. With a scope I can see that the new system is not going into passive mode, but with the same connector the old system works OK.
    The only difference I can see between the 6 old rigs we have that do work and the 2 new ones that do not work is the new ones use the the NI-XNET-PXI-8513 and the old ones use the PXI_8464 CAN card. Could this software be conflicting? Is there any other updates to the NI software that could be causing it?
    Solved!
    Go to Solution.

    Hi,
    I've had a check to see if we have any known software conflict issues with those cards but it all seems fine, it could be that the Windows Driver layer is causing some issues. If you nip into Device Manager and go to the properties of the 8431 you should be able to change it to 2-wire mode from those settings then re-run the program.
    Also does the program throw any errors at all in terms of device resources when trying to move from send to receive mode?
    What versions of NI-VISA and NI-Serial do you currently have installed?
    Kind Regards,
    Applications Engineer

  • Msi p6n Platinum - not going into bios

    Hi all,
    Ive just put together my new pc. Its the first build ive done.
    Trouble is i go to boot it up and its not going into the bios from the splash screen.
    On the D bracket lights 1 and 3 are constantly lit: Testing base & Extended memory.
    No matter how many times i reboot, it just doesnt work.
    All it does is go to a black screen when i press delete from the splash screen.
    Spec:
    Intel E6600
    Msi p6n Platinum
    2 gig Xms2 6400C4 (using 512mb stick for booting purposes)
    XFX 8800 gts 320mb XXX
    2 x 36gb (these were raid - 0 on my old rig)
    Hiper 480W
    I havent a clue where to go with this, any help greatly appreciated - Thanks

    I think the board is having a hard time detecting the HDD from the BIOS.
    Try using another HDD in a standard non-raid setup and see if the problem occurs.
    Anyway, you can't simply just pull a set of RAID drives from another working system and expect it to work in a new system as the RAID controller are of different makes.

  • Downloads from iTunes are not going into my library

    When I download songs and podcasts from iTunes on my iPhone they seem to download fine but they do not go into my library. Any ideas? All software is up to date.

    I am using the same account. It happened once before and all I did was connect it to iTunes and it seemed to sort itself. I tried connecting it again but it doesn't seem to have worked this time. My purchases went into my library before when I purchased from the store on my iphone and I haven't changed any settings that would stop this. When I say my library, I mean the songs and podcasts don't appear on my iPhone when I purchase from it.
    Thanks for your help though.

  • 2LIS_02_S896 issue : Records are not updated into BW

    Hi
    ->We use 2LIS _ 02 _ SCL extractor to pass PO's to BW with delta.
    ->Works fine until the last week ,
    ->But on a particular date ( 15.05.2007) some of the records are not updated in BW.They are even not found at PSA level itself
    ->For eg for a material X there are two entries found in R/3 ( MB51 ) for the same posting date, now one of them is picked in BW (PSA level ) and other is not.
    ->There was no load fail / delta fail in BW and there is no exit written for this.
    ->Records are not updated in RSA3.
    Let me know how this issue can be fixed.Its urgent.
    Thanks,
    Jilani

    Hi Gagan,
    Kindly check if you have any selection restrictions in your infopackage.
    Regards.

  • Iphone 5 with iOS 8 not going into Sleep Awake

    SInce updating my iPhone 5 to iOS 8 it will not go into Sleep Awake. Phone will continuously stay on. When phone is asleep and is woken from iMessage/Notification/Phone call it will not go back to sleep. There is no option so set a sleep time anymore in iOS 8. Please fix!

    My Son pointed out to me that my Auto-Lock in the General setting had been reset to Never. Problem fixed. I have noticed that some settings have been rest even after being restored from a previous back up.
    Settings>General>Auto-lock

  • Core i7 27" imac not going into 64bit mode

    i received my 27" Core i7 when they first shipped. love the machine. that said when i hold the 6 and 4 down at boot it does not go into 64 bit mode. what could be causing this and how could a force it into that mode?

    Edit the file:
    /Library/Preferences/SystemConfiguration/com.apple.Boot.plist
    Insert arch=x86_64 into the Kernel Flags field.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Kernel</key>
    <string>mach_kernel</string>
    <key>Kernel Flags</key>
    <string>arch=x86_64</string>
    </dict>
    </plist>

  • Hi all I am using Jbuilder 7 can not type into jlist. Why!!

    Hi there
    can anyone tell me why when I compile my code all works.
    I can't type into my jlist
    WHY??
    please someone
    Craig

    Maybe I'm missing something, but JLists are made from arrays, vectors, or objects with a constructor or by adding those items to an already created JList. I've not seen where you can type directly into the list, unless programatically implemented.

  • Downoads are not going into the folder I set up in options.

    I have Firefox 10.0.3. I set up a download folder in Options for Downloads to go in to. With this latest version they are going to a temp folder instead. I can't get them to go into the correct folder. Is there a fix?

    Hi mdrake,
    Does the actual folder change when you look at the preference or does it still show the folder that you specified? Anyway, you should look at the article [[Preferences are not saved]]. It could be the FF can't save to your pref.js file.
    You could also try starting Firefox in [[Safe Mode]]. If you don't have the issue while all of your add-ons, extensions, and themes are disabled, you can try adding them back in one by one until you find the culprit. You should look at the [https://support.mozilla.org/en-US/kb/Troubleshooting-extensions-themes Extensions and Themes troubleshooting guide ] and the [[Troubleshooting plugins]] article as well.
    You might want to try [https://support.mozilla.org/en-US/kb/Managing-profiles?s=create+a+new+profile&r=2&e=es&as=s#w_creating-a-profile creating a new profile].
    Hopefully this helps!

  • Reply-to-all mails not going into discard folder in IMAP mailbox  oracle 11i

    Hi All,
    DB Version : 11.2.0.2
    App version : 11.5.10.2
    OS  : Solaris 10
    We have a running prod system on which IMAP is configured in the workflow mailer. It has been observred that some users do a reply-to-all  (or attach images as attachments )when they receive the email from IMAP and these emails are accumilated in the IMAP mailbox inbox and are not moved automatically to the discard folder. This caused mailer to hang and stops the mails from going forward.We then manually check for such faulty emails and then move then to discard folder and bounce the workflow mailer.
    We have scanned the metalink and google notes but have not seen anyone facing this similar issue. Also referred to the metalink note 275182.1 which suggests to set the expunge settings in the inbox but they are already in place.
    please suggest.
    Regards
    KK

    Hello Asif,
    Thank You for your response. I did review the mailers logs but did not find anything significant. Also we guys are new to workflow so we are stuck. I am adding below the log file from the last 20 mins. please have a look and share your opinion on the same.
    Also , please tell me exactly what is supposed to go in the DISCARD folder. ? Or do we need to create any rules in the outlook mailbox to care of the replies.
    <<the emails and the server hostname and IP's have been modified due to security>>
    output1 :
    {code}
    [Sep 11, 2013 11:51:44 AM IST]:1378880504050:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:Did not receive any control events.
    [Sep 11, 2013 11:51:44 AM IST]:1378880504051:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.process()]:BEGIN
    [Sep 11, 2013 11:51:44 AM IST]:1378880504051:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:BEGIN
    [Sep 11, 2013 11:51:44 AM IST]:1378880504051:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 11:51:44 AM IST]:1378880504052:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 11:51:44 AM IST]:1378880504052:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    [Sep 11, 2013 11:56:11 AM IST]:1378880771868:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.listen()]:WF_EVENT.listen returned processed count: 18, error count: 0
    [Sep 11, 2013 11:56:11 AM IST]:1378880771869:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:Successfully listened from WF_DEFERRED
    [Sep 11, 2013 11:56:11 AM IST]:1378880771870:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.processMessage(Object)]:BEGIN [empty default implementation]
    [Sep 11, 2013 11:56:11 AM IST]:1378880771870:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:BEGIN
    [Sep 11, 2013 11:56:11 AM IST]:1378880771871:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:(Logger{mLog=[$Header: AppsLog.java 115.78 2004/12/16 16:17:13 rnix ship $ @29945809 {oracle.apps.fnd.profiles.ExtendedProfileStore@f892a4}],mUniqueId=SVC-GSM-WFALSNRSVC-352211-10002,mLevel=1}, [oracle.apps.fnd.wf.apps.WorkflowContext@988707 $Revision: 115.189 $ extends [oracle.apps.fnd.common.Context@988707 $Revision: 115.48 $  {sessionId=0x988707,conn=oracle.jdbc.driver.OracleConnection@1cc5069,state=oracle.apps.fnd.common.StateStack@1c8ef56}] {isDedicated=false}])
    [Sep 11, 2013 11:56:11 AM IST]:1378880771871:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 11:56:11 AM IST]:1378880771871:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 11:56:11 AM IST]:1378880771872:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    [Sep 11, 2013 11:56:11 AM IST]:1378880771873:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:END
    [Sep 11, 2013 11:56:11 AM IST]:1378880771873:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.run()]:Resetting Error Count
    [Sep 11, 2013 11:56:11 AM IST]:1378880771874:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:BEGIN
    [Sep 11, 2013 11:56:11 AM IST]:1378880771874:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:Waiting 0 seconds (10 ms)
    [Sep 11, 2013 11:56:11 AM IST]:1378880771890:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.run()]:Running loop from the top.
    [Sep 11, 2013 11:56:11 AM IST]:1378880771890:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:BEGIN (noEvent)
    [Sep 11, 2013 11:56:11 AM IST]:1378880771890:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:Did not receive any control events.
    [Sep 11, 2013 11:56:11 AM IST]:1378880771891:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.process()]:BEGIN
    [Sep 11, 2013 11:56:11 AM IST]:1378880771891:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:BEGIN
    [Sep 11, 2013 11:56:11 AM IST]:1378880771891:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 11:56:11 AM IST]:1378880771892:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 11:56:11 AM IST]:1378880771892:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    [Sep 11, 2013 11:58:23 AM IST]:1378880903919:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.listen()]:WF_EVENT.listen returned processed count: 20, error count: 0
    [Sep 11, 2013 11:58:23 AM IST]:1378880903920:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:Successfully listened from WF_DEFERRED
    [Sep 11, 2013 11:58:23 AM IST]:1378880903920:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.processMessage(Object)]:BEGIN [empty default implementation]
    [Sep 11, 2013 11:58:23 AM IST]:1378880903920:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:BEGIN
    [Sep 11, 2013 11:58:23 AM IST]:1378880903921:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:(Logger{mLog=[$Header: AppsLog.java 115.78 2004/12/16 16:17:13 rnix ship $ @29945809 {oracle.apps.fnd.profiles.ExtendedProfileStore@f892a4}],mUniqueId=SVC-GSM-WFALSNRSVC-352211-10002,mLevel=1}, [oracle.apps.fnd.wf.apps.WorkflowContext@988707 $Revision: 115.189 $ extends [oracle.apps.fnd.common.Context@988707 $Revision: 115.48 $  {sessionId=0x988707,conn=oracle.jdbc.driver.OracleConnection@1cc5069,state=oracle.apps.fnd.common.StateStack@1c8ef56}] {isDedicated=false}])
    [Sep 11, 2013 11:58:23 AM IST]:1378880903921:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 11:58:23 AM IST]:1378880903922:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 11:58:23 AM IST]:1378880903922:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    [Sep 11, 2013 11:58:23 AM IST]:1378880903924:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:END
    [Sep 11, 2013 11:58:23 AM IST]:1378880903924:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.run()]:Resetting Error Count
    [Sep 11, 2013 11:58:23 AM IST]:1378880903924:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:BEGIN
    [Sep 11, 2013 11:58:23 AM IST]:1378880903925:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:Waiting 0 seconds (10 ms)
    [Sep 11, 2013 11:58:23 AM IST]:1378880903940:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.run()]:Running loop from the top.
    [Sep 11, 2013 11:58:23 AM IST]:1378880903940:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:BEGIN (noEvent)
    [Sep 11, 2013 11:58:23 AM IST]:1378880903940:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:Did not receive any control events.
    [Sep 11, 2013 11:58:23 AM IST]:1378880903941:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.process()]:BEGIN
    [Sep 11, 2013 11:58:23 AM IST]:1378880903941:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:BEGIN
    [Sep 11, 2013 11:58:23 AM IST]:1378880903941:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 11:58:23 AM IST]:1378880903942:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 11:58:23 AM IST]:1378880903942:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    [Sep 11, 2013 12:07:19 PM IST]:1378881439392:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.listen()]:WF_EVENT.listen returned processed count: 26, error count: 0
    [Sep 11, 2013 12:07:19 PM IST]:1378881439393:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:Successfully listened from WF_DEFERRED
    [Sep 11, 2013 12:07:19 PM IST]:1378881439393:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.processMessage(Object)]:BEGIN [empty default implementation]
    [Sep 11, 2013 12:07:19 PM IST]:1378881439393:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:BEGIN
    [Sep 11, 2013 12:07:19 PM IST]:1378881439394:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:(Logger{mLog=[$Header: AppsLog.java 115.78 2004/12/16 16:17:13 rnix ship $ @29945809 {oracle.apps.fnd.profiles.ExtendedProfileStore@f892a4}],mUniqueId=SVC-GSM-WFALSNRSVC-352211-10002,mLevel=1}, [oracle.apps.fnd.wf.apps.WorkflowContext@988707 $Revision: 115.189 $ extends [oracle.apps.fnd.common.Context@988707 $Revision: 115.48 $  {sessionId=0x988707,conn=oracle.jdbc.driver.OracleConnection@1cc5069,state=oracle.apps.fnd.common.StateStack@1c8ef56}] {isDedicated=false}])
    [Sep 11, 2013 12:07:19 PM IST]:1378881439394:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 12:07:19 PM IST]:1378881439395:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 12:07:19 PM IST]:1378881439395:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    [Sep 11, 2013 12:07:19 PM IST]:1378881439396:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:END
    [Sep 11, 2013 12:07:19 PM IST]:1378881439396:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.run()]:Resetting Error Count
    [Sep 11, 2013 12:07:19 PM IST]:1378881439397:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:BEGIN
    [Sep 11, 2013 12:07:19 PM IST]:1378881439397:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:Waiting 0 seconds (10 ms)
    [Sep 11, 2013 12:07:19 PM IST]:1378881439410:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.run()]:Running loop from the top.
    [Sep 11, 2013 12:07:19 PM IST]:1378881439410:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:BEGIN (noEvent)
    [Sep 11, 2013 12:07:19 PM IST]:1378881439410:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:Did not receive any control events.
    [Sep 11, 2013 12:07:19 PM IST]:1378881439411:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.process()]:BEGIN
    [Sep 11, 2013 12:07:19 PM IST]:1378881439411:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:BEGIN
    [Sep 11, 2013 12:07:19 PM IST]:1378881439411:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 12:07:19 PM IST]:1378881439412:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 12:07:19 PM IST]:1378881439412:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    [Sep 11, 2013 12:10:03 PM IST]:1378881603217:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.listen()]:WF_EVENT.listen returned processed count: 11, error count: 0
    [Sep 11, 2013 12:10:03 PM IST]:1378881603218:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:Successfully listened from WF_DEFERRED
    [Sep 11, 2013 12:10:03 PM IST]:1378881603218:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.processMessage(Object)]:BEGIN [empty default implementation]
    [Sep 11, 2013 12:10:03 PM IST]:1378881603218:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:BEGIN
    [Sep 11, 2013 12:10:03 PM IST]:1378881603219:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:(Logger{mLog=[$Header: AppsLog.java 115.78 2004/12/16 16:17:13 rnix ship $ @29945809 {oracle.apps.fnd.profiles.ExtendedProfileStore@f892a4}],mUniqueId=SVC-GSM-WFALSNRSVC-352211-10002,mLevel=1}, [oracle.apps.fnd.wf.apps.WorkflowContext@988707 $Revision: 115.189 $ extends [oracle.apps.fnd.common.Context@988707 $Revision: 115.48 $  {sessionId=0x988707,conn=oracle.jdbc.driver.OracleConnection@1cc5069,state=oracle.apps.fnd.common.StateStack@1c8ef56}] {isDedicated=false}])
    [Sep 11, 2013 12:10:03 PM IST]:1378881603219:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 12:10:03 PM IST]:1378881603220:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 12:10:03 PM IST]:1378881603220:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    [Sep 11, 2013 12:10:03 PM IST]:1378881603221:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.ContextUtils.commit(Logger, WorkflowContext)]:END
    [Sep 11, 2013 12:10:03 PM IST]:1378881603222:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.run()]:Resetting Error Count
    [Sep 11, 2013 12:10:03 PM IST]:1378881603222:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:BEGIN
    [Sep 11, 2013 12:10:03 PM IST]:1378881603222:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.sleep()]:Waiting 0 seconds (10 ms)
    [Sep 11, 2013 12:10:03 PM IST]:1378881603240:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.run()]:Running loop from the top.
    [Sep 11, 2013 12:10:03 PM IST]:1378881603240:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:BEGIN (noEvent)
    [Sep 11, 2013 12:10:03 PM IST]:1378881603240:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:STATEMENT:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.Processor.processControlEvent(String)]:Did not receive any control events.
    [Sep 11, 2013 12:10:03 PM IST]:1378881603241:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.cp.gsc.SvcComponentProcessor.process()]:BEGIN
    [Sep 11, 2013 12:10:03 PM IST]:1378881603241:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[SVC-GSM-WFALSNRSVC-352211-10002 : oracle.apps.fnd.wf.bes.AgentListenerProcessor.read()]:BEGIN
    [Sep 11, 2013 12:10:03 PM IST]:1378881603241:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(): BEGIN/END
    [Sep 11, 2013 12:10:03 PM IST]:1378881603242:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection(null,0x988707,false,false,false): : BEGIN
    [Sep 11, 2013 12:10:03 PM IST]:1378881603242:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:PROCEDURE:[fnd.wf.apps.WorkflowContext]:oracle.apps.fnd.wf.apps.WorkflowContext.getJDBCConnection: END: returning oracle.jdbc.driver.OracleConnection@1cc5069
    {code}
    and mailer log 2 :
    {code}
    [Sep 11, 2013 11:54:13 AM IST]:1378880653533:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:54:13 AM IST]:1378880653775:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6973873 to [[EMAILID]]
    [Sep 11, 2013 11:54:13 AM IST]:1378880653776:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6973873} status {SENT} {} {}
    [Sep 11, 2013 11:54:13 AM IST]:1378880653807:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:54:13 AM IST]:1378880653809:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6896745, priority=50, correlationId=null, sendDate=Wed Sep 11 07:32:09 IST 2013, receiveDate=Wed Sep 11 11:57:50 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6896745, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6896745, CHANGE_TYPE=INSERT, ROLE=212975, #MSG_ID=E60E7031749667F7E0440010E0208FC8}
    [Sep 11, 2013 11:54:38 AM IST]:1378880678280:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:54:38 AM IST]:1378880678455:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=7001680 to [[EMAILID]]
    [Sep 11, 2013 11:54:38 AM IST]:1378880678455:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {7001680} status {SENT} {} {}
    [Sep 11, 2013 11:54:38 AM IST]:1378880678495:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:54:38 AM IST]:1378880678497:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6942470, priority=50, correlationId=null, sendDate=Wed Sep 11 07:32:11 IST 2013, receiveDate=Wed Sep 11 11:58:15 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6942470, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6942470, CHANGE_TYPE=INSERT, ROLE=210800, #MSG_ID=E60E7031749767F7E0440010E0208FC8}
    [Sep 11, 2013 11:55:02 AM IST]:1378880702805:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:55:03 AM IST]:1378880703041:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6896745 to [[EMAILID]]
    [Sep 11, 2013 11:55:03 AM IST]:1378880703042:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6896745} status {SENT} {} {}
    [Sep 11, 2013 11:55:03 AM IST]:1378880703065:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:55:03 AM IST]:1378880703067:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6976605, priority=50, correlationId=null, sendDate=Wed Sep 11 07:32:18 IST 2013, receiveDate=Wed Sep 11 11:58:39 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6976605, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6976605, CHANGE_TYPE=INSERT, ROLE=208291, #MSG_ID=E60E7031749A67F7E0440010E0208FC8}
    [Sep 11, 2013 11:55:27 AM IST]:1378880727303:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:55:27 AM IST]:1378880727502:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6942470 to [[EMAILID]]
    [Sep 11, 2013 11:55:27 AM IST]:1378880727503:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6942470} status {SENT} {} {}
    [Sep 11, 2013 11:55:27 AM IST]:1378880727530:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:55:27 AM IST]:1378880727532:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=7000763, priority=50, correlationId=null, sendDate=Wed Sep 11 07:32:22 IST 2013, receiveDate=Wed Sep 11 11:59:04 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=7000763, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=7000763, CHANGE_TYPE=INSERT, ROLE=206845, #MSG_ID=E60E7031749C67F7E0440010E0208FC8}
    [Sep 11, 2013 11:55:51 AM IST]:1378880751934:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:55:52 AM IST]:1378880752075:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6976605 to [[EMAILID]]
    [Sep 11, 2013 11:55:52 AM IST]:1378880752076:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6976605} status {SENT} {} {}
    [Sep 11, 2013 11:55:52 AM IST]:1378880752111:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:55:52 AM IST]:1378880752113:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6997230, priority=50, correlationId=null, sendDate=Wed Sep 11 07:34:27 IST 2013, receiveDate=Wed Sep 11 11:59:28 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6997230, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6997230, CHANGE_TYPE=INSERT, ROLE=205947, #MSG_ID=E60E6ADB1FA867F3E0440010E0208FC8}
    [Sep 11, 2013 11:56:16 AM IST]:1378880776477:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:56:16 AM IST]:1378880776643:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=7000763 to [[EMAILID]]
    [Sep 11, 2013 11:56:16 AM IST]:1378880776643:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {7000763} status {SENT} {} {}
    [Sep 11, 2013 11:56:16 AM IST]:1378880776700:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:56:16 AM IST]:1378880776702:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6998230, priority=50, correlationId=null, sendDate=Wed Sep 11 07:34:29 IST 2013, receiveDate=Wed Sep 11 11:59:53 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6998230, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6998230, CHANGE_TYPE=INSERT, ROLE=212967, #MSG_ID=E60E703174D267F7E0440010E0208FC8}
    [Sep 11, 2013 11:56:41 AM IST]:1378880801307:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:56:41 AM IST]:1378880801541:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6997230 to [[EMAILID]]
    [Sep 11, 2013 11:56:41 AM IST]:1378880801541:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6997230} status {SENT} {} {}
    [Sep 11, 2013 11:56:41 AM IST]:1378880801616:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:56:41 AM IST]:1378880801618:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6942489, priority=50, correlationId=null, sendDate=Wed Sep 11 07:34:52 IST 2013, receiveDate=Wed Sep 11 12:00:18 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6942489, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6942489, CHANGE_TYPE=INSERT, ROLE=218099, #MSG_ID=E60E703174D567F7E0440010E0208FC8}
    [Sep 11, 2013 11:57:06 AM IST]:1378880826537:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:57:06 AM IST]:1378880826782:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6998230 to [[EMAILID]]
    [Sep 11, 2013 11:57:06 AM IST]:1378880826783:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6998230} status {SENT} {} {}
    [Sep 11, 2013 11:57:06 AM IST]:1378880826805:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:57:06 AM IST]:1378880826807:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6997967, priority=50, correlationId=null, sendDate=Wed Sep 11 07:34:56 IST 2013, receiveDate=Wed Sep 11 12:00:43 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6997967, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6997967, CHANGE_TYPE=INSERT, ROLE=210800, #MSG_ID=E60E703174D767F7E0440010E0208FC8}
    [Sep 11, 2013 11:57:31 AM IST]:1378880851387:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:57:31 AM IST]:1378880851571:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6942489 to [[EMAILID]]
    [Sep 11, 2013 11:57:31 AM IST]:1378880851571:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6942489} status {SENT} {} {}
    [Sep 11, 2013 11:57:31 AM IST]:1378880851611:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:57:31 AM IST]:1378880851613:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=7000361, priority=50, correlationId=null, sendDate=Wed Sep 11 07:36:50 IST 2013, receiveDate=Wed Sep 11 12:01:08 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=7000361, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=7000361, CHANGE_TYPE=INSERT, ROLE=204228, #MSG_ID=E60E7031750867F7E0440010E0208FC8}
    [Sep 11, 2013 11:57:56 AM IST]:1378880876142:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:57:56 AM IST]:1378880876359:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6997967 to [[EMAILID]]
    [Sep 11, 2013 11:57:56 AM IST]:1378880876360:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6997967} status {SENT} {} {}
    [Sep 11, 2013 11:57:56 AM IST]:1378880876425:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:57:56 AM IST]:1378880876427:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6970800, priority=50, correlationId=null, sendDate=Wed Sep 11 07:36:53 IST 2013, receiveDate=Wed Sep 11 12:01:32 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6970800, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6970800, CHANGE_TYPE=INSERT, ROLE=207695, #MSG_ID=E60E7031750967F7E0440010E0208FC8}
    [Sep 11, 2013 11:58:20 AM IST]:1378880900817:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:58:21 AM IST]:1378880901039:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=7000361 to [[EMAILID]]
    [Sep 11, 2013 11:58:21 AM IST]:1378880901040:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {7000361} status {SENT} {} {}
    [Sep 11, 2013 11:58:21 AM IST]:1378880901076:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:58:21 AM IST]:1378880901078:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6970818, priority=50, correlationId=null, sendDate=Wed Sep 11 07:37:00 IST 2013, receiveDate=Wed Sep 11 12:01:57 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6970818, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6970818, CHANGE_TYPE=INSERT, ROLE=210800, #MSG_ID=E60E7031750C67F7E0440010E0208FC8}
    [Sep 11, 2013 11:58:45 AM IST]:1378880925304:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:58:45 AM IST]:1378880925500:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6970800 to [[EMAILID]]
    [Sep 11, 2013 11:58:45 AM IST]:1378880925501:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6970800} status {SENT} {} {}
    [Sep 11, 2013 11:58:45 AM IST]:1378880925550:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:58:45 AM IST]:1378880925552:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6971617, priority=50, correlationId=null, sendDate=Wed Sep 11 07:37:04 IST 2013, receiveDate=Wed Sep 11 12:02:22 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6971617, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6971617, CHANGE_TYPE=INSERT, ROLE=210800, #MSG_ID=E60E6ADB1FE967F3E0440010E0208FC8}
    [Sep 11, 2013 11:59:10 AM IST]:1378880950101:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:59:10 AM IST]:1378880950291:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6970818 to [[EMAILID]]
    [Sep 11, 2013 11:59:10 AM IST]:1378880950291:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6970818} status {SENT} {} {}
    [Sep 11, 2013 11:59:10 AM IST]:1378880950341:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:59:10 AM IST]:1378880950343:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6996555, priority=50, correlationId=null, sendDate=Wed Sep 11 07:39:08 IST 2013, receiveDate=Wed Sep 11 12:02:46 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6996555, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6996555, CHANGE_TYPE=INSERT, ROLE=204228, #MSG_ID=E60E7031754067F7E0440010E0208FC8}
    [Sep 11, 2013 11:59:23 AM IST]:1378880963199:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:UNEXPECTED:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.IMAPInboundProcessor.open()]:Unable to connect to mail store
    [Sep 11, 2013 11:59:23 AM IST]:1378880963201:Thread[inboundThreadGroup1,5,inboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.cp.gsc.Processor.performError(ProcessorException)]:Number of errors that have occurred for this processing thread - 2 out of a max of 10000
    [Sep 11, 2013 11:59:34 AM IST]:1378880974683:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:59:34 AM IST]:1378880974726:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6971617 to [[EMAILID]]
    [Sep 11, 2013 11:59:34 AM IST]:1378880974727:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6971617} status {SENT} {} {}
    [Sep 11, 2013 11:59:34 AM IST]:1378880974776:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:59:34 AM IST]:1378880974778:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=7001644, priority=50, correlationId=null, sendDate=Wed Sep 11 07:39:10 IST 2013, receiveDate=Wed Sep 11 12:03:11 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=7001644, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=7001644, CHANGE_TYPE=INSERT, ROLE=206828, #MSG_ID=E60E7031754167F7E0440010E0208FC8}
    [Sep 11, 2013 11:59:59 AM IST]:1378880999375:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 11:59:59 AM IST]:1378880999539:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6996555 to [[EMAILID]]
    [Sep 11, 2013 11:59:59 AM IST]:1378880999539:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6996555} status {SENT} {} {}
    [Sep 11, 2013 11:59:59 AM IST]:1378880999575:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 11:59:59 AM IST]:1378880999577:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6971417, priority=50, correlationId=null, sendDate=Wed Sep 11 07:39:19 IST 2013, receiveDate=Wed Sep 11 12:03:36 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6971417, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6971417, CHANGE_TYPE=INSERT, ROLE=206506, #MSG_ID=E60E7031754567F7E0440010E0208FC8}
    [Sep 11, 2013 12:00:24 PM IST]:1378881024299:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 12:00:24 PM IST]:1378881024547:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=7001644 to [[EMAILID]]
    [Sep 11, 2013 12:00:24 PM IST]:1378881024547:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {7001644} status {SENT} {} {}
    [Sep 11, 2013 12:00:24 PM IST]:1378881024719:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 12:00:24 PM IST]:1378881024721:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=6970790, priority=50, correlationId=null, sendDate=Wed Sep 11 07:39:24 IST 2013, receiveDate=Wed Sep 11 12:04:01 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=6970790, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=6970790, CHANGE_TYPE=INSERT, ROLE=205852, #MSG_ID=E60E7031754767F7E0440010E0208FC8}
    [Sep 11, 2013 12:00:49 PM IST]:1378881049194:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 12:00:49 PM IST]:1378881049335:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Successfully processed Message[0] for NOTIFICATION_ID=6971417 to [[EMAILID]]
    [Sep 11, 2013 12:00:49 PM IST]:1378881049335:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPMessageHandler.sendMessages(String)]:Updating notification {6971417} status {SENT} {} {}
    [Sep 11, 2013 12:00:49 PM IST]:1378881049401:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Defer the Read of CLOB reference of Event Data
    [Sep 11, 2013 12:00:49 PM IST]:1378881049403:Thread[outboundThreadGroup2,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[fnd.wf.bes.PLSQLQueueHandler]:dequeue() :Dequeued the following BusinessEvent -> BusinessEvent{name=oracle.apps.wf.notification.cancel, key=7090136, priority=50, correlationId=null, sendDate=Wed Sep 11 07:41:07 IST 2013, receiveDate=Wed Sep 11 12:04:25 IST 2013, From Agent:Agent{agent=WF_NOTIFICATION_OUT, system=DBhostname.xyz.com}, To Agent:  , Last Subscription=C0F79E8FE398266EE0301490C8C41A0C, Error Message=null, Error Stack=null, ID_TYPE=PK, OBJECT_NAME=oracle.apps.fnd.wf.worklist.server.AllNotificationsVO, #CURRENT_PHASE=100, #MSG_DQ_ATTEMPTS=0, Q_CORRELATION_ID=HXCEMP:TIMECARD_APPROVAL_INLINE, PK_NAME_2=LANGUAGE, NOTIFICATION_ID=7090136, BES_PAYLOAD_OBJECT=false, PK_VALUE_2=US, PK_NAME_1=NOTIFICATION_ID, PK_VALUE_1=7090136, CHANGE_TYPE=INSERT, ROLE=205672, #MSG_ID=E60E7031757567F7E0440010E0208FC8}
    [Sep 11, 2013 12:01:14 PM IST]:1378881074422:Thread[outboundThreadGroup3,5,outboundThreadGroup]:0:-1:hostname.xyz.com:ip.ip.ip.ip:-1:-1:EXCEPTION:[SVC-GSM-WFMLRSVC-352210-10006 : oracle.apps.fnd.wf.mailer.SMTPOutboundProcessor.send(Message)]:Intending to send email to -> [[EMAILID]]. Sending to -> [[EMAILID]]
    [Sep 11, 2013 12:0

Maybe you are looking for

  • Flicker when connecting Macbook Pro to LG 20in LCD

    Hi all When I connect my Macbook Pro to my LG 20in LCD (L204WT) I get a flicker on the LCD panel. I've tried the following which all work (i.e. no flicker on the external panel): * connecting the LG to my Powerbook G4 * connecting the MBP to a Viewso

  • Creating headers and footers in the portal

    i had created a simple portal and modified the shell file inside the framework dir, include the path of the header.jsp which is inside the support dir form the shell file. But i didnt get the header part when i run the portal Why didnt i get the head

  • Connecting Bluetooth Keyboard to N95?

    I have an N95 phone and have purchased a non nokia Bluetooth Keyboard (Xema)and I am having problems making it work? It pairs with the phone but then does not work? The seller suggests that you have to remove nokia sofware for their own keyboard, but

  • Mouse Pointer resizes when applying pointer style to all

    When Captivate records my SW demo, it uses up to three different mouse pointer styles at different times (Haven't quite figured out what the protocol is).  I really don't like this and would like only one style used (the hand).  So when I right click

  • ITunes -- Download Error 502

    I recently purchased Season 1 of Battlestar Galactica; all but two of the episodes downloaded fine. Two did not and I received error message 502. Each time I sign on to the Music Store I get a reminder that I have not downloaded all my purchases, so