FIM Reporting and SCSM Database Query Issue

Hello,
We have been having issues with FIM Reporting, the ETL Process for some reason seems to be failing, we further drilled down and found that there was a SQL Query running on the SCSM database Server for a very long time.
"CREATE PROCEDURE dbo.[p_GroomManagedEntity]  (      @TargetId uniqueidentifier,      @RetentionPeriodInMinutes int,      @GroomingCriteria nvarchar(max),      @BatchSize int  )
 AS  BEGIN      DECLARE @LastErr int;      DECLARE @RowCount int = 1;      DECLARE @TotalRowCount int = 0;      DECLARE @RetentionDateTime DATETIME;      DECLARE @SelectEntitiesToBeGroomedStmt
nvarchar(max);      DECLARE @CoreDeleteTypedEntitiesTable TypedManagedEntityType;      DECLARE @TimeGenerated DATETIME = getutcdate();      DECLARE @Command nvarchar(MAX)      DECLARE @GroomHistoryId
bigint      DECLARE @Comment nvarchar(max);          SET @Command = N'Exec dbo.p_GroomManagedEntity ' + CAST(@TargetId AS nvarchar(40)) + ', ' + CAST(@RetentionPeriodInMinutes  AS nvarchar(10)) +
', ' + CAST(@GroomingCriteria  AS nvarchar(100)) + ', ' + CAST(@BatchSize AS nvarchar(10))         -- Call the grooming history insert sproc       EXEC @LastErr = dbo.p_InternalJobHistoryInsert @Command,
@GroomHistoryId OUT      IF @LastErr <> 0          GOTO Err;        CREATE TABLE #BaseManagedEntitiesToDelete      (          BaseManagedEntityId uniqueidentifier
     );          -- Figure out the retention datetime      SELECT @RetentionDateTime = DATEADD(mi, -@RetentionPeriodInMinutes, getutcdate())        -- Execute the grooming filter statement,
hence populate the table variable, with "BatchSize" many entities.      WHILE (@RowCount > 0)      BEGIN          INSERT #BaseManagedEntitiesToDelete EXEC sp_executesql @GroomingCriteria,
N'@Retention DATETIME,@TargetTypeId uniqueidentifier,@NumOfEntities INT',                   @Retention = @RetentionDateTime, @TargetTypeId = @TargetId, @NumOfEntities = @BatchSize;          
 SELECT @LastErr = @@ERROR, @RowCount = @@ROWCOUNT;          IF @LastErr <> 0              GOTO Err;                    IF (@RowCount >
0)          BEGIN              -- Convert the BMEIds to TMEIds.              INSERT @CoreDeleteTypedEntitiesTable              SELECT
TME.TypedManagedEntityId              FROM #BaseManagedEntitiesToDelete D              JOIN dbo.TypedManagedEntity TME                  ON D.BaseManagedEntityId
= TME.BaseManagedEntityId              WHERE TME.IsDeleted = 0;                                       SELECT @LastErr = @@ERROR;
             IF @LastErr <> 0                  GOTO Err;                                --
Use existing DDP code to delete the instances captured in the temp table.                  EXEC @LastErr = dbo.p_DDPWrapperForGroomManagedEntity @TimeGenerated, @CoreDeleteTypedEntitiesTable;      
       IF @LastErr <> 0                  GOTO Err;                                TRUNCATE TABLE #BaseManagedEntitiesToDelete;
             SELECT @LastErr = @@ERROR;              IF @LastErr <> 0                  GOTO Err;          END
                   SET @TotalRowCount = @TotalRowCount + @RowCount;      END            -- Call the grooming history insert sproc to update status to success
     SET @Comment = N'BaseManagedEntity: ' + CAST(@TotalRowCount AS nvarchar(10))      EXEC @LastErr = dbo.p_InternalJobHistoryUpdate @GroomHistoryId, 1, @Comment      IF @LastErr <> 0      
   GOTO Err;        RETURN 0        Err:        -- Call the grooming history insert sproc to update status to failure.      SET @Comment = N'BaseManagedEntity: ' + CAST(@TotalRowCount
AS nvarchar(10))      EXEC @LastErr = dbo.p_InternalJobHistoryUpdate @GroomHistoryId, 2, @Comment      IF @LastErr <> 0          GOTO Err;        RETURN 1  END"
Can somebody advise on what this query is really about and what is its fuction, we are thinking of killing this query since it has been running for a very long time, will that hamper or cause the database to corrupt.
Rgds,
Abhishek.

