Query compiles..but fails in reporting services

Oracle backend..im very new to it so please bear.
Reporting services (SQL Reporting tool) using an oracle connection.
I wrote a query in toad which seems to compile fine:
CREATE OR REPLACE PROCEDURE RSP_MATERIAL_PLANNING
     IN_SUBJECT IN varchar2 :=NULL,
     IN_AUTHOR IN varchar2 :=NULL,
     IN_PROJECTNAME IN varchar2 :=NULL,
     IN_WBS varchar2 :=NULL,
     IN_STARTDATE date :=NULL,
     IN_ENDDATE date :=NULL,
     p_cursor out types.sqlcur
AS
BEGIN
open p_cursor for
SELECT 
         MAX(PROJ_TASK.PROJECTNAME) AS PROJECTNAME,
          PROJ_TASK.TEXT_29,
          CASE WHEN PROJ_TASK.TEXT_29='SAP' OR PROJ_TASK.TEXT_29='CMS-SHIP' THEN MAX(PROJ_TASK.MILESTONE_DATE) ELSE MAX(PROJ_TASK.EXPECTED_START_DATE) END AS ESD1,
          PROJ_TASK.TEXT_26,
          MAX(PROJ_TASK.TEXT_27) AS WBSDescription,
          MAX(PROJ_TASK.EXPECTED_START_DATE)  AS ESD,
          MAX(PROJ_TASK.MILESTONE_DATE) AS MD
FROM    PROJ_TASK
INNER JOIN
                PROJECT ON PROJECT.PROJECTID = PROJ_TASK.PROJECTID
WHERE  
          (PROJ_TASK.EXPECTED_START_DATE BETWEEN IN_STARTDATE AND IN_ENDDATE OR IN_STARTDATE IS NULL)
          AND (PROJECT.SUBJECT = IN_SUBJECT OR IN_SUBJECT IS NULL OR IN_SUBJECT='All')
          AND (PROJECT.AUTHOR = IN_AUTHOR OR IN_AUTHOR IS NULL OR IN_AUTHOR='All')
          AND (PROJECT.PROJECTNAME = IN_PROJECTNAME OR IN_PROJECTNAME IS NULL OR IN_PROJECTNAME='All')
          AND (PROJ_TASK.TEXT_26 = IN_WBS OR IN_WBS IS NULL OR IN_WBS='All')
          AND (PROJECT.PROJECT_TYPE=2)
          AND (PROJECT.CATEGORY <> 'SERVICE')
          AND (PROJ_TASK.TASK_TYPE = 0)
          AND (PROJ_TASK.TEXT_29 = 'BOM-M' OR PROJ_TASK.TEXT_29 = 'BOM-E' OR PROJ_TASK.TEXT_29 = 'BOM-F' OR PROJ_TASK.TEXT_29 = 'MATF'  OR PROJ_TASK.TEXT_29 = 'SAP'  OR PROJ_TASK.TEXT_29 = 'CMS-SHIP')
GROUP BY
            PROJ_TASK.TEXT_26, PROJ_TASK.TEXT_29
ORDER BY
          PROJECT.SUBJECT, PROJECT.AUTHOR, PROJECT.PROJECTNAME, PROJ_TASK.TEXT_26;
END;
/But when I execute my report in reporting services I get:
Microsoft Development Environment
An error occurred while executing the query.
ORA-00979: not a GROUP BY expression
ORA-06512: at "CONCERTO.RSP_MATERIAL_PLANNING", line 13
ORA-06512: at line 1
OK  
---------------------------As soon as I Comment OUT the group by clause it works fine...so what is wrong with my query ?
Thanks,
Jon

Very strange...I had to also comment out the fields that do not contain aggregate functions such as MAX() to get this to work...
Basically I need to convert the following SQL SERVER stored procedure:
--ver 1.2
CREATE PROCEDURE rsp_material_planning
                                             @SUBJECT varchar(255)=NULL,     
                                             @AUTHOR varchar(255)=NULL,
                                             @PROJECTNAME varchar(255)=NULL,
                                             @TEXT_26 varchar(255) = NULL,
                                             @StartDate datetime=NULL,
                                             @EndDate datetime = NULL
AS
SET NOCOUNT ON
SELECT       MAX(pt.PROJECTNAME) AS PROJECTNAME,
          pt.TEXT_29,
          pt.TEXT_26, MAX(pt.TEXT_27) AS WBSDescription,
          MAX(pt.EXPECTED_START_DATE)  AS ESD,
          MAX(pt.MILESTONE_DATE) AS MD
     INTO #p2 FROM PROJ_TASK pt INNER JOIN PROJECT p ON
          p.PROJECTID=pt.PROJECTID
     WHERE
          (pt.EXPECTED_START_DATE BETWEEN isnull(DATEADD(d, DATEDIFF(d, 0, @StartDate), 0), '19000101') AND isnull(DATEADD(d, DATEDIFF(d, 0, @EndDate), 0), '99990101'))
          AND
           (@SUBJECT IS NULL OR p.SUBJECT = @SUBJECT) AND
           (@AUTHOR IS NULL OR p.AUTHOR = @AUTHOR)
          AND (@PROJECTNAME IS NULL OR pt.PROJECTNAME=@PROJECTNAME)
          AND
          (pt.TEXT_26 = @TEXT_26 OR @TEXT_26 IS NULL)
          AND p.PROJECT_TYPE = 2
          AND pt.TASK_TYPE=0
          AND
          (pt.TEXT_29='BOM-M' AND pt.TASK_STATUS <> 2 AND p.CATEGORY <> 'SERVICE')
          OR (pt.TEXT_29='BOM-E' AND pt.TASK_STATUS <> 2 AND p.CATEGORY <> 'SERVICE')
          OR (pt.TEXT_29='BOM-F' AND pt.TASK_STATUS <> 2 AND p.CATEGORY <> 'SERVICE')
          OR (pt.TEXT_29='MATF' AND pt.TASK_STATUS <> 2 AND p.CATEGORY <> 'SERVICE')
          OR (pt.TEXT_29='SAP' AND pt.TASK_STATUS <> 2 AND p.CATEGORY <> 'SERVICE')
          OR (pt.TEXT_29='CMS-SHIP' AND pt.TASK_STATUS <> 2  AND p.CATEGORY <> 'SERVICE'))
     GROUP BY  TEXT_26, pt.TEXT_29
     ORDER BY PROJECTNAME, TEXT_26, pt.TEXT_29
SELECT PROJECTNAME, TEXT_29, TEXT_26, WBSDescription,
CASE WHEN TEXT_29 = 'SAP' OR TEXT_29='CMS-SHIP'  THEN MD else ESD END AS ESD1
FROM #p2
ORDER BY
     CASE
          WHEN TEXT_29 = 'BOM-M' THEN 'a'
          WHEN TEXT_29 = 'BOM-E' THEN 'b'
          WHEN TEXT_29 = 'BOM-F' THEN 'c'
          WHEN TEXT_29 = 'MATF' THEN 'd'
          WHEN TEXT_29 = 'SAP' THEN 'e'
          WHEN TEXT_29 = 'CMS-SHIP' THEN 'f'
     END,  PROJECTNAME, TEXT_26
drop table #p2
Set NOCOUNT OFF
GOInto an oracle stored procedure...which I thought I had in my initial response...the difference is in the sql server one I use a temp table p2 to store the data...Does oracle have any similiar syntax or can anyone help me convert the above to work for oracle ?
Thanks,
Jon

