Export message in READY status before oaiimport

Hi all,
We do not use migrate for production environment but OAIIMPORT as :
- oaiimport is more reliable
- we don't want to let production people doing those manipulations with ISTUDIO
But we have a problem as we begin to have a lot of flows on production (and around 10 running adapters ) :
IF a message stay in the ready status in the OAI_HUB_QUEUE we do not want to loose this message (The oaiimport drop the whole queue)
Question : is it possible to do a normal export of the oai_hub_queue before the oaiimport so as import this queue after the oaiimport ?
Does someone as the same issue ?
regards

Hello,
The problem was i think that we used these parameters (for DB adapters) :
agent_pipeline_from_hub=false
agent_pipeline_to_hub=false
The effect of these parameters is to suppress file persistence which is "more secure" as database persistence is more reliable (cluster node)
But the main drawback is that the oaiexport/oaiimport method for upgrading production repository is no more safely usable as explained in the first message.
We will desactivate these parameters.
Thank you,
Olivier

Similar Messages

  • Job to process messages in Ready Status in SMQ2 ECC

    Hello friends,
    I am sending out messages from SAP ECC to PI  using proxy . The messages are getting stuck in SMQ2 in READY status. I have to each time manually go and activate the queue to send the message out of SAP ECC.
    Is there any job to process them automatically that needs to be set up in SAP ECC ?
    Thank you,
    Teresa

    Hi,
    Investigate why messages were strucked in Queues, there could be some reason, i suggest you too deregister and register queues once again.
    if possible assign sepprate queue for proxy interface.
    Regards,
    Raj

  • Messages stuck in Inbound Queue with Ready Status

    Hi All,
    The messages in the Inbound queue are getting stuck in Ready status.
    I have to manually Unlock each queue to start the processing.
    After some time again all the message queue are back to the Ready State.
    Please help me on this issue.
    Regards
    Milan

    go to --> sxmb_adm
    Manage Queue
    Select all Queues, Activate Queues.
    & check your scenarios, now it will not stuck due to this error.

  • How to export message body and data from Table to Excel from outlook 2010

    I usually get Employee announcement in emails and I need to compile excel sheet from all these emails to know change in status of employee from previous line to current line .
    Dear Concerned,
    The change in status of the following employee has been carried out as per following details:
    New Status
    Change in Job
    Effective Date
    01-Feb-2015
    Employee Name
    Ricky ponting
    Employee Code
    4982
    Designation
    Sourcing Executive (Secondment)
    Job Group
    1A
    Department
    Sourcing & Supply Chain
    Unit
    Technology Sourcing
    Division
    Finance
    Location
    sydney
    Reporting Line
    Mr Micheal king
    Note: Ricky Ponting  was previously working as
    Tariff Implementation Support Officer XYZ organization was reporting to
    Mr Robin Sing
    I need working code that export about HTML table data as well last Note : full line so that I can have an excel file of 2000 Employees whoes status have been changed and I can easily sort out from which previous line they were reporting to new line and I
    can get in touch with the new line for any Access rights re-authorization exercise on later stage .
    Currently i am using following code thats working fine with the table extraction but NOTE: line is not being fetched with the following code based on following URL
    https://techniclee.wordpress.com/2011/10/29/exporting-outlook-messages-to-excel/
    Const MACRO_NAME = "Export Messages to Excel (Rev Sajjad)"
    Private Sub ExportMessagesToExcel()
        Dim olkFld As Outlook.MAPIFolder, _
            olkMsg As Outlook.MailItem, _
            excApp As Object, _
            excWkb As Object, _
            excWks As Object, _
            arrCel As Variant, _
            varCel As Variant, _
            lngRow As Long, _
            intPtr As Integer, _
            intVer As Integer
        Set olkFld = Session.PickFolder
        If TypeName(olkFld) = "Nothing" Then
            MsgBox "You did not select a folder.  Operation cancelled.", vbCritical + vbOKOnly, MACRO_NAME
        Else
            intVer = GetOutlookVersion()
            Set excApp = CreateObject("Excel.Application")
            Set excWkb = excApp.Workbooks.Add
            Set excWks = excWkb.Worksheets(1)
            excApp.Visible = True
            With excWks
                .Cells(1, 1) = "Subject"
                .Cells(1, 2) = "Received"
                .Cells(1, 3) = "Sender"
                .Cells(1, 4) = "New Status"
                .Cells(1, 5) = "Effective Date"
                .Cells(1, 6) = "Employee Name"
                .Cells(1, 7) = "Employee Code"
                .Cells(1, 8) = "Designation"
                .Cells(1, 9) = "Job Group"
                .Cells(1, 10) = "Department"
                .Cells(1, 11) = "Unit"
                .Cells(1, 12) = "Division"
                .Cells(1, 13) = "Location"
                .Cells(1, 14) = "Reporting Line"
                .Cells(1, 15) = "Note:"
            End With
            lngRow = 2
            For Each olkMsg In olkFld.Items
                excWks.Cells(lngRow, 1) = olkMsg.Subject
                excWks.Cells(lngRow, 2) = olkMsg.ReceivedTime
                excWks.Cells(lngRow, 3) = GetSMTPAddress(olkMsg, intVer)
               For intPtr = LBound(arrCel) To UBound(arrCel)
                    Select Case Trim(arrCel(intPtr))
                        Case "New Status"
                            excWks.Cells(lngRow, 4) = arrCel(intPtr + 1)
                        Case "Effective Date"
                            excWks.Cells(lngRow, 5) = arrCel(intPtr + 1)
                        Case "Employee Name"
                            excWks.Cells(lngRow, 6) = arrCel(intPtr + 1)
                        Case "Employee Code"
                            excWks.Cells(lngRow, 7) = arrCel(intPtr + 1)
                        Case "Designation"
                            excWks.Cells(lngRow, 8) = arrCel(intPtr + 1)
                        Case "Job Group"
                            excWks.Cells(lngRow, 9) = arrCel(intPtr + 1)
                        Case "Department"
                            excWks.Cells(lngRow, 10) = arrCel(intPtr + 1)
                        Case "Unit"
                            excWks.Cells(lngRow, 11) = arrCel(intPtr + 1)
                        Case "Division"
                            excWks.Cells(lngRow, 12) = arrCel(intPtr + 1)
                        Case "Location"
                            excWks.Cells(lngRow, 13) = arrCel(intPtr + 1)
                        Case "Reporting Line"
                            excWks.Cells(lngRow, 14) = arrCel(intPtr + 1)
                        Case "Note:"
                            excWks.Cells(lngRow, 14) = arrCel(intPtr + 1)
                        End Select
                Next
                lngRow = lngRow + 1
            Next
            excWks.Columns("A:W").AutoFit
            excApp.Visible = True
            Set excWks = Nothing
            Set excWkb = Nothing
            Set excApp = Nothing
        End If
        Set olkFld = Nothing
    End Sub
    Private Function GetSMTPAddress(Item As Outlook.MailItem, intOutlookVersion As Integer) As String
        Dim olkSnd As Outlook.AddressEntry, olkEnt As Object
        On Error Resume Next
        Select Case intOutlookVersion
            Case Is < 14
                If Item.SenderEmailType = "EX" Then
                    GetSMTPAddress = SMTP2007(Item)
                Else
                    GetSMTPAddress = Item.SenderEmailAddress
                End If
            Case Else
                Set olkSnd = Item.Sender
                If olkSnd.AddressEntryUserType = olExchangeUserAddressEntry Then
                    Set olkEnt = olkSnd.GetExchangeUser
                    GetSMTPAddress = olkEnt.PrimarySmtpAddress
                Else
                    GetSMTPAddress = Item.SenderEmailAddress
                End If
        End Select
        On Error GoTo 0
        Set olkPrp = Nothing
        Set olkSnd = Nothing
        Set olkEnt = Nothing
    End Function
    Function GetOutlookVersion() As Integer
        Dim arrVer As Variant
        arrVer = Split(Outlook.Version, ".")
        GetOutlookVersion = arrVer(0)
    End Function
    Function SMTP2007(olkMsg As Outlook.MailItem) As String
        Dim olkPA As Outlook.PropertyAccessor
        On Error Resume Next
        Set olkPA = olkMsg.PropertyAccessor
        SMTP2007 = olkPA.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x5D01001E")
        On Error GoTo 0
        Set olkPA = Nothing
    End Function
    Sub DebugLabels()
        Dim olkMsg As Outlook.MailItem, objFSO As Object, objFil As Object, strBuf As String, strPth As String, arrCel As Variant, intPtr As Integer
        strPth = Environ("USERPROFILE") & "\Documents\Debugging.txt"
        Set olkMsg = Application.ActiveExplorer.Selection(1)
        arrCel = Split(GetCells(olkMsg.HTMLBody), Chr(255))
        For intPtr = LBound(arrCel) To UBound(arrCel)
            strBuf = strBuf & StrZero(intPtr, 2) & vbTab & "*" & arrCel(intPtr) & "*" & vbCrLf
        Next
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        Set objFil = objFSO.CreateTextFile(strPth)
        objFil.Write strBuf
        objFil.Close
        Set olkMsg = Application.CreateItem(olMailItem)
        With olkMsg
            .Recipients.Add "[email protected]"
            .Subject = "Debugging Info"
            .BodyFormat = olFormatPlain
            .Body = "The debugging info for the selected message is attached.  Please click Send to send this message to David."
            .Attachments.Add strPth
            .Display
        End With
        Set olkMsg = Nothing
        Set objFSO = Nothing
        Set objFil = Nothing
    End Sub
    Function StrZero(varNumber, intLength)
        Dim intItemLength
        If IsNumeric(varNumber) Then
            intItemLength = Len(CStr(Int(varNumber)))
            If intItemLength < intLength Then
                StrZero = String(intLength - intItemLength, "0") & varNumber
            Else
                StrZero = varNumber
            End If
        Else
            StrZero = varNumber
        End If
    End Function

    Dear Graham
    I am already big fan of yours and using mail to many Addin from years from word 2007 to Word 2010 :) and still loving it and I use it for access re-authorization from Lines for application accesses . I tried and finally got understanding of the Extract to
    mail Addin and after tweaking excel - Text To columns and other few things finally i was able to get the required data - from morning to now :) I am happy to see your provided guidance
    Thanks alot - by the way why your Mail to many add-in is so slow now these days :) previous versions usually help me send 1000 emails in 10 minutes now it takes long time :)

  • Error Message: Information is needed before this report can be processed.

    Hi Experts,
    I am scheduling a Crystal Report from Infoview. Data Source for Report is BEx Query.
    While scheduling i am providing all  details like Parameters, Formats, Destination etc.
    But  Schedule is failing. The reason is parameter field is empty when i checked
    in failed status , as below.
    Parameters: [No Value]; [No Value]
    Error Message: Information is needed before this report can be processed.
    But when i am viewing the report with the same parameters, it is executing.
    Please help
    Regards,
    Ajay Singh
    Edited by: Ajay Singh on Sep 15, 2009 1:05 PM

    Hi,
    Try the below mentioned steps in addition to scheduling of your report.
    Method 1:  Following information might be helpful in resolving the issue.
    To check if the .rep file exists in the Output FRS
    1.Log on to the Central Management Console (CMC). Click Objects.
    2.Click the report object to view its properties.
    3.Click the History tab to view the list of instances.
    4.Click Success to view the latest instance. Scroll to Instance Location.
    5.Note the path name to the report.
    6.Check the file store under the Output directory for the report.
    If the report does not exist, delete the instance from the History tab in the CMC. Reschedule the report.
    Method 2: To verify the configuration of multiple FRS
    1.Log on to the CMC.
    2.Click Servers.
    3.Click the first Input file server. Note the home directory.
    4.Click Home > Servers.
    5.Click the second Input file server.
    6.Check the home directory path for the second Input FRS. It must point to the same directory as the first Input FRS.
    7.Repeat steps 2 through 6 to check the Output FRS.
    ====================
    NOTE:
    The Input and Output FRS physical machines must be able to connect to the file share for the file store. Also the Input and Output FRS are installed using the local administrator account. That account may not have rights to the network share for the file store. The security on the file store must be changed so the local administrator for each server can access it.
    ====================
    Above mentioned steps are for deski/webi reports.
    Cheers,
    Suresh ALuri.

  • BPM Error: Message has error status on outbd. side

    Hi,
    BPM overview:
    Receive Step -> Transformation Step (1) -> Send Step ASYNC (1) -> Send Step SYNC (1) -> Transformation Step (2) -> Container Operarion Step (1) -> ...
    Error Message in SXMB_MONI: Message has error status on outbd. side
    - <Trace level="1" type="B" name="CL_XMS_PLSRV_CALL_BPE-ENTER_PLSRV">
    <Trace level="1" type="T">--start sender interface action determination</Trace>
    <Trace level="1" type="T">select interface MI_BPM_TRAN_EMP_DETAILS_FILE_OUT_ASYNC*</Trace>
    <Trace level="1" type="T">select interface namespace urn:tranbpm</Trace>
    <Trace level="1" type="T">no interface found</Trace>
    <Trace level="1" type="T">--start receiver interface action determination</Trace>
    <Trace level="1" type="T">Loop 0000000001</Trace>
    <Trace level="1" type="T">select interface AI_BPM_TRAN_EMP_DETAILS_FILE_ASYNC*</Trace>
    <Trace level="1" type="T">select interface namespace urn:tranbpm</Trace>
    <Trace level="1" type="T">no interface found</Trace>
    <Trace level="1" type="T">--no sender or receiver interface definition found</Trace>
    <Trace level="1" type="T">Hence set action to DEL</Trace>
    </Trace>
    I am don't any Interface name MI_BPM_TRAN_EMP_DETAILS_FILE_OUT_ASYNC* in my scenario, the actual interface name is MI_BPM_TRAN_EMP_DETAILS_FILE_OUT_ASYNC does BPM adds a '*' at the end of the interface name.
    In the workflow log it shows that "Transformation Step (2)" has error. I am using multimapping in the transformation step.
    Any help would be greatly appreciated as I ran out ideas to fix this issue.
    Thanks in advance.
    Sarvesh

    The issue was with the step "Transformation Step (2)" and I fixed it in the mapping. 
    When using two send steps "Send step (1)" & "Send step(2)", BPM is executing the second send "Send step(2)" before it completes the first send step "Send step(1)".  The first "Send step(1)" inserts the data into the database table and the second "Send step(2)" retrieves the data inserted in the first send step. 
    If I insert a "Wait step" between the 2 send steps it working.  Can anyone explain how the send step in BPM works. 
    I did post the same question in "Exchange" forum also so that it can be view by more people.
    Thanks,
    Sarvesh

  • Export in Query ready mode - Office 2010 not working

    Hello everyone,
    I am facing the following problem with Hyperion Financial Reporting:
    When I display a Financial Reporting report in Workspace and click on "Export in query ready mode", a new Excel session is launched with an empty sheet and nothing else happens. Eventually Internet explorer displays a message "The application hasn't started yet. Do you want to wait?" This cycle repeats forever unless I close the small IE window that popped up.
    We are using Windows 7 and Office 2010. The Smart View version is 11.1.1.3.500 (Build 008) and Workspace is version 11.1.1.3.0.956.
    Would be very grateful if anyone can help me solve this issue as this function is very useful.
    Thanks,
    Martin

    Alright,
    There is some development with this problem, but unfortunately another one arose.
    To solve the issue I had to disable the option "Protected mode" for the Internet Zone of Internet Explorer. Although the App server is on the local intranet, to launch Excel the web page uses the protocol oraclesv:// which appears to IE as "Internet" address.
    When I disabled protected mode, some of the reports started to open normally in query ready mode. Unfortunately for some other reports Excel crashes. I.e. I open the report in workspace and click "Export in Query ready mode". I see Excel open up and the cells are filled in with members, etc. but at some point Excel just crashes and restarts. This can be destructive if I am currently working in some file.
    And now the interesting part: I tried to find the reason why some of the reports are ok and some crash excel. It turned out that this depends on the amount of data in the report. For smaller reports (i.e. less than 50 rows) there is no problem, but for larger reports -> excel crashes.
    I hope this explanation is helpful for someone else, as it took me quite a while to find the problem.
    Martin

  • XML Messages in "Scheduled" status

    Hi all,
    The case is at ERP side running transaction SXMB_MONI, some XML messages from XI to ERP are found in "Scheduled" status.  Around the same time, siimilar messages using same receiver interface are processed successfully.  When we manual restart the "Scheduled" message, there will be an entry in READY status at inbound queue and we have to unlock the queue.  After that, the message will be processed successfully.
    Here are my questions:
    (1)  Why some messages in "Scheduled" status but similar messages are processed successfully?
    (2)  Is there any alert or notification mechanism that we can setup instead of running transaction SXMB_MONI manually?
    (3)  Is manual restart XML message a proper way to handle those scheduled message?  Any way to automatically handle this message in ERP side?
    Thanks in advance.

    Donald,
    Here are the answers to ur questions.
    (1) Why some messages in "Scheduled" status but similar messages are processed successfully?
    Some times the queues get stuck for various reasons. one msg will cause bottleneck for all other msgs behind it. there is no proper reason why this happens, however if it happens regularly then u will have to give it a thought.
    (2) Is there any alert or notification mechanism that we can setup instead of running transaction SXMB_MONI manually?
    Well, if the msgs r in the scheduled state then NO.
    (3) Is manual restart XML message a proper way to handle those scheduled message? Any way to automatically handle this message in ERP side?
    Manual restart is not the best way to handle msgs bcause you might loose track/ some msgs might error out together causing issues. (that has happend to us). its tough to keep track if that is the case and if its critical from business point of view.
    If it is going out of R/3 then may be you can configure jobs to push the data periodically.
    Regards,
    Pavan

  • How to hide/disable option "Export In Query Ready Mode" in HTML FR reports

    Hi all,
    is there a way to hide or disable the option "Export In Query Ready Mode" for HTML FR reports?
    Thanks in advance!
    Regards
    André

    Yes, it is a cool feature but I didnt ask for it :-) Besides it doesnt work completely without errors/warnings:
    If i click on the link and then on open (save xls works fine) an error message occurs: "Could not open 'http://<servername>/hr/hrget/modules/com/hyperion/reporting/web/office/HROfficeReport.jsp/test.xls?gridname=grid1&iInstanceId=18885&format=excel.2002&viewAs=query&previewDone=true&promptDone=true'"
    After click on OK another error message occurs:
    "Microsoft Excel cannot access the file 'http://<servername>/hr/hrget/modules/com/hyperion/reporting/web/office/HROfficeReport.jsp/test.xls?gridname=grid1&iInstanceId=18885&format=excel.2002&viewAs=query&previewDone=true&promptDone=true'. There are several possible reasons:
    The file name or path does not exist.
    The file is being used by another program.
    The workbook you are trying to save has the same name as a currently open workbook.
    After click on OK the XLS export opens correctly but the messages are annoying. Perhaps anybody can help me ;-)
    Thanks and kind regards
    Andre

  • Task in "Ready" status always, when tested in SWUS

    Hi - Hv created a very simple task - it has a BOR/Method which gets a PR No and passes back some PR related fields back to the task. An agent has been assigned with my user id. SWU_OBUF has also been tried. I am on ECC 6.0 and looks like all authorizations are good. But when executed in SWUS, this task remains in ready status & no Inbox/Outbox item appears in SBWP.
    The log says the work item is a Dialog step but the BOR/Method attributes are NO DIALOG. 'Am at my wits end. Any help? Thanks!
    One update : Authorizations in client 100 are set. When tested in 100 status is completed. When tested in client 200, status is ready. Can't do a SU53. How can I tell BASIS which authorization is missing, if any?
    Regards,
    Shireesh M
    Message was edited by: Shireesh M
            Shireesh Mitragotri

    Hi,
    as you pointed out, this could be an authorization issue, also check if you're not forgetting user parameters.
    If I were you i would bother someone to include su53 in your profile since this is clearly needed to explain/exclude the behaviour of the wf.
    Kind regards, Rob Dielemans

  • Messages in HOLDING status in AE

    Hi All,
    We have an issue with JDBC receiver EOIO messages, with messages going into HOLD status in AE , its a DEV environment :
    1) We have tried checking for failed messages before these messages we donot have any failed messages before these messages  just messages in HOLD..
    2) we are not able to delete or cancel these messages , we get a message cannot delete the message ,
    3) The message is doing a INSERT update to JDBC , JDBC connection is fine.

    Hi Kiran,
    Please let me know if your problem is fixed.
    I'm also facing the same problem in our Testing system where many messages are going to HOLD Status and also there are no messages in the System  Error state.
    We are trying to resend all the messages in every "Conversation ID". After this some messages gets successful and some will go into  Waiting status. We then cancel the messages in waiting status and resend all the messages in HOLD status and the process continues till all the messages in HOLD status in every Coversation ID were cleared.
    But this is a very very time consuming process.
    So can you please let me know if there is any solution for this prolem.
    Thanks,
    Pruthvi

  • Export to query ready mode

    In version 11.1.2 when exporting a report to query ready mode from workspace we are getting an HRdialogue error message. However when I turn off the POV preview in user preferences it works. Anyone else experiencing this?
    Thanks,
    Jeff

    Hi,
    Can anybody explain me the option of this *"Export in Query ready mode"*???
    Is there any document through which I can understand???
    Thanks
    Sourabh
    Edited by: CM on May 11, 2011 6:32 AM

  • PC Suite: Exporting messages in Vista

    Hello all,
    I like to export my messages as CSV to my computer for reference.
    I've used PC Suite before in XP, where exporting messages in PC Suite was no problem.
    Now in Vista, I cannot export any messages, because the whole menu bar is simply gone. So no access to any "special" file operations. Not even with the latest Vista-compatible version of PC Suite (v 6.84.10.3).
    The only way to do something with a message is right clicking on it, which gives you options such as open, delete, copy and paste. But no export of course.
    Anyone out there with a solution?
    It'd be greatly appreciated.Message Edited by radiance9 on 26-Sep-200709:40 PM

    you can backup the sms to a .nbu file then use this tool to convert all sms files to html, txt, vmg or excel xls format (xls can then be saved as a .csv).
    What's the law of the jungle?

  • Failed to receive ccm message responce. Status code = 403

    So as the title suggests Im having client problems installation problems on some machines. 
    Looking at a clients ccmsetup.log I have this throughout the log:
    Failed to receive ccm message response. Status code = 403
    GetDPLocations failed with error 0x80004005
    Failed to find DP locations with error 0x80004005, status code 403. Check next MP.
    Only one MP HTTP://sccm2012.XXX.XXX.ca is specified. Use it.
    Have already tried all MPs. Couldn't find DP locations.
    GET 'HTTP://sccm2012.XXX.XXX.ca/CCM_Client/ccmsetup.cab'
    Failed to successfully complete WinHttp request. (StatusCode at WinHttpQueryHeaders: 403)
    DownloadFileByWinHTTP failed with error 0x80004005
    A Fallback Status Point has not been specified.  Message with STATEID='308' will not be sent.
    CcmSetup failed with error code 0x80004005
    The machine I am focusing on to troubleshoot has been reachable in the past. (80% sure of that)
    The PC no longer exists in my SCCM/devices, and it looks like it has never been. I have tried running "ccmsetup.exe /MP:
    HTTPS://SCCM2012.domain.local SMSSITECODE
    = SC12 /UsePKICer"
    as well as "ccmsetup.exe /MP:sccm2012.domain.ca /BITSPriority:low SMSSITECODE=XXX fsp=sccm2012.XXX.XXX.ca
    checking my MP_Location.log i get this:
    retreiving the certificates
    UID not found
    UID not found
    UID not found
    UID not found
    UID not found
    UID not found
    UID not found
    UID not found
    UID not found
    MP_GetAssignedMPListForSite  (XXX.XXX.ca,YYY.YYY.ca,601)
    MP_GetProxyMPListForSite  XXX.XXX.ca,YYY.YYY.ca,<ClientLocationInfo OnInternet="0"><ADSite Name="Default-First-Site-Name"/><Forest Name="XXX.XXX.ca,"/><Domain Name="XXX.XXX.ca,"/><IPAddresses><IPAddress
    SubnetAddress="132.147.0.0" Address="132.147.161.131"/><IPAddress SubnetAddress="2002:8493:A183:0000" Address="2002:8493:A183:0000:0000:0000:8493:A183"/></IPAddresses></ClientLocationInfo>)
    MP_GetLocalMPListForSite  (XXX.XXX.ca,YYY.YYY.ca,<ClientLocationInfo OnInternet="0"><ADSite Name="Default-First-Site-Name"/><Forest Name="XXX.XXX.ca,"/><Domain Name="XXX.XXX.ca"/><IPAddresses><IPAddress
    SubnetAddress="132.147.0.0" Address="132.147.161.131"/><IPAddress SubnetAddress="2002:8493:A183:0000" Address="2002:8493:A183:0000:0000:0000:8493:A183"/></IPAddresses></ClientLocationInfo>)
    Im not familiar with that log, so im not sure if that's normal. But through troubleshooting I was looking at all my MP logs.
    MPControl.log says "successfully performed management point availability check against local computer".
    MP_RegistrationManager.log says "Registration hint is expired". 
    CCMValidateAuthHeaders failed (0x87d0029b) to validate headers for client 'GUID:FE2F4DCF-0C30-4765-9CB8-70603FD423BF'.
    Im at a loss as to what is broken. no alerts are popping up in Sccm.
    D.L.J. Schneider

    Sorry for the Delay, my time was spent on other things yesterday. 
    This is the contents of my ClientIDManagerStartup.log The bold are errors.
    Begin to select client certificate
    Begin validation of Certificate [Thumbprint 468E32A8A58180850AA200877AD061B5A2BCB2B0] issued to 'SCCM2012.XXX.XXX.ca'
    Completed validation of Certificate [Thumbprint 468E32A8A58180850AA200877AD061B5A2BCB2B0] issued to ''SCCM2012.XXX.XXX.ca'
    >>> Client selected the PKI Certificate [Thumbprint 468E32A8A58180850AA200877AD061B5A2BCB2B0] issued to 'SCCM2012.XXX.XXX.ca'
    Raising event:
    instance of CCM_ServiceHost_CertRetrieval_Status
    DateTime = "20140826043631.676000+000";
    HRESULT = "0x00000000";
    ProcessID = 12300;
    ThreadID = 8272;
    Failed to submit event to the Status Agent. Attempting to create pending event.
    Raising pending event:
    instance of CCM_ServiceHost_CertRetrieval_Status
    DateTime = "20140826043631.676000+000";
    HRESULT = "0x00000000";
    ProcessID = 12300;
    ThreadID = 8272;
    Client PKI cert is available.
    Initializing registration renewal for potential PKI issued certificate changes.
    Succesfully intialized registration renewal.
    [RegTask] - On co-located client and site role. Posting async registration task.
    [RegTask] - Co-located with site role. Waiting for full service startup before registering.
    Read SMBIOS (encoded): 55005300450032003000390057004B004E003600
    Evaluated SMBIOS (encoded): 55005300450032003000390057004B004E003600
    No SMBIOS Changed
    SMBIOS unchanged
    SID unchanged
    HWID unchanged
    Raising pending event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of SMS_RemoteClient_ClientIdUpdated
    ClientID = "GUID:75B97CFC-57E4-4170-B64F-A85FFC8692A3";
    DateTime = "20140826043637.343000+000";
    MachineName = "SCCM2012";
    NewClientId = "GUID:75B97CFC-57E4-4170-B64F-A85FFC8692A3";
    PreviousClientId = "GUID:75B97CFC-57E4-4170-B64F-A85FFC8692A3";
    ProcessID = 12300;
    ThreadID = 13824;
    GetSystemEnclosureChassisInfo: IsFixed=FALSE, IsLaptop=FALSE
    Windows To Go requires a minimum operating system of Windows 8
    Computed HardwareID=2:6CF3F4FDA34F74D84B580D7265933FCD8EE38752
    Win32_SystemEnclosure.SerialNumber=<empty>
    Win32_SystemEnclosure.SMBIOSAssetTag=<empty>
    Win32_BaseBoard.SerialNumber=<empty>
    Win32_BIOS.SerialNumber=USE209WKN6      
    Win32_NetworkAdapterConfiguration.MACAddress=00:17:A4:77:FC:2C
    Persisted hardware IDs in CCM_ClientIdentificationInformation=@:
    HardwareID1=2:6CF3F4FDA34F74D84B580D7265933FCD8EE38752
    HardwareID2=1EBA0600010000F4
    8/26/2014 12:36:37 AM 13824 (0x3600)
    [RegTask] - Service has started, continuing registration.
    Read SMBIOS (encoded): 55005300450032003000390057004B004E003600
    Evaluated SMBIOS (encoded): 55005300450032003000390057004B004E003600
    No SMBIOS Changed
    SMBIOS unchanged
    SID unchanged
    HWID unchanged
    RegTask: Failed to refresh site code. Error: 0x80041010
    Sleeping for 298 seconds before refreshing location services.
    The clientlocation log was clean. and the locationservices.log contains:
    Security settings update detected, restarting CcmExec.
    8/21/2014 12:03:12 PM 10452 (0x28D4)
    Failed to create CcmRestart process. (193)
    8/21/2014 12:03:12 PM
    10452 (0x28D4)
    Failed to process security mode transition. (0x800700c1)
    8/21/2014 12:03:12 PM
    10452 (0x28D4)
    Current AD site of machine is Default-First-Site-Name
    8/21/2014 12:03:13 PM 9904 (0x26B0)
    Current AD site of machine is Default-First-Site-Name
    8/21/2014 12:08:13 PM 10452 (0x28D4)
    Security settings update detected, restarting CcmExec.
    8/22/2014 12:37:53 AM 11616 (0x2D60)
    Failed to create CcmRestart process. (193)
    8/22/2014 12:37:53 AM
    11616 (0x2D60)
    Failed to process security mode transition. (0x800700c1)
    8/22/2014 12:37:53 AM
    11616 (0x2D60)
    Security settings update detected, restarting CcmExec.
    8/24/2014 12:37:37 AM 14784 (0x39C0)
    Failed to create CcmRestart process. (193)
    8/24/2014 12:37:37 AM
    14784 (0x39C0)
    Failed to process security mode transition. (0x800700c1)
    8/24/2014 12:37:37 AM
    14784 (0x39C0)
    Security settings update detected, restarting CcmExec.
    8/25/2014 12:37:44 AM 8636 (0x21BC)
    Failed to create CcmRestart process. (193)
    8/25/2014 12:37:44 AM
    8636 (0x21BC)
    Failed to process security mode transition. (0x800700c1)
    8/25/2014 12:37:44 AM
    8636 (0x21BC)
    Security settings update detected, restarting CcmExec.
    8/26/2014 12:37:49 AM 12012 (0x2EEC)
    Failed to create CcmRestart process. (193)
    8/26/2014 12:37:49 AM
    12012 (0x2EEC)
    Failed to process security mode transition. (0x800700c1)
    8/26/2014 12:37:49 AM
    12012 (0x2EEC)
    D.L.J. Schneider

  • When I try to open a video from the website Youtube I got this message that I didnt before I uograde to Firefox 7.0.1 : "Firefox doesn't know how to open this address, because the protocol (rtsp) isn't associated with any program."

    When I try to open a video from the website Youtube I got this message that I didnt before I uograde to Firefox 7.0.1 : "Firefox doesn't know how to open this address, because the protocol (rtsp) isn't associated with any program."
    That didnt happen before until I made an upgrade to 7.0.1

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

Maybe you are looking for

  • Help with old iMac G3

    Hey! I've been using Macs since...well, don't ask LOL. I am stumped with a problem I know I should have found a solution...but duh... :/ I just picked up a cherry iMac G3/500 with OS 9.2.2. After cleaning up the system, it really kicks butt on the G3

  • ITunes doesn't open when I connect my iPhone

    i upgraded from Tiger to Leopard. Since then every time I connect my iPhone, iTunes doesn't open automatically. And the phone restarts every time I connect to computer. Please help.

  • MMM 1064 Error when adding pluggable mapping

    OWB ver 11.2.0.1 9802120 patch has been applied, but not exactly which "version" Created a standalone pluggable mapping. It is pretty basic: Source table -> Filter ->Aggregator -> Subquery Filter -> Output Signature. When I attempt to add the pluggab

  • New WDA in EnhP 4

    Hi All, where do we can find the list of new WDA released with the Enhancement PAckage 4? Some consultants said us that with the Enhancement Package 4 a lot of new WDA (to cover the classic dynpro transactions) would be released. Thanks and regards B

  • What does a blocked caller hear?

    Yes, I am using the latest version of my OS and Skype.  I use the "premium" version with a Skype phone number.  I have managed to block several marketing callers...only to have two new ones start showing up for every one I block.  My question is, wha