Vijay,
Thanks for you reply.
I figure out a related bug:
Bug 12859472: Cannot browse store procedure in case-sensitive MS SQL Database
There are two possible workarounds:
1. Use a database name with capital letters
2. Do not use stored procedures, but access the tables directly.
The notes on the Bug ticket describes that the issue would be scheduled to be fixed in PS7 which is 11.1.1.8.
Cheers!
Leandro.

Similar Messages

  • Report and Layout Import Wizard issue

    Running SAP B1 v8.82 PL04. RDC into the client server.
    I'm getting an issue when importing a report.  I get all the way to clicking the "Finish" button and it never loads to the next screen (telling me if the import was successful or not).  When I go to the location I specified for the report, it appears there but with a different icon and when I click it shows me an error: "No matching records found 'Queries' (OUQR) (ODBC -2028) [Message 131-183]".
    Narrowed down the issue a little:
    - Happens for any report I try to import
    - Happens for both file types (.rpt / .b1p)
    - The wizard works in the other databases on the server
    - Same issue when I try on different computers with different log ins
    There didn't seem to be any major event that triggered the issue.  I was in the middle of importing a few reports, and imported a couple successfully, when all of the sudden the issue occurred.
    You can also refer to the video link I've attached below which is a complete walk-through of the issue.  Any help on this is greatly appreciated, this is really holding me up. Thanks in advance!
    -Andrew
    http://screencast.com/t/g88C39K78Zgs

    Verifique a SAP Note 1532509.
    Solution
    Please run the below query and if it returns results please Go to the PEQ page mentioned below or log a support message via SAP Service
    Marketplace, and attach the results of the query.
    select * from CDPM where ObjectType = 232 and ObjectKey not in (select doccode from rdoc) order by permid
    Select * from USR3 where PermId
    not in (Select distinct Absid from OUPT union Select distinct cast(PermId as nvarchar(50) )from CDPM)
    the solution to this note can be found at:
    http://wiki.sdn.sap.com/wiki/display/PEQ/Can%27t+import+CR+template+into+B1
    By using

  • FIM Reporting and SQL collation

    In our existing FIM 2010 R2 implementation, we used the default collation of SQL 2008 R2, which is SQL_Latin1_General_CP1_CI_AS.
    However, reading some articles, I got the impression that SQL server will need to be installed with Latin1_General_100_CI_AS collation for installing System Center 2012. I also read that FIM Service database will need to be in the same collation
    (i.e. Latin1_General_100_CI_AS). This means we will need to rebuild the SQL server for FIM service.
    However, reading the following article, I get a different impression. As long as the collation across all the SQL servers is the same, we should be good. Also, it is actually recommended to use SQL_Latin1_General_CP1_CI_AS rather than Latin1_General_100_CI_AS.
    In fact, The SCOM data warehouse installer will always install the data warehouse with SQL_Latin1_General_CP1_CI_AS regardless of the SQL Server collation.
    http://blogs.technet.com/b/servicemanager/archive/2012/05/24/clarification-on-sql-server-collation-requirements-for-system-center-2012.aspx
    Can anybody please confirm the requirement?

    Thanks Brian
    I am planning to put ALL FIM roles onto two nodes behind F5. I understand that FIM reporting has to be installed with FIMservice so yes I want to install FIM reporting role onto both FIMService nodes. I understand that I CAN do this from your response (thankyou)
    because "there's a safeguard in place to ensure that only one server processes the reporting jobs at a time if it's enabled on more than one FIM Service server
    Can you explain what or how this safeguard works - specifically which FIMService node will run this and how the other FIMService node (2) will pick up the job if the first FIMService (node 1 )fails - do I have to configure anything ?
    Brian- with respect ; is Tomek's reply incorrect in the context of my configuration - otherwise I would need a standalone FIM Service server (not part of the F5 virtual server) running Reporting with no FIM reporting HA (beyond Hyper-V or other single node
    HA options) ?
    I realllllyyyy appreciate this feedback and discussion as I have found very little w3 or forum information about load balancing and HA for FIM reporting (I don't mean the SCSM or DW components)
    Thanks again
    Nigel

  • A CR XI and VB2005 Database Login issue

    Greetings,<br /><br />I have reviewed prior threads and to no avail. Here is the situation. I have developed two applications. Both use Access 2000 datbases, Visual Basic 2005, and Crystal Reports XI Developer edition.<br /><br />Both applications use the same code. One application works, generating a report and the other pops up the &#39;Database Login&#39; screen.  I am new to the programming and obiviously this stumps the bits and bytes out of me. <br /><br />Here is the code from the NON-working application.<br /><br /><br />Imports System.Configuration<br />Imports System<br />Imports System.ComponentModel<br />Imports CrystalDecisions.CrystalReports.Engine<br />Imports CrystalDecisions.Shared<br /><br />Public Class frm_Report<br />    Private r As ReportDocument<br /><br />    Private Sub Form3_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load<br />        loadreport()<br />    End Sub<br /><br />    Sub loadreport()<br />        r = New ReportDocument<br />        r.Load(glbReportName)<br /><br />        Dim crConnectionInfo As New ConnectionInfo()<br />        With crConnectionInfo<br />            crConnectionInfo.ServerName = glbDatabaseName<br />            crConnectionInfo.ServerName = glbRetirementDatabaseName<br />            crConnectionInfo.ServerName = glbSupportDatabaseName<br />        End With<br /><br />        Dim myTable As CrystalDecisions.CrystalReports.Engine.Table<br />        Dim myLogin As CrystalDecisions.Shared.TableLogOnInfo<br />        For Each myTable In r.Database.Tables<br />            myLogin = myTable.LogOnInfo<br />            myLogin.ConnectionInfo = crConnectionInfo<br />            myTable.ApplyLogOnInfo(myLogin)<br />        Next<br />        CrystalReportViewer1.SelectionFormula = glbSelectionFormula<br /><br />        CrystalReportViewer1.ReportSource = r<br />    End Sub<br />End Class<br /><br /><br />Thanks for any pointers, comments, hints, or anything....

    Please re-post if this is still an issue to the .NET Development - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • List all Published Crystal Reports and the BW Query they are created upon

    Hello All
    I am wanting to create a list of all Crystal Reports files that have been published to BW and report the the Crystal Reports Name and the BW Query (datasource) name.
    At the moment I am opening up each report in crystal and via database expert determining which BW query is used. I have about 120 reports I need to do this for and I would really appreciate if there is an easy way to extract this data.
    Even if I am just provided with table names where this linkage is stored would be great as I can then create the report myself.
    The Format of the report is really simple
    Crystal Report (Doc. Name)................Crystal Report Data Source Name (BW query)
    I hope someone can help.
    Thanks
    Phillip

    hi,
    the information is available in transaction /crystal/rptadmin.
    another option is to use the query tool to ask the system database.
    Ingo

  • Crystal Reports and Access database connection error

    I had this in a different forum with no hits, so I am trying this one.
    A person that I work with has multiple reports set up that pulls from an Access database that is password protected. When we moved everything over to a new computer, those reports now say that it cannot access the fields inside the database. It never pops up with a login screen either, like it does on the old computer. I played around with the ODBC, with no luck, couldn't get anything to work. I have also tryed relinking the database, but I keep getting connection problems. We are on a network, so her settings should have all moved with the new computer. Along with the database and the reports being on the server, so they were never moved. I am thinking it has something to do with a system file.
    I also found this document on this site, but cannot find the download it mentions, sounds similar to my problem.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/208b8fe5-681e-2b10-d2bb-b201f266d0ab
    Does anybody know how to fix this without the utility mentioned in the above link, or know where I can get the utility??
    We are using Access 2007 and Crystal Reports 7.  The database is not save as an Access 2007 database, but a regular mdb.
    Please Help!

    Post Author: ejthunder
    CA Forum: Crystal Reports
    Hello Chris,
    Crystal Reports does not store the database password with the RPT file.  This is by design (Crystal is not a database security product).  This is true of all versions of Crystal Reports.
    If your users need to see fresh data when opening the reports then they will have to log in by providing at least the password.
    You can send reports with Saved Data that won't try to hit the database, but the data won't refresh either.  To save data with the report go to the File menu and click next to Save Data with Report.  Refresh the report and then save it.  The report will now have saved data and won't try to hit the database when opened.  If the user hits the refresh button then they will get prompted to log into the database.
    I hope this helps.
    EJ

  • Re: Crystal Report and SAP BW Query with Variable

    Crystal Report 2008 V1 SP3 and SAP Integration Kits 3.1 SP3 installed on my client machine.
    I can open SAP BW Query in Crystal Report. However, in the Field Explorer >Database Fields, I dont see to be able to expan the Query and see it Key Figure/Characteristic.
    I noticed this happen only if we have Variable defined in the Charactics.
    If the characteristic has no variable, then I can expand the Query under Database Fields.
    Do you have this problem?

    Yes, once I have imported the new SAP Integration Kits XI 3.1 SP3 transports into BW system, I can now expand the it.
    I can now see the Variable in Crystal Report.
    Thanks!

  • Crystal Report and SAP BW Query

    I have developed the Crsytal Report (ontop of SAP BW Query), and save this report into my local c:\ drive.
    Now I made some changes to the BW Query (this is the Datasource of my Crystal Report) to include new Key Figure and Characteristic via BEx Query Designer.
    Now when I open my existing Crystal Report, I dont get see the new key Figure/Characteristics that I just included to the BEx Query. Why? Is this bug? How can we update the Crystal Report automatically when the underline BEx Query has changed?

    Hi,
    We have similar case when the underline BEx query has been changed.
    In our case, the Variable value is not appear in CR.
    Example, a Variable has been created and assigned to the Cost Centre.
    In BEx Query, I can see the value of the Cost Centre and can therefore select the value from the Variable field.
    In CR, I have the Cost Centre prompt as parameters, but there is no value for me to select.
    Database Verify has been performed.
    Anyone come across this?

  • Schedule report and download generated PDF issue

    Hi,
    I am trying to run a rpt file, which is stored on CR server, on the CR server 2008, the generated pdf to be stored in inbox, and the pdf will be retrieved using IPDF class and inputstream. Ideally, whole process is running within one session using enterprise SDK. <br>
    I am be able to run the rpt file by using schedule mechanism. Setting scheduleInfo to run it RightNow. I can access the generated PDF right after my program schedule(run) the rpt file without any problem. The PDF exists in both inbox and instance manager (as child of rpt file). <br>
    Here comes the problem. When my program uses enterprise SDK to query file list in inbox immediately after schedule() call, the query returns no files. <br>
    Furthermore, I then tried to inspect the instance of generated PDF file by query all PDF instances. I tried to print out the instance name by using <br>
                   IPDF content = (IPDF)instanceObject;<br>
                   System.out.println(((IFile)content.getFiles().get(0)).getName());<br>
    , and realized that the generated file name is actually the rpt file!! which is really confusing (as I explicitly set query to be SI_KIND = 'Pdf'). <br>
    To conclude my issue, after I schedule the rpt file to run now, I am able to view the generated pdf on CMC. The pdf (as it displayed in CMC) stored in inbox, and as an instance of the rpt file. However, I cannot retrieve PDF from enterprise SDK. I can retrieve the content of instance, but it's clearly not the pdf file I expected. <br>
    I also tried to logoff session after I schedule the rpt, and re-login to retrieve pdf, and tried to explicitly commit() after schedule(). Both methods doesn't solve the problem. Any suggestion on what might happens or something I might have missing? Thanks in advance.<br>
    p.s. I think it may be helpful if I give out the whole process flow as follow:<br>
    1. log on the CR server, obtain session<br>
    2. retrieve the rpt file.<br>
    3. set schedule time (right now), format(pdf), destination(inbox), and parameter<br>
    4. make schedule call: schedule(IInfoObjects).<br>
    first option:<br>
    5. query file list in inbox (SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND = 'Inbox')<br>
    6. retrieve file from file list and store the data into arraylist by using file's inputstream IPDF.getInputstream<br>
    7 close all resources<br>
    Outcome: no file in inbox (I can view pdf on CMC though)<br>
    second option:<br>
    5. query pdf instances belong to rpt file (FROM CI_INFOOBJECTS WHERE SI_PARENTID ="+ <br>report.getID() +" and SI_INSTANCE=1 and SI_KIND='Pdf'")<br>
    6. retrieve file from instance list and store data into arraylist by using file's inputstream.<br>
    7 close all resources<br>
    Outcome: the instance is actually the rpt file rather than generated pdf. <br>
    mlie<br>
    Edited by: mlie on May 11, 2009 11:16 AM

    Hi Praveen, <br>
    Thanks for reply. <br>
    It's my bad not showing all of my code. The whole piece of code is <br>
         String inboxQuery = "SELECT * FROM CI_INFOOBJECTS WHERE SI_KIND = 'Inbox'";<br>
              IInfoObjects ceInboxs = getDocument(ceInfoStore,inboxQuery);<br>
              IInfoObject ceInbox = (IInfoObject)ceInboxs.get(0);<br>
              <br>
              inboxQuery = "SELECT * FROM CI_INFOOBJECTS WHERE SI_PARENTID = " + ceInbox.getID();<br>
              <br>
              ceInboxs = (IInfoObjects)ceInfoStore.query(inboxQuery);<br>
    I believe I don't need to include owner name because SDK will determine which inbox to retrieve automatically according to the user who login to CR server. <br>
    However, to try all the possibility, I still appended the user id at the end of query, and still no luck. <br>
    I am wondering if its got something to do with timing. Please advice. Thank you <br>
    mlie

  • Cannot get report to run, dataTemplate query issues

    Report was running fine until I turned one of my data modules from a SQL Query to a Data Template. I've narrowed it down to the query causing the error(Index: 0, Size: 0????), any ideas what specifically is causing the error? Perhaps the union or decode?
    <dataTemplate name="imapctMatrix" dataSourceRef="asetdev" defaultPackage="pkg_ea_engine">
    <parameters>
    <parameter name="EAD_ID" dataType="number" defaultValue="0"/>
    </parameters>
    <dataQuery>
    <sqlstatement name="Q1"><![CDATA[
    SELECT EPJ_ID, env_name ||' - '||LAYER_NAME layer_name,
    DECODE(MAX(decode(color,'WHITE', 0,'RED',99,'YELLOW',98,'GREEN',97)),0,'NONE',99,'HIGH',98,'MODERATE',97,'LOW') COLOR,
    ENV_NAME,
    ALT_NAME,
    DECODE(ALT_NAME,'PROPOSED ACTION',0,'NO ACTION',99,ALT_NUM)
    FROM temp_ea_impact_rep
    WHERE (EPJ_ID = (select EPJ_ID from EAD_DESCRIPTIVE_INFO WHERE EAD_ID = :EAD_ID))
    GROUP BY EPJ_ID,ALT_NAME, ENV_NAME, LAYER_NAME,ALT_NUM
    union
    SELECT distinct EPJ_ID, env_name ||' - '||LAYER_NAME layer_name, 'NONE' COLOR, ENV_NAME, 'NO ACTION',99
    FROM temp_ea_impact_rep
    WHERE (EPJ_ID = (select EPJ_ID from EAD_DESCRIPTIVE_INFO WHERE EAD_ID = :EAD_ID))
    and color <> 'WHITE'
    GROUP BY EPJ_ID, LAYER_NAME, COLOR, ENV_NAME, 'NO ACTION'
    order by 2
    ]]></sqlstatement>
    </dataQuery>
    <dataTrigger name="beforeReport" source="pkg_ea_engine.createeaimpact(:EAD_ID)"/>
    </dataTemplate>

    color <> 'WHITE' was causing the error

  • Hyperion Reporting and Analysis Framework Agent issue

    Hi All,
             Right after have installed and configured all EPM 11.1.2.3 environment on Windows 2008, I had to stop all services and restarted the server for maintenance, after start all EPM services the RA Framework stops after have started and the following message is displayed at Event Viewer.
    "The description for Event ID 0 from source HyS9RaFrameworkAgent_epmsystem1 cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    The Java Virtual Machine has exited with a code of 0, the service is being stopped.
    the message resource is present but the message is not found in the string/message table"
            What does it means ?  Someone could help me on that ?
    Thanks in advance

    Looking into log file agent.log at C:\Oracle\Middleware\user_projects\epmsystem1\diagnostics\logs\ReportingAnalysis, I've found the following :
    [2013-08-29T11:27:25.166-03:00] [EPMAGENT] [ERROR] [] [oracle.EPMAGENT.com.oracle.cmc.Agent] [tid: 10] [ecid: 0000K3AU9r0Fw0G6yzuXMG1I7pd5000000,0] Error while starting agent[[
    com.oracle.cmc.agent.AgentException: Can't create RMI registry & bind to RMI Registry
      at com.oracle.cmc.Agent.doRmiRegistry(Agent.java:620)
      at com.oracle.cmc.Agent.start(Agent.java:152)
      at com.oracle.cmc.Agent.main(Agent.java:936)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at com.brio.one.common.utils.Loader.run(Unknown Source)
      at com.brio.one.common.utils.Loader.main(Unknown Source)
    Caused by: java.rmi.server.ExportException: Port already in use: 6861; nested exception is:
      java.net.BindException: Address already in use: JVM_Bind
      at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:310)
      at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:218)
      at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:393)
      at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:129)
      at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:188)
      at sun.rmi.registry.RegistryImpl.setup(RegistryImpl.java:100)
      at sun.rmi.registry.RegistryImpl.<init>(RegistryImpl.java:86)
      at java.rmi.registry.LocateRegistry.createRegistry(LocateRegistry.java:186)
      at com.oracle.cmc.util.RmiUtil.createRegistryAndBindAgent(RmiUtil.java:108)
      at com.oracle.cmc.Agent.doRmiRegistry(Agent.java:612)
      ... 8 more
    Caused by: java.net.BindException: Address already in use: JVM_Bind
      at java.net.PlainSocketImpl.socketBind(Native Method)
      at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:383)
      at java.net.ServerSocket.bind(ServerSocket.java:328)
      at java.net.ServerSocket.<init>(ServerSocket.java:194)
      at java.net.ServerSocket.<init>(ServerSocket.java:106)
      at sun.rmi.transport.proxy.RMIDirectSocketFactory.createServerSocket(RMIDirectSocketFactory.java:27)
      at sun.rmi.transport.proxy.RMIMasterSocketFactory.createServerSocket(RMIMasterSocketFactory.java:333)
      at sun.rmi.transport.tcp.TCPEndpoint.newServerSocket(TCPEndpoint.java:649)
      at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:299)
      ... 17 more
       But the RMI servics starts without problem....

  • Running a reports against different databases

    I have written a report that uses a ref cur in a database package to derive the main query. I've compiled the report and it runs fine.
    The problem is when I try to run it against a database other than the one it was compiled against (i.e. compile against DEV DB, test against TEST DB, finally migrate to PROD DB). Each of these databases are identical in terms of their objects but if I run the report against an environment it wasn't compiled against I get the following messages:
    REP-1437 Run time error in the PL/SQL development environment (DE).
    PDE-PSD001 Could not resolve reference to <Unknown Program Unit> while loading <unknown> <unknown>
    I noticed initially that the report and the database package had the same name, I though this may be confusing things so I renamed the stored proc but I still get the same results.
    I can get around the problem by either re-compiling it against each database or by getting the form to call the .rdf (rather than the .rep) so it is recompiled as and when required but this doesn't seem right.
    Anyone have any ideas?

    Hi Steve,
    You can try using the RECURSIVE_LOAD parameter. By default, it is set to YES. If you are running with the .rep, set it to NO on your command line. What this means, is that it will not try to recompile the plsql in your report.
    Hope that helps,
    Toby

  • FIM reporting -- Run FIMPostInstallScirptsForDatawarehouse.ps1 script

     We have 3 servers and
    1. Server 1 -- FIM Service
    2. Server 2 -- Service Manager server + Sql Server 2008 r2 with (ServiceManager DB on instance 1 +DWStagingAndConfig, DWRepository, and DWDataMart DB on instance 2)
    3. Server 3 -- Data warehouse server
    We have installed FIM reporting and MPSyncJob is successfully over. Next step is to run FIMPostInstallScirptsForDatawarehouse.ps1 on Data warehouse server but The FIM Reporting post installation scripts required to execute
    .\FIMPostInstallScriptsForDataWarehouse.ps1
    scripts in the Data Warehouse server. However, this script requires access to the "SQLCmd" tools and the "SMCmdletSnapIn" snapins. These two components are both present
    when the SQL server resides in the Data Warehouse server. In this scenario that condition is not true. In this procedure, we will run the FIM post installation powershell script in the SQL server. We will create a PSSessionConfiguration in the Data Warehouse
    server that will get called from the remote SQL server to execute the "SMCmdletSnapIn".
    To run the script i was following the steps on this link social.technet.microsoft.com/wiki/contents/articles/17916.troubleshooting-fim-install-fim-data-warehouse-support-scripts-on-a-remote-sql-server.aspx
    But in creating PSSession i am getting Access Denied error .
    So is it possible, if i will install SQL server management studio on Data Warehouse server as i will get SQLCmdlets of powershell in Data Warehouse server so i can run  the script directly on Data warehouse server without creating PSSession
    Will it work ??

    You can download just the needed pieces from
    http://www.microsoft.com/en-us/download/details.aspx?id=16978.
    Thanks, Brian
    I think Brian wanted to paste the link without dot at the end ;)
    http://www.microsoft.com/en-us/download/details.aspx?id=16978
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

  • Crystal Reports 2008 and SAP BEX query.  Issue in retrieiving multiple recd

    Hi All,
    I have designed a crystal report which has BEX query as a datasource. The values from this query are placed in page header. Also two subreports are available which get data from an RFC. Main report and sub report are linked by primary key ID.
    (In the bex query one condition is implemented on a key figure)  When I run the BEX query , it retrieves single record. But when I execute the crystal report, execution says 2 records and my details section is getting repeated.
    I am unable to use filter as it is a keyfigure.
    Any suggestions or  help here is highly appreciated.
    Regards,
    Surya

    Hi,
    BEX query retrieves only one record (In the bex query one condition is implemented on a key figure) When I run the BEX query , it retrieves single record). I am puzzled on how the crystal is retrieving two records.
    Actually infocube has 2 records one with status "active" and the other with status "postponed". Some other fields also will vary.
    So, I cannot use this formula to supress.
    Regards,
    Surya.

  • FIM Reporting Re-Installation Issue

    We have recently upgraded the entire FIM Environment from 4.1.3451.0 to 4.1.3510.0
    For FIM Service, I have un-installed Reporting feature, installed the patched successfully, however when trying to re-install Reporting feature back onto the FIM Service Node it throws KB2561430 missing error. I have made sure KB2561430 and all the latest SCSM
    Cumulative updates are in place on SCSM and all the FIM Service Nodes
    I tried to install the Reporting feature using the work around provided by MS, tried to install it using the command line for unattended installation and have made sure the value for EXISTINGDATABASE=1 and other parameters passed in the command are correct.
    The unattended installation goes through fine, however I don't see Reporting feature installed when we go through Add/Remove Programs.
    Can I remove FIM Service completely from the Server and try a clean install instead.
    Has anyone experienced this kind of an issue, Any advice will be highly appreciated!
    Thanks,
    Abhishek.

    Hi,
    Install update 4.1.3461.0. Refer below link, it will resolve this issue.
    http://support.microsoft.com/kb/2870703
    Enayathulla.S
    Why do you propose earlier patch once they patched it with more current version?
    Abhishek,
    You have uninstalled reporting and, during command line patching, you have re-used the same database. The same, so
    without reporting. So behaviour is OK. You should use command line with EXISTINGDATABASE=1 but with SERVICE_MANAGER_SERVER=SCSMSERVER also.
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