Similar Messages

  • Security check failed in Report services

    Hi
    We are facing Errors in the Secured report services.We are able to login into the report server with url and its server name.but when the users access the reports then they are facing the below mentioned error.Pls help on this.
    Error :
    REP-56071:Security check failed with error message: Invalid error ID : -1.
    Pls revert if any more details

    Hi Jeff,
    Q(1): Yes.
    (Report Name and Servers tab)
    Report Server: REP_DKIPCIAS
    Oracle Reports File Name: test.jsp
    Execute: as JSP
    (Other tabs)
    Default values. Unchanged.
    Q(2): (Acces Tab of Report Component)
    Publish to Portal = checked
    Inherit Privileges from Portal DB Provider = checked
    (Acces Tab of Report Server Component)
    Inherit Privileges from Portal DB Provider = checked
    (SSO User)
    The user I try to run the report with has the following group assignments:
    Privilege Group
    PORTAL_ADMINISTRATORS
    PORTAL_DEVELOPERS
    DBA
    PORTLET_PUBLISHERS
    Additional Info:
    To be more specific: The mentioned security check failure exists outside of Portal as well. Eg. when we try to run the default portal test examples (test.jsp, test.rdf) from the iAS home page Demonstartions tab.
    Thank You in advance,
    Andras

  • EJB archive passes ejbc compilation but fails deploy on WLS7

    I'm attempting to migrate several functional
    EJBs from WLS6.1 to WLS7.0. I've made the
    deployment descriptor changes and created an
    archive containing the EJBs. The ejbc compilation
    tool successfully processes the archive so long
    as I don't specify the -iiop option.
    However, the WLS7.0 server fails to deploy
    the archive. No messages or exceptions are
    provided. I've tried deployment both as an ear and jar file. Any clues or suggestions?

    Rob Woollen <[email protected]> wrote:
    ken wallis wrote:
    Rob Woollen <[email protected]> wrote:
    ken wallis wrote:
    I'm attempting to migrate several functional
    EJBs from WLS6.1 to WLS7.0. I've made the
    deployment descriptor changes and created an
    archive containing the EJBs. You actually don't need to change any descriptors to migrate from 6.x
    (or even 5.1) to 7.0. Just deploy the ejbs in the new server.
    Of course, many people will upgrade their descriptors to take advantage
    of new 7.0 options, but I'd first ensure your beans work without
    changing anything.I tried deploying the same archive on WLS 7.0 that I've already deployedto WLS
    6.1. It faired exactly the same as the previous version.
    The ejbc compilation
    tool successfully processes the archive so long
    as I don't specify the -iiop option.
    However, the WLS7.0 server fails to deploy
    the archive. No messages or exceptions are
    provided. I've tried deployment both as an ear and jar file. Anyclues or suggestions?
    Hmmm. That's odd. How are you deploying it, and how do you know it
    didn't deploy?
    I've copied the archive into the mydomain directory then used the Adminpages
    to select it for deployment. It works its way to a page stating thatits 'Activating'
    the archive and reports the start time. However, this process neverdisplays
    the end time or returns. Instead, the WLS server merely exits andthe Admin console
    suddenly displays the imfamous 'page not found' page.WLS should never just exit. It sounds like the JVM crashed. Are you
    using the JVM bundled with WLS? What platform are you on? Is there
    a
    core file or any *.log files left over from the jvm?Win 2000 w/ JDK 1.3.1_03 but I've not altered the WLS basic configuration so it
    should still be using its own.
    I attempted to redirect out and err to log files, but nothing gets captured and
    WLS leaves nothing that I've found. I even placed a 'pause' at the bottom of
    the start command file; the WLS window exitted without waiting for it.
    >
    You might also try just copying the jar/ear to the server's applications
    directory. I'd be interested to see if this works.
    I tried. The Admin server never starts.
    >
    >
    >>
    I've located the following error message in the mydomain\logs\wl-domain.log,although
    it provides no real information.
    <Sep 13, 2002 5:56:59 PM CDT> <Error> <Deployer> <CI069311> <myserver><ExecuteThread:
    '10' for queue: 'default'> <kernel identity> <> <149233> <Unexpectederror was
    encountered during the deployment process.>
    Incidentally, before I can attempt to restart the WLS, I have to manuallyremove
    the archive from the config.xml.

  • JDBC:Count Array. SQL query works but fails in JDBC

    Hi,
    I'm using the following SQL query
    "SELECT red.id, name, count(green.id) FROM red, green WHERE area = 'northeast' AND red.id = zid GROUP BY name"
    It executes perfectly from the DB command line giving me the results.
    However when I call it from within JDBC i am getting null values.
    My JDBC call ia as follows( Where lst is the above query)
    rs = st.executeQuery(lst);
    while(rs.next()){
    nidV.addElement(rs.getString("red.id"));
    nnmV.addElement(rs.getString("name"));
    nnumV.addElement(rs.getString("count(green.id)"));
    I do realize that many folks use Integer for count queries but I pull them with as Strings all the time so that's not it.
    The one diffrence between this and my other count queries is that this one returns an array (Vector) of counts.
    Any ideas?

    the problem is probably:
    SELECT red.id, name, count(green.id) ...
    nnumV.addElement(rs.getString("count(green.id)"));you can either use an alias for the column;
    SELECT red.id, name, count(green.id) COUNT_VAR
    nnumV.addElement(rs.getObject("COUNT_VAR"));or use getObject(3) as suggested by drclap.

  • Porting windows program with winelib - compiles, but fails to link.

    I'm trying to port zCPU emulator . I've got it to build and created object files. Now it doesn't link to its own functions and some wine ones
    Any ideas?
    As you see, I'm using small script for build.
    Here's a package of what I'm building from: http://silentman.org.ua/build.tar.bz2
    [sm@home-sm zcpu_emu_build] LANG="en_US.UTF-8" sh ./build.sh
    zcpu_emu.o: In function `putch(int)':
    zcpu_emu.cpp:(.text+0x20c): undefined reference to `_putch'
    zcpu_emu.o: In function `kbhit()':
    zcpu_emu.cpp:(.text+0x229): undefined reference to `_kbhit'
    zcpu_emu.o: In function `getch()':
    zcpu_emu.cpp:(.text+0x246): undefined reference to `_getch'
    zcpu_emu.o: In function `RunLoop(void*)':
    zcpu_emu.cpp:(.text+0x6ad): undefined reference to `video_event_loop()'
    zcpu_emu.o: In function `PokeVideoDriver(int&, int&)':
    zcpu_emu.cpp:(.text._Z15PokeVideoDriverRiS_[PokeVideoDriver(int&, int&)]+0x58): undefined reference to `con_putch(int)'
    zcpu_emu.cpp:(.text._Z15PokeVideoDriverRiS_[PokeVideoDriver(int&, int&)]+0xef): undefined reference to `video_draw_rectangle(int, int, int, int, unsigned char, unsigned char, unsigned char)'
    zcpu_emu.o: In function `ScratchPort(int, int)':
    zcpu_emu.cpp:(.text._Z11ScratchPortii[ScratchPort(int, int)]+0x39): undefined reference to `WriteToSCSI(int, int, int)'
    zcpu_emu.o: In function `GetPort(int&)':
    zcpu_emu.cpp:(.text._Z7GetPortRi[GetPort(int&)]+0x1d): undefined reference to `ReadFromSCSI()'
    SCSI.o: In function `InitSCSI()':
    SCSI.cpp:(.text+0xe1): undefined reference to `con_write(char const*, ...)'
    SCSI.cpp:(.text+0x198): undefined reference to `con_write(char const*, ...)'
    SCSI.cpp:(.text+0x22a): undefined reference to `con_endl()'
    SCSI.cpp:(.text+0x238): undefined reference to `con_write(char const*, ...)'
    SCSI.cpp:(.text+0x23d): undefined reference to `con_endl()'
    zBIOS.o: In function `DiskIO()':
    zBIOS.cpp:(.text+0x11c): undefined reference to `WriteToSCSI(int, int, int)'
    zBIOS.cpp:(.text+0x13c): undefined reference to `WriteToSCSI(int, int, int)'
    zBIOS.cpp:(.text+0x15d): undefined reference to `WriteToSCSI(int, int, int)'
    zBIOS.cpp:(.text+0x162): undefined reference to `ReadFromSCSI()'
    zBIOS.cpp:(.text+0x194): undefined reference to `WriteToSCSI(int, int, int)'
    zBIOS.cpp:(.text+0x199): undefined reference to `ReadFromSCSI()'
    /usr/lib/wine/libwinecrt0.a(exe_main.o): In function `main':
    exe_main.c:(.text+0x9d): undefined reference to `WinMain'
    collect2: ld returned 1 exit status
    winegcc: g++ failed
    Last edited by SilentMan (2008-06-12 12:54:38)

    Look like it is expecting Conio, which was a MS only console IO API. There are some implementations of Conio for Linux though. It might be worth learning ncurses, to just replace the Conio bits.

  • TransformServlet in cmsxdb compiles but fails deployment

    Can someone help me with cmsxdb? The transformservlet fails to deploy with the following errors:
    Invoking loadjava on connection 'CmsDB' with arguments:
    -resolve -force -grant public -thin -verbose
    creating : source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet
    loading : source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet
    granting : execute on source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet to public
    granting : execute on class oracle/otnsamples/cmsxdb/dbmanager/TransformServlet to public
    resolving: source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet
    errors : source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet
    symbol : class Logger
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    private Logger fopLog = null;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:283: cannot resolve symbol
    symbol : class Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    fopDriver = new Driver( );
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:287: cannot resolve symbol
    symbol : class Hierarchy
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    Hierarchy hierarchy = Hierarchy.getDefaultHierarchy();
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:287: cannot resolve symbol
    symbol : variable Hierarchy
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    Hierarchy hierarchy = Hierarchy.getDefaultHierarchy();
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:289: cannot resolve symbol
    symbol : variable Priority
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    fopLog.setPriority(Priority.WARN);
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:330: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    int renderer = Driver.RENDER_PDF;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:333: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_PDF;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:335: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_XML;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:337: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_TXT;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:339: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_PS;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:341: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_SVG;
    ^
    16 errors
    ORA-29535: source requires recompilation
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:35: cannot resolve symbol
    symbol : class Driver
    location: package apps
    import org.apache.fop.apps.Driver;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:37: cannot resolve symbol
    symbol : class Priority
    location: package log
    import org.apache.log.Priority;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:38: cannot resolve symbol
    symbol : class Hierarchy
    location: package log
    import org.apache.log.Hierarchy;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:39: cannot resolve symbol
    symbol : class Logger
    location: package log
    import org.apache.log.Logger;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:52: cannot resolve symbol
    symbol : class Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    private Driver fopDriver = null;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:55: cannot resolve symbol
    The following operations failed
    source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet: resolution
    oracle.aurora.server.tools.loadjava.ToolsException: Failures occurred during processing
         at oracle.aurora.server.tools.loadjava.LoadJava.process(LoadJava.java:863)
         at oracle.jdeveloper.deploy.tools.OracleLoadjava.deploy(OracleLoadjava.java:117)
         at oracle.jdeveloper.deploy.tools.OracleLoadjava.deploy(OracleLoadjava.java:47)
         at oracle.jdevimpl.deploy.OracleDeployer.deploy(OracleDeployer.java:97)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:447)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:334)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeployToMostRecent(StoredProcHandler.java:248)
         at oracle.jdevimpl.deploy.StoredProcProfileDt$1.run(StoredProcProfileDt.java:196)
    #### Deployment incomplete. #### Oct 2, 2006 10:22:02 AM

    Can someone help me with cmsxdb? The transformservlet fails to deploy with the following errors:
    Invoking loadjava on connection 'CmsDB' with arguments:
    -resolve -force -grant public -thin -verbose
    creating : source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet
    loading : source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet
    granting : execute on source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet to public
    granting : execute on class oracle/otnsamples/cmsxdb/dbmanager/TransformServlet to public
    resolving: source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet
    errors : source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet
    symbol : class Logger
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    private Logger fopLog = null;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:283: cannot resolve symbol
    symbol : class Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    fopDriver = new Driver( );
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:287: cannot resolve symbol
    symbol : class Hierarchy
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    Hierarchy hierarchy = Hierarchy.getDefaultHierarchy();
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:287: cannot resolve symbol
    symbol : variable Hierarchy
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    Hierarchy hierarchy = Hierarchy.getDefaultHierarchy();
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:289: cannot resolve symbol
    symbol : variable Priority
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    fopLog.setPriority(Priority.WARN);
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:330: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    int renderer = Driver.RENDER_PDF;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:333: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_PDF;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:335: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_XML;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:337: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_TXT;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:339: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_PS;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:341: cannot resolve symbol
    symbol : variable Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    renderer = Driver.RENDER_SVG;
    ^
    16 errors
    ORA-29535: source requires recompilation
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:35: cannot resolve symbol
    symbol : class Driver
    location: package apps
    import org.apache.fop.apps.Driver;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:37: cannot resolve symbol
    symbol : class Priority
    location: package log
    import org.apache.log.Priority;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:38: cannot resolve symbol
    symbol : class Hierarchy
    location: package log
    import org.apache.log.Hierarchy;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:39: cannot resolve symbol
    symbol : class Logger
    location: package log
    import org.apache.log.Logger;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:52: cannot resolve symbol
    symbol : class Driver
    location: class oracle.otnsamples.cmsxdb.dbmanager.TransformServlet
    private Driver fopDriver = null;
    ^
    oracle/otnsamples/cmsxdb/dbmanager/TransformServlet:55: cannot resolve symbol
    The following operations failed
    source oracle/otnsamples/cmsxdb/dbmanager/TransformServlet: resolution
    oracle.aurora.server.tools.loadjava.ToolsException: Failures occurred during processing
         at oracle.aurora.server.tools.loadjava.LoadJava.process(LoadJava.java:863)
         at oracle.jdeveloper.deploy.tools.OracleLoadjava.deploy(OracleLoadjava.java:117)
         at oracle.jdeveloper.deploy.tools.OracleLoadjava.deploy(OracleLoadjava.java:47)
         at oracle.jdevimpl.deploy.OracleDeployer.deploy(OracleDeployer.java:97)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:447)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeploy(StoredProcHandler.java:334)
         at oracle.jdevimpl.deploy.StoredProcHandler.doDeployToMostRecent(StoredProcHandler.java:248)
         at oracle.jdevimpl.deploy.StoredProcProfileDt$1.run(StoredProcProfileDt.java:196)
    #### Deployment incomplete. #### Oct 2, 2006 10:22:02 AM

  • Java program compiles but failes to run

    WHAT IS WRONG WITH THIS PROGRAM? It compiles;
    however, when I try to run it, I get the message"
    static void main not define in class car. Please help!
    class Car {
    int passanger;
    int mpg;
    int gas;
    void range() {
    System.out.println("Distance of =:" + mpg*gas);
    class Models {
    public static void main(String args[]) {
    Car Toyata=new Car();
    Car Mazada=new Car();
    Toyata.passanger=8;
    Mazada.passanger=6;
    Toyata.mpg=30;
    Mazada.mpg=25;
    Toyata.gas=16;
    Mazada.gas=17;
    System.out.println("Toyata can carry" +Toyata.passanger);
    Toyata.range();

    The program gets compiled into two classes: Car.class & Models.class.
    class Car {
    int passanger;
    int mpg;
    int gas;
    void range() {
    System.out.println("Distance of =:" + mpg*gas);
    class Models {
    public static void main(String args[]) {
    Car Toyata=new Car();
    Car Mazada=new Car();
    Toyata.passanger=8;
    Mazada.passanger=6;
    Toyata.mpg=30;
    Mazada.mpg=25;
    Toyata.gas=16;
    Mazada.gas=17;
    System.out.println("Toyata can carry" +Toyata.passanger);
    Toyata.range();
    java Car does not produce output because the main method is in the Models.class.
    java Modelsproduces output
    Toyaota can carry 8
    Distance of :=480

  • Upgrading DPM 2012 SP1 to DPM 2012 R2 fails (DPM Setup is unable to connect to the specific instance of SQL Server Reporting Service (ID: 33431)

    The Background:
    1.  DPM 2012 SP1 was originally installed on a server with local SQL 2008 R2 instance (SQL was installed as part of DPM)
    2.  SQL database was upgraded to SQL 2012 SP1
    Now I want to upgrade DPM 2012 SP1 CU3 to R2.  It is throwing the following error.  Any help would be appreciated. 

    This absolutely fixed my issue.  I had upgraded my version of SQL and was then trying to upgrade DPM 2012 to 2012R2 and I could not figure out where the installation was querying old version of the reporting services.
    DPM Log Before:
    [6/4/2014 2:53:32 PM] Information : Query WMI provider for path of configuration file for SQL Server 2008 Reporting Services.
    [6/4/2014 2:53:32 PM] Information : Querying WMI Namespace: \\DPMServer\root\Microsoft\SqlServer\ReportServer\RS_MSDPM2012\v10\admin for query: SELECT * FROM MSReportServer_ConfigurationSetting WHERE InstanceName='MSDPM2012'
    [6/4/2014 2:53:32 PM] * Exception :  => System.Management.ManagementException: Provider load failure
    DPM Log After:
    [6/4/2014 3:25:36 PM] Information : SQL Server 2008 R2 SP2 instance MSDPM2012 is not present on this system.
    [6/4/2014 3:25:36 PM] Information : Query WMI provider for SQL Server 2008.
    [6/4/2014 3:25:36 PM] Information : Querying WMI Namespace: \\DPMServer\root\Microsoft\SqlServer\ComputerManagement11 for query: Select * from SqlServiceAdvancedProperty where ServiceName='MSSQL$MSDPM2012' and PropertyName='Version'
    [6/4/2014 3:25:36 PM] Information : SQL Server 2008 R2 SP2 instance MSDPM2012 is present on this system.
    [6/4/2014 3:25:36 PM] Information : Inspect context initialized with
    SQL Server namespace: \\{0}\root\Microsoft\SqlServer\ComputerManagement11
    Reporting namespace: \\{0}\root\Microsoft\SqlServer\ReportServer\RS_{1}\v11\admin
    SqlServerDetected: True
    [6/4/2014 3:25:36 PM] Information : Check if SQL Server 2012 Service Pack 1 Tools is installed.
    [6/4/2014 3:25:36 PM] Information : Inspect.CheckSqlServerTools : MsiQueryProductState returned : INSTALLSTATE_DEFAULT
    [6/4/2014 3:25:36 PM] Information : **********************************************************************************
    Thanks for This FIX!

  • Reporting Services web service complex xml type report parameters

    Hi,
    I have the following xml type parameter in my request query that I use in reporting services.
    <Parameter Name="accountDetails" Type="XML" xmlns:d4p1="thevalue" xmlns:i="thevalue">
    <DefaultValue>
    <d4p1:AccountDetailDto>
    <d4p1:AccountNumber>12345</d4p1:AccountNumber>
    <d4p1:AccountType>Sales</d4p1:AccountType>
    </d4p1:AccountDetailDto>
    </DefaultValue>
    I want to know how I can assign values to the accountDetails parameter from report parameters, I've tried to call it from the dataset parameter properties but it doesn't return any values. I created Parameters!accountDetails.Value on the dataset parameters
    properties and assigned it the following value: it only returns empty columns
    ="<AccountDetailDto><AccountNumber>"& Parameters!AccountNumber.Value &"</AccountNumber><AccountType>"& Parameters!AccountType.Value &"</AccountType></AccountDetailDto>"
    You're help will be highly appreciated as I've been trying to solve this for a while now

    Hi Alisa,
    Perhaps I should explain my problem clearly...
    This is my query request that I send to the webservice:
    <Query>
    <Method Name="GetPerAccountAssetAllocation" Namespace="http://tempuri.org/">
    <Parameters>
    <Parameter Name="accountDetails" Type="XML" xmlns:d4p1="thevalue" xmlns:i="thevalue">
    <DefaultValue>
    <d4p1:AccountDetailDto>
    <d4p1:AccountNumber>12345</d4p1:AccountNumber>
    <d4p1:AccountType>JSE</d4p1:AccountType>
    </d4p1:AccountDetailDto>
    </DefaultValue>
    </Parameter>
    </Parameters>
    </Method>
    <SoapAction>http://tempuri.org/IPortfolioManagementService/GetPerAccountAssetAllocation</SoapAction>
    <ElementPath IgnoreNamespaces="true">*</ElementPath>
    </Query>
    It works well when I run it just like this, that is without specifying any parameters in the report data dialogue window or on the dataset parameters properties, it returns the values and columns correctly.
    So my problem is, I need to find out how(xml parameter syntax, steps e.t.c)
    I can do to allow users to specify the accountDetails parameter, its quite tricky for me coz its an xml type parameter, Im not sure if I should just specify the AccountNumber and
    ReportType parameters separately:
    I've tried the following without any success:
    1. Under the dataset properties:  I tried not to specify a default value for the accountDetails parameter on the xml query, then I added a parameter called "accountDetails" under the dataset parameters properties, then under parameter
    value I added the following xml value :
    <d4p1:AccountDetailDto>
    <d4p1:AccountNumber>Parameters!AccountNumber.Value</d4p1:AccountNumber>
    <d4p1:AccountType>Parameters!AccountType.Value</d4p1:AccountType>
    </d4p1:AccountDetailDto> 
    (I also added the AccountNumber and AccountType parameters under the report data dialogue window)
    This returns empty columns, is there something I'm missing, or am I doing this incorrectly?

  • Dsml and SQL 2005 reporting services?

    I usually post over in the IDM forum so be nice to the newbie here :)
    I have a Sun Directory server that I've enabled DSML on. On that side everything is good. However, ideally I want to pull this data into a MS SQL 2005 reporting services report. They have support for XML and web services, but the DSML front end doesn't accept GET requests and I don't know how to send the request as post in reporting services.
    Has anyone else be able to get something like this working?
    Thanks!

    No idea about MS SQL, but is your reporting service able to use files on disk? If so I guess your problem is easily solved by using an app to fetch data from directory server to disk. If you're more adventerous, you write a script in perl/python which acts as a proxy and translates GET requests to POST and relays data back in real time. Not sure if these help or not, just my thoughts.

  • Calling Reporting Services Web Service with jQuery possible?

    Hi,
    is it possible to call the Reporting Services Web Service with jQuery? If yes, can someone post me a small example?
    Background:
    My plan is to create a html with a form which is also uploaded then into the reportserver. I open this html later by clicking a link in a report (with gotoURL open.window). The report opens the html inclusive the overtaken of some additional parameters
    (reportname, reportdescription). These parameters I will use in the html-form as defaultvalues for the corresponding input-text-fields. Now the user can make some changes (i.e. the decription). With a click on a button I will send the new description to
    the Reporting Services Web Service by using the SetProperties method, closing the html-window and reload the report. Important is that I want to upload the html also into the reportserver itself.
    I have already found how to consume a web service via jQuery but with the Reporting Services Web Service I did not get it running in my tests.
    I have referenced to the following jQuery.js: http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
    Here you can see my tests I made with the results:
    $.ajax({
    type: 'POST',
    url: 'http://<..>/ReportServer/ReportService2010.asmx/ListChildren',
    data: {'ItemPath':'/','Recursive':false},
    complete: function(xData, status) {
    $('p').html($(xData.responseXML).text()); // result
    $("#divStatus").text( status ); // status }
    I got a NULL response with Status success. But where are the items?
    Another test which should response only one value was that:
    $.ajax({
    type: "POST",
    contentType: "text/xml; charset=utf-8",
    url: "http://<..>/ReportServer/ReportService2010.asmx/GetItemType",
    data: {"Item":"/Development"}, // Development is a Folder in my Reportserver-Root
    dataType: "xml",
    success: function (msg) {
    $("#divResult").html(msg.responseXML);
    error: function (data, status, error) {
    $("#divResult").html("WebSerivce unreachable<br> <br>" + data.responseXML + "<br> <br>(" + error + ")");
    Here I got an [object Error]
    And here my last test:
    var soapMessage = '<?xml version="1.0" encoding="utf-8"?>\
    <soap:Envelope \
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" \
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" \
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">\
    <soap:Body>\
    <GetItemType xmlns="http://www.microsoft.com/sql/ReportingServer">\
    <ItemPath>/Development</ItemPath>\
    </GetItemType>\
    </soap:Body>\
    </soap:Envelope>';
    $.ajax({
    type: "POST",
    contentType: "text/xml; charset=utf-8",
    url: http://<..>/ReportServer/ReportService2010.asmx?wsdl,
    data: soapMessage,
    dataType: "xml",
    success: processSuccess,
    error: processError
    function processSuccess(data, status, req) {
    if (status == "success")
    $("#response").text($(req.responseXML).find("Type").text());
    function processError(data, status, req) {
    alert(req.responseText + " " + status);
    Here I got an "Undefined error"
    Can anyone help me?
    Thanks
    René Illner

    Hi Rene,
    I have one vbscript class to call web services. May be if you need you can use it.
         dim ws
         set ws = new webservice
         ws.url = "http://servername/ReportServer/ReportService2010.asmx"
         ws.method = "MethodName"
         ws.parameters.Add "Parameter1", "Param1 Desc.."
         ws.parameters.Add "Parameter2","[email protected].."
         ws.execute
         set ws = nothing
    '------web service calling class
    class WebService
      public Url
      public Method
      public Response
      public Parameters
      public function execute()
        dim xmlhttp
        Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
        xmlhttp.open "POST", Url & "/" & Method, false
        xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
        xmlhttp.send Parameters.toString
        response = xmlhttp.responseText
        set xmlhttp = nothing
      end function
      Private Sub Class_Initialize()
        Set Parameters = new wsParameters
      End Sub
      Private Sub Class_Terminate()
        Set Parameters = Nothing
      End Sub
    End class
    class wsParameters
      public mCol
      public function toString()
        dim nItem
        dim buffer
        buffer = ""
        for nItem = 1 to Count
          buffer = buffer & Item(nItem).toString & "&"
        next
        if right(buffer,1)="&" then
          buffer = left(buffer,len(buffer)-1)
        end if
        toString = buffer
      end function
      public sub Clear
        set mcol = nothing
        Set mCol = CreateObject("Scripting.Dictionary")
      end sub
      public sub Add(pKey,pValue)
        dim newParameter
        set newParameter = new wsParameter
        newParameter.Key = pKey
        newParameter.Value = pValue
        mCol.Add mCol.count+1, newParameter
        set newParameter = nothing
      end sub
      public function Item(nKey)
        set Item=mCol.Item(nKey)
      end function
      public function ExistsXKey(pKey)
        dim nItem
        for nItem = 1 to mcol.count
          if mCol.Item(nItem).key = pKey then
            ExistsXKeyword = true
            exit for
          end if
        next
      end function
      public sub Remove(nKey)
        mCol.Remove(nKey)
      end sub
      public function Count()
        Count=mCol.count
      end function
      Private Sub Class_Initialize()
        Set mCol = CreateObject("Scripting.Dictionary")
      End Sub
      Private Sub Class_Terminate()
        Set mCol = Nothing
      End Sub
    end class
    class wsParameter
       public Key
       public Value
       public function toString()
         toString = Key & "=" & Value
       end function
    end class
    Regards, RSingh

  • QSUF (Query string url filter) and SQL Server reporting services report viewer parameters

    Hi,
    this is my issue:
    I have a SQL Server reporting services web part on a page with a report with 1 parameter, lets say it's a client list
    Then i have a QSUF that will be used to filter the clients list through the URL
    However, once i connect the filter and the report viewer web part, the parameter goes away and is no longer accessible
    I'd like to somehow keep the parameter visible, in case there is no parameter sent through the URL, i would like the user to be able to choose a client from the parameter drop down list
    I saw that there is a "send empty if no values are passed" option, but i can't seem to get this working properly and i don't know if this option will make the parameter visible again
    Any help would be appreciated
    Thanks.

    Hi,
    According to your post, my understanding is that the query string url filter web part not worked well with SQL server reproting services web part.
    Did you use the Wiki page layout in your environment?
    You can change the page to a web part page, then check whether it work.
    There is a similar thread for your reference.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/4d7584e3-8e1a-48bf-9346-32f8cb480dd1/query-string-url-filter-web-part?forum=sharepointgeneralprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Reporting Services Installation Failing

    Hi Fellows,
    I am trying to install SCOM 2012 R2 reporting services on SCOM Management Server. SCOM Management Server also has a SQL Server 2012 SP1 (11.0.3000.0) SSRS and Database services installed. But SCOM reporting installation fails in between with below errors
    and leaves the reporting instance in-useable.
    Windows Event Log ID: 1026, Source: .NET Runtime,
    Application:Microsoft.EnterpriseManagement.Monitoring.Console.exe
    Framework: v4.0.30319
    Description: The process was terminated due to an unhandled exception
    Exception Info: System.IO.FileNotFoundException
    SCOM Setup Log
    [16:26:00]:    Warn:    :Message:SRSPolicySetter SoapException Exception: System.Web.Services.Protocols.SoapException: An error occurred when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException:
    An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]:
    Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description). Will retry..
    [16:26:00]:    Warn:    :Extra data:<detail><ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsAuthorizationExtensionError</ErrorCode><HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">An error occurred when invoking the authorization extension.</Message><HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAuthorizationExtensionError&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3128.0</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">11.0.3128.0</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation
    xmlns="http://www.microsoft.com/sql/reportingservices"><Source>Microsoft.ReportingServices.Diagnostics</Source><Message msrs:ErrorCode="rsAuthorizationExtensionError" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAuthorizationExtensionError&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3128.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">An error occurred when invoking the authorization extension.</Message><MoreInformation><Source>mscorlib</Source><Message>Access is denied. (Exception from
    HRESULT: 0x80070005 (E_ACCESSDENIED))</Message></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    [16:26:00]:    Debug:    :Now Sleeping for : 60000 milliseconds
    [16:27:00]:    Debug:    :More: 4 rety to go..
    [16:27:00]:    Warn:    :Message:SRSPolicySetter SoapException Exception: System.Web.Services.Protocols.SoapException: An error occurred when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException:
    An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]: Access is denied. (Exception
    from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description). Will retry..
    [16:27:00]:    Warn:    :Extra data:<detail><ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsAuthorizationExtensionError</ErrorCode><HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">An error occurred when invoking the authorization extension.</Message><HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAuthorizationExtensionError&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3128.0</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">11.0.3128.0</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation
    xmlns="http://www.microsoft.com/sql/reportingservices"><Source>Microsoft.ReportingServices.Diagnostics</Source><Message msrs:ErrorCode="rsAuthorizationExtensionError" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAuthorizationExtensionError&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3128.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">An error occurred when invoking the authorization extension.</Message><MoreInformation><Source>mscorlib</Source><Message>Access is denied. (Exception from
    HRESULT: 0x80070005 (E_ACCESSDENIED))</Message></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    [16:27:00]:    Debug:    :Now Sleeping for : 60000 milliseconds
    [16:28:00]:    Debug:    :More: 3 rety to go..
    [16:28:00]:    Warn:    :Message:SRSPolicySetter SoapException Exception: System.Web.Services.Protocols.SoapException: An error occurred when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException:
    An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]: Access is denied. (Exception
    from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description). Will retry..
    [16:28:00]:    Warn:    :Extra data:<detail><ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsAuthorizationExtensionError</ErrorCode><HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">An error occurred when invoking the authorization extension.</Message><HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAuthorizationExtensionError&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3128.0</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">11.0.3128.0</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation
    xmlns="http://www.microsoft.com/sql/reportingservices"><Source>Microsoft.ReportingServices.Diagnostics</Source><Message msrs:ErrorCode="rsAuthorizationExtensionError" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAuthorizationExtensionError&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3128.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">An error occurred when invoking the authorization extension.</Message><MoreInformation><Source>mscorlib</Source><Message>Access is denied. (Exception from
    HRESULT: 0x80070005 (E_ACCESSDENIED))</Message></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    [16:28:00]:    Debug:    :Now Sleeping for : 60000 milliseconds
    [16:29:00]:    Debug:    :More: 2 rety to go..
    [16:29:00]:    Warn:    :Message:SRSPolicySetter SoapException Exception: System.Web.Services.Protocols.SoapException: An error occurred when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException:
    An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]: Access is denied. (Exception
    from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description). Will retry..
    [16:29:00]:    Warn:    :Extra data:<detail><ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsAuthorizationExtensionError</ErrorCode><HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">An error occurred when invoking the authorization extension.</Message><HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAuthorizationExtensionError&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3128.0</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">11.0.3128.0</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation
    xmlns="http://www.microsoft.com/sql/reportingservices"><Source>Microsoft.ReportingServices.Diagnostics</Source><Message msrs:ErrorCode="rsAuthorizationExtensionError" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAuthorizationExtensionError&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3128.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">An error occurred when invoking the authorization extension.</Message><MoreInformation><Source>mscorlib</Source><Message>Access is denied. (Exception from
    HRESULT: 0x80070005 (E_ACCESSDENIED))</Message></MoreInformation></MoreInformation><Warnings xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    [16:29:00]:    Debug:    :Now Sleeping for : 60000 milliseconds
    [16:30:00]:    Debug:    :More:1 *LAST* retry to go..
    [16:30:01]:    Error:    :Error:All retrys failed!!. Message:SRSPolicySetter SoapException, now throwing:System.Web.Services.Protocols.SoapException: An error occurred when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException:
    An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]: Access is denied. (Exception
    from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
    [16:30:01]:    Error:    :StackTrace:    at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at Microsoft.Reporting.Setup.ReportService.ReportingService2005.GetRoleProperties(String Name, String& Description)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingConfigurationHelper.ReportingConfiguration.SRSPolicySetter(String fullSRSURL)
    [16:30:01]:    Error:    :SRSPolicySetter error: Threw Exception.Type: System.Web.Services.Protocols.SoapException, Exception Error Code: 0x80131501, Exception.Message: System.Web.Services.Protocols.SoapException: An error occurred
    when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException: An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail,
    System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
    [16:30:01]:    Error:    :StackTrace:   at Microsoft.EnterpriseManagement.OperationsManager.SetupCommon.RetryLog.ProcessException(String strMsg, Exception e, String strExtra)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingConfigurationHelper.ReportingConfiguration.SRSPolicySetter(String fullSRSURL)
    [16:30:01]:    Error:    :ReplaceSRSExtensionsWithOMExtensions error: Threw Exception.Type: System.Web.Services.Protocols.SoapException, Exception Error Code: 0x80131501, Exception.Message: System.Web.Services.Protocols.SoapException:
    An error occurred when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException: An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail,
    System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
    [16:30:01]:    Error:    :StackTrace:   at Microsoft.EnterpriseManagement.OperationsManager.SetupCommon.RetryLog.ProcessException(String strMsg, Exception e, String strExtra)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingConfigurationHelper.ReportingConfiguration.SRSPolicySetter(String fullSRSURL)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingConfigurationHelper.ReportingConfiguration.ReplaceSRSExtensionsWithOMExtensions(String srsReportServerFolder, String omServer, String reportServerURL, String srsServiceName)
    [16:30:01]:    Error:    :Reporting Configuration failed.: Threw Exception.Type: System.Web.Services.Protocols.SoapException, Exception Error Code: 0x80131501, Exception.Message: System.Web.Services.Protocols.SoapException: An
    error occurred when invoking the authorization extension. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AuthorizationExtensionException: An error occurred when invoking the authorization extension. ---> System.ServiceModel.FaultException`1[[System.ServiceModel.ExceptionDetail,
    System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
       at Microsoft.ReportingServices.Library.ReportingService2005Impl.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
       at Microsoft.ReportingServices.WebServer.ReportingService2005.GetRoleProperties(String Name, Task[]& Tasks, String& Description)
    [16:30:01]:    Error:    :StackTrace:   at Microsoft.EnterpriseManagement.OperationsManager.SetupCommon.RetryLog.ProcessException(String strMsg, Exception e, String strExtra)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingConfigurationHelper.ReportingConfiguration.SRSPolicySetter(String fullSRSURL)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.ReportingConfigurationHelper.ReportingConfiguration.ReplaceSRSExtensionsWithOMExtensions(String srsReportServerFolder, String omServer, String reportServerURL, String srsServiceName)
       at Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.OMReportingProcessor.ConfigureReporting(ProgressData progressData, Func`2 progressDelegate)
    [16:30:01]:    Error:    :FATAL ACTION: ConfigureReportingForInstall
    [16:30:01]:    Error:    :ProcessInstalls: Running the PostProcessDelegate returned false.
    [16:30:01]:    Always:    :SetErrorType: Setting NonVitalFailure. currentInstallItem: Reporting Server
    [16:30:01]:    Error:    :ProcessInstalls: Running the PostProcessDelegate for OMREPORTING failed.... but this item is not fatal so we will process the other items.
    [16:30:01]:    Info:    :SetProgressScreen: FinishMinorStep.
    [16:30:01]:    Always:    :!***** Installing: POSTINSTALL ***
    [16:30:01]:    Info:    :SetProgressScreen: StartMinorStep.
    [16:30:01]:    Warn:    :ApplyUpdates: Unable to load QFE file.
    [16:30:01]:    Always:    :Doing Preinstall task for POSTINSTALL
    [16:30:01]:    Warn:    :CheckAndLoadUpdateFiles: Unable to load QFE file.
    [16:30:01]:    Always:    :Doing Install task for POSTINSTALL
    [16:30:01]:    Debug:    :DoInstallTask: Found Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.PostInstall;PostInstallProcessor as type and method.
    [16:30:01]:    Info:    :Type: Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.PostInstall  Method: PostInstallProcessor
    [16:30:01]:    Info:    :SetProgressScreen: Init Exe Install progress.
    [16:30:01]:    Info:    :AddUninstallChangeEntry: Cleaning out existing files at the ARP file cache location C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup
    [16:30:01]:    Debug:    :ARPFileCache: Created folder: C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup.
    [16:30:01]:    Debug:    :Copying files from C:\Users\scom.admin\AppData\Local\SCOM\Setup To C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup that match the pattern *
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\build_momv3_dw_localization.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\build_momv3_dw_localization.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\build_momv3_localization.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\build_momv3_localization.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\build_mom_db.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\build_mom_db.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\build_mom_db_admin.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\build_mom_db_admin.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\build_mom_db_postMPimport.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\build_mom_db_postMPimport.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\build_mom_dw_admin.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\build_mom_dw_admin.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\build_om_db_ConfigSvcRole.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\build_om_db_ConfigSvcRole.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\CAManaged.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\CAManaged.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\cleanup_mom_db.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\cleanup_mom_db.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\DatatypeTransforms.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\DatatypeTransforms.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Datawarehouse.Initial.Setup.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Datawarehouse.Initial.Setup.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Datawarehouse.OM12R2.Upgrade.sql to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Datawarehouse.OM12R2.Upgrade.sql
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\DataWarehouseMPs.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\DataWarehouseMPs.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\DBRetryConfigSettingsXML.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\DBRetryConfigSettingsXML.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Eula_en_eval.rtf to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Eula_en_eval.rtf
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\eula_en_fpp.rtf to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\eula_en_fpp.rtf
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Eula_en_notice.rtf to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Eula_en_notice.rtf
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\eula_en_oem.rtf to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\eula_en_oem.rtf
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\IntermilestoneUpgradePrereqs.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\IntermilestoneUpgradePrereqs.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.Common.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.Common.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.Core.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.Core.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.DataAccessLayer.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.DataAccessLayer.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.DataAccessLayer.QueryCache.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.DataAccessLayer.QueryCache.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.DataAccessService.Core.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.DataAccessService.Core.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.DataAccessService.InProc.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.DataAccessService.InProc.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.DataAccessService.InProcWithAuth.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.DataAccessService.InProcWithAuth.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.DataAccessService.OperationsManager.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\Microsoft.EnterpriseManagement.DataAccessService.OperationsManager.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.HealthService.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.HealthService.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.Modules.DataTypes.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.Modules.DataTypes.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.ReportingComponent.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.ReportingComponent.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.Reportingconfiguration.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.Reportingconfiguration.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.ServerConfiguration.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.ServerConfiguration.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.DBConfigurationHelper.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.DBConfigurationHelper.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.DBUpgradeConfiguration.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.DBUpgradeConfiguration.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.DWConfigurationHelper.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.DWConfigurationHelper.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.InProcSDK.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.InProcSDK.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.Prerequisites.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.Setup.Prerequisites.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.OperationsManager.SetupCommon.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.OperationsManager.SetupCommon.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.Packaging.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.Packaging.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.Runtime.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.Runtime.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.EnterpriseManagement.RuntimeService.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.EnterpriseManagement.RuntimeService.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.Mom.BuildConstants.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.Mom.BuildConstants.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.Mom.Common.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.Mom.Common.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.Mom.DiscoveryDatabaseAccess.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.Mom.DiscoveryDatabaseAccess.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.Mom.Modules.DataTypes.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.Mom.Modules.DataTypes.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.Mom.Sdk.Authorization.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.Mom.Sdk.Authorization.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.Mom.Sdk.SecureStorageManager.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.Mom.Sdk.SecureStorageManager.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.Mom.Sdk.UserRoleSetup.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.Mom.Sdk.UserRoleSetup.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.SSH.SFTPTransferData.xslt to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.SSH.SFTPTransferData.xslt
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.SSH.SSHCommandData.xslt to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.SSH.SSHCommandData.xslt
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.SystemCenter.Essentials.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.SystemCenter.Essentials.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Microsoft.SystemCenter.Essentials.SetupFramework.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Microsoft.SystemCenter.Essentials.SetupFramework.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\MPImportList.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\MPImportList.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\msvcp100.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\msvcp100.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\msvcr100.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\msvcr100.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\NetworkingMPs.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\NetworkingMPs.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\PrerequisiteInputFile.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\PrerequisiteInputFile.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\ReportingMPsList.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\ReportingMPsList.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Setup.exe to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Setup.exe
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\Setup.ico to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\Setup.ico
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\SetupChainerUI.exe to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\SetupChainerUI.exe
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\SetupChainerUI.exe.config to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\SetupChainerUI.exe.config
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\SetupCommon.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\SetupCommon.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\SetupCommonManaged.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\SetupCommonManaged.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\SetupCommonStringDictionary.xaml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\SetupCommonStringDictionary.xaml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\SetupInstallItem.exe to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\SetupInstallItem.exe
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\UpgradePrerequisites.xml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\UpgradePrerequisites.xml
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\UpgradeRules.xaml to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\UpgradeRules.xaml
    [16:30:01]:    Debug:    :Copying files from C:\Users\scom.admin\AppData\Local\SCOM\Setup\en To C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\en that match the pattern *
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\en\eula_en_eval.rtf to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\en\eula_en_eval.rtf
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\en\eula_en_fpp.rtf to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\en\eula_en_fpp.rtf
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\en\eula_en_notice.rtf to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\en\eula_en_notice.rtf
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\en\eula_en_oem.rtf to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\en\eula_en_oem.rtf
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\en\Microsoft.EnterpriseManagement.OperationsManager.Setup.resources.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager\Setup\en\Microsoft.EnterpriseManagement.OperationsManager.Setup.resources.dll
    [16:30:01]:    Debug:    :SafeCopyFolder: Copied C:\Users\scom.admin\AppData\Local\SCOM\Setup\en\Microsoft.SystemCenter.Essentials.SetupFramework.resources.dll to C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Setup\en\Microsoft.SystemCenter.Essentials.SetupFramework.resources.dll
    [16:30:02]:    Always:    :Doing Postinstall task for POSTINSTALL
    [16:30:02]:    Warn:    :ApplyUpdates: Unable to load QFE file.
    [16:30:02]:    Info:    :SetProgressScreen: FinishMinorStep.
    [16:30:02]:    Always:    :****************************************************************
    [16:30:02]:    Always:    :****Starting*RollBack*******************************************
    [16:30:02]:    Always:    :****************************************************************
    [16:30:02]:    Info:    :SetProgressScreen: StartMinorStep.
    [16:30:02]:    Debug:    :Discovered that there were non-vital failures during this install but since POSTINSTALL was not one of them we went ahead and added a warning icon.
    [16:30:02]:    Info:    :SetProgressScreen: StartMinorStep.
    [16:30:02]:    Debug:    :ProcessInstalls: Install Item Reporting Server has a Preprocessing delegate of RunXamlPreProcessor.  Launching it now.
    [16:30:02]:    Always:    :Determining actions to be run.
    [16:30:02]:    Always:    :Done validating action list; now running individual actions.
    [16:30:02]:    Always:    :Current Action: RollbackReportingPreprocessor
    [16:30:02]:    Always:    :Preparing to start OM Reporting installation
    [16:30:02]:    Debug:    :isProductInstalled: product with {C92727BE-BD12-4140-96A6-276BA4F60AC1} product code is installed on this machine
    [16:30:02]:    Debug:    :GetServerInstallState: OpsMgr Server is installed on this machine
    [16:30:02]:    Debug:    :isProductInstalled: product with {041C3416-87CE-4B02-918E-6FDC95F241D3} product code is installed on this machine
    [16:30:02]:    Debug:    :GetUserInterfaceInstallState: OpsMgr UI is installed on this machine
    [16:30:02]:    Debug:    :isProductInstalled: product with {B9853D74-E2A7-446C-851D-5B5374671D0B} product code is installed on this machine
    [16:30:02]:    Debug:    :GetWebConsoleInstallState: OpsMgr Web Console is installed on this machine
    [16:30:02]:    Debug:    :Adding Product Code for uninstall or repair: {D6E655E7-6318-4C50-B184-55E70DB179C1}
    [16:30:02]:    Info:    :RollbackReportingPreprocessor completed.
    [16:30:02]:    Always:    :Current Action: UninstallReportingPreprocessor
    [16:30:02]:    Info:    :UninstallReportingPreprocessor completed.
    [16:30:02]:    Always:    :Current Action: InstallReportingPreprocessor
    [16:30:02]:    Info:    :InstallReportingPreprocessor completed.
    [16:30:02]:    Always:    :Current Action: UpgradeReportingPreprocessor
    [16:30:02]:    Info:    :UpgradeReportingPreprocessor completed.
    [16:30:02]:    Always:    :Current Action: RepairReportingPreprocessor
    [16:30:02]:    Info:    :RepairReportingPreprocessor completed.
    [16:30:02]:    Info:    :SetProgressScreen: Init MSI Install progress.
    [16:30:02]:    Debug:    :LaunchMsi: Msi mutex is not in use.
    [16:30:02]:    Always:    :LaunchMsi: Launching D:\Software\SCOM 2012 R2 - Setup (Extracted)\Setup\AMD64\Reporting\OMReporting.msi with arguments:  OM_INSTALLDIR="C:\Program Files\Microsoft System Center 2012 R2\Operations
    Manager" MU_SETTING=0 SEND_CEIP_REPORTS=0 SRS_INSTANCE_NAME=MSSQLSERVER SRSCONFIGFILE="C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rssrvpolicy.config"  REPORTINGFOLDER=/ SRSBINARYFOLDER="C:\Program
    Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin" REPORT_SERVER_FULL_HTTP_PATH=http://10.200.37.88:8080/ReportServer MGSERVER=vm-scom01.damanhealth.ae OMREPORTINGDBNAME=OperationsManager2012R2DW OM_DB_SERVER=sql-scom SRS_SERVER=VM-SCOM01
    SRS_SERVER_VERSION=11.1.3000.0
    [16:30:02]:    Debug:    :LaunchMsi: Turning off the internal UI for D:\Software\SCOM 2012 R2 - Setup (Extracted)\Setup\AMD64\Reporting\OMReporting.msi.
    [16:30:02]:    Debug:    :LaunchMSI:  Enable logging for the MSI at C:\Users\scom.admin\AppData\Local\SCOM\Logs\OMReporting.log.
    [16:30:02]:    Debug:    :LaunchMsi: MSI D:\Software\SCOM 2012 R2 - Setup (Extracted)\Setup\AMD64\Reporting\OMReporting.msi is not in silent mode.  Setting the external UI.
    [16:30:02]:    Always:    :LaunchMsi: Uninstalling using product code {D6E655E7-6318-4C50-B184-55E70DB179C1}
    [16:30:07]:    Always:    :MsiConfigureProductEx finished for {D6E655E7-6318-4C50-B184-55E70DB179C1}.
    [16:30:07]:    Always:    :LaunchMSI: MSI D:\Software\SCOM 2012 R2 - Setup (Extracted)\Setup\AMD64\Reporting\OMReporting.msi succeeded.
    [16:30:07]:    Always:    :ProcessInstalls: Install Item Reporting Server was successful.  We will launch the post process delegate.
    [16:30:07]:    Always:    :Determining actions to be run.
    [16:30:07]:    Always:    :Done validating action list; now running individual actions.
    [16:30:07]:    Always:    :Current Action: Rollback
    [16:30:07]:    Info:    :Rollback completed.
    [16:30:07]:    Always:    :Current Action: ConfigureReportingForInstall
    [16:30:07]:    Info:    :ConfigureReportingForInstall completed.
    [16:30:07]:    Always:    :Current Action: ConfigureReportingForUpgrade
    [16:30:07]:    Info:    :ConfigureReportingForUpgrade completed.
    [16:30:07]:    Info:    :SetProgressScreen: FinishMinorStep.
    [16:30:07]:    Debug:    :Attempted to add a warning icon to item OMREPORTING but since this was an NonVitalFailure case, we added an Error icon instead.
    [16:30:07]:    Always:    :****************************************************************
    [16:30:07]:    Always:    :****Ended*RollBack**********************************************
    [16:30:07]:    Always:    :****************************************************************
    [16:30:07]:    Always:    :Entering Page: FinishPage
    After this the reporting instance become corrupted.
    If any of you faced such issue before, kindly provide valueable feedback and suggestions.
    Thanks.
    J.A

    Hi There,
    Also the Account name and password have to be entered below for mappings:
    Data Warehouse Action Account - is for the Data writer account.
    Data Warehouse Report Deployment Account - is for the Data reader account
    The one which is blacked out in the screenshot will be the main SCOM Action account.
    So re enter the passwords carefully and accordingly and check and let me know.
    Gautam.75801

  • SQL Server Reporting services. failed to establish connection with project server. verify the url is correct.

    Dear All,
    I'm working on reporting of Project Server 2010, while configuring SQL SERVER REPORTING SERVICES faced issue after two complete days of troubleshooting along with this gone through plenty of forums, unable to figure out any solution. So finally posting on
    technet in order to find solution.
    ISSUE/PROBLEM:
    At initial configured the SQL REPORTING CONFIGURATION to sharepoint integrated database (SQL SERVER is installed on seperate machine), change the service to Domain Account and also installed sharepoint add in on server story was fine at this point. Furthur
    moving to SHAREPOINT ADMIN console and while configuring the Sharepoint Integrated Reporting continuously facing this error:
    Failed to establish connection with report server. . . . (Snapshot is attached for your further reference).
    My point of concern is that whenerver i try to open the REPORT SERVER URL on project server machine it prompts me to enter username and password but whenever i insert the domain credentails it didnt accept though it can be accesible by using the credentials
    of Local Admin of sql server machine. So i wana come to know whether its permission issue if yes then where i should mention the domain credentials.? 
    REGARDS DANISH DANIE

    Dear Paul,
    I am able to open the URL (http://psdb/ReportServer )using
    domian credential and page open with these contents
    Reporting Services Error
    The configuration parameter SharePointIntegrated is set to True but Share Point Object Model cannot be loaded
    Second,
    Configured the SPN on domain controller , performed the steps required to change the AUTHENTICATION in rsreportserver.config
    file also done the registry settings to disable the loop back settings.
    Same error still ! .... what should i do now ??? 
    REGARDS DANISH DANIE

  • Reporting services keep failing on SCCM 2012 SP1

    I have SCCM 2012 SP1 install with SSRS 2012 install on same server 2008 R2 server.
    Reporting services keep failing with the following message when trying to START the service from the Reporting Services Configuration Manager Console
    System.ServiceProcess.TimeoutException: Time out has expired and the operation has not been completed.
       at System.ServiceProcess.ServiceController.WaitForStatus(ServiceControllerStatus desiredStatus, TimeSpan timeout)
       at ReportServicesConfigUI.Panels.ServerInformationPanel.StartStopServiceTask(Boolean start)
    Thx,
    Joe
    Thx, Joe

    Good advice Garth, but I have opened over 5 cases to try to resolve this and several other issues with my troublesome SCOM 2012 SP1 upgrade. That is why I am also sending it to the community in hope they can provide assistance.
    CSS will only work on one specific issue and in most cases these are targeted bandaid fixes that DO NOT address the underlying or related issues. I a left to opening many tickets and still floundering with a unreliable product.
    It seems to only be with System Center. All other products by Microsoft seem to be reliable and predicable and are easily supported using break fix support model of the current MS teams.
    It is SQL (SSRS) that controls subscriptions not CM12. CM12 only leverages the APIs provided by SQL (SSRS).
    I hate to say this but Why do you think this problem has anything to do with CM12?
    If CSS tell you to re-create the subscription and the problem re-occurs then I would re-open the ticket and tell them that the problem is NOT fixed and to continue working on it.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

Maybe you are looking for