[ODLN.Series] , 'Internal error (-2038) occurred'

Dear experts,
I have the following error "[ODLN.Series] , 'Internal error (-2038) occurred'" that occurs from time to time when I try to add a delivery based on a sales order with the DI API.
has any body else ever had the same error before ?
in the help the code number 2038 means a Data Source - Record Lock
I added a code that adds the delivery onther time each time this error occurs
what can i do to solve this issue ?
Best Regards
Abderrahim,

Dear Vieira ,
thank you for your respone
I don't think i can catch an inner exeception it's an error that I catch by the  oCompany.GetLastError(ierr, serr) ,how can i get more details of the 2038 error?
just one remark the deliveries are created very well,I think the errors occurs when there a lot of deliveries to create
this the code that adds de Delivery
Dim DocEntry As Integer
        Dim iPickID As Integer
        DocEntry = GetOrderEntry(H_So.order_no)
        iPickID = H_So.order_no.Substring(9, 6)
        Dim bGetOrder As Boolean = oOrder.GetByKey(DocEntry)
        oBP.GetByKey(oOrder.CardCode)
        oDelivery.CardCode = oOrder.CardCode
        oDelivery.HandWritten = SAPbobsCOM.BoYesNoEnum.tNO
        oDelivery.ImportFileNum = oOrder.ImportFileNum
         'Add lines into Delivery
         Dim bIsFirstLine As Boolean = True
        Dim iQtyConfirmed As Integer = 0
        For Each L_So As L_Conf_NYK In L_SoArray
            iQtyConfirmed += L_So.pkd_qty
            If bIsFirstLine = False Then
                oDelivery.Lines.Add()
            Else
                bIsFirstLine = False
            End If
            Dim VisOrder As Integer = Me.GetVisOrderLine(oOrder, CInt(L_So.line_no))
            oOrder.Lines.SetCurrentLine(VisOrder)
            Dim ItemCode As String = GetItemCode(L_So.product_no)
            Dim oPLQuantity As Integer = GetPLQuantity(oOrder)
            oDelivery.Lines.BaseEntry = oOrder.DocEntry
            oDelivery.Lines.ItemCode = ItemCode
            oDelivery.Lines.BaseLine = CInt(L_So.line_no)
            oDelivery.Lines.BaseType = 17
            oDelivery.Lines.Quantity = CDbl(L_So.pkd_qty)
        Next
        'Set expenses to the Delivrey
        Dim bIsFirstLoop As Boolean = True
        Dim i As Integer = 0
        Dim TotalFreightOnOrder As Double = 0
        While i < oOrder.Expenses.Count
            oOrder.Expenses.SetCurrentLine(i)
            TotalFreightOnOrder += oOrder.Expenses.LineTotal
            i += 1
        End While
        i = 0
        If TotalFreightOnOrder > 0 And iQtyConfirmed > 0 Then
            Do
                If bIsFirstLoop = True Then
                    bIsFirstLoop = False
                Else
                    oDelivery.Expenses.Add()
                End If
                oOrder.Expenses.SetCurrentLine(i)
                oDelivery.Expenses.ExpenseCode = oOrder.Expenses.ExpenseCode
                If oOrder.Expenses.LineTotalFC = 0 Then
                    oDelivery.Expenses.LineTotal = oOrder.Expenses.LineTotal
                Else
                    oDelivery.Expenses.LineTotal = oOrder.Expenses.LineTotalFC
                End If
                oDelivery.Expenses.TaxCode = oOrder.Expenses.TaxCode
                oDelivery.Expenses.BaseDocEntry = oOrder.DocEntry
                oDelivery.Expenses.BaseDocLine = oOrder.Expenses.LineNum
                oDelivery.Expenses.BaseDocType = oOrder.DocObjectCode
                i += 1
            Loop While i < oOrder.Expenses.Count
        End If
        Threading.Thread.Sleep(1000)
        Dim iAddition As Integer = 0
        Dim ierr As Integer
        'i try to create a delivery each time the error 5002 and 2038 errors occurs
        Do
            ierr = oDelivery.Add
            If ierr <> 0 Then
                ErrFlag = False
               Threading.Thread.Sleep(1000)
                iAddition += 1
            End If
        Loop While (Math.Abs(ierr) = 5002 Or Math.Abs(ierr) = 2038) And iAddition <= 5
         If ierr <> 0 Then
            ErrFlag = False
            Dim serr As String = ""
            oCompany.GetLastError(ierr, serr)
            Throw New Exception(serr & ". Delivery for order number " & oOrder.DocNum & " in the pick list number " & iPickID & " cannot be created.")
        End If
Best regards
Abderrahim
Edited by: Boukhris Abderrahim on Mar 13, 2009 1:24 PM