Maybe you are looking for

  • Remote Authentication Naming Service Not Found

    Hey everybody, I found this thread: http://swforum.sun.com/jive/thread.jspa?threadID=54004 That thread mentions (or implies) there is something different that must be accomplished when performing remote authentications vs local authentications but ne

  • Music app - album artwork replaced by image of artist

    Music App.....How to stop /prevent the image /photo of the artist being uploaded and presented in the artist view? BTB: What a disaster the s/w 7.0 Music App is from the old App on my s/w 5.0 version!!!

  • Add New Column in ALV Report of Standard SAP ME28.

    Hi anybody, I want add new column in alv report of standard SAP Program ME28 Screen. Add Last PO Price column inside ALV Report ME28 Screen. Can u please anybody tell me how to add new column in ME28 Screen. Thanks S.Muthu.

  • Using a script or VB language to a Numbers spreadsheet

    I Have been working on a very comprehensive, very useful spreadsheet in Numbers This spreadsheet has sub-spreadsheets which Numbers created. I want to be able to use a query, enter a "key word" and find  find the information related to the keyword di

  • Ssl soap disabled - data sync setup

    Setting up data sync. On the gw server (sles11sp2-oes for nss only) I use C1 and set Internal SOAP with ssl enabled. I attempt to connect to the SOAP securely during the Data Sync install (Grpwise connector settings part of install) - it fails. I un-