Upgrade RA(Reporting & Ananlysis) 9.3.1 to 9.3.3

Hi all,
I am facing issue while running patch.bat , which initializes SP installer utility for upgrading Hyperion Reporting and Analysis 9.3.1 to 9.3.3
C:\Hyperion\9.3.3.0.0.158_win32\SP_Installer>patch.bat
Setting JAVA_HOME...
JRE UPDATE
        1 dir(s) moved.
Buildfile: build.xml
init:
     [echo] Starting System9 patcher...
     [echo] ########################### START PATCH PROCESS ####################
     [echo] Started: 12-November-2012 02:02 PM
     [echo] BI+ home = "C:\Hyperion\BIPlus"
     [echo] Repository root = "C:\Hyperion\BIPlus\data\RM1_rhsql"
     [echo] OS type = win32
BUILD FAILED
C:\Hyperion\9.3.3.0.0.158_win32\SP_Installer\build.xml:170: Could not retrieve i
nstalled version.
Total time: 0 seconds
Error: JRE update failed, attempting to restore the original version
        1 dir(s) moved.
Running installer
     [echo] Starting System9 patcher...
     [echo] ########################### START PATCH PROCESS ####################
     [echo] Started: 12-November-2012 02:02 PM
     [echo] BI+ home = "C:\Hyperion\BIPlus"
     [echo] Repository root = "C:\Hyperion\BIPlus\data\RM1_rhsql"
     [echo] OS type = win32
BUILD FAILED
C:\Hyperion\9.3.3.0.0.158_win32\SP_Installer\build.xml:170: Could not retrieve i
nstalled version.
Total time: 0 seconds
Buildfile: build.xml Probably the error says it could not identify RA version that is there installed in system.
What could be the possible issues for this so that I can resolve the error & patch.bat will run fine.
Note : I have properly set the BIPLUS_HOME & REPOSITORY_ROOT variables in patch.bat file.
Thanks in advance,
Santy.

Remove the quotes for BI+ and RM location.
From
BI+ home = "C:\Hyperion\BIPlus"
to
BI+ home = C:\Hyperion\BIPlus

