Strange issues developing reports in SSDT 2012

Hi, I am running into a weird situation since we did an upgrade from BIDS 2008 R2 environment to SSDT 2012. Everything that used to work fine in BIDS 2008 R2 does not seem to work in SSDT 2012. For instance, set default value in parameter 2 depending on
parameter 1 or use of global temporary tables I get "Invalid object name '##temp'." error. We are using SQL Server 2008 R2 database.
Thanks in advance.................
Ione

Hi ione721,
According to your description, you query the tamp table in the dataset, then you have specified the default value for a parameter. When you upgrade the BIDS 2008 R2 to SSDT 2012, it throws the “Invalid object name '##temp'.” error when running the report.
In SQL Server, global temporary tables are visible to any user after they are created, and they are deleted when all users referencing the table disconnect from the instance of SQL Server. If a temporary table is created with a named constraint and the temporary
table is created within the scope of a user-defined transaction, only one user at a time can execute the statement that creates the temp table. So in your scenario, you could query the non-temporary tables or include the temporary table create statement in
the dataset.
If you have any question, please feel free to ask.
Best regards,
Qiuyun Yu
Qiuyun Yu
TechNet Community Support

Similar Messages

  • Strange issue in Report Builder

    Hi All,
    I am facing a strange issue in Report Builder.
    I am having a report which is currently in production. when i am opening that report and just saving it without making any changes, then also the size of the report is reducing from 238 to 204 kb.
    When i am executing this report in production then it is giving me the error "Invalid Body size"
    Please hlep me or else have to ask God to save me.
    Thanks
    Aryan

    Hi Hussien,
    I tried thart solution but it not worked. i put some debug statement in Before Parameter form, after Parameter form, before report triggers. When i am running that report i am getting the debug statement of Before and After Parameter triggers but it is failing somewhere in Before Report Trigger.
    I removed everything from Before Report Trigger and still the result is same "Invalid Body Size".
    Please Hussien give me a some pointer which stage is processed between After Parameter Form trigger and Before Report Trigger.
    Thanks
    Aryan

  • SubReports Issues in SSRS 2005 Reports Upgrade to 2012

    Hi there!
    We are planning to upgrade our SSRS 2005 reports to SSRS 2012. As I heard there will are some upgrade compatibility issues, I read the below MSDN article and found that the Reports that include subreports may fail in upgrade. Below
    is the article.
    Upgrading a Report with Subreports:
    When a report contains subreports,
    one of four possible states can occur during upgrade:
    The main report and all subreports can be successfully upgraded. They are processed by the SQL Server 2012 Reporting Services (SSRS) report processor.
    The main report and all subreports cannot be upgraded. They are processed by the SQL Server 2005 Reporting Services report processor.
    The main report can be upgraded but one or more subreports cannot be upgraded. The main report is processed by the SQL Server 2012 Reporting Services (SSRS) report processor, but the rendered report shows the message "Error: Subreport
    could not be processed" in the location where the subreport that could not be upgraded would appear.
    The main report cannot be upgraded but one or more subreports can be upgraded. The main report is processed by the SQL Server 2012 Reporting Services (SSRS) report processor, but the rendered report shows the message "Error: Subreport
    could not be processed" in the location where the subreport would appear.
    If you see the error "Error: Subreport could not be processed",
    you must change the definition of the main report or the subreport so that the reports can be processed by the same version of the report processor.
    Can some one please tell me what does the above line mean? What does it mean by the phrase
    change the definition of main report? Does it mean I need to set any property in the main report?
    Please help! Thanks in advance.
    Ammy

    Hi Ammy,
    When you open an .rdl file in Report Designer in SQL Server Data Tools (SSDT), if the report was created for a previous namespace, Report Designer automatically creates a backup file and upgrades the report to the current namespace. This is the only way
    you can upgrade a report definition file. A report with subreports must be processed by the same version of the Reporting Services report processor. When upgrading reports to the current version of the report definition schema, the main report and the subreports
    may or may not be updated at the same time. If the version is not compatible between a report and its subreports, the following message is displayed: "Subreport could not be processed."
    If we want to change the definition of the report, we can open an .rdl file in Report Designer in SQL Server Data Tools (SSDT).  Then the namespace of the report will upgrade to the current namespace. For more information about Identify the Report Schema
    Version, please see the following document:
    http://msdn.microsoft.com/en-us/library/cc627465(v=sql.110).aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Forms calling Reports output issue RTF/PDF - strange issue

    Dear All,
    I'm looking for a bit of help with a strange situation calling reports from Forms.
    This problem I'm getting in both 11.1.1 and 11.1.2 of Forms/Reports. Client is WinXP/7 (issue appears on both), Weblogic server is Linux (SLES11 and Red Hat - issue on both)
    So the issue is
    1. calling a report with output as RTF (this works fine and we use OLE2 to open the report in Word)
    2. Wihile in that form call the same report though change the output to be created as PDF in the cache and the report then opens in IE (this too works fine)
    3. Now if we try and do number 1 again (still in the same form) and run the same report again and choose to generate as RTF and open in word, it erroneously generates the report in PDF format but with an .RTF extension on the file.
    Of course most of the time people would not want to do this, but the client has identified this issue and classified it as a bug, so we need to fix it (and it doesn't happen in the Forms6i version it is migrated from).
    I have tried to ensure that the parameter list is correctly deleted and re-created, which appears to be the case. I also tried to generate a new unique parameter list for every run, which made no difference to the problem.
    If I choose to run a completely different report, the problem has reset itself. So the problem exists only when I've chosen the PDF output and then run the same report thereafter as RTF output to a file.
    Code to prepare for the RTF option is:
    Add_Parameter(pl_id,'destype',TEXT_PARAMETER,'FILE');
    Add_Parameter(pl_id,'desname',TEXT_PARAMETER,l_temp_env||'/'|| p_report || '.rtf');
    l_report_desname := l_temp_env||'/'|| p_report || '.rtf';
    Add_Parameter(pl_id,'DESFORMAT',TEXT_PARAMETER,'RTF');
    Add_Parameter(pl_id,'REPORT_DESFORMAT',TEXT_PARAMETER,'RTF');
    Add_Parameter(pl_id,'mode',TEXT_PARAMETER,'BITMAP');
    l_report := p_report;
    Code used to prepare for PDF option is:
    Add_Parameter(pl_id,'destype',TEXT_PARAMETER,'CACHE');
    Add_Parameter(pl_id,'desname',TEXT_PARAMETER,'');
    Add_Parameter(pl_id,'desformat',TEXT_PARAMETER,'PDF');
    l_report := p_report;
    Any ideas gratefully received.
    cheers
    Tony

    So I delete the paramlist correctly, then the code is:
    IF (p_display_method = 'W')
    THEN
    --WORD Format
         --delete file on client
         Delete_File('c:\temp'||'\'|| p_report || '.rtf');
         --delete file on app server
         host('rm '||l_temp_env||'/'|| p_report || '.rtf');
         Add_Parameter(pl_id,'REPORT_DESTYPE',TEXT_PARAMETER,'FILE');
         Add_Parameter(pl_id,'DESTYPE',TEXT_PARAMETER,'FILE');
         Add_Parameter(pl_id,'DESNAME',TEXT_PARAMETER,l_temp_env||'/'|| p_report || '.rtf');
         l_report_desname := l_temp_env||'/'|| p_report || '.rtf';
         Add_Parameter(pl_id,'DESFORMAT',TEXT_PARAMETER,'RTF');
         Add_Parameter(pl_id,'REPORT_DESFORMAT',TEXT_PARAMETER,'RTF');     
         Add_Parameter(pl_id,'MODE',TEXT_PARAMETER,'BITMAP');
         Add_Parameter(pl_id,'printjob',TEXT_PARAMETER,'no');
         l_report := p_report;
    ELSIF (p_display_method = 'E')
    THEN
    --EXCEL format
         --delete file on client
         Delete_File('c:\temp'||'\'|| p_report || '.csv');
         Delete_File('c:\temp'||'\'|| p_report || '.xls');
         --delete file on app server
         host('rm '||l_temp_env||'/'|| p_report || '.csv');
         Delete_File(l_temp_env||'\'|| p_report || '.cvs');
         Delete_File(l_temp_env||'\'|| p_report || '.xls');
         Add_Parameter(pl_id,'destype',TEXT_PARAMETER,'FILE');
         Add_Parameter(pl_id,'desname',TEXT_PARAMETER,l_temp_env||'/'|| p_report || '.csv');
         Add_Parameter(pl_id,'desformat',TEXT_PARAMETER,'csv.prt');
         Add_Parameter(pl_id,'REPORT_DESFORMAT',TEXT_PARAMETER,'csv.prt');
         Add_Parameter(pl_id,'MODE',TEXT_PARAMETER,'character');
         Add_Parameter(pl_id,'printjob',TEXT_PARAMETER,'no');
         l_report := p_report || '_d';
    ELSIF (p_display_method = 'P')
    THEN
    -- PDF Format
         Add_Parameter(pl_id,'destype',TEXT_PARAMETER,'CACHE');
         Add_Parameter(pl_id,'desname',TEXT_PARAMETER,l_temp_env||'/'|| p_report || '.pdf');
         Add_Parameter(pl_id,'DESFORMAT',TEXT_PARAMETER,'PDF');
         Add_Parameter(pl_id,'REPORT_DESFORMAT',TEXT_PARAMETER,'PDF');     
         l_report := p_report;
    END IF;
    So all of the above works fine when generating a report the first time you enter a form, but if you run a PDF output report then immediately in the same form generate the report again to a non-PDF format, it comes out in incorrectly in PDF format.
    rgds
    Tony
    Edited by: tony.g on Nov 29, 2012 1:37 PM

  • Strange issue with WEBI schedule Report

    Hi All,
    I have a strange issue with schedule WEBI reports, a schedule report runs for Hours , i reschedule it again by deleting the instance and the schedule report never got succeed even after running for hours.
    Any idea???
    regards

    Hi Manoj,
    1. Try to put some filters in the report and then run the report. if it takes less time, then probably your query is fetching very    large data.
    2. MDX query error may be the reason , this error come when a query runs endless, please try running the query 2-3 times, or when load on server is less.
    Hope this will help,
    Anamika.

  • Connecting to existing TFS 2012 repository using SSDT 2012

    I am trying to connect to an existing TFS 2012 repository using SSDT 2012 (Visual Studio 2010 Shell). I already have Visual Studio 2013 Professional Edition installed, but I am still not seeing any options other than "None" for the Plug-In Selection
    dropdown in the Source Control part of the options menu.
    Am I missing something in the SSDT documentation that explains how to do this?

    I have attached the results of pressing the "Copy Info" button in the about section when I open SQL Server Data Tools at the bottom of this response.
    I was able to fix the issue by installing Visual Studio 2010 Team Explorer.
    Microsoft Visual Studio 2010
    Version 10.0.40219.1 SP1Rel
    Microsoft .NET Framework
    Version 4.5.50938 SP1Rel
    Installed Version: IDE Standard
    Microsoft Visual Basic 2010   01011-532-2002361-70265
    Microsoft Visual Basic 2010
    Microsoft Visual C# 2010   01011-532-2002361-70265
    Microsoft Visual C# 2010
    Microsoft Visual Studio 2010 Team Explorer   01011-532-2002361-70265
    Microsoft Visual Studio 2010 Team Explorer
    Microsoft Visual Studio Tools for Applications 3.0   01011-532-2002361-70265
    Microsoft Visual Studio Tools for Applications 3.0
    Microsoft Visual Web Developer 2010   01011-532-2002361-70265
    Microsoft Visual Web Developer 2010
    SQL Server Analysis Services  
    Microsoft SQL Server Analysis Services Designer
    Version 11.0.5058.0
    SQL Server Integration Services  
    Microsoft SQL Server Integration Services Designer
    Version 11.0.5058.0
    SQL Server Reporting Services  
    Microsoft SQL Server Reporting Services Designers
    Version 11.0.5058.0
    Visual Studio 2010 Shell (Integrated) - ENU Service Pack 1 (KB983509)   KB983509
    This service pack is for Visual Studio 2010 Shell (Integrated) - ENU.
    If you later install a more recent service pack, this service pack will be uninstalled automatically.
    For more information, visit http://support.microsoft.com/kb/983509.

  • SSDT 2012 Run64Runtime greyed out

    Why is the Run64Runtime greyed out in SSDT 2012?
    Version info:
    Microsoft Visual Studio 2012 Shell (Integrated)
    Version 11.0.61030.0 Q11REL
    SQL Server Integration Services  
    Microsoft SQL Server Integration Services Designer
    Version 11.0.3369.0
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
     May 14 2014 18:34:29
     Copyright (c) Microsoft Corporation
     Developer Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)

    There was a bug. To resolve you need a proper CU as per http://support.microsoft.com/kb/2881285
    Arthur My Blog
    Thanks... I have requested the hotfix... although a little strange that it still didn't work after installing SP2. Will let you know whether the hotfix worked.

  • Issue in Report output

    Issue in Report output
    I am facing strange issue. I have created a BEx query and Executed in Bex analyser. In this output I can able to see * mark as values instead of KF.
    Anyone can help me in this.

    hi,
    can you use NODIM functionality and see .
    Ravi

  • Font issue between Reports Designer and Report Output

    Hi.
    I've succesfully migrated several reports from 6i to 10g (10.1.2.0.2) with and without parameter form. However, I have the following font issue:
    - When report is run from Reports Designer, font is kept.
    - When report is run from a forms module (through rwserver on the same machine, that is not really from an application server, but using Oracle BC4J or Developer Suite enviroment) the report output is different. In this case a bigger font is displayed and occasional truncation happens for some fields.
    The question is: How can i avoid this difference in font behaviour?. Is it font.ali related?. How come this happen on the same machine(Windows XP)? These reports are to be deployed on Linux, where reasonably, and font machine is expected to happen.
    Font used: Arial (Occidental) 9

    this might be an issue with the printer that is associated also, and the permissions to the printer that you might have..
    login to the application server machine and restart the reports server as an admin..try running the reports via the URL..i have a feeling that this issue might be somethiing to do with the permission(s) to the printer from your AS machine

  • Issue with report Y_DEV_82000038 P & L by period plan.

    Hi,
        It seems we are having an issue with report Y_DEV_82000038. When we are executing this report then in the output for one line item it is showing one value and when we drill down it it is shoiwng double value of what it is showing in the initial screen of output.
    Regards

    Hi,
    The reports with 'Y' or 'Z' are not standard ones. You have to check with the person who developed this report. Ask to your ABAP team to help you.
    Regards,
    Eli

  • Strange issue with RAM upgrade: It works but it doesn't! Please help.

    Hello Everyone,
    I have a very strange issue with my iMac since upgrading my RAM from 4 to 12 gig. When I first installed the new RAM it booted up and ran great. The next time I went to boot the iMac up it swtiched on but didn't get as far as the first white boot up screen. I tried turning it off and on a few times using the power on/off button but still no success. I decided to remove the RAM and reseat it. The computer then booted up again fine. Here's the problem though: when I went to switch my iMac on the next day it wouldn't boot up. Again, I took the RAM out and put it back in and the iMac booted up fine. I've checked the status of the RAM in the system profiler and it reports that everything is OK. So, I'm at a loss. Obviously, I don't want to go through this process every time I want to start up my Mac. Any ideas/solutions would be very gratefully received.
    Many thanks in advance.

    I completely agree with you. It will be one of the 3 issues you outline. The machine was bought brand new and has never given me a problem. It is just the introduction of the new RAM that has started a problem. However, I did just risk a restart and it booted up fine. I don't know if a restart is any different to shutting down and then pressing the on/off button to start the computer. Maybe my last reseating has done the trick or maybe my thinking is flawed because restarting involves a different process to booting up by pressing the on/off button. I don't know.
    In the part of the world I'm sitting in it's night time now so I will leave the diagnostics running and check the results in the morning. I hope the issue is now resolved anyway. This sort of thing takes me back to my dark PC days although in this case I know it's probably not the Mac's fault.
    Thanks again. Very much appreciated.

  • Issue with KB2830477 and SCCM 2012 Remote Control Viewer

    I've just rolled out Feb '13 updates for Windows 7. The update KB2830477 appears to cause
    an issue when closing a remote control session using SCCM Remote Control Viewer
    (2012).
    The following error appears:
    "ConfigMgr Remote Control Viewer has Stopped Working"
    "A Problem Caused the Program to Stop Workingcorrectly. Please Close the
    Program"
    In the Event log, the following event is triggered in Windows Logs>Application.
    Faulting application name: CmRcViewer.exe, version: 5.0.7711.0, time stamp: 0x4f42f979
    Faulting module name: msxml6.dll, version: 6.30.7601.17988, time stamp: 0x5091ff29
    Exception code: 0xc0000005
    Fault offset: 0x00056368
    Faulting process id: 0x24c0
    Faulting application start time: 0x01cf2d7bf99dc96d
    Faulting application path: C:\Program Files\Microsoft Configuration
    Manager\RemoteControlViewer\CmRcViewer.exe
    Faulting module path: C:\Windows\System32\msxml6.dll
    This is with an EventID: 1000. Removing the update resolves the issue.
    Report Id:
    36c3642d-9970-11e3-89bd-028037ec0200

    Hi,
    I recommend you check the log file CMRcViewer.log:
    It records details about the activity of the remote control viewer.
    Located in the %temp% folder on the computer running the remote control viewer.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Strange issue when synching Iphone

    Hi,
    Had a strange issue and wondered if anyone could explain what could possibly have happened?
    I purchased an album from iTunes on Saturday on my MacBook Pro. My iTunes library is actually stored on my time capsule, but everything was fine.
    However today at work (so separated from my Time Capsule) I plugged in my iPhone to recharge. As standard it tried to synch - and this is when the issue occurred:
    A message appeared stating that there were purchased items on my iPhone that were not in my iTunes library, that I must authorise the machine else the items would be removed. When clicking on the authorise button, the authorisation / iTunes store login screen appeared - containing the username [email protected] - which is completely unknown to me. I have absolutely no idea who this person is and I have never seen that email address before.
    I changed the login to my details and signed in - where the system said that my machine was already authorised for my account - so the synch continued normally (apart from the usual messages when disconnected from my time capsule).
    How the **** did my machine think it was attached to wesley patt's account? Has this happened to anybody else?
    Cheers for any help
    Darren

    I just tried to sync my wife's iphone and the same name [email protected] came up. This can not be a coincidence. This has to be a virus of some sort. My wife is unable to make purchases from her computer right now even though the account detail works. Did this happen to either of you? I'm reporting this to apple and referencing this board.

  • Issue migrating reports with Graphical features.

    Hi guys,
    I am working on migrating reports from 10g to 11g and I have an issue with the reports which contains a Graph. They are giving the following error when I run them against the 11g report server(they are running fine against the 10g server with out any issues)
    The report terminated with error:
    REP-56048: Engine rwEng-1 crashed., job Id: 24.
    I have searched on Google, for a solution to fix them, the closest I found was Installing Oracle Graphics 6i engine in a separate Oracle Home, but this was said for 9i and 10g, you can find that in the below oracle document:
    http://www.oracle.com/technetwork/middleware/reports/graph-faq-with-style-094084.html#q101
    Does anyone know, if I can Install Oracle Graphics 6i engine in a separate Oracle Home for 11g too?, to make them work at least, if not modifying the existing ones?
    Thanks,
    Sona.

    Hi Sona,
    unfortunately installing Graphics 6i in a separate OH for 11g wont work. This option was only possible until Reports 10g as a temporary option while migrating to the new BI beans graphing functionality included in 10gR2 and 11g.
    Reference
    http://www.oracle.com/technetwork/middleware/reports/graph-faq-with-style-094084.html
    Migrating Oracle Graphics 6i charts
    How do I migrate my charts from Oracle Graphics to the new graph format in Oracle9i Reports or Oracle Reports 10g?
    Oracle9i Reports Release 1 onwards, Oracle Graphics has been desupported. Oracle9i Reports and Oracle Reports 10g use BI Beans to generate graphs. Because of the underlying technology, there is no direct migration path from Oracle Graphics to the BI Bean graphing functionality. As such, the user will need to rewrite all of their graphs using the new Graph Wizard within the Reports Builder.
    Top of Page
    Can I still run my existing Oracle Reports Developer 6i reports containing Oracle Graphics charts in Oracle Reports?
    As noted in the Oracle Reports Statement of Direction, Oracle Graphics is no longer shipped with Oracle Reports. However, as part of the migration path, you can still run Oracle Graphics charts in Oracle Reports if you install the Oracle Graphics 6i engine in a separate Oracle Home. You should only maintain Oracle Graphics 6i as a temporary measure while you redesign your charts using the new Graph Wizard. For further details on how to configure Oracle to use Oracle Graphics 6i, please see the Graphics Migration section in the Oracle9i Application Server Migration from Oracle9iAS Release 1 (1.0.2.2.x) to Release 2 (9.0.2) manual.
    Top of Page
    Can I modify or add Oracle Graphics 6i charts to my reports with Oracle9i Reports or Oracle Reports 10g?
    No. You must have a separate installation of Oracle Graphics 6i Builder in order to modify your existing Oracle Graphics 6i charts since Oracle Graphics is not shipped with Oracle Reports. We strongly recommend that you migrate your charts to the new standard in Oracle Reports.
    Thanks, RZ

  • Best practice: Developing report in Rich Client or InfoView?

    Hi Experts,
    I have a question on the best practice of developing webi reports.
    From what I know, a Webi report can be created in Rich Client and then exported to one or more folders. From InfoView, the report can also be changed, but the change is only local to the folder.
    To simplify development and maintenance, I believe both creation and change should be done solely in either Rich Client or InfoView. However, some features are only available in InfoView, not in Rich Client. One example is hyperlink for another Webi report. As a second step, I can add the extra features in InfoView after the export. However, if I change the report in Rich Client and re-export it, the extra features added via InfoView (e.g. report hyperlink) will be overwritten.
    As I'm new to BO, may I have some recommendations on the best practice for building reports? For instance:
    1) Only in Rich Client - no adding of feature via InfoView
    2) First in Rich Client, then in InfoView - extra features need to be added again after each export
    3) Only in InfoView -  all activities done in InfoView, no development in Rich Client
    4) Others?
    Any advice is much appreciated.
    Linda
    Edited by: Linda on May 26, 2009 4:28 AM

    Hi Ramaks, George and other experts,
    Thanks a lot for your replies.
    For my client, the developers will build most of the reports for regular users to view. However, some power users may also create their own reports to meet ad-hoc reporting requirements.
    It's quite unlikely for my client to develop reports based on Excel or CSV data files. And we need to use features such as hyperlink for documents (which is not available in Rich Client). Based on these considerations, I'm thinking of doing all development in InfoView (both developers and power users). Do you foresee any issue if I go for this approach?
    Thanks in advance.
    Linda

Maybe you are looking for

  • Motion Tracking Problem

    Hi im am very new to After Effects Cs4 and i am trying to do some simple motion tracking on some of my videos. When i try to place my track points on a high contrast spot and the click anylize my track does not stay in place and just pounces around t

  • Calling stored procedure from script on remote server

    We are migrating our database to a virtual server environment. On the current dedicated environment, the database and scripts(calling stored procedures) are on the same server. In the new envoirnment, the scripts, input and output files will be on a

  • Major help needed! Saving iPhoto book as a working file

    I am a student teacher and I am teaching a lesson on Friday that uses iPhoto book. My cooperating teacher has asked me to create an iPhoto book template for the students to use to make the activity easier for them. I have created the template book bu

  • Text "dead zone" in tables

    Go to this page: http://thedecoartist.com/ARCHERwebsite/CAT_USinteriorDetails.html In Dreamweaver I cannot select any text in the far right two columns of the table with the text cursor. The only way I can either edit or enter text into those two col

  • How do I figure out what fonts won't turn into graphics?

    Ok. I've made sure that opacity it set to 100% for my text but they are still appearing as graphics when published to my .Mac account. I'm not assuming that there are only certain fonts that stay as text (as long as you leave opacity at 100%). Is the