Similar Messages

  • -2038 - Internal error (-2038) occurred : on 19/05/2011 10:04:34

    Usind DI API for SAP 8.8 PL20
    There's no entry in the Event Viewer obviously it's something wrong in SAP.
    How can I know what's the problem ?
    The application that is using DI API, is performing it's job every minute of every day without any trouble until 2 or 2 times a day, it crashes like this.
    I would like to know how I can debug, profile or anything I could do to know what's the source of the problem.
    Thank you for any hints.

    The error Internal error (-2038) is usually related to database deadlocks, as explained in a few notes on the portal:
    1414834 - DI_Error -2038 when update orders with multiple users
    1231885 - DI_Error when two programs try to access the same object
    1113543 - DI_Database deadlocks when maintaining JE concurrently
    1489753 - Deadlock while adding Marketing Documents simultaneously
    etc. - I got 11 notes relating the B1 with that error when I searched on service.sap.com/notes
    So most likely it is due to either your application is accessing the same object as a user at the same time, or something is happening with transaction if you are suing it.
    To actually monitor what is happening, two options:
    1. SQL profiler - run the profiler for the day and then use the timestamp in your log to check the sql profile and see what was happening
    2. Use the B1 Test Tools available on the SDN, which include a .NET profiler and a DB Proifler that you can use to analyze whats going on. (http://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/cbb70163-0c01-0010-9b8c-f6ee72de7328 [original link is broken])
    But before using your time up with those tools, see is there something you can do to prevent the deadlock - or check are you using a version of B1 that has a bug that was fixed in a later version. (explained in the notes)

  • Internal Error -2038 Invoice Creation

    ¡Hi! Help!
    I explain my problem
    I've created a vb.net 2005 application. Through DI API (SBO 2005 SP 01, patch level 20).
    This application, windows forms run, it opens an SBO conection and  starts a timer. Every 5 secconds the timer ticks, it
    searches for custom xml files containing info needed to create/update Invoices, or Sales Orders. Whenever I find files to
    process, the timer stops, documents are processed one after another and then timer continue ticking. I use one Company and
    one conection open since the moment the program starts and it remains opened the whole day.
    There are two servers. SAP Server, and there's another server (in this server runs my application, here I have just my app
    and DI API so it connects to SAP Server) both on same Domain.
    Database size is 50 GB, and it grows about 90 - 100 MB every day
    The amount of invoices created is about 500/600 daily.
    Problem is many times invoices creation are unsuccesfull due to one of the following errors:
    OINV.Series , 'Internal error (-2038) occurred'  or just OINV.Series , 'Internal error (-2038) occurred'
    this makes more difficult to figure out the reason why this happen and moreover how to solve it, because as some or many of
    you may know, internal error is not much explict and the causes for this error are very different.
    Now, I'm certain Invoice series are OK because the same Invoice creation that fails in one moment, simply is succesfully
    created after 2, 3 or even 5 or 6 tries!.
    Errors increase a lot at evening, when intensive use of SBO database is taking place. However these errors use to happen
    even  at morning when few Invoices are created, I mean, not necessarily happen at intensive use.
    Invoices are not that large. The biggest are about 10 - 12 lines.
    This situation is frustrating both for my customer and myself
    Has anyone experienced something similar? is this something about sbo db performance? does anyone knows if there's some kind
    of document about Internal error?

    Hi Marcel,
    I think the first thing I'd check is for deadlocks on the database. Earlier patches of SBO 2005A SP1 are known to have issues in this area (see SAP note 1113543 for an example). It would certainly fit the symptoms you are getting (ie the same document can be created without errors at a different time).
    Kind Regards,
    Owen

  • Internal error (3006) occurred

    We have formatted searches on user-defined fields
    When I run the query associated with that formatted search from the menu, it runs just fine:
    But when I run the formatted search from within the form (single mouse click on litte magnifying glass icon), I get an u2018internal erroru2019(3006) occurred.
    What can be the reason and how can we solve it.

    HI
    Check this link:
    -2038 - Internal error (-2038) occurred : on 19/05/2011 10:04:34
    and also check the sap notes in it...
    Hope this will help you..

  • Why do I get "Internal Error (-5002) occurred" when doing external recon via SDK ?

    I can reconcile an invoice and matching incoming payment as below:
    Table OJDT is:
    BatchNum
    TransId
    BtfStatus
    TransType
    BaseRef
    RefDate
    Memo
    Ref1
    Ref2
    CreatedBy
    LocTotal
    FcTotal
    SysTotal
    TransCode
    OrignCurr
    TransRate
    BtfLine
    TransCurr
    Project
    DueDate
    TaxDate
    PCAddition
    FinncPriod
    DataSource
    UpdateDate
    CreateDate
    UserSign
    UserSign2
    RefndRprt
    LogInstanc
    ObjType
    Indicator
    AdjTran
    RevSource
    StornoDate
    StornoToTr
    AutoStorno
    Corisptivi
    VatDate
    StampTax
    Series
    Number
    AutoVAT
    DocSeries
    FolioPref
    FolioNum
    CreateTime
    BlockDunn
    ReportEU
    Report347
    Printed
    DocType
    AttNum
    GenRegNo
    RG23APart2
    RG23CPart2
    MatType
    Creator
    Approver
    Location
    SeqCode
    Serial
    SeriesStr
    SubStr
    AutoWT
    WTSum
    WTSumSC
    WTSumFC
    WTApplied
    WTAppliedS
    WTAppliedF
    BaseAmnt
    BaseAmntSC
    BaseAmntFC
    BaseVtAt
    BaseVtAtSC
    BaseVtAtFC
    VersionNum
    BaseTrans
    ResidenNum
    OperatCode
    Ref3
    SSIExmpt
    SignMsg
    SignDigest
    CertifNum
    KeyVersion
    CUP
    CIG
    SupplCode
    SPSrcType
    SPSrcID
    SPSrcDLN
    DeferedTax
    AgrNo
    SeqNum
    ECDPosTyp
    RptPeriod
    RptMonth
    U_BType
    U_CLIST
    NULL
    3285
    O
    13
    1328
    2014-08-10 00:00:00.000
    A/R Invoices - AFR100
    1328
    1328
    900.000000
    900.000000
    900.000000
    NULL
    NULL
    0.000000
    NULL
    USD
    NULL
    2014-08-10 00:00:00.000
    2014-08-10 00:00:00.000
    N
    104
    I
    2014-08-10 00:00:00.000
    2014-08-10 00:00:00.000
    1
    1
    N
    0
    30
    NULL
    N
    N
    NULL
    NULL
    N
    N
    NULL
    N
    17
    3285
    N
    4
    NULL
    NULL
    944
    N
    N
    N
    N
    NULL
    0
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    9.02.003.11
    NULL
    1
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    N
    NULL
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    3286
    O
    24
    1375
    2014-08-10 00:00:00.000
    Incoming Payments - AFR100
    1375
    1375
    900.000000
    900.000000
    900.000000
    NULL
    NULL
    0.000000
    NULL
    USD
    NULL
    2014-08-10 00:00:00.000
    2014-08-10 00:00:00.000
    N
    104
    I
    2014-08-10 00:00:00.000
    2014-08-10 00:00:00.000
    1
    1
    N
    0
    30
    NULL
    N
    N
    NULL
    NULL
    N
    N
    NULL
    N
    17
    3286
    N
    15
    NULL
    NULL
    945
    N
    N
    N
    N
    NULL
    0
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    9.02.003.11
    NULL
    1
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    N
    NULL
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    Table JDT1:
    TransId
    Line_ID
    Account
    Debit
    Credit
    SYSCred
    SYSDeb
    FCDebit
    FCCredit
    FCCurrency
    DueDate
    SourceID
    SourceLine
    ShortName
    IntrnMatch
    ExtrMatch
    ContraAct
    LineMemo
    Ref3Line
    TransType
    RefDate
    Ref2Date
    Ref1
    Ref2
    CreatedBy
    BaseRef
    Project
    TransCode
    ProfitCode
    TaxDate
    SystemRate
    MthDate
    ToMthSum
    UserSign
    BatchNum
    FinncPriod
    RelTransId
    RelLineID
    RelType
    LogInstanc
    VatGroup
    BaseSum
    VatRate
    Indicator
    AdjTran
    RevSource
    ObjType
    VatDate
    PaymentRef
    SYSBaseSum
    MultMatch
    VatLine
    VatAmount
    SYSVatSum
    Closed
    GrossValue
    CheckAbs
    LineType
    DebCred
    SequenceNr
    StornoAcc
    BalDueDeb
    BalDueCred
    BalFcDeb
    BalFcCred
    BalScDeb
    BalScCred
    IsNet
    DunWizBlck
    DunnLevel
    DunDate
    TaxType
    TaxPostAcc
    StaCode
    StaType
    TaxCode
    ValidFrom
    GrossValFc
    LvlUpdDate
    OcrCode2
    OcrCode3
    OcrCode4
    OcrCode5
    MIEntry
    MIVEntry
    ClsInTP
    CenVatCom
    MatType
    PstngType
    ValidFrom2
    ValidFrom3
    ValidFrom4
    ValidFrom5
    Location
    WTaxCode
    EquVatRate
    EquVatSum
    SYSEquSum
    TotalVat
    SYSTVat
    WTLiable
    WTLine
    WTApplied
    WTAppliedS
    WTAppliedF
    WTSum
    WTSumFC
    WTSumSC
    PayBlock
    PayBlckRef
    LicTradNum
    InterimTyp
    DprId
    MatchRef
    Ordered
    CUP
    CIG
    BPLId
    BPLName
    VatRegNum
    SLEDGERF
    U_CLIST
    3285
    0
    100200200100000
    900.000000
    0.000000
    0.000000
    900.000000
    900.000000
    0.000000
    USD
    2014-08-10 00:00:00.000
    1328
    1
    AFR100
    0
    0
    400100100300000
    A/R Invoices - AFR100
    1
    13
    2014-08-10 00:00:00.000
    NULL
    1328
    1328
    1328
    NULL
    2014-08-10 00:00:00.000
    0.000000
    NULL
    0.000000
    1
    NULL
    104
    -1
    -1
    N
    0
    NULL
    0.000000
    0.000000
    N
    N
    30
    NULL
    0.000000
    0
    N
    0.000000
    0.000000
    N
    0.000000
    NULL
    3
    D
    0
    NULL
    900.000000
    0.000000
    900.000000
    0.000000
    900.000000
    0.000000
    Y
    N
    0
    NULL
    0
    N
    NULL
    NULL
    NULL
    1900-01-01 00:00:00.000
    0.000000
    NULL
    0
    0
    0
    -1
    -1
    0
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    NULL
    NULL
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    NULL
    NULL
    0
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    3285
    1
    200100200900000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    USD
    2014-08-10 00:00:00.000
    1328
    -2
    200100200900000
    0
    0
    AFR100
    A/R Invoices - AFR100
    13
    2014-08-10 00:00:00.000
    NULL
    1328
    1328
    1328
    NULL
    2014-08-10 00:00:00.000
    0.000000
    NULL
    0.000000
    1
    NULL
    104
    -1
    -1
    N
    0
    X0
    900.000000
    0.000000
    N
    N
    30
    NULL
    900.000000
    0
    Y
    0.000000
    0.000000
    N
    0.000000
    NULL
    3
    C
    0
    NULL
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    Y
    N
    0
    NULL
    0
    N
    NULL
    NULL
    NULL
    1900-01-01 00:00:00.000
    0.000000
    NULL
    0
    0
    0
    -1
    -1
    0
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    NULL
    NULL
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    NULL
    NULL
    0
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    3285
    2
    400100100300000
    0.000000
    900.000000
    900.000000
    0.000000
    0.000000
    900.000000
    USD
    2014-08-10 00:00:00.000
    NULL
    NULL
    400100100300000
    0
    0
    AFR100
    A/R Invoices - AFR100
    13
    2014-08-10 00:00:00.000
    NULL
    1328
    1328
    1328
    NULL
    2014-08-10 00:00:00.000
    0.000000
    NULL
    0.000000
    1
    NULL
    104
    -1
    -1
    N
    0
    NULL
    0.000000
    0.000000
    N
    N
    30
    NULL
    0.000000
    0
    N
    0.000000
    0.000000
    N
    0.000000
    NULL
    3
    C
    0
    NULL
    0.000000
    900.000000
    0.000000
    900.000000
    0.000000
    900.000000
    Y
    N
    0
    NULL
    0
    N
    NULL
    NULL
    NULL
    1900-01-01 00:00:00.000
    0.000000
    NULL
    0
    0
    0
    -1
    -1
    0
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    NULL
    NULL
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    NULL
    NULL
    0
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    3285
    3
    100200100100200
    0.000000
    891.710000
    891.710000
    0.000000
    0.000000
    891.710000
    USD
    2014-08-10 00:00:00.000
    NULL
    NULL
    100200100100200
    0
    0
    AFR100
    A/R Invoices - AFR100
    13
    2014-08-10 00:00:00.000
    NULL
    1328
    1328
    1328
    NULL
    2014-08-10 00:00:00.000
    0.000000
    NULL
    0.000000
    1
    NULL
    104
    -1
    -1
    N
    0
    NULL
    0.000000
    0.000000
    N
    N
    30
    NULL
    0.000000
    0
    N
    0.000000
    0.000000
    N
    0.000000
    NULL
    3
    C
    0
    NULL
    0.000000
    891.710000
    0.000000
    891.710000
    0.000000
    891.710000
    Y
    N
    0
    NULL
    0
    N
    NULL
    NULL
    NULL
    1900-01-01 00:00:00.000
    0.000000
    NULL
    0
    0
    0
    -1
    -1
    0
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    NULL
    NULL
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    NULL
    NULL
    0
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    3285
    4
    500100100700000
    891.710000
    0.000000
    0.000000
    891.710000
    891.710000
    0.000000
    USD
    2014-08-10 00:00:00.000
    NULL
    NULL
    500100100700000
    0
    0
    AFR100
    A/R Invoices - AFR100
    13
    2014-08-10 00:00:00.000
    NULL
    1328
    1328
    1328
    NULL
    2014-08-10 00:00:00.000
    0.000000
    NULL
    0.000000
    1
    NULL
    104
    -1
    -1
    N
    0
    NULL
    0.000000
    0.000000
    N
    N
    30
    NULL
    0.000000
    0
    N
    0.000000
    0.000000
    N
    0.000000
    NULL
    3
    D
    0
    NULL
    891.710000
    0.000000
    891.710000
    0.000000
    891.710000
    0.000000
    Y
    N
    0
    NULL
    0
    N
    NULL
    NULL
    NULL
    1900-01-01 00:00:00.000
    0.000000
    NULL
    0
    0
    0
    -1
    -1
    0
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    NULL
    NULL
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    NULL
    NULL
    0
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    3286
    0
    100200500100500
    900.000000
    0.000000
    0.000000
    900.000000
    900.000000
    0.000000
    USD
    2014-08-10 00:00:00.000
    1375
    -1
    100200500100500
    0
    0
    AFR100
    Incoming Payments - AFR100
    NULL
    24
    2014-08-10 00:00:00.000
    NULL
    1375
    1375
    1375
    NULL
    NULL
    2014-08-10 00:00:00.000
    0.000000
    NULL
    0.000000
    1
    NULL
    104
    -1
    -1
    N
    0
    NULL
    0.000000
    0.000000
    NULL
    N
    N
    30
    NULL
    NULL
    0.000000
    0
    N
    0.000000
    0.000000
    N
    0.000000
    NULL
    0
    D
    0
    NULL
    900.000000
    0.000000
    900.000000
    0.000000
    900.000000
    0.000000
    Y
    N
    0
    NULL
    0
    N
    NULL
    NULL
    NULL
    1900-01-01 00:00:00.000
    0.000000
    NULL
    NULL
    NULL
    NULL
    NULL
    0
    0
    0
    -1
    -1
    0
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    NULL
    NULL
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    NULL
    NULL
    0
    NULL
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    3286
    1
    100200200100000
    0.000000
    900.000000
    900.000000
    0.000000
    0.000000
    900.000000
    USD
    2014-08-10 00:00:00.000
    NULL
    -99
    AFR100
    0
    0
    100200500100500
    Incoming Payments - AFR100
    1375
    24
    2014-08-10 00:00:00.000
    NULL
    1375
    1375
    1375
    NULL
    NULL
    2014-08-10 00:00:00.000
    0.000000
    NULL
    0.000000
    1
    NULL
    104
    -1
    -1
    N
    0
    NULL
    0.000000
    0.000000
    NULL
    N
    N
    30
    NULL
    NULL
    0.000000
    0
    N
    0.000000
    0.000000
    N
    0.000000
    NULL
    0
    C
    0
    NULL
    0.000000
    900.000000
    0.000000
    900.000000
    0.000000
    900.000000
    Y
    N
    0
    NULL
    0
    N
    NULL
    NULL
    NULL
    1900-01-01 00:00:00.000
    0.000000
    NULL
    NULL
    NULL
    NULL
    NULL
    0
    0
    0
    -1
    -1
    0
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    1900-01-01 00:00:00.000
    NULL
    NULL
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    N
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    0.000000
    N
    NULL
    NULL
    0
    NULL
    NULL
    N
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    NULL
    But when I try the same in SDK/DI (oCmpSrv previously set),  I get "Internal Error (-5002) occurred":
            Try
                Dim ExtReconSvc As SAPbobsCOM.ExternalReconciliationsService = oCmpSrv.GetBusinessService(SAPbobsCOM.ServiceTypes.ExternalReconciliationsService)
                Dim ExtReconciliation As SAPbobsCOM.ExternalReconciliation = ExtReconSvc.GetDataInterface(SAPbobsCOM.ExternalReconciliationsServiceDataInterfaces.ersExternalReconciliation)
                ExtReconciliation.ReconciliationAccountType = SAPbobsCOM.ReconciliationAccountTypeEnum.rat_BusinessPartner
                Dim jeLine1 As SAPbobsCOM.ReconciliationJournalEntryLine = ExtReconciliation.ReconciliationJournalEntryLines.Add()
                jeLine1.TransactionNumber = "3285"
                jeLine1.LineNumber = 0
                Dim jeLine2 As SAPbobsCOM.ReconciliationJournalEntryLine = ExtReconciliation.ReconciliationJournalEntryLines.Add()
                jeLine2.TransactionNumber = "3286"
                jeLine2.LineNumber = 1
                ExtReconSvc.Reconcile(ExtReconciliation)
            Catch ex As Exception
                MsgBox(ex.Message)
            End Try
    I do not understand what I am doing wrong and I have no idea what this error means.
    Thanks in advance for your help.

    Sorry Images were very poor in original post.

  • I just installed Lightroom CC. When I try to open it, I get an error message: "An internal error has occurred.  Cannot create the required folder: ..."

    I just installed Lightroom CC. When I try to open it, I get an error message: "An internal error has occurred.  Cannot create the required folder: ..."

    Cannot create the required folder

  • When I try to import, I receive the following message: "An internal error has occurred: not enough memory".  I always download my photos onto an external hard drive.

    Yesterday,I downloaded an update for Lightroom 5.  Now when I try to import, I receive the following message: "An internal error has occurred: not enough memory".  The message comes up right after I click import, before I choose a file to upload.Here is the information I can think of that might be needed to answer this question:
    - I always download my photos onto an external hard drive.It is about 10 % full.
    - It says I have Lightroom 5.6  64 bit
    - I am working from a newer laptop (Windows).  The internal drive on the laptop has 289 gb and I am using 61 gb total memory.
    - I have edited 2794 photos in Lightroom and it is all in one catalog.
    - I did not have this problem until I made the update.  I did have my first "bug" earlier this week when one of my photos had a line show up through the middle of it when I exported it. I was able to export it a second time without the line.
    If there is more info. needed, let me know.  I do photography as a hobby and know enough about Lightroom to edit out blemishes and adjust color balance, but not too much more, so forgive my ignorance if this is an obvious fix.
    Sincerely,
    Adrianne

    Not Enough Memory typically refers to RAM.  How much RAM do you have on your 64-bit OS computer?  Do you have other programs running that may be using most of the memory?

  • An internal Error has occurred.if this persists,please contact your Discove

    Hi,
    I am facing Error in opening a Report in Discoverer Plus :"An internal Error has occurred.if this persists,please contact your Discoverer Manager".I am opening all the other reports its opening up but only this one causing up this pop up error.
    Kindly help me as its very urgent.
    Any help will be needful for me
    Thanks and Regards

    Have you installed AppController on the same machine with VMM?

  • 'Abnormal program termination.An internal error has occured.'

    Hi all... i have a problem when i'm in the middle of infra installation (74%) and then this popup message appears and stop my installation 'Abnormal program termination. An internal error has occured. Pls provide the following files to Oracle support:
    "/oraias/oraInventory/logs/installActions2010-08-18_11-03-52AM.log"
    "/oraias/oraInventory/logs/installActions2010-08-18_11-03-52AM.err"
    "/oraias/oraInventory/logs/installActions2010-08-18_11-03-52AM.out"
    i have tried several ways and many times to reinstall, to solve this error but still the result is still failed. i've tried to follow metalink suggestion by Edit the PATH, CLASSPATH, and LD_LIBRARY_PATH environment variables so that they do not reference any Oracle home directories, try to transfer again the software installation to directory server and extract from cpio files(i thought maybe the software might be corrupted) but the result is still same, stuck at the same place..! if any of you have experienced this before or have any idea on which setup do i have to look again, pls reply me ya. pls help and your help is very much appreciated.thanks in advanced.

    Hi, welcome to the forums!
    Have you already added the new node to Clusterware?. Have you followed all the steps detailed on the documentation?
    The note *How to Add Node/Instance or Remove Node/Instance in 10gR2, 11gR1 and 11gR2 Oracle Clusterware and RAC [ID 1332451.1]* is a must read, which points to the public documentation.
    If you already did that previous steps, you can enable a more detailed logging for the addnode execution with the parameters "-debug -logLevel finest", and setting this variables before running it again:
    export SRVM_TRACE=true
    export SRVM_TACE_LEVEL=2Regards.

  • "Internal error (-5002) occurred" On Pick List Update Picked Quantity

    Hi Experts,
    I have an SDK program that simply tries to update the Picked Quantity in SAP. Previously it has been working fine, until I try to use the same logic for items managed by Batch or Serial Number.
    In this scenario, I have created a PickList with only 1 row, the item is managed by Serial Number.
    I try to simplify the code as below.
    Dim oBaseDocument As SAPbobsCOM.PickLists
    oBaseDocument = oComp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPickLists)
    BaseDocument.GetByKey(12345)
    oBaseDocument.Lines.SetCurrentLine(0)
    oBaseDocument.Lines.PickedQuantity += 1
    oBaseDocument.Lines.BinAllocations.Add()
    oBaseDocument.Lines.BinAllocations.SetCurrentLine(0)
    oBaseDocument.Lines.BinAllocations.BinAbsEntry = CInt(sBinAbsEntry)
    oBaseDocument.Lines.BinAllocations.Quantity += dXML_Quantity
    oBaseDocument.Lines.SerialNumbers.InternalSerialNumber = sXML_BatchSerialNo      ' <--- ***
    lRet = oBaseDocument.Update
    I have added the *** line for handling the Serial Number, but when it hit the Update command, the SDK returns "Internal error (-5002) occurred".
    I'm not sure what does it means.
    Anyway I tried to remove the *** line and it works fine for item not managed by Batch or Serial, but the issue will remains for the Items managed by Serial or Batch.
    Please advise whether I missed anything in this code.
    Thank you in advance.
    Best Regards,
    Krisma

    Hi Krisma,
    I haven't done this thing practically but error -5002 will occur, if there is any Invalid Object.
    You can check it accordingly.
    Hope it helps.
    Thanks & Regards
    Ankit Chauhan

  • Getting an error while configuring VMM for System Center 2012. error - An internal error has occurred trying to contact an agent on the WIN-NTJU8CNU server: : . Ensure the agent is installed and running.

    Hi,
    I am trying to install "System Center 2012 - Virtual Machine Manager by Using a Pre-Configured VHD".
    I downloaded install guide & the binaries from http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=10712
    I have followed the installation document & getting an error while configuring VMM for System Center 2012.
    error details from log file given below:
    01:12:24:VMMPostinstallProcessor threw an exception: Threw Exception.Type: Microsoft.Carmine.WSManWrappers.WSManProviderException, Exception.Message: An internal error has occurred trying to contact an agent on the WIN-NTJTNEJ1UCN.mydomain.com server: : .
    Ensure the agent is installed and running. Ensure the WS-Management service is installed and running, then restart the agent.
    01:12:24:StackTrace:   at Microsoft.Carmine.WSManWrappers.ErrorContextParameterHelper.ThrowTranslatedCarmineException(WsmanSoapFault fault, COMException ce)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.RetrieveUnderlyingWMIErrorAndThrow(SessionCacheElement sessionElement, COMException ce)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.Invoke(String actionUri, WSManUri targetUri, Hashtable parameters, Type returnType, Boolean isCarmineMethod, Boolean forceResponseCast)
       at Microsoft.Carmine.WSManWrappers.AgentManagement.AssociateLibrary(WsmanAPIWrapper wsmanObject, String CertificateSubjectName, String& ExportedCertificate, ErrorInfo& ErrorInfo)
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.AssociateAgentServer(String fullyQualifiedServerName)
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.AssociateDefaultLibraryServer()
       at Microsoft.VirtualManager.Setup.VirtualMachineManagerHelpers.SetupLibraryShare()
       at Microsoft.VirtualManager.Setup.InstallItemCustomDelegates.PangaeaServerPostinstallProcessor()
    01:12:24:InnerException.Type: System.Runtime.InteropServices.COMException, InnerException.Message: There is a time and/or date difference between the client and server.
    01:12:24:InnerException.StackTrace:   at WSManAutomation.IWSManSession.Invoke(String actionUri, Object resourceUri, String parameters, Int32 flags)
       at Microsoft.Carmine.WSManWrappers.MyIWSManSession.Invoke(String actionUri, Object resourceUri, String parameters, Int32 flags)
       at Microsoft.Carmine.WSManWrappers.WsmanAPIWrapper.Invoke(String actionUri, WSManUri targetUri, Hashtable parameters, Type returnType, Boolean isCarmineMethod, Boolean forceResponseCast)
    01:12:24:ProcessInstalls: Running the PostProcessDelegate returned false.
    01:12:24:ProcessInstalls: Running the PostProcessDelegate for PangaeaServer failed.... This is a fatal item.  Setting rollback.
    01:12:24:SetProgressScreen: FinishMinorStep.
    01:12:24:ProcessInstalls: Rollback is set and we are not doing an uninstall so we will stop processing installs
    I have completed MSSQL server configuration and while configuring VMM the below error displayed in the wizard:
    An internal error has occurred trying to contact an agent on the WIN-NTJTNEJ1UCN.mydomain.com server: : .
    Ensure the agent is installed and running. Ensure the WS-Management service is installed and running, then restart the agent.
    I have checked that the following services are running:
    1) Verified WS-Management srvice 2) MSSQL server + MSSQL (agent)  3)SC VM Manager Agent  4)  Windows management instrumentation .
    I have joined the VM (on which installing SC VMM) in a domain(as per install guide) and installing VMM using domain account & it is in local Administrators group.
    Also I would like know if there is any stand alone SC VMM installer. If yes then please let me know the installer location & install guide.
    thanks.
    ====

    Have you installed AppController on the same machine with VMM?

  • APP-MRP-22075: An internal error has occurred (mrnspia, 2, 8170, )

    EBS 12.1.3
    Database Version 11.2.0.2
    APP-MRP-22075: An internal error has occurred (mrnspia, 2, 8170, )
    @ERRORTEXT            Cause:        The current routine encountered the specified@ERRORTEXT  x        Action:        Contact your customer supportrepresentative.
    APP-MRP-22075: An internal error has occurred (main, 19, MSCNSP,  )
    @ERRORTEXT            Cause:        The current routine encountered the specified@ERRORTEXT  x        Action:        Contact your customer supportrepresentative.
    {Code}
    Steps to reproduce the issue isAdvanced Supply Chain Planner > Supply Chain Plan > Launch. Select P:BUIEH and select SP-TEST plan. Hit OK and Submit
    Error Log Contents
    Advanced Supply Chain Planning: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    MSCNSP module: Memory-Based Snapshot
    Current system time is 23-JUL-2012 21:08:58
    ===================================================================
    Debug Mode : Disabled
    Output to Terminal : No
    Argument Method : Database Fetch
    Trace Mode : Disabled
    ===================================================================
    Argument 1 (PLAN_ID) = 1026
    Argument 2 (LAUNCH_CRP_PLANNER) = 2
    Argument 3 (SNAPSHOT_WORKER) = 0
    Argument 4 (MON_PNAME) = 0
    Argument 5 (MON_REQUEST_ID) = 0
    Argument 6 (SNAPSHOT_MODE) = 1
    Argument 7 (SNAP_STATIC_ENTITIES) = 1
    ===================================================================
    plan_id:1026 plan_type:1 planning_engine_type:1
    Setting up flat file directories: Checking for DIR: /app/oracle/EBSCRP2/inst/apps/EBSCRP2_houebsap2/logs/appl/conc/out/data1026/
    Directory is already there or can not be opened
    Setting up flat file directories: Checking for mbpinput and mbpoutput directories
    mbp input/output directory existing.. check it out
    mbp flat file dir /app/oracle/EBSCRP2/inst/apps/EBSCRP2_houebsap2/logs/appl/conc/out/data1026/
    before call to calculate plan buckets
    success in calculate plan buckets
    MRNSPIA: Constraine_mode :1
    Planning Engine Type: ASCP Plan_type:1
    The value of profile option 'MRP_RETAIN_DATES_WTIN_CAL_BOUNDARY' is Y
    SELECT TO_NUMBER(TO_CHAR(MIN(calendar_date),'j')),
    TO_NUMBER(TO_CHAR(MAX(calendar_date),'j'))
    FROM msc_calendar_dates
    WHERE calendar_code = :calendar_code
    AND seq_num IS NOT NULL
    AND to_number(to_char(calendar_date, 'J')) >=
    to_number(to_char(sysdate, 'J')) - 365
    AND exception_set_id = :exception_set_id
    AND sr_instance_id = :instance_id
    Loading workday calendar. Please wait ..
    SELECT TO_CHAR(calendar_date, 'j')
    FROM msc_calendar_dates
    WHERE calendar_code = :calendar_code
    AND sr_instance_id = :instance_id
    AND to_number(to_char(calendar_date, 'j')) >=
    to_number(to_char(sysdate, 'J')) - 365
    AND exception_set_id = :exception_set_id
    AND seq_num IS NOT NULL
    ORDER BY calendar_date
    Loading workday calendar. Please wait ...
    Loading workday calendar. Please wait . 0:00
    APP-MRP-22075: An internal error has occurred (mrnspia, 2, 8170, )
    @ERRORTEXT Cause: The current routine encountered the specified@ERRORTEXT x Action: Contact your customer supportrepresentative.
    APP-MRP-22075: An internal error has occurred (main, 19, MSCNSP, )
    @ERRORTEXT Cause: The current routine encountered the specified@ERRORTEXT x Action: Contact your customer supportrepresentative.
    ***** End Of Program - No title available *****
    Executing request completion options...
    Output file size:
    0
    Output is not being printed because:
    The print option has been disabled for this report.
    Finished executing request completion options.
    Concurrent program returned no reason for failure.
    Exceptions posted by this request:
    Concurrent Request for "Memory-Based Snapshot" has completed with error.
    Concurrent request completed
    Current system time is 23-JUL-2012 21:08:58

    Hi;
    Thanks for sharing soluiton for other forum user and thanks to Hussein Sawwan for his great posts.
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Integration Worklist error: "An internal error has occurred."

    Hi,
    While accessing integration worklist webapp hitting the error "An internal error has occurred. Please contact the administrator or Oracle support for help".
    My standalone weblogic server is a view based install, the logs are as follows:
    [2011-05-26T11:24:33.886+05:30] [soa_server1] [TRACE] [] [] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0] [SRC_CLASS: oracle.bpel.services.workflow.client.config.ClientConfigurationUtil] [APP: worklistapp] [SRC_METHOD: getClientConfiguration] WorkflowServiceClientContext: Cannot find client configuration file: wf_client_config.xml
    [2011-05-26T11:24:33.897+05:30] [soa_server1] [NOTIFICATION] [WSM-02054] [oracle.wsm.resources.policymanager] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0] [APP: worklistapp] Failure in looking up EJB component UsageTracker#oracle.wsm.policymanager.bean.ejb.IRemoteUsageTracker.
    [2011-05-26T11:24:33.906+05:30] [soa_server1] [NOTIFICATION] [WSM-02054] [oracle.wsm.resources.policymanager] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0] [APP: worklistapp] Failure in looking up EJB component DocumentManager#oracle.wsm.policymanager.bean.ejb.IRemoteDocumentManager.
    [2011-05-26T11:24:33.918+05:30] [soa_server1] [NOTIFICATION] [WSM-02054] [oracle.wsm.resources.policymanager] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0:1] [WEBSERVICE_PORT.name: IdentityServicePort] [APP: soa-infra] [J2EE_MODULE.name: integration/services/IdentityService] [WEBSERVICE.name: IdentityService] [J2EE_APP.name: soa-infra] Failure in looking up EJB component UsageTracker#oracle.wsm.policymanager.bean.ejb.IRemoteUsageTracker.
    [2011-05-26T11:24:33.927+05:30] [soa_server1] [NOTIFICATION] [WSM-02054] [oracle.wsm.resources.policymanager] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0:1] [WEBSERVICE_PORT.name: IdentityServicePort] [APP: soa-infra] [J2EE_MODULE.name: integration/services/IdentityService] [WEBSERVICE.name: IdentityService] [J2EE_APP.name: soa-infra] Failure in looking up EJB component DocumentManager#oracle.wsm.policymanager.bean.ejb.IRemoteDocumentManager.
    [2011-05-26T11:24:33.929+05:30] [soa_server1] [NOTIFICATION] [] [oracle.wsm.policymanager.bean.util.PolicySetBuilder] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0:1] [WEBSERVICE_PORT.name: IdentityServicePort] [APP: soa-infra] [J2EE_MODULE.name: integration/services/IdentityService] [WEBSERVICE.name: IdentityService] [J2EE_APP.name: soa-infra] PM Configuration: java.naming.provider.url=t3://host1.example.com:7011,host1.example.com:8001
    [2011-05-26T11:24:33.929+05:30] [soa_server1] [ERROR] [] [oracle.wsm.policymanager.bean.util.PolicySetBuilder] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0:1] [WEBSERVICE_PORT.name: IdentityServicePort] [APP: soa-infra] [J2EE_MODULE.name: integration/services/IdentityService] [WEBSERVICE.name: IdentityService] [J2EE_APP.name: soa-infra] The policy referenced by URI "oracle/no_authentication_service_policy" could not be retrieved as connection to Policy Manager cannot be established at "t3://host1.example.com:7011,host1.example.com:8001" due to invalid configuration or inactive state.[[
    oracle.wsm.policymanager.PolicyManagerException: WSM-02054 : Failure in looking up EJB component DocumentManager#oracle.wsm.policymanager.bean.ejb.IRemoteDocumentManager.
    at oracle.wsm.policymanager.BeanFactory.getJndiObj(BeanFactory.java:684)
    at oracle.wsm.policymanager.BeanFactory.lookupJndiObj(BeanFactory.java:910)
    at oracle.wsm.policymanager.BeanFactory.getDocumentManagerBeanEJB(BeanFactory.java:567)
    at oracle.wsm.policymanager.BeanFactory.getBeanEJB(BeanFactory.java:461)
    at oracle.wsm.policymanager.BeanFactory.getBean(BeanFactory.java:381)
    at oracle.wsm.policymanager.BeanFactory.getBean(BeanFactory.java:327)
    at oracle.wsm.policyaccess.ConfigurationFramework.getBean(ConfigurationFramework.java:1635)
    at oracle.wsm.policyaccess.ConfigurationFramework.access$500(ConfigurationFramework.java:133)
    at oracle.wsm.policyaccess.ConfigurationFramework$ContextualAccessor.configure(ConfigurationFramework.java:452)
    at oracle.wsm.policyaccess.ConfigurationFramework$ContextualAccessor.access$1400(ConfigurationFramework.java:299)
    at oracle.wsm.policyaccess.ConfigurationFramework.initializeAccessors(ConfigurationFramework.java:1915)
    at oracle.wsm.policyaccess.ConfigurationFramework.access$200(ConfigurationFramework.java:133)
    at oracle.wsm.policyaccess.ConfigurationFramework$ContextualAccessor.isValid(ConfigurationFramework.java:607)
    at oracle.wsm.policyaccess.ConfigurationFramework$ContextualAccessor.access$800(ConfigurationFramework.java:299)
    at oracle.wsm.policyaccess.ConfigurationFramework$VirtualAccessor.validateAccessor(ConfigurationFramework.java:1075)
    at oracle.wsm.policyaccess.ConfigurationFramework$VirtualAccessor.retrieveDocuments(ConfigurationFramework.java:1044)
    at oracle.wsm.policymanager.bean.util.PolicySetBuilder.generateReferences(PolicySetBuilder.java:421)
    at oracle.wsm.policymanager.bean.util.PolicySetBuilder.<init>(PolicySetBuilder.java:248)
              at oracle.integration.platform.common.mgmt.PolicyCacheImpl$CacheNode.refreshIfStale(PolicyCacheImpl.java:166)
    at oracle.integration.platform.common.mgmt.PolicyCacheImpl.getPolicySetIfStale(PolicyCacheImpl.java:304)
    at oracle.integration.platform.common.mgmt.PolicyCacheImpl.getPolicySetIfStale(PolicyCacheImpl.java:327)
    at oracle.integration.platform.common.mgmt.InterceptorChainManager.getManagedInterceptorChain(InterceptorChainManager.java:166)
    at oracle.integration.platform.common.mgmt.InterceptorChainManager.processRequest(InterceptorChainManager.java:234)
    at oracle.j2ee.ws.server.mgmt.runtime.SuperServerInterceptorPipeline.handleRequest(SuperServerInterceptorPipeline.java:155)
    at oracle.j2ee.ws.server.provider.management.AbstractProviderInterceptorPipeline.executeRequestInterceptorChain(AbstractProviderInterceptorPipeline.java:563)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.executeInterceptorRequestChain(ProviderProcessor.java:921)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:230)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:192)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:459)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: javax.naming.NameNotFoundException: While trying to lookup 'DocumentManager#oracle.wsm.policymanager.bean.ejb.IRemoteDocumentManager' didn't find subcontext 'DocumentManager#oracle'. Resolved ''; remaining name 'DocumentManager#oracle/wsm/policymanager/bean/ejb/IRemoteDocumentManager'
    at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
    at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:247)
    at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:182)
    at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
    at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
    at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:411)
    at javax.naming.InitialContext.lookup(InitialContext.java:392)
    at oracle.wsm.policymanager.BeanFactory$2.run(BeanFactory.java:660)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jps.internal.jaas.AccActionExecutor.execute(AccActionExecutor.java:47)
    at oracle.security.jps.internal.jaas.CascadeActionExecutor$SubjectPrivilegedExceptionAction.run(CascadeActionExecutor.java:79)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.security.Security.runAs(Security.java:61)
    at oracle.security.jps.wls.jaas.WlsActionExecutor.execute(WlsActionExecutor.java:48)
    at oracle.security.jps.internal.jaas.CascadeActionExecutor.execute(CascadeActionExecutor.java:52)
    at oracle.wsm.policymanager.BeanFactory.getJndiObj(BeanFactory.java:652)
    [2011-05-26T11:24:33.934+05:30] [soa_server1] [ERROR] [OWS-04086] [oracle.webservices.service] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: anonymous] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0:1] [APP: soa-infra] oracle.fabric.common.PolicyEnforcementException: PolicySet Invalid: WSM-06162 PolicyReference The policy referenced by URI "oracle/no_authentication_service_policy" could not be retrieved as connection to Policy Manager cannot be established at "t3://host1.example.com:7011,host1.example.com:8001" due to invalid configuration or inactive state. [[
    at oracle.integration.platform.common.InterceptorChainImpl.createPolicyEnforcementException(InterceptorChainImpl.java:282)
    at oracle.integration.platform.common.InterceptorChainImpl.processRequest(InterceptorChainImpl.java:128)
    at oracle.integration.platform.common.mgmt.InterceptorChainManager.processRequest(InterceptorChainManager.java:235)
    at oracle.j2ee.ws.server.mgmt.runtime.SuperServerInterceptorPipeline.handleRequest(SuperServerInterceptorPipeline.java:155)
    at oracle.j2ee.ws.server.provider.management.AbstractProviderInterceptorPipeline.executeRequestInterceptorChain(AbstractProviderInterceptorPipeline.java:563)
    at oracle.j2ee.ws.server.provider.ProviderProcessor.executeInterceptorRequestChain(ProviderProcessor.java:921)
    at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:230)
    at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:192)
    at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:459)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    [2011-05-26T11:24:33.936+05:30] [soa_server1] [ERROR] [OWS-04115] [oracle.webservices.service] [tid: [ACTIVE].ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: anonymous] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0:1] [APP: soa-infra] An error occurred for port: {http://xmlns.oracle.com/bpel/services/IdentityService}IdentityServicePort: oracle.fabric.common.PolicyEnforcementException: PolicySet Invalid: WSM-06162 PolicyReference The policy referenced by URI "oracle/no_authentication_service_policy" could not be retrieved as connection to Policy Manager cannot be established at "t3://host1.example.com:7011,host1.examplecom:8001" due to invalid configuration or inactive state. .
    [2011-05-26T11:24:33.937+05:30] [soa_server1] [ERROR] [] [oracle.soa.services.workflow.worklist] [tid: [ACTIVE].ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 359fcc09b83fdf1b:118ea4c0:130287ed6b1:-8000-00000000000107fe,0] [APP: worklistapp] <.> Identity Service soap error.[[
    BPMIdentityService encountered soap error in method invoke with fault "".
    Ensure that the soap message is properly formed and has all necessary attributes and elements. Contact Oracle Support Services if error is not fixable.
    ORABPEL-10592
    Identity Service soap error.
    BPMIdentityService encountered soap error in method invoke with fault "".
    Ensure that the soap message is properly formed and has all necessary attributes and elements. Contact Oracle Support Services if error is not fixable.
    at oracle.bpel.services.identity.client.IdentityServiceSOAPClient.convertSOAPFaultException(IdentityServiceSOAPClient.java:321)
    at oracle.bpel.services.identity.client.IdentityServiceSOAPClient.invoke(IdentityServiceSOAPClient.java:274)
    at oracle.bpel.services.identity.client.IdentityServiceSOAPClient.lookupUser(IdentityServiceSOAPClient.java:350)
    at oracle.bpel.services.identity.client.AbstractIdentityServiceClient.lookupUser(AbstractIdentityServiceClient.java:182)
    at oracle.bpel.worklistapp.util.WorklistUtil.getCurrentUser(WorklistUtil.java:519)
    at oracle.bpel.worklistapp.tasklist.beans.view.TaskListTaskFlowParams.setTaskFlowParams(TaskListTaskFlowParams.java:359)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.el.parser.AstValue.invoke(Unknown Source)
    at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
    at oracle.adf.controller.internal.util.ELInterfaceImpl.invokeMethod(ELInterfaceImpl.java:173)
    at oracle.adfinternal.controller.activity.MethodCallActivityLogic.execute(MethodCallActivityLogic.java:162)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:993)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:879)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:778)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.invokeTaskFlow(ControlFlowEngine.java:243)
    at oracle.adfinternal.controller.state.ChildViewPortContextImpl.invokeTaskFlow(ChildViewPortContextImpl.java:104)
    at oracle.adfinternal.controller.state.ControllerState.createChildViewPort(ControllerState.java:1380)
    at oracle.adfinternal.controller.ControllerContextImpl.createChildViewPort(ControllerContextImpl.java:78)
    at oracle.adf.controller.internal.binding.DCTaskFlowBinding.createRegionViewPortContext(DCTaskFlowBinding.java:440)
    at oracle.adf.controller.internal.binding.DCTaskFlowBinding.getViewPort(DCTaskFlowBinding.java:358)
    at oracle.adf.controller.internal.binding.TaskFlowRegionModel.doProcessBeginRegion(TaskFlowRegionModel.java:164)
    at oracle.adf.controller.internal.binding.TaskFlowRegionModel.processBeginRegion(TaskFlowRegionModel.java:112)
    at oracle.adf.controller.internal.binding.TaskFlowRegionController.doRegionRefresh(TaskFlowRegionController.java:241)
    at oracle.adf.controller.internal.binding.TaskFlowRegionController.refreshRegion(TaskFlowRegionController.java:119)
    at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3206)
    at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2878)
    at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:115)
    at oracle.adf.controller.v2.lifecycle.Lifecycle$2.execute(Lifecycle.java:137)
    at oracle.adfinternal.controller.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:197)
    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.access$400(ADFPhaseListener.java:23)
    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.startPageLifecycle(ADFPhaseListener.java:238)
    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$1.after(ADFPhaseListener.java:274)
    at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:75)
    at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:399)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.bpel.worklistapp.SessionTimeoutFilter.doFilter(SessionTimeoutFilter.java:209)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
    at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
    Thanks

    Looks like a deployment/configuration issue with WSM:
    Policy Manager cannot be established at "t3://host1.example.com:7011,host1.example.com:8001" due to invalid configuration or inactive state. .
    This looks like a dev environment issue. Probably best to post to the internal forum.

  • Warning An internal error has occurred in method getMarkup()

    Hi,
    I have created simple portlet using Oracle JDeveloper and it is deployed to OAS 10.1.3, When I register wsrp provider to Oracle as portal 10.2.1 and add portlet to some page, then on page is shown following error: "Error: Could not get markup. The cookie or session is invalid or there is a runtime exception."
    In the same time is to oas 10.1.3 log writted warning: ">An internal error has occurred in method getMarkup()"
    What is wrong?
    Thanks

    I am encountering the same error as you were facing.Did you get any resolution on this issue?If yes,can you please pass on the require stuff as soon as possible.I need to crack this as quickly as possible so any help in this regard would be very useful.Thanks
    -Arindam
    mail to:[email protected]

  • An internal error has occurred

    Hi there,
    I get the following error in Lightroom 2, Mac OSX 10.5.4
    An internal error has occurred.
    bad argument #3 (boolean expected, got number)
    When I try to export a photo, regardless of whether I click the "Export" button, use the file menu or right click > export.
    If I use the "burn to full size JPG" preset however, it does work.
    Extremely frustrating at the moment, i've tried to reinstall lightroom, no joy.

    Ok, might have cracked it by going to ~/User/Library/com.adobe.lightroom and deleting all the preferences files.
    I had LR1, LR2Beta and LR2 preferences files all in there. I'd assume it was reading a bung preference in the beta file?

Maybe you are looking for

  • After updating to Version 29.0.1, high contrast no longer works.

    I use Windows 7's High Contrast frequently (it is much easier on my eyes). After Firefox updated to Version 29.0.1, the browser no longer displayed web pages in high contrast (white text on black background). Is there a way to fix this? (I am now bac

  • I cant update my applications

    Hi im trying to make an update to one of my applicatins and its not letting me do it because they say that there a problem with my security code on my card i been trying putting all my card info again and it wouldnt let me do it What can i do?

  • Multi Value Recertification in Role Manager

    Hi Everybody, Is there anything(feature) called multi valued recertification in role manager(OIA). Regards, Ravindra

  • Addition on fly in adobe form

    Hi, I have a requirement where user inputs value in column A and Column B  field.Column C should have  column A + Column B value . I don't need any interaction back to SAP .User's will print the form and save it .Should I still click ENABLED option?

  • Satellite A100-002 - Freezes during Windows 7 installation

    Hi I have 1. Satellite A100-002 and 2. big problem with installation of Windows 7. 2 yeras ago i tried to install Wista - but it froze during installation every time i tried. of course I tried different versions of Wista. once i was successful with i