Similar Messages

  • How to upgrade Crystal report to 10.5.3700

    Hi All,
    I have standalone Crystal report 10 and VS2008 Professional 2008 SP1 Installed.
    the version number for crystal report shown for Crystal report 10 with SP6 is 10.0.1.2522
    the version number for VS2008 built in crystal report is 10.5.1943.
    I have a project that crystal report is designed by 10.5.3700 so that when I try to open the rpt file .
    I get an error says I some feature will be disabled becase the rpt file is designed by late version.
    How Can I upgrade both the buildin part and standalone part of report design to 10.5.3700?

    try opening the rpt file in the visual studio and saving it again. it should be able to upgrade the reports to the newer version.
    for upgrading the project to use the 10.5 references / dlls you will need to remove the 10.0 references from the project and add the 10.5 ones.

  • Upgrading the report version from Crystal Reports 10 to Crystal Reports 11 without REDESIGN

    Post Author: Chakradhar
    CA Forum: Upgrade to XI 3.0
    HI All, Please provide a solution for this.. Is there any way to upgrade the version of a report without redesigning the report? If we upgrade the report without redesign, dont we lose the special features of the new version? Actually i want to the change the report version from Crystal Reports 10 to Crystal Reports 11. Thanks..

    Post Author: rodneyaz
    CA Forum: .NET
    I'm having the same issue.  Worked fine for me in XI, but stopped working when I upgraded XI to XI R2.
    Please post a follow-up if you get this resolved!  Thanks!
    RodneyAZ

  • Upgrading a Report from Crystal Reports 10 to Crystal Reports 11

    Post Author: Chakradhar
    CA Forum: Upgrade to XI 3.0
    HI All,
    Please provide a solution for this..
    Is there any way to change the version of a report without redesigning the report?
    If we upgrade the report without redisign, dont we lose the special features of the new version.
    Actually i want to the change from Crystal Reports 10 to Crystal Reports 11.

    Hi Chakradhar,
    You can open an older version of the report in a new version of designer and just saving it again will automatically convert the version to the new version. To utilized new features you must modify the report and add the new features.
    Cheers,
    Muhammad

  • Upgrading from Report 6i to 9i

    I am considering upgrading to Report 9i. What do I need to take into consideration if I want to consider upgrading. Will my current 9iAS be able to host reports produce with Reports 9i and will .rpt files produced with 6i be compatible with 9i?

    You'll be able to open up rdf files produced in 6i with reports 9i. Furthermore, you should be able to open up 9i editted reports in 6i, as long as you don't use any new 9i specific functionality.
    Hope this helps,
    Danny

  • Upgrading Crystal Reports XI Release 2 to CR 2008: Where is ReportDocument

    I am attempting to upgrade our .NET Crystal Reports code from Crystal Reports XI Release 2 on Visual Studio 2005 SP1 to Crystal Reports 2008 on the same compiler.  We use the ReportDocument interface and I can't seem to find it in the new Crystal Reports 4.0 managed directory.  Here's the top of the .header file that worked in the old environment:
    #using <CrystalDecisions.Shared.dll>
    #using <CrystalDecisions.CrystalReports.Engine.dll>
    #using <CrystalDecisions.Enterprise.InfoStore.dll>
    using namespace CrystalDecisions::Shared;
    using namespace CrystalDecisions::CrystalReports::Engine;
    With that code in place, I get compiler errors indicating that the packages can't be found:
    c:\dev\sources\videoview_6_6\video\nextlink\reportfaxservice\NReportFaxServiceImpl.h(13) : fatal error C1107: could not find assembly 'CrystalDecisions.Shared.dll': please specify the assembly search path using /AI or by setting the LIBPATH
    environment variable
    If I comment out the lines as follows and add in the ReportDefModel (the only dll that appears to have a ReportDocument symbol):
    // #using <CrystalDecisions.Shared.dll>
    // #using <CrystalDecisions.CrystalReports.Engine.dll>
    #using <CrystalDecisions.Enterprise.InfoStore.dll>
    #using <CrystalDecisions.ReportAppServer.ReportDefModel.dll>
    // using namespace CrystalDecisions::Shared;
    // using namespace CrystalDecisions::CrystalReports::Engine;
    using namespace CrystalDecisions::ReportAppServer::ReportDefModel;
    Then, I get compiler errors like this:
    NReportFaxServiceImpl.cpp(306) : error C2039: 'Close' : is not a member of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
            c:\dev\businessobjects\common\4.0\managed\crystaldecisions.reportappserver.reportdefmodel.dll : see declaration of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
    NReportFaxServiceImpl.cpp(941) : error C2039: 'Load' : is not a member of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
            c:\dev\businessobjects\common\4.0\managed\crystaldecisions.reportappserver.reportdefmodel.dll : see declaration of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
    NReportFaxServiceImpl.cpp(950) : error C2039: 'SetParameterValue' : is not a member of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
            c:\dev\businessobjects\common\4.0\managed\crystaldecisions.reportappserver.reportdefmodel.dll : see declaration of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
    NReportFaxServiceImpl.cpp(974) : error C2039: 'ExportToDisk' : is not a member of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
            c:\dev\businessobjects\common\4.0\managed\crystaldecisions.reportappserver.reportdefmodel.dll : see declaration of 'CrystalDecisions::ReportAppServer::ReportDefModel::ReportDocument'
    Here's line 306 of that source file, for example:
    NReportFaxServiceImpl::~NReportFaxServiceImpl()
         DESTLOG( LOG_NREPORTSERVER, "NReportFaxServiceImpl::~NReportFaxServiceImpl", "[[[]]]" );
         RFaxCloseServerHandle( _hRightFaxServer );
         //  close all the report documents
            IDictionaryEnumerator^ enumReportDocuments = _mapReportDocuments->GetEnumerator();
            while( enumReportDocuments->MoveNext() )
             Object^ reportName = enumReportDocuments->Key;
             ReportDocument^ crReportDocument = dynamic_cast<ReportDocument^>(enumReportDocuments->Value);
    /* line 306 */         crReportDocument->Close();
    Can anyone advise me of the correct #using directive to specify to pull in the ReportDocument object?
    Thanks.

    Okay, we seem to be getting somewhere.  I switched the /AI directive to point to the managed/dotnet2 directory, but then I get the following warning:
    c:\dev\sources\videoview_6_6\video\nextlink\reportfaxservice\NReportFaxServiceImpl.h(15) : fatal error C1107: could not find assembly 'CrystalDecisions.Enterprise.InfoStore.dll': please specify the assembly search path using /AI or by setting the LIBPATH environment variable
    NMAKE : fatal error U1077: 'c:\dev\VisualStudio\VC\bin\cl.EXE' : return code '0x2'
    So, I commented out the following line in the header:
    #using <CrystalDecisions.Enterprise.InfoStore.dll>
    Then, I get the following error when I try to make the project:
    NReportFaxServiceImpl.cpp(982) : error C3624: 'System::Drawing::Printing::PrinterSettings': use of this type requires a reference to assembly 'System.Drawing'
    NMAKE : fatal error U1077: 'c:\dev\VisualStudio\VC\bin\cl.EXE' : return code '0x2'
    Here is line 982:
                        crReportDocument->PrintToPrinter(1, false, 0, 0);  
    So, I'm assuming that maybe I need to provide an assembly search path to both the managed and the managed/dotnet2 directories.  Is that correct?  If so, is order dependent between those two /AI directives.
    Thanks.

  • Help needed in Upgrading 10g reports to OBIEE 11g

    Hi folks,
    We have a set of BI Answer reports which were developed in OBIEE 10g(10.1.3.4.1). We would like to upgrade it to OBIEE 11g. Could anyone please help me out in solving this.
    Thanks in advance.
    Regards,
    Arun

    Hi Arun,
    Please refer this thread -- step by step with screen shots.
    http://www.rittmanmead.com/2011/02/obiee-11g-migrations/
    http://www.rittmanmead.com/2010/08/oracle-bi-ee-11g-upgrading-from-bi-ee-10g-repository-web-catalog/
    Hope this help's
    Thanks,
    Satya
    Edited by: Satya Ranki Reddy on May 10, 2012 5:53 PM

  • Slowwww system since upgrade - EtreCheck report shows

    I have been having issues since I upgraded to OS X Yosemite 10.10.1
    Everything is sooooooo slow - apps stop responding and I have to force quit frequently - Preview doesn't even open at all and I'm having to restart several times throughout the day.  I ran EtreCheck below but really don't know what anything means or what I need to do??  Help please?
    Problem description:
    system extremely slow
    apps either take forever to open, or stop responding and I have to force quit
    preview not working at all
    EtreCheck version: 2.1.6 (109)
    Report generated January 23, 2015 at 1:54:39 PM EST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
        iMac (21.5-inch, Mid 2011) (Technical Specifications)
        iMac - model: iMac12,1
        1 2.5 GHz Intel Core i5 CPU: 4-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1333 MHz ok
            BANK 0/DIMM1
                empty empty empty empty
            BANK 1/DIMM1
                empty empty empty empty
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        AMD Radeon HD 6750M - VRAM: 512 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.1 (14B25) - Time since boot: 22:44:8
    Disk Information: ℹ️
        WDC WD5000AAKS-402AA0 disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 499.25 GB (43.67 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        OPTIARC DVD RW AD-5690H disk2 : (183.6 MB)
            disk2s1 (disk2s1) <not mounted> : 160 MB
            disk2s1s1 (disk2s1s1) <not mounted> : 18 KB
            EPSON (disk2s1s2) /Volumes/EPSON : 604 KB (0 B free)
        HGST HTS721010A9E630 disk1 : (1 TB)
            EFI (disk1s1) <not mounted> : 210 MB
            G-DRIVE mobile with Thunderbolt (disk1s2) /Volumes/G-DRIVE mobile with Thunderbolt : 999.86 GB (373.52 GB free)
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Internal Memory Card Reader
        Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
            G-Technology G-DRIVE mobile with Thunderbolt
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.wdhelper.plist
        5 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Support]
        [loaded]    com.adobe.AdobeCreativeCloud.plist [Support]
        [loaded]    com.adobe.CS4ServiceManager.plist [Support]
        [running]    com.epson.ecrp.launcher.plist [Support]
        [running]    com.epson.Epson_Low_Ink_Reminder.launcher.plist [Support]
        [loaded]    com.epson.esua.launcher.plist [Support]
        [running]    com.epson.eventmanager.agent.plist [Support]
        [loaded]    com.google.keystone.agent.plist [Support]
        [loaded]    com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Support]
        [loaded]    com.adobe.versioncueCS4.plist [Support]
        [loaded]    com.google.keystone.daemon.plist [Support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Support]
        [loaded]    com.sharpcast.xfsmond.plist [Support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Support]
        [loaded]    com.adobe.ARM.[...].plist [Support]
        [loaded]    com.leadertech.PowerRegister.EPS2.0949866b1ec026eb1f319784d47bf291.plist [Support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        AdobeResourceSynchronizer    Application  (/Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Support/AdobeResourceSynchronizer.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Mail    Application  (/Applications/Mail.app)
        EpsonLowInkReminderAgent    Application  (/Applications/Epson Software/Epson Low Ink Reminder.app/Contents/EpsonLowInkReminderAgent.app)
    Internet Plug-ins: ℹ️
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
        AmazonMP3DownloaderPlugin1017277: Version: AmazonMP3DownloaderPlugin 1.0.17 [Support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Support]
        FlashPlayer-10.6: Version: 16.0.0.287 - SDK 10.6 [Support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Support]
        Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Support]
        Flash Player: Version: 16.0.0.287 - SDK 10.6 [Support]
        QuickTime Plugin: Version: 7.7.3
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Support]
        WebEx64: Version: 1.0 - SDK 10.6 [Support]
    3rd Party Preference Panes: ℹ️
        Adobe Version Cue CS4  [Support]
        Flash Player  [Support]
        Flip4Mac WMV  [Support]
        Java  [Support]
    Time Machine: ℹ️
        Skip System Files: NO
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 499.25 GB Disk used: 455.58 GB
        Destinations:
            G-DRIVE mobile with Thunderbolt [Local]
            Total size: 999.86 GB
            Total number of backups: 40
            Oldest backup: 2014-11-26 22:02:51 +0000
            Last backup: 2015-01-23 18:21:35 +0000
            Size of backup disk: Too small
                Backup size 999.86 GB < (Disk used 455.58 GB X 3)
    Top Processes by CPU: ℹ️
             5%    Finder
             4%    WindowServer
             3%    Mail
             2%    QuickLookSatellite
             0%    hidd
    Top Processes by Memory: ℹ️
        395 MB    firefox
        223 MB    Mail
        168 MB    Finder
        152 MB    Adobe Photoshop CC 2014
        112 MB    mds_stores
    Virtual Memory Information: ℹ️
        34 MB    Free RAM
        1.04 GB    Active RAM
        1.01 GB    Inactive RAM
        887 MB    Wired RAM
        19.20 GB    Page-ins
        1.18 GB    Page-outs
    Diagnostics Information: ℹ️
        Jan 23, 2015, 10:25:49 AM    /Library/Logs/DiagnosticReports/Preview_2015-01-23-102549_[redacted].hang
        Jan 23, 2015, 10:25:03 AM    /Library/Logs/DiagnosticReports/loginwindow_2015-01-23-102503_[redacted].crash
        Jan 23, 2015, 10:25:01 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/plugin-container_2015-01-23-10 2501_[redacted].crash
        Jan 22, 2015, 06:32:50 PM    /Library/Logs/DiagnosticReports/iTunes_2015-01-22-183250_[redacted].cpu_resourc e.diag [Details]
        Jan 22, 2015, 03:13:29 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -01-22-151329_[redacted].crash
        Jan 22, 2015, 03:11:12 PM    Self test - passed
        Jan 22, 2015, 01:57:30 PM    /Library/Logs/DiagnosticReports/Adobe Photoshop CC 2014_2015-01-22-135730_[redacted].cpu_resource.diag [Details]
        Jan 22, 2015, 01:47:38 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-01-22-134738_[reda cted].crash
        Jan 22, 2015, 12:47:18 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -01-22-124718_[redacted].crash
        Jan 22, 2015, 12:36:41 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/plugin-container_2015-01-22-12 3641_[redacted].crash
        Jan 21, 2015, 06:06:28 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/ExManBridgeTalkCmd_2015-01-21- 180628_[redacted].crash
        Jan 21, 2015, 01:42:17 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-01-21-134217_[reda cted].crash

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then try to launch Preview. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.

  • Upgrade summary report or transaction

    Hello,
    We have upgraded our 4.6C to ECC 6.0.
    I would to know if there is any transactions or reports for giving us an analysis of this upgrade.
    For example, we want to know all steps with their durations....
    Thank you for your help.
    Mikee.

    Hi,
    For earlier releases  report RSUPGSUM  was run SE38.
    For ECC6 onward  you have a link 'Upgade Evaluation' in http://<hostname>:4239/ua....
    PS : Make sure you Upgrade UaServer is running.
    Cheers
    Shaji

  • Upgrade Crystal Reports 8 to 2008

    hello,
    do you guys know if there's a tool or a way that guarantees an upgrade path from crystal reports 8 to crystal reports 2008?
    i have a custom who's interested in upgrading like 150 reports.  I was wondering if there are ways or tools to do so and if there are limitations to those tools
    thanks!

    Hi Nabile,
    Please let us know where you are using this reports ?  On Enterprise or on a stand alone system.  If you are using these reports on Enterprise as James Terry said you may have to migrate it to CR Enterprise 9 or 10 and then you have to migrate it to Crystal Reports 2008 Server. 
    If you are using stand alone system then you will have to pen each report in CR 2008 and refresh and save the report.
    There will not be any problem while migrating reports, it will migrate entire report including sub report / formatting / formulas (complex / simple) / images etc without any problem.
    In CR 8  you can add / modify the SQL which is generated by CR through DatabaseShow SQL.  If you have any report with modified SQL then you will have problem.  The modifications will not get carried in CR 2008. Other than this you will not have any problem.
    Thanks,
    Sastry

  • How Do I upgrade Crystal Reports 8.5 to Crystal Report XI with ASP Classic

    I have application in ASP Classic using Crystal Reports 8.5
    I want to upgrade into Crystal Report XI.
    What are the considerations & changes I have to take if I still using ASP Classic environment ?
    I will be grateful if there is a sample ?
    What are the required runtimes files ?

    Lots of great samples here:
    Root Page
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsHome
    Enterprise Samples (including managed and unmanaged ras)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsSDKSampleApplications
    Non-Enterprise Samples
    http://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsSDKSampleApplications
    Exporting Samples (RAS)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples#NETRASSDKSamples-Exporting%2FPrinting
    Thank you
    Don

  • SCCM 2012 R2 upgrade & broken reports

    After upgrading to R2, everything went off w/o a hitch until we tried to run reports (see below for error)
    Weird part is *some* of the admins can run reports just fine (for instance, two separate AD groups that are a part of the Full Administrators within SCCM, one can run, while the others cannot).  We can also do this solution: http://www.netdavidic.com/2013/11/how-to-fix-sccm-2012-r2-reporting.html .
    While this works, it is not a viable solution moving forward.
    Our setup is pretty simple; single site server w/ all services, 2-3 DP's etc.  Server 2012, SQL 2012 SP1.  We upgraded from SCCM 2012 SP1.
    The DefaultValue expression for the report parameter ‘UserTokenSIDs’ contains an error: The user name or password is incorrect.
     (rsRuntimeErrorInExpression)
    Microsoft.Reporting.WinForms.ReportServerException
    The DefaultValue expression for the report parameter ‘UserTokenSIDs’ contains an error: The user name or password is incorrect.
     (rsRuntimeErrorInExpression)
    Stack Trace:
       at Microsoft.Reporting.WinForms.ServerReportSoapProxy.OnSoapException(SoapException e)
       at Microsoft.Reporting.WinForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.ProxyMethodInvocation.Execute[TReturn](RSExecutionConnection connection, ProxyMethod`1 initialMethod, ProxyMethod`1 retryMethod)
       at Microsoft.Reporting.WinForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.LoadReport(String Report, String HistoryID)
       at Microsoft.Reporting.WinForms.ServerReport.EnsureExecutionSession()
       at Microsoft.Reporting.WinForms.ServerReport.SetParameters(IEnumerable`1 parameters)
       at Microsoft.ConfigurationManagement.AdminConsole.SrsReporting.ReportViewerWindowsForms.SetParameterValues_DoWork(Object sender, DoWorkEventArgs e)
    -------------------------------

    Update:
    TL;DR If you're running SQL services under a different context other than Local Service, you'll have problems.
    The ultimate solution was this: http://social.technet.microsoft.com/Forums/en-US/77bad9b6-de0e-42d3-ae9f-e7c9d26b4330/reporting-error-after-upgrading-to-sccm-2012-r2?forum=configmanagergeneral
    However, I'll provide a bit more detail in case anyone else runs into this.
    In our environment, we run all SQL services as a separate account, say domain\CMSQLSERVICE account (so if you looked at the services, you'd see SQL Server, SQL Server Agent & SQL Server Reporting Services all running as CMSQLSERVICE).  We also run
    reporting as another account, say domain\CMSQLREPORTING account (SCCM console, Admin, Site Config, Servers & Sites, Reporting services point).  Placing CMSQLREPORTING account into the Windows Authorization Access Group did not resolve the issue as
    I had thought.  We then placed CMSQLSERVICE account in there & everything worked as intended.
    You'll be able to easily see the errors by looking on the reporting point / server with the SQL database for C:\Users\ACCOUNTRUNNINGSQLSERVICE\AppData\Local\Temp .
    It took procmon to lead me to that location for the ultimate solution.

  • Upgrading a report from a qry file

    Hello
    I'm trying to change a bunch of fairly large and complicated reports from using a query file to using a stored procedure so as i can use them in conjunction with business objects server. At the moment i create the stored procedure on sql server 2000, then add the link to the procedure through database expert and then i have to re configure every field in the report to point to the new fields returned by the procedure. Is there an easier way to do this, Can you use another method to upgrade reports that use qry files to use with business objects server?

    Hello Graham
    Thanks for the reply, I've migrated the query file using the migration wizard and published the report using the publishing wizard. However i now cant view the report because of authentication issues even though i'm using the same credentials as when i migrated and published the report.The database is set as: eor://SERVER_NAME.com.au/AUpb6HgCGK9Ng.dKa.v8.RU I'm assuming this is the CMS database, so this is what i cant log into. Any ideas?

  • Release upgrade: dump report KE30

    Dears,
    after the upgrade release some of the reports of the transaction KE30 dumps. The error message is the following "Syntax error in program RK310011".
    The problem is due to the fact the the flag "unicode check active" is missing.
    The sap document "Unicode conversion guide" suggests to create a customer message under component CO-PA in the case of problems with the generation of programs RK31, RK32, RKE33* and RK34*.
    How can we solve this issue?
    Thanks
    Vittoria

    Hi
    Here custome message means, may be changing the error message into warning message. If it is that case you can do the same with the TCODE :OBMSG
    VVR

  • Upgrade form & reports

    HI
    i have 20 forms & 30 reports developed in 6i developer version, i want to upgrade this forms & reports in to advance version (10g or 11g) in EBS.
    how can i do? & which version is best to upgrade?
    please give me brief knowledge or step by step methods.
    Thanks in Advance
    Rahil

    user11972687 wrote:
    HI
    your correct about EBS but my new question is
    i have separate in house application
    i want to upgrade this forms & reports in house development is not EBS system forms.
    which software need in this?(server software & development software)
    what i need do?
    how can i manege?
    which version is best to upgrade?
    please give me brief knowledge or step by step methods.
    Thanks in Advance
    RahilIn addition to the upgrade doc, there are many docs available on MOS website which should be helpful.
    Master Note: Oracle Fusion Middleware 11g Release 1 (11.1.1) PFRD / IDM Installation Issues [ID 1304633.1]
    Upgrade Planning for Fusion Middleware 11g - FAQ [ID 1073206.1]
    Upgrade Advisor: OracleAS 10g Forms/Reports Services to Oracle Middleware 11g Rel 1 [ID 252.1]
    Understanding How Oracle Middleware 11g Rel 1 / 11g Rel 2 Upgrade Assistant Functionality Can Influence Upgrade Strategy [ID 1084176.1]
    Using the Upgrade Assistant to Upgrade OracleAS 10g Forms / Reports Services to Oracle Fusion Middleware 11g Rel 1 [Video] [ID 1088988.1]
    Forms/Reports 11g R2: How to Upgrade AS 10gR2 or Forms/Reports "Standalone" 11g to 11g R2 [ID 1392340.1]
    How to Upgrade OracleAS 10gR2 Forms/ Reports "Standalone" to Fusion Middleware 11gR1 [ID 853029.1]
    Upgrading an OracleAS 10g Forms / Reports Application - Case Study Using Summit and WebUtil Demo [ID 1086435.1]
    Thanks,
    Hussein

Maybe you are looking for

  • How to access a Plan created in Enterprise Link Design Studio

    I have created a Plan in Design Studio of Enterprise Link and i would like to put it in a report which i am planning to create using BAM active studio. Can some body tell me how to access things created in Enterprise Link from active studio/architect

  • How do I update camera raw plugin on photoshop cs4 for mac?

    I've just reinstalled PS cs4 on a new macbook pro - my camera raw files from a canon 5d mark 2 are not being recognized... I found out that I need to update the camera raw plugin to version 5.2.  I downloaded the plug in and the computer said it succ

  • Can't insert characters from Character Viewer

    I have used Character Viewer in the past. The way it worked was to highlight the character in Character Viewer and then click the "insert" button. I can bring up Character Viewer and see all the characters, but even after highlighting a character, I

  • Import adobe photoshop elements catalog

    I have migrated from PC Windows to iMac. I am wanting to convert my catalog file containing all tags of all images & photos that I used to store on PC. I have used Adobe Photoshop Elements thusfar to build catalogs, but Adobe does not support this fr

  • Forms 6i - ora-012203 tns:unable to connect to the destination

    Hi I have been using Forms 6i for the past 3 years. Today, Form 10 g was installed. I can successfully connect to the database using Forms 10g. When I now use Forms 6i, I get the above error message. I have checked my TNS_ADMIN path and all is correc