Reporting point problem

Hi all,
I have a problem with reporting in SCCM2012 SP1.
SCCM farm contains two servers: Primary server and database server. I have added reporting services point on database server with SQL 2012 to different reporting instance (default instance is used for DPM and SCOM).
I see succesfull records in SCCM console component status for SMS_SRS_REPORTING_POINT  that component started (message 500) and availability of component has changed to Online (message 4629).
But ConfigMgr_<sitename> folder not created and no reports available in console.
I have also tried to run mofcomp.exe for sqlmgrproviderxpsp2up.mof but report folder still not created.
How can I troubleshoot this problem? I have no errors in SCCM.

Hello Torsten,
I see only following records inside srsrp.log. That SMS_EXECUTIVE started SMS_SRS_REPORTING_POINT and timeouts chain.
SMS_EXECUTIVE started SMS_SRS_REPORTING_POINT as thread ID 2776 (0xAD8).  $$<SMS_SRS_REPORTING_POINT><04-28-2015 16:09:03.180-180><thread=3700 (0xE74)>
This is a SRS Reporting Point Role as SRSRP registry key exists.~  $$<SMS_SRS_REPORTING_POINT><04-28-2015 16:09:06.496-180><thread=2776 (0xAD8)>
~Waiting for changes for 0 minutes  $$<SMS_SRS_REPORTING_POINT><04-28-2015 16:09:06.527-180><thread=2776 (0xAD8)>
Timed Out...~  $$<SMS_SRS_REPORTING_POINT><04-28-2015 16:09:06.527-180><thread=2776 (0xAD8)>
~Waiting for changes for 1 minutes  $$<SMS_SRS_REPORTING_POINT><04-28-2015 16:09:06.558-180><thread=2776 (0xAD8)>
Timed Out...~  $$<SMS_SRS_REPORTING_POINT><04-28-2015 16:10:06.569-180><thread=2776 (0xAD8)>

Similar Messages

  • What's the Point of the 'Report a Problem' Process?

    I tried out the 'report a problem' process for the first time, as I bought an app that basically didn't do anything it was supposed to.
    I tried to contact the app support via the link in iTunes, got nowhere, so I tried the recommended 'report a problem' process.
    This also was a complete waste of time, as all it does is generate a message from Apple saying 'we have noted your comment but we have no control over apps. Please seek advice through the support link in the app page in iTunes' or words to that effect.
    Complete waste of time and going round in circles.
    So, are we saying that, if the app support is ignoring any requests for a refund and Apple obviously don't want to know, there is no way to get any money back on apps that just don't do what they are supposed to?

    Sorry Ian, but Apple did not tell me that. I have never asked for a refund, because there is no apparent mechanism for doing so.
    I cannot see anything in the link you provided that is relevant to the issue in question.
    I am struggling to see why the situation with buying an app that is 'unfit for purpose' from the App Store is any different if I buy a pair of Levis from the Jeans Store that is 'unfit for purpose' because there is a leg missing.
    The shop will not wash their hands of it, and tell me to go and sue the manufacturing factory whose responsibility it is. They would give me a refund, as it is them that I have a contract with and not the manufacturers.
    That is basic Consumer Law - certainly in the UK.
    Someone who purchases from the App Store is buying from Apple, not the developer, and it is Apple that the consumer has the contract with. Simple as that.
    Even if what you were saying was correct, what mechanism is there for devs to give refunds? Have you tried to get any support for apps in the App Store? My experience is that most of the time, it is zero. Now, of course, we all say, 'oh well, it was only a pound or so', and move on, but it still begs the question.

  • 'Report a Problem' is not working at all on my iMac. What do I do?

    I'm running Mac OS X Version 10.5.8, 3.06GHz Intel Core 2 Duo, etc...
    I have not been able to use the Problem Report interface for over a month.
    No matter what software the problem is with, no matter how strong my internet connection is, I get a dialog saying "Submission failed: Your report could not be submitted. Please try again later." For example, here's a screencap from 1 minute ago, after Spotify crashed.
    The same thing happens with Apple software as well as third-party. I have no idea what to do.
    Any help will be much appreciated.
    -S.

    StefanoBlack wrote:
    None of this is the point though. I don't care about reporting the problems, I wanna know why my computer is having errors rendering a very basic function impossible. Hard drive problem, data corruption, mystery Mac virus...my concern is that this is a symptom of something bigger.
    That's good to know, but keep in mind that your original posting complained solely about "Report a problem not working." That was the issue in the title and text of your original post. Several people responded with regards to that concern that you raised, and indicated that not being able to report back to Apple was not a serious concern, we don't think Apple is using that data much and may have turned off some of the reporting paths back to the company anyway. As Pondini said, if you are really concerned about some other problem, describe it so people here might address it. You mention "Hard drive problem, data corruption, mystery Mac virus ..." but provide no details except that the report back to Apple failed, about something. A report back to Apple failing to go through is not evidence of any of those things you mentioned, it's actually seen pretty often.

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • USB Pointer problems with Preview slideshow view

    I often give talks for which my slides are in PDF format (typically produced using LaTeX). Under Mountain Lion I could open the relevant PDF in Preview Slideshow View and click between slides using a Logitech pointer (Model R-RB5). Since updating to Mavericks, however, the pointer will no longer advance slides. It seems to work as expected to move between pages if Preview is not full-screen, or if it's in full-screen mode, just not in slideshow mode (and full-screen mode isn't ideal for giving talks). All seems to be fine in Adobe Reader, but I prefer Preview for one or two reasons, so any suggestions would be appreciated.

    Everybody, report preview problems to apple at:
    http://www.apple.com/feedback/macosx.html
    My biggest problem in preview 4.0 is it freezes while trying to view large images across four apple LCD's. Sometimes I see a gray screen.

  • REM Reporting Point line item with operation number 9999

    Dear guru,
    I run MFBF with a REM Profile that post Automatic GR and Activities.
    I have four operation in the material routing (10,20,30,40)
    For the first three operations I want to confirm them with target activities
    I define Third Operation with operation number 30 as "Reporting Point Operation"  and
    set the necessary settings for Reporting Point at Rem Profile.
    After the confirmation I check MF12 (display document log information).
    I see two reporting point line item : one for operation number 30 and one for operation number 9999
    The system update in table AFRU only operation 30.
    So I donu2019t know the activities confirmed with operation 10 and 20.
    Do you help me ?
    Thanks in advance.

    Hi dude:
    Once I had this problem, and was due to a wrong definition of the parameters used in the formula for calculating the activities in to the operations.
    You can chek it in the next path:
    IMG route
    Production > Basic Data > Work Center > Costing > Work Center Formulas > Define formula parameters for work centers & Define formulas for work centers
    Make sure that these parameters are correctly linked to the formulas.
    Please, let me know if this info was useful for you.
    Regards
    Omar Perea

  • SCCM 2012 Reporting point server instance blank

    I have installed SCCM 2012 With remote SQL database server successfully, at the time of Reporting service point role installation, its verified the SCCm database successfully but SQL server service instance is blank, what would be the reason....
    Below my SCCM architecture:
    1. Created one Database in Remote server SQL server is in failover cluster active passive mode
    2. Configured Reporting services in active mode.
    3. at the time of reporting point role installed failover cluster database name given and its successfully verified with SCCM_123 database.
    4. on the instance name showing blank.
    Please help me if anyone facing this type of problem.
    Thanks in advance.
    Rishi!!
    Regards, Rishi

    It is not totally intuitive when installing the Reporting Point role with a cluster.  When installing a Failover Cluster, SSRS can only get put on one node or on its own box, as it uses NLB for scale-out not FoC.  SSRS is also not configured by
    default if you use it with a clustered SQL instance, so you have to open SSRS Configuration Tool and make sure the ReportServerDB is created, and that the URLs can be browsed.  Once that is done, then try adding it in CfgMgr:
    In CfgMgr, In the Administration workspace, expand Site Configuration, and then click
    Servers and Site System Roles.
    Select the node that has SSRS installed on it (not the Failover Cluster virtual computer account).  If SSRS is on its own box, first you have to go to
    New site system and add the SSRS box.
    Then, on the Home tab, in the Server group, click
    Add Site System Role. The Add Site System Roles Wizard opens.  Choose Reporting Point, and after verifying the connection to the CfgMgr DB, the instance name should populate.
    http://technet.microsoft.com/en-us/library/gg712698#BKMK_InstallReportingServicesPoint
    http://social.technet.microsoft.com/Forums/en-HK/configmanagerdeployment/thread/390a6ea8-8a24-47d0-b6ad-2e1063bbc72d

  • Reporting point installation issues

    OK I have inherited a SCCM SCOM environment and all DBs including WSUS are installed in the same instance.  Yuck.  I made a fuss to the DB Admins and they said Oh Its fine, you just need to install seperate SSRS instances and it will work, look
    see here is an article stating so.
    So I have installed seperate SSRS instances and am trying to get the reporting point to install with no luck.  Anyone have the steps involved in getting this working?  When I go to add the reporting point no SQL instance is showing up to select
    from.  Please help.  Thanks kindly.

    Hi,
    This problem might be related to firewall. You could have a look on the following thread.
    http://social.technet.microsoft.com/Forums/en-US/4479e73e-8a19-4c7e-9418-b36770656b9b/sccm-2012-reporting-point-server-instance-blank
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Resetting of reporting points

    Dear Gurus,
    I am facing problem in resetting of reporting points .
    We have created product cost collector with production version but at that time REM allowed indicator is not ticked and control key is with out milestone confirmation
    Transaction are done with  reporting point 10 & reporting point 20 i have checked in table S028 & CEZP,CPZP all entries are available but in Tcode MF12  all entries are not available
    we iam try set reporting points in MF4R The production version is not available for this i have ticked REM allowed indicator & Mile stone confirmation in control key it shows in MF4R But both the reporting points with O quantity.
    As per S028 table my quantity differs in Reporting point 10 & 20
    i have backflush some qty for reporting points 10 & 20 but it consider NEW QTY for resetting OLD QTY.
    we have upgrade from 4.6 to 6.0 two years back.
    we are using Period end closing process now.
    i want to reset alI WIP of old PCC  to REL Scrap by using MF4R.
    I Have RE set all  PCC by MF4R  but this is my old PCC it creates me problem in restting
    There is any way to reduce WIP to zero in old PCC Cost collectors with out resetting reporting points
    Already we run  report KKAO
    I have checked all below notes
    SAP Note 756186 - RM402 No reporting points when creating
    production version  - available
    MFBF: Reporting point backflush
    terminates with error RM111
    Any program, Any note for to reset WIP TO zero
    Regards
    Avinash

    hi experts,
    Any one can resolve my problem
    please revert back for any clarification required
    Regards
    Avinash

  • Kanban Replenishment Strategy with Reporting Points

    I am trying to implement a SAP kanban system with repetitive manufacturing using reporting points.  My problem is that when I change the status from empty to full I get error RM086 - GR with backflush not for reporting point logic with automatic GR option.  I get this error regardless of control key (auto GR or not auto GR) setting on the routing.  I reading SAP help on the subject; I see there is a page discussing replenishment strategy with reporting points which would infer that there should be a strategy with a similar name in configuration for replinishment strategies for in-house prodution.  We are on ECC 6.0 and this option is not available in our system.    What am I missing???

    Hi,
    As you are using In House production Replenishment Strategy , You must define Replenishment strategy for reporting points in Configuration as below:
    SPRO->Production>KANBAN>Replenishment Strategies>Define In-house Production Strategies>Working With Reporting Points Replenishment strategy you need to define.
    Then assigned this defined strategy in KANBAN Control Cycle in PKMC-->Replenishment Strategy->
    Choose In-house Production Radio Button and in front of that select the above defined replenishment strategy to work with reporting points.
    Hope this helps.
    Regards,
    Tejas

  • RM111 Error reading reporting point information

    Hi,
    I got a problem here.
    I am learning about repetitive manufacturing.
    At first we have 2 version of the material. we use prduction line at the first.
    and now i want to try about reporting point so i maintain the routing for the material version 1 and 2.
    In the routing for production 2 i use two opration 10 (milestone) and 20 (milestone)
    I set in my rep profile that RP is mandatory and GR at the last RP.
    But when i MFBF i fot error message RM111.
    Did i miss something to maintain?
    Kindly help
    Best regards,
    Freddy ha

    Hi,
    I have check the prerequisites
    1)You must assign a suitable repetitive manufacturing profile in the material master record to be able to backflush a material using either the mandatory or the optional reporting point backflush function.
    --> we use mandatory
    2)You must set the optional or the mandatory reporting point backflush in the repetitive manufacturing profile.
    -->mandatory
    3)This type of backflushing corresponds to the milestone confirmation in make-to-order production. Therefore, in the routing, you must select a control key which has indicator 1 (= milestone confirmation) in the confirmation field.
    -->operation 10 use milestone and have comp alloc
    -->operation 2 use milestone and have comp alloc
    4)You must enter the routing in the production version of the material. The system first looks for the routing entered in the detailed planning section. If no entry exists here, the system then uses the routing from the rate-based planning section.
    -->routing have been updated in prod version C223 and checked
    5)You must carry out a version-specific or a standard cost estimate.
    6.You are recommended to use the version-specific cost estimate which can be carried out in shorter intervals than the standard cost estimate.
    i have material cost estimate based:( do you have any idea i change to version specific.
    Best regards,
    Freddy Ha

  • Item      Seller      Type      Unit Price iBlacklist - Block Unwanted Calls, v1.0 (4 ) Write a Review Report a Problem      Max Kub      App      $4.99 but show other application"secret contact" on screen .can't block any contact

    Item
    Seller
    Type
    Unit Price iBlacklist - Block Unwanted Calls, v1.0 (4 ) Write a Review Report a Problem
    Max Kub
    App
    $4.99
    but show other application"secret contact" on screen .can't block any contact. so seems tyhat i order one aplication "iBlacklist - Block Unwanted Calls, v1.0 (4 )" but get another application "secret contact "as it appear on screen ????

    Reply to n82phone:
    what you are telling i think is too much. I've read your requests and believe me some of them is out of context. One example is listening to radio while being on a call. Who would like to have such options?? It's ridiculous.
    But But it doesn't mean all of them are ridiculous! Just like the #1 concerning music, #4 concerning the camera and #5 concerning the volume, I strongly agree with you as it makes sense!
    So if I was to write to nokia, which I will do in the coming days is to write them again:
    Points #1,4,5,9,11,14,15,24! These are strong points!
    People out there, if you want the changes I specified to be done by nokia, you should write them the same points. If only one or two write, it's useless, they won't take it as a priority.
    Of course, don't copy paste or they will think the same person is spamming them. I hope it's clear. Write in your own words. Don't think changes will be done by magic or by doing nothing with arms folded. You should do a move.
    THIS IS A USER TO USER FORUM. YOU CAN POST YOUR PROBLEM HERE. WE'LL DISCUSS ABOUT IT, THEN ALL OF US SHOULD WRITE NOKIA TO CORRECT THE MATTER IF IT CONCERNS FIRMWARE. FOLLOW THE LINK "CONTACT US > CALL OR EMAIL NOKIA CARE" TO REPORT THE PROBLEM TO NOKIA.
    Thank you
    Message Edited by fafanne on 18-Oct-2008 01:51 AM

  • Backflusing in REM with reporting points

    Hello everybody,
    I am making some tests with Backflushing in REM with optional reporting points and I have a doubt. This is the situation:
    - Activities: In MFBF, I select "activity backflush" and the reporting point and everything is ok, the backflushing is done correctly.
    - Components: In MFBF, I select" component backflush" or "assembly backflush" and the reporting point. If the operation in the routing has any component allocated, as the backflushing flag is marked, the goods issue is done automatically. No problem.
    - Goods receipt: In MFBF, I select "assembly backflush" and the reporting point. The operation of the reporting point has defined in its control key that a goods receipt for the confirmation is automatically posted for the order. Although this, the goods receipt is not done automatically. If instead of this I do not indicate any reporting point, the goods receipt is done automatically.
    I want to be able to make the goods receipt with reporting points, the same as the activities and the goods issues. Does anybody know if it is possible?
    Thanks and regards
    Laura

    Hi Laura,
    One question to you is when do we use this Reporting Point concept?
    It is used where Production time is considerably long time and we need to monitor the inventory at certain stages.
    In the routing, you have define with milestone confirmation, where ever you want to do the reporting point confirmation.
    Say in a routing, you have defined 4 operations with RP. Say 0040, 0080, 0110 and final operation 0180.
    You want to produce 40 quantiy.
    First when you do the backflushing using MFBF, sysstem will take you to operation 0040 - first reporting point - you can confirm 40 or less than 40 quantities.
    In second reporting point , you can confirm only quantity less than or equal to that confirmed in first reporting point.
    You can see the stock at reporting point using same trasaction MFBF or MF25.
    Hope you got it.
    Regards,
    Srini

  • Reporting Points

    Dear Gurus,
    How do we define "optional reporting points"??
    What is the t-code to do the same.
    Regrds,
    Pradeep

    Hi,
    Table : T437* is for REM proifle related data.
    You need to maintain all the relevant details in REM Profile so that the details will automatically be copied to the different Tables.
    First please copy the REM Proile from an Old one and try to modify the settings.
    If you still find th problem, revert back.
    Regards,
    Siva

  • HT1933 I don't see the problem menu I just keep getting this article link when I click "report a problem" next to the offending item in itunes purchase history. What gives?!

    When I try to report a problem on one of my purchase videos, I keep getting this link: http://www.apple.com/support/itunes/#video_purchases
    The article says I should see problem menu from which to choose my specific issue, but that is not happening.
    I'm stuck in a loop of bad service, what's up?

    You're right that the documentation says "for best results select the entire eye, not just the pupil". And then it goes on to talk about pupil size. The point I'm making is (1) you don't get "better" results ... you get an error if you just select the pupil; and (2) software systems that are smart enough to detect a user error and simply "beep" and "beep" could and should in fact be smart enough to offer some sort of unobtrusive help message. The red-eye tool worked fine, I'm commenting on Adobe's not-very-useful error beep. I read the instructions several times, but I missed the point. When I used the tool, the default (?) shape of the tool was, well circular ... like a pupil. It seemed very natural to orient this circle with the pupil of the eye. Not a big deal...just a suggestion for a human factors improvement.

Maybe you are looking for

  • Firmware for 3Com Bluetooth PCMCIA card

    I've just recieved my new 3com pcmcia bluetooth card (3CRWB6096). According to google it was supposed to work with Linux. I think it will, but there's something about needing the windows firmware file- BT3CPCC.bin. I have said file, and have tried pu

  • Whats the best way to dry out a 4S that was dropped in the toilet by the granddaughter?

    help   the granddaughter dropped it in the toilet.  it plays on my clock player, the alarm goes off but no display.  any ideas?  thanks    catherine

  • Subsequent settlement for multiple material

    Hi, everyone, I have a requirement for subsequent settlement. The vendor will rebate a fixed amount when the total purchasing QTY more than 100,000 pcs for material A, plus material  B, plus material C. When I create the sebsequent settlement, I can

  • IOS 5 workaround?? Neebie needs help testing a theory

    Hello, please excuse my ignorance in advance, but I need help with the installation of iOS 5. I know coutless users have been having issues downloading iOS 5 since it's release however I'm glad to say that the download wasn't an issue with me. My pro

  • Reducing file size for YouTube's 2 gig limits

    Hello Using Premiere Pro CS4.   I also have the Matrox  CompressHD which has its own settings. I am dealing  with YouTube's 2 gig limit and I would like to know which of the  settings in the below screen capture I should adjust to help reduce file  s