What is the reason for below DSP errors??

DSP: 1/14:1
        Timeout:  None recorded
          Alarm: 1778218.500
   Message drop:  None recorded
DSP: 1/14:2
        Timeout:  None recorded
          Alarm: 1778218.500
   Message drop:  None recorded
DSP: 1/14:3
        Timeout:  None recorded
          Alarm: 1778218.500
   Message drop:  None recorded
DSP: 3/21:1
        Timeout:  None recorded
          Alarm: 1964220.552
   Message drop:  None recorded
DSP: 3/21:2
        Timeout:  None recorded
          Alarm: 1964220.552
   Message drop:  None recorded
DSP: 3/21:3
        Timeout:  None recorded
          Alarm: 1964220.552
   Message drop:  None recorded
DSP: 1/4:1
        Timeout:  None recorded
          Alarm: 1965047.112
   Message drop:  None recorded
DSP: 1/4:2
        Timeout:  None recorded
          Alarm: 1965047.112
   Message drop:  None recorded
DSP: 1/4:3
        Timeout:  None recorded
          Alarm: 1965047.112
   Message drop:  None recorded

Seems like you need to get the pvdm replaced.
Thanks,
Karthik

Similar Messages

  • What are the reasons for following Javascript error in Report Viewer

    Post Author: dhuka
    CA Forum: Crystal Reports
    Hello Everybody!
    I am using Crystal Reports 10 in my web application. But unfortunately I am surrounded with strange problem related to it because of which I have been unable to deploy is on client-side. In my application the error given below is displayed as javascript error in Report Viewer and report is not displayed. But more frustrating part is that I am getting the same error due to different problem with reporting and I am stuck with it as I am unable to figure out what's causing the error now. Earlier this error appeared due to problem with parameter passing to stored procedure which I resolved it and error vanished but once again it has shown up. Moreover this error now appears less frequently and randomly therefore it is even difficult to trace the cause.
    Problem with this Web page might prevent it from being displayed properly or functioning properly. In the future, you can display this message by double-clicking the warning icon displayed in the status bar.
    Line: 40Char: 12Error: Expected ')'Code: 0URL: http://myServer/myApp/myForms/myReports/ReportViewer.aspx
    So can anybody tell me what factors might be causing this errors as the error text is very vague in nature and gives no idea about the actual error.
    Guys, I hope for your kind co-operation.
    Regards,

    Post Author: dhuka
    CA Forum: Crystal Reports
    Thanks for you reply Krishna.
    But this syntax error is the one that is creating problem for me as I cannot trace it. The form ReportViewer.aspx contains only a report viewer object which remains un-binded to any ReportDocument even at runtime.
    At code behind ReportViewer.aspx I have code below that associates SQL Stored Procedure Parameter and Report Filter along with report name. Once all above is associated with ReportDocument, I export ReportDocument to PDF file format and display the report. Here I dont' even bind ReportDocument with my ReportViewer. Moreover, as I mentioned previously this error is encountered randomly (with no reasonable explanation so far) on client PC (while browsing through application).
    I hope below code give you good idea of the way I am implementing my reporting.
    Looking forward to you solution. Please note that I am only passing the ReportFileName and Parameter and Filter Criteria to this form while dataTable by itself using the connection information.
    <<<<<<<<<<<<<<<<<CODE BEHIND of REPORTVIEWER.ASPX>>>>>>>>>>>
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    Dim strKeys() As String
    Dim strReportFilter As String
    Dim strReportName As String
    Dim strError As structError
    Try
    ReDim strKeys(0)
    If strReportName = "" Then
    strReportName = Context.Session("ReportName").ToString()
    If Not Session("ReportParameters") = Nothing Then
    Dim char_Delimiter() As Char = ";".ToCharArray()
    strKeys = Session("ReportParameters").ToString().Split(char_Delimiter)
    End If
    If Not Session("ReportFilter") = Nothing Then
    strReportFilter = Session("ReportFilter").ToString()
    End If
    Else
    Session("DataTable") = Nothing
    End If
    If Not ViewParameterReport(strReportName, strKeys, strReportFilter, strError) Then
    ASPNET_DisplayErrorMessageBox(strError.strMsg, Me)
    Exit Sub
    End If
    Catch ex As Exception
    strError.strMsg = Err.Description
    ASPNET_DisplayErrorMessageBox(strError.strMsg, Me)
    Finally
    End Try
    End Sub
    Private Function ViewParameterReport(ByVal str_ReportName As String, ByVal str_ReportParameters() As String, ByVal strReportFilter As String, ByRef strError As structError) As Boolean
    Dim str_ReportPath As String = CStr(ConfigurationSettings.AppSettings.Get("ReportPath"))
    Dim crLogInfo As TableLogOnInfo
    Dim crConnectionInfo As ConnectionInfo
    Try
    str_ReportPath = CStr(ConfigurationSettings.AppSettings.Get("ReportPath"))
    o_Rpt = New CrystalDecisions.CrystalReports.Engine.ReportDocument
    o_Rpt.Load(str_ReportPath & "\rpts\" & str_ReportName)
    If Context.Session("DataTable") = "" Then
    crLogInfo = New TableLogOnInfo()
    crConnectionInfo = New ConnectionInfo()
    crLogInfo = o_Rpt.Database.Tables(0).LogOnInfo
    crConnectionInfo = o_Rpt.Database.Tables(0).LogOnInfo.ConnectionInfo
    clsDbCnn.SetDBProperties()
    crConnectionInfo.ServerName = clsDbCnn.Server
    crConnectionInfo.DatabaseName = clsDbCnn.Database
    crConnectionInfo.UserID = clsDbCnn.UserID
    crConnectionInfo.Password = clsDbCnn.Password
    crLogInfo.ConnectionInfo = crConnectionInfo
    o_Rpt.Database.Tables(0).ApplyLogOnInfo(crLogInfo)
    Else
    ds_MISReports = New DataSet()
    ds_MISReports = CType(Session("DataTable"), DataSet)
    o_Rpt.SetDataSource(ds_MISReports)
    End If
    If Not IsPostBack Then
    Dim param_Fields As CrystalDecisions.Shared.ParameterFields = New ParameterFields()
    Dim iCount As Integer
    If str_ReportParameters.GetUpperBound(0) <> 0 Then
    For iCount = 0 To str_ReportParameters.Length - 1 Step 2
    o_Rpt.SetParameterValue(CStr(str_ReportParameters(iCount).ToString()), CStr(str_ReportParameters(iCount + 1).ToString()))
    Next
    o_Rpt.RecordSelectionFormula = strReportFilter
    End If
    End If
    'crViewer.DisplayGroupTree = False
    'crViewer.ReportSource = o_Rpt
    SetDBLogonForReport(crConnectionInfo, o_Rpt)
    Dim TargetFileName As String
    Dim fs As System.IO.FileStream
    Dim FileSize As Long
    Dim GenDS As DataSet
    'Dim oRD As New ReportDocument()
    Dim crReportObject As CrystalDecisions.CrystalReports.Engine.ReportObject()
    Dim oExO As ExportOptions
    Dim oExDo As New DiskFileDestinationOptions()
    'Build Target Filename
    TargetFileName = str_ReportPath & "\Pdfs\" & Session.SessionID & ".pdf"
    'Export to PDF
    oExDo.DiskFileName = TargetFileName
    oExO = o_Rpt.ExportOptions
    oExO.ExportDestinationType = ExportDestinationType.DiskFile
    oExO.ExportFormatType = ExportFormatType.PortableDocFormat
    oExO.DestinationOptions = oExDo
    o_Rpt.Export()
    o_Rpt.Close()
    'Send the file to the user that made the request
    Response.Clear()
    Response.Buffer = True
    Response.AddHeader("Content-Type", "application/pdf")
    Response.AddHeader("Content-Disposition", "attachment;filename=MyReport.pdf;")
    fs = New System.IO.FileStream(TargetFileName, IO.FileMode.Open)
    FileSize = fs.Length
    Dim bBuffer(CInt(FileSize)) As Byte
    fs.Read(bBuffer, 0, CInt(FileSize))
    fs.Close()
    Response.BinaryWrite(bBuffer)
    Response.Flush()
    Response.Close()
    o_Rpt = Nothing
    Return True
    Catch ex As Exception
    strError.strMsg = Err.Description
    Return False
    Finally
    crConnectionInfo = Nothing
    crLogInfo = Nothing
    End Try
    End Function
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, _
    ByVal myReportDocument As ReportDocument)
    Dim myTables As Tables = myReportDocument.Database.Tables
    Dim count As Integer
    For count = 0 To myTables.Count - 1
    Dim myTableLogonInfo As TableLogOnInfo = myTables(count).LogOnInfo
    myTableLogonInfo.ConnectionInfo = myConnectionInfo
    myTables(count).ApplyLogOnInfo(myTableLogonInfo)
    myTables(count).Location = myConnectionInfo.DatabaseName & ".dbo." & myTables(count).Location.Substring(myTables(count).Location.LastIndexOf(".") + 1)
    myTables(count).LogOnInfo.ConnectionInfo.ServerName = myConnectionInfo.ServerName()
    Next
    End Sub

  • What is the reason for this OHS error?

    Hello,
    I installed Weblogic 10.3.5 R1, with Oracle Forms and Reports 11g on 2 computers, with the same installation configuration.
    One of them is working and the other one doesn't want to start the OHS from EM, although the opmnctl says that the OHS is alive.
    The OHS log file includes the following errors:
    [2013-07-04T17:39:04.0139+03:00] [OHS] [ERROR:32] [OHS-2057] [mod_ssl.c] [host_id: DEV103] [host_addr: 192.168.12.44] [pid: 4352] [tid: 1776] [user: ] [VirtualHost: DEV103.KASH:8889]  Init: (DEV103.KASH:8889) Unable to initialize SSL environment, nzos call nzos_Initialize returned 28750
    [2013-07-04T17:39:04.0764+03:00] [OHS] [ERROR:32] [OHS-2171] [mod_ssl.c] [host_id: DEV103] [host_addr: 192.168.12.44] [pid: 4352] [tid: 1776] [user: ] [VirtualHost: DEV103.KASH:8889]  NZ Library Error: Unknown error
    [2013-07-09T12:49:40.3594+03:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: DEV103] [host_addr: 192.168.12.44] [pid: 1484] [tid: 740] [user: SYSTEM] [VirtualHost: main] (OS 10038)An operation was attempted on something that is not a socket.  :  winnt_accept: getsockname error on listening socket, is IPv6 available?
    [2013-07-09T12:49:40.3594+03:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: DEV103] [host_addr: 192.168.12.44] [pid: 1484] [tid: 1624] [user: SYSTEM] [VirtualHost: main] (OS 10038)An operation was attempted on something that is not a socket.  :  winnt_accept: getsockname error on listening socket, is IPv6 available?
    [2013-07-09T12:49:40.3594+03:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: DEV103] [host_addr: 192.168.12.44] [pid: 1484] [tid: 1644] [user: SYSTEM] [VirtualHost: main] (OS 10038)An operation was attempted on something that is not a socket.  :  winnt_accept: getsockname error on listening socket, is IPv6 available?
    [2013-07-09T12:49:40.3594+03:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: DEV103] [host_addr: 192.168.12.44] [pid: 1484] [tid: 1600] [user: SYSTEM] [VirtualHost: main] (OS 10038)An operation was attempted on something that is not a socket.  :  winnt_accept: getsockname error on listening socket, is IPv6 available?
    [2013-07-09T12:49:51.9542+03:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: DEV103] [host_addr: 192.168.12.44] [pid: 5624] [tid: 1596] [user: SYSTEM] [VirtualHost: main] (OS 10038)An operation was attempted on something that is not a socket.  :  winnt_accept: getsockname error on listening socket, is IPv6 available?
    [2013-07-09T12:49:51.9542+03:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: DEV103] [host_addr: 192.168.12.44] [pid: 5624] [tid: 1600] [user: SYSTEM] [VirtualHost: main] (OS 10038)An operation was attempted on something that is not a socket.  :  winnt_accept: getsockname error on listening socket, is IPv6 available?
    What could be the problem?
    Thanks.

    Log says something about IPv6, does your /etc/hosts file have a line for it and you are using IPv6?
    If you have the line and not use IPv6, try to comment out that line and retry.
    Regards

  • ANY BODY TELL ME WHAT IS THE REASON FOR THIS ERROR

    hi... experts....
        Iam having one screen in my previous module pool program....and now as per my requirement i added on e new field...
    for that...
      1. i declared one variable in top include...
      2. cretaed one more new block with help of box in layout screen..
      3. added some text field and inputput out field...
      4. and in that block i also added one line with test like... following...
    " NOTE: PLEASE ENTER THE ..... VALUE..."   Like this.... just for to give direction...
    so these are  the steps i taken to add new field to my screen... but here i am geting error ... while entering the value in that field and press any push button.... including back in that screen... like....
      "INVAILD FIELD FORMAT (SCREEN ERROR)"
    .... ANY BODY TELL ME WHAT IS THE REASON FOR THIS ERROR... COMMONLY???
    THANK YOU,,,
    NAVEEN..

    hi naveen,
    there can be problem from ur layout side.
    Goto SE51. in Layout editor make sure that the type in screen and in TOP Include is same.
    and if you are using currency field than it can also give error to you.
    if still you any error .
    give me type of variable whcih you defined in TOP and also code.
    give reward if helpfull.

  • What is the reason for this error? after export part of movie broken

    hi, i cannot find the reason for this strange error that happaned to me for the first time, you can see the outcome here:
    http://picasaweb.google.com/p.cardash/IMovieBug/photo#5164317113276584274
    after exporting in imovie to h264 .mov file, from HDV project, resolution is twisted, plus, the part that was supposed to fit hole screen, is black and sometimes with little graphic errors.
    i tried about 10 times, with different setting, resolutions, and other parameteres.
    after exporting for ipod, everything is ok, in m4v format.
    what is wrong? i use the same method for creating and also for exporting, as in previous projects. i didnt use any new transitions, efects nor titles...
    any thoughts?
    best to You,
    Piotr

    ok, i think that i know where is the problem, but i still dont what is it
    ive copied my file to a new mac with just installed imovie and everything is the same,exactly the same output. so 100% positively the problem is within the particular project.
    i didnt check my mackbook with TT, since i dont have it and dont want to pay i thought its for free
    i`ll try later to figure out what wrong and what part of the project is bad.
    for now, i think i hate imovie again :)) piece of..
    let me know how your case ended.

  • Illustrator keeps quitting-notice others have had similar issues, not resolved-so what it the reason for "sending a report" to Adobe if nothing can be done with it????? paying for a product that I can't use when I need to use it and no help-come on-someon

    Illustrator keeps quitting…notice others have had similar issues…so what it the reason for "sending a report" to Adobe if nothing can be done with it????? paying for a product that I can't use when I need to use it and no help…come on…someone has to have an answer…HELP Pleeeeease

    <moved from Adobe Creative Cloud to Illustrator>
    reset your preferences -
    acrobat:  http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7feb.w .html
    adobe media encoder: https://forums.adobe.com/thread/1713540
    after effects:  http://helpx.adobe.com/after-effects/using/preferences.html
    dreamweaver:  https://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs6-cc.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    illustrator:  http://helpx.adobe.com/illustrator/using/setting-preferences.html
    indesign:  https://forums.adobe.com/thread/526990
    lightroom: https://helpx.adobe.com/lightroom/help/setting-preferences-lightroom.html
    muse (mac): https://forums.adobe.com/thread/1246022?tstart=0
    photoshop:  https://forums.adobe.com/thread/375776
    photoshop elements:  https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html,  http://www.photokaboom.com/photography/learn/Photoshop_Elements/troubleshooting/1_delete_p references_file.htm
    premiere elements:  https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html
    premiere pro: http://www.mediacollege.com/adobe/premiere/pro/troubleshooter/trash-preferences.html
    if that fails, uninstall, clean (http://www.adobe.com/support/contact/cscleanertool.html) and reinstall

  • Pl find out the reason for VC Cycle error for vendor 105191

    I had checked entire cycle of  Valuation Class(MM42),  Tax Code(ME12), validity period, MC Code
    in the contract as per the proforma invoice 12738 for vendor 105191  -  VC Parties, found ok.
    Pl find out the reason for VC Cycle error for vendor 105191
    " Unable to create consignment commision - FI/CO"
    " Interface : inconsistent FI/CO line item data"

    I've used the CS6 AUTOMATE|PHOTOMERGE command many times.  Today I ended up with the Error 22 message.  After reading your message I did a search on my Win7 Pro 64 bit machine and got a number of hits for "scriptingsupport.8li". 
    1 for CS6 (on my machine)
    2 for CS5 (no longer on my machine)
    2 for Elements 8 (no longer on my machine but I DO have Elements 10 & 11 on it)
    2 for CS# (no longer on my machine)
    QUESTION:  Should I delete some of these and which?  Will deletion(s) suffice?

  • When I try to install CS6 Design and Web Premium from a disk I get this message "We are unable to validate this serial number..." What is the reason for this?

    I purchased a disk copy of CS6 Design and Web Premium from a reputable seller last week and when I try to install it with the serial number I got it says "We are unable to validate this serial number for CS6 Design and Web Premium. Please contact Customer Support." What is the reason for this?
    Is the serial number invalid?

    Hi Ned,
    Thanks for the suggestion. I eventually got in touch with Adobe Technical Support and it turned out that my Adobe Application Manager was not the latest version. They downloaded the latest version and installed it and that seemed to solve the problem. I was able to install my CS6 Creative Suite and validate the serial number. All seems to be going well at the moment.

  • HT1222 What's the reason for this?

    What's the reason for the security update? Was someone trying to get my info?

    No one is trying to get your info. Just a part of the software release. Apple providing as much security as possible to protect your devices and Macs....
    This is a GOOD thing....
    GB

  • What is the reason for query take more time to execute

    Hi,
    What is the reason for the query take more time inside procedure.
    but if i execute that query alone then it excute within a minutes.
    query includes update and insert.

    I have a insert and update query when I execute
    without Procedure then that query execute faster but
    If I execute inside procedure then It takes 2 hours
    to execute.Put you watch 2 hours back and the problem will disappear.
    do you understand what I want to say?I understood what you wanted to say and I understood you didn't understood what I said.
    What does the procedure, what does the query, how can you say the query does the same as the procedure that takes longer. You didn't say anything useful to have an idea of what you're talking about.
    Everyone knows what means that something is slower than something else, but it means nothing if you don't say what you're talking about.
    To begin with something take a look at this
    When your query takes too long ...
    especially the part regarding the trace.
    Bye Alessandro

  • HT1349 i have sony vaio as pppose to apple macbook...question is, what is the reason for slow reaction? example: modifying the options of each songs...

    hello! what is the reason for my itunes to react so slowly? thanks

    I've requested your post be moved to the iTunes for Windows forum.   XServes refer to the Mac OS X Server based server machines that Apple made for several years earlier this millennium.

  • What is the reason for this error, in printing

    HI,
      when I print the label,  in the system log it showing this error message.
    character converter active when first problem occurred****  Any one explain me what could be the reason for this error. 
    Thanks and Regards,
    Surya

    Hi Surya,
    Check out
    http://www.sapfans.com/forums/viewtopic.php?t=247433&sid=ea0c61e87af526fe4c83fe256efe0721

  • What is the reason for the following error

    Hi,
    I developed one site in this i have one filed which should give a message "Must contain Characters also" if it conatin less than 5 or more than 30 then only it should give the error message must be between 5-30. But it was giving some time between 5-30 characters and some time "Must contain characters" what will be the reason for this issue.

    > Hi,
    I am working as App.Support to leading MNC today i
    found one problem one of i.e. for particular
    textfiled there is two validatoins one is that
    Must Contain Characters also in Address
    other one is Entry must contain characters between
    5-30
    But When i am accessing the site with out removing
    cookies and offline files i am geting second error.
    Where always it have to give 1st error.
    If there's a Java-related question in there, I can't find it.
    ~

  • I have a fairly new mac book pro with retina display- I have not tried installing anything other OS on it. In spite of that yesterday when I turned it on, I got the error: no bootable device insert boot disk and press any key. what is the reason for this?

    I swithced it on by clicking on options when I start up and then clicked on Macintosh HD. the other option was a question mark and network drive.
    Is there a way to ensure it never happens again, what is the cause for this problem, if I need to uninstall some application, i am happy to do it as long as I know what is causing this conflict.
    many thanks!

    Something is not making sense here.
    You claim this is a brand new machine and you have not tried to install Windows or Boot Camp.
    Then why would you ever even go into System Preferences > Startup Disk and choose Macintosh HD? It should have automatically booted into Macintosh HD.
    You're probably going to have to reinstall Mac OS X.

  • What's the reason for " 'Writing XMP Metadata' did not complete successfully

    I rightclicked an image and selected "save metadata to file" and got this not-so-very-informative error message. What could be the cause? The file is there and it is not write protected.
    Adobe - what about giving some more information when LR encounters errors?
    Win XP, LR 1.3.1

    While read only is the most likely cause, I have been trying to track down a similar problem which so far I can only equate to the creation time of the file ending in 00.
    For example, I have a file taken at 6/13/2006 1:00:00 PM
    If I do Metadata -> Edit Capture Time...
      and set the time to be 6/13/2006 1:00:01 PM
    Then click twice on the Resolve Conflicts button for Metadata, the second one works.  Both times I tell it to overwrite the metadata on disk.  My assumption is that the data processing logic has issues reading in entries like:
       2006-06-13T13:00:00-08:00
    I would even go so far as speculating it treats them as just the day and drops the hour / minute portion.  The reason for this conjecture is that I stumbled on this issue when exporting images would occasionally have 2006/06/13 12:00AM as the timestamp and when I checked which ones had problems, they all were taken at 00 seconds into the minute.
    Henrik, if you are still having this problem, does the file happen to have a 00 second creation timestamp?  If so, try changing it by a second and I would be curious if you it starts working for you too.
    Cheers,
    John

Maybe you are looking for