Group Management in CF Report Builder

Hi,
I'd be very much grateful if somebody could pls help me solve
this problem.
Let's say I've got a query
<cfquery name="qGetData" datasource="myDSN">
select fieldname from tablename
</cfquery>
The query generates e.g. 10 records.
Now, for each fieldname to be displayed, I need to display a
graph. Therefore I do a grouping by fieldname from the Report ->
Group Management menu, where I can also specify to Start a new page
when the group value changes. This is ok. I don't have any problem
with that.
Now in the report builder, is it possible to do the grouping
so that instead of displaying 1 fieldname per page, 2 records are
displayed per page?
i.e. Page 1 gets records 1 & 2, Page 2 gets 3 & 4,
etc...
Your help will be greatly appreciated.
Thanks and regards,
Yogesh Mahadnac

Group Management, Add Group (group by invoice number), check
"Start New Page".

Similar Messages

  • Managed Metadata in Report Builder

    hi
    Is it possible to use managed metadata as a parameter in report builder 3.0?
    thanks

    Hello,
    The "Web layout " is something new in Reports 9.0.2 , and if you open RDF created with 6i, the web layout is empty .
    Did you try to execute your reports using the icon "Run Paper Layout" ?
    Do you see the output in this case ?
    Regards

  • Having a chart change based on what group is displaying in Report Builder.

    Hello, I'm trying to create a report that is grouped by department that shows data for the last 12 months in the detailed section. I also want to have a chart that will graph that data in the group header. I have tried to 'link' the query in the chart using #query.dept_id# to limit the data to just that department, but the #query.dept_id# does NOT seem to change when the dept_id changes. There seems to be a way to link a sub-report, but no way to link a chart.
    Any help would be greatly appreciated.
    Thanks

    Found a better solution to solve this, subreport is not needed:
    define a calculated field for the value that changes with the group.
    it is not necessary to place this anywhere in the report, just define it.
    use this calculated field in the chart query instead of the report query field.
    Best regards

  • Retrieve plan list to insert it in report builder

    Hello,
    I’m using TFS2013 with Visual Studio 2013, Microsoft Test Manager (MTM) and Report Builder 3.0. I’d like to get the lists of tests planned in MTM and show it in a report (with other things). In Report Builder, I create a DataSet (DS_Suite), where I use these
    fields:
    Suite Path ->Test Suite
    Title -> Test case
    Outcome -> Test Result
    Point Count Trend -> Measures/Test
    I also use a parameter: Test Plan / Test Plan Name.
    I use the Table wizard to create a simple table. I put the Suite Path and the Title in the Row group, and Outcome in Value.
    When I execute the Report, I enter the name of the Plan, and I get a list. Let’s say I created a small suite in MTM, with some tests as Passed, others as failed, and even one is set as active. The suite is called Iteration22. In my report I have an entry
    with the suite path as Iteration22, and one as Unknown. The lists of tests in either suites are almost the same, except the unknown doesn’t have the test set as active. In the Iteration22 suite, the outcome isn’t right, it’s almost only set as Never Run, some
    as Failed. In the Unknown suite, the outcome is the correct info, exception of the missing test set as active.
    Does anyone know how to correctly retrieve a Plan and insert it in a report? I’ve got it almost right, I’m missing something? Where am I mistaken?
    Thanks for the help,
    Hinibi

    Hi Hinibi, 
    Thanks for your post.
    Your custom report looks right and use the correct fields.
    If think that report data is not correct, please refresh your TFS cube, after refreshed, rerun your custom report and view report data. And you can check the test case data in Tfs_Warehouse database to view what fact test case data stored in Warehouse tables,
    please refer to xiaohundan’s answer reply in this post:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/d98f1545-f01b-4253-8310-a71a9c71d6a1/creating-report-to-display-a-list-of-test-cases-associated-test-steps-and-result-history?forum=tfsreporting.
    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.
    Click
    HERE to participate the survey.

  • SSRS 2012 - Multiple values for filtering (shown while editing in Report Builder) disappear in Report Manager view

    Hi,
    I have a multiple value parameter, with four specified default values (integers). When opening my report in Edit mode in the Report
    Builder, and then pressing "run", I can see the default parameters in the upper section on the screen, and they are acting fine on the report. However, when opening the report from the Report
    Manager (by double clicking it from there), the default values have disappeared and I have to fill them in manually. However, the values are not 100% forgotten, because when opening the "manage" section using the drop down
    menu in the Report Manager, my default values are there, shown in the list.
    Did I do something wrong? Is this a bug? What can I do to solve this?
    Nb.:
    I'm using SSRS 2012
    Dataset created by the query "select parameterID from table group by parameterID"
    The full set of parameters are collected by using the above dataset as input for "get values from a query" in "available values"
    The default values are set by using the option "specify values" in "default values"
    Hope one of you can help me out here!
    Sietske
    Nb.: For the time being I'm now using a hard coded workaround by adding "where parameterID ='4' or parameterID = '15'" to my select query.  

    Hi Sietske,
    According to your description, there are several suggestions for your reference:
    Based on the workaround query that “where parameterID ='4' or parameterID = '15'”, it seems that the parameterID and parameter is a string type field. So please make sure the default value of the parameter is Text data type, like below:
    When you go to the Parameters tab after clicking the Manage option over the drop-down list, please enable ‘Has Default’ checkbox, and make sure the values in the ‘Default Value’ drop-down list are correct, then click Apply option.
    If the report works well when you open the report in Report Builder, please click Save or (Ctrl+S) button to save the report to report server.
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • GROUP BY is Not working in Reports Builder 9.0.4

    I have test run a query from both Jdev & SQLplus.
    It works fine, and I have used the GROUP BY in Reports before (that is what makes this so frustrating).
    The query looks something like this:
    SELECT
    a.programid,
    nvl(sum(b.fy06),0.00) sum06,
    nvl(sum(b.fy07),0.00) sum07,
    nvl(sum(b.fy06 + b.fy07),0.00) total
    FROM
    table1 a
    left join table2 b on a.item_id = b.item_id
    WHERE 1=1
    GROUP BY rollup(a.programid)
    As I mentioned this works fine from Jdev or sqlplus, but not when I run the report from Reports Builder 9.0.4 I get an error after the Param form runs and before the BeforeReport trigger.
    The error reads as follows:
    ORA-00937: not a single-group group function
    SELECT ==> a.programid, nvl(sum ....the rest of the query....
    Can anyone give me suggestions on what may be causing this, or preferably give any advice as to how to fix it.
    Thanks for your time.

    Good Morning Everyone,
    We have similar Warning Message, too.
    We used Report Builder 10.1.2
    In Toad, there is no problem like other.
    If you have a chance, please share with us.
    Thanks in advance

  • How to find the maximum of group sums within a specific column using report builder 3.0

    Hi
    For each part number I am trying to find out in which week of a month did the largest daily shipment occur... so using report builder 3.0
    in SSRS 2012 I can find daily, weekly and monthly totals for the units shipped but I am having a hard time thinking through the logic to find the daily max for each week.
    in my data I can have multiple orders/shipments for the same product on the same day.
    The ultimate goal is to set inventory levels
    So..
    In my matrix report I have
    Row groups:
    Classid => Product class
    InvtID => Item Part Number
    Column Groups:
    FiscYr=> Fiscal Year
    PerPost => Month or period the transaction occurred
    Week_period => the week the transaction occurred
    Day_period => The day that the transaction occurred
    The aggregations are 
    Sum(case_shipped) 
    Max(case_shipped)
    The Sum(case_shipped) is working as desired but the Max(case_shipped) is picking out the max amount shipped on any one order when looking
    at the week, month or fiscal period and that is not what I need.
    I have attached a screenshot since a picture is worth more than my words. I have also included some sample data
    I would very much appreciate any thoughts on this. I am guessing that the solution has something to do with using the inscope function but
    I can't wrap my head around how to use it
    Thank you 
    Tom D
    Here is some sample data for Product A
    Invtid Case_ship Trandate    FiscYr   PerPost   week_period        day_period
    A         10           1/1/2104    2014        1    
              1                           1
    A           3           1/1/2014    2014        1  
                1                           1
    A         50           1/2/2104    2014        1    
              1                           2
    A         30           1/3/2014    2014        1    
              1                           3
    A         20           1/9/2104    2014        1    
              2                           2
    A          5            1/9/2104    2014        1  
                2                           2
    A        20          1/10/2014    2014        1    
              2                           3
    A        60          1/10/2104    2014        1    
              2                           3
    On 1/1/2104 I shipped a total of 13 cases
    On 1/2/2104 I shipped a total of 50 cases
    On 1/3/2104 I shipped a total of 30 cases
    On 1/9/2014 I shipped a total of 30 cases
    On 1/10/2014 I shipped a total of 80 cases
    On 1/9 I shipped a total of 25 cases
    I would like to show that in week 1 the maximum number of cases shipped on any day is 50 (1/2/2014)
    I would like to show that in week 2 the maximum number of cases shipped on any day is 80 (1/10/2104)
    I would also like to show that in perpost (month) 1 the maximum
    number of cases shipped on any day is 80 (1/10/2104)

    Hi
    I was able to find a solution
    I built a new dataset in report builder using the same table as before but tried out the "Group and Aggregate" function and for the case_ship
    field I chose "Sum" as my aggregate.... In essence this gave me a very cool and easy daliy sum of the shipped cases. 
    When I used this new dataset and built my matrix report I was able to easily get the max daily shipment for each product by week, month and
    year.
    Tom

  • Work Group Manager Reports and Logs

    Mac Manager maintains logs and display current activity information somewhat different that Work Group Manager. With Mac Manager we are able to quickly report for Activity Log, Disk Usage, Connected Machines, Printer Quotas, Workgroup by User, Computers, Checked Out Computers and user activity.
    How can we duplicate such a report with Work Group Manager?
    We are a school district that is 88% Macintosh and miss the reports and logs feature in Mac Manager (10.3.9).
    Hope to hear and find a solution to this challenge.
    Marco Baeza, Director of Technology

    Hello,
    Possibly some ideas here. http://www.macintouch.com/macmanager.html
    Carolyn

  • Cisco Prime 4.2, Inventory group management and reports group

    Hi
    I have created some groups under Inventory > Group Management > Device.  This works fine.
    Then I want to create a monthly report for Reports > Performance > Device > Availability.  Here I guessed I would find my groups created under inventory.
    But I can se the groups, one group is duplicated, but all groups are empty.  Under all devices, I can only see 6 og th devices but it should have been 122. Under the different subnet groups, there's no devices.
    Should'nt I've seen the groups created under inventory when I want to make a report? Under the device list for quick report.
    Br
    Geir

    Hm.... strange  I've been looking around under Report, and looked at Inventory and Performance reports.
    Inventory > Detailed Device shows all the devices and my groups.
    Performance > Device > Availability show just 6 out of my 122 devices.
    Under Inventory > Group Managment > Device I have a group called Datasenter.
    Under Performance > Device > Availability I can see 2 of these groups, but their both empty.
    When i delete this group, one of them dissapeer from Under performance.  WHen I create it again, it comes back but empty.
    Something must be corrupt.
    Geir

  • Problems with report builder 3.0 in SCCM 2012 R2 CU2

    Hi All
    I have problems with editing  (Using Report builder) existing reports  or creating new ones in SCCM 2012 R2 CU2
    We version of SQL we use is SQL 2008 R2 SP2
    I already asked this question in the SCCM 2012 forum but the problem is not related to SCCM but has something to do with application report builder
    I changed the registry key and edited the Microsoft.ConfigurationManagement.exe.config.xml as described in the following link
    http://blogs.technet.com/b/smartinez/archive/2012/07/03/system-center-2012-configuration-manager-create-report-don-t-work-what-do-i-do-now.aspx
    Afterwards I try to edit an report I see report builder is being downloaded and after it generates the following error “Application did not succeed. Unable to continue”
    Error details are
    Following errors were detected during this operation.
    * [22-7-2014 13:55:07] System.Deployment.Application.InvalidDeploymentException (HashValidation)
    - File, Microsoft.DataWarehouse.dll, has a different computed hash than specified in manifest.
    - Source: System.Deployment
    - Stack trace:
    at System.Deployment.Application.ComponentVerifier.VerifyFileHash(String filePath, Hash hash)
    at System.Deployment.Application.ComponentVerifier.VerifyFileHash(String filePath, HashCollection hashCollection)
    at System.Deployment.Application.ComponentVerifier.VerifyComponents()
    at
    System.Deployment.Application.DownloadManager.DownloadDependencies(SubscriptionState subState, AssemblyManifest deployManifest, AssemblyManifest appManifest, Uri sourceUriBase, String targetDirectory, String group, IDownloadNotification notification, DownloadOptions
    options)
    at System.Deployment.Application.ApplicationActivator.DownloadApplication(SubscriptionState subState, ActivationDescription actDesc, Int64 transactionId, TempDirectory& downloadTemp)
    at System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc)
    at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
    at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)
    And in the SmsAdminUI.log I noticed the following error
    [16, PID:4460][07/21/2014 14:11:43] :[ReportProxy] - User-specified default Reporting Point [Server1.local.nl] could not be found, [Server2.local.nl] is now the default Reporting Point.
    [1, PID:4460][07/21/2014 14:11:11] :System.InvalidOperationException\r\nThere is an error in XML document (1, 1).\r\n at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)
    I removed the reporting point no luck -> I already installed report builder 3.0 local on my computer still no luck.
    I hope someone can give me some advice , I am lost with this error
    Thx in advance
    Regards
    Johan

    Hi Miss Katherine,
    1. I went through the SQL steps in the link you posted
    2. I updated the Reg Key and Microsoft.ConfigurationManagement.exe.config file with 3.0 on both the
    server and the console machine.
    3. I copied the .DLL file from your OneDrive and replaced the existing one on the server.
    4. I uninstalled and re-installed the reporting role on the server and received the 1015 in the log.
    5. I restarted the server and the client machine
    I do get a slightly different error now after using the new DLL
    Errors With Original DLL
    ERROR DETAILS
    * [9/30/2014 8:42:03 AM] System.Deployment.Application.InvalidDeploymentException (HashValidation)
    - File, Microsoft.DataWarehouse.dll, has a different computed hash than specified in manifest.
    - Source: System.DeploymentERROR DETAILS
    Errors With New DLL
    ERROR DETAILS
    Following errors were detected during this operation.
    * [9/30/2014 9:17:13 AM] System.Deployment.Application.InvalidDeploymentException (RefDefValidation)
    - Reference in the manifest does not match the identity of the downloaded assembly Microsoft.DataWarehouse.dll.
    - Source: System.Deployment

  • Use css file in oracle 10g report builder

    hi every one
    i am using oracle 10g report buidler. i want control paramform by usign css file.
    any body have idea how can i use css file in oracle report builder 10g and how can i modify it's path and i how can i manage any css class on a perticular field.

    Thanks Billy.
    Yes you are right.
    Here why I discarded that option is,
    I may get the source files with changing layouts.
    My Actual scenario is as follows.
    Initially we developped all the things using PL/SQL packages. Its working fine.
    But as per the inputs we received from requirements group, the file structure changes dynamically. and we would able to consider those new columns also. We should be able to changes the rules dynamically.
    Lets say, we doing fullouter join on Src_A and Src_B. on columns col1_A and col1_B.
    Now the requirement changes in a way that, the join should be done on Src_A and Src_C. on columns col1_A and col_C.
    For this I need to define a new package.
    Instead of that, I would like to do everything dynamically based on configuration parameters given as input.
    Thank you,
    Regards,
    Gowtham Sen

  • Median function in report builder 3.0

    I need to perform median calculation in MS Report Builder 3.0, could anyone explain how I could achieve it considering my original value are
    Region - Etab - Value
    Abc - Def - 10
    Abc - Def - 12
    Ged - Tae - 1
    I need to group by Region and Etab.
    I've already built a SQL query to get the Median, but I would like to be able to use Report Builder grouping for usability.

    I've managed to get the proper values using hashtable the following way :
    Dim theHashTable As New System.Collections.Hashtable
    Function AddValue(theRapport As String, theRegion As String, theEtab As String, theRow As String, theValue As String) As Integer
    Dim num As Integer
    num = 0
    If (theHashTable Is Nothing) Then
    theHashTable = New System.Collections.Hashtable
    End If
    If Integer.TryParse(theValue, num) Then
    If (num >= 0) Then
    If (theHashTable.ContainsKey(theRapport)) Then
    Dim regionHT As New System.Collections.Hashtable
    regionHT = theHashTable(theRapport)
    If (regionHT.ContainsKey(theRegion)) Then
    Dim etabHT As New System.Collections.Hashtable
    etabHT = regionHT(theRegion)
    If (etabHT.ContainsKey(theEtab)) Then
    Dim valueHT As New System.Collections.Hashtable
    valueHT = etabHT(theEtab)
    If (Not valueHT.ContainsKey(theRow)) Then
    valueHT.Add(theRow, theValue)
    End If
    etabHT(theEtab) = valueHT
    Else
    Dim valueHT As New System.Collections.Hashtable
    valueHT.Add(theRow, theValue)
    etabHT.Add(theEtab, valueHT)
    End If
    regionHT(theRegion) = etabHT
    Else
    Dim etabHT As New System.Collections.Hashtable
    Dim valueHT As New System.Collections.Hashtable
    valueHT.Add(theRow, theValue)
    etabHT.Add(theEtab, valueHT)
    regionHT.Add(theRegion, etabHT)
    End If
    theHashTable(theRapport) = regionHT
    Else
    Dim regionHT As New System.Collections.Hashtable
    Dim etabHT As New System.Collections.Hashtable
    Dim valueHT As New System.Collections.Hashtable
    valueHT.Add(theRow, theValue)
    etabHT.Add(theEtab, valueHT)
    regionHT.Add(theRegion, etabHT)
    theHashTable.Add(theRapport, regionHT)
    End If
    End If
    End If
    Return num
    End Function
    Function GetMedian(theRapport As String, theRegion As String, theEtab As String) As String
    Dim arrayInt As New System.Collections.ArrayList
    arrayInt = GetArray(theRapport, theRegion, theEtab)
    arrayInt.Sort()
    Dim mid As Double = (arrayInt.Count - 1) / 2.0
    Dim midInt As Integer = mid
    Dim mid2Int As Integer = mid + 0.5
    If arrayInt.Count >= 2 Then
    Return ((arrayInt(midInt) + arrayInt(mid2Int)) / 2).ToString()
    ElseIf arrayInt.Count = 1 Then
    Return arrayInt(0)
    Else
    Return ""
    End If
    End Function
    Function GetQ1(theRapport As String, theRegion As String, theEtab As String) As String
    Dim arrayInt As New System.Collections.ArrayList
    arrayInt = GetArray(theRapport, theRegion, theEtab)
    arrayInt.Sort()
    Dim taille As Integer = arrayInt.Count
    If (taille = 1) Then
    Return arrayInt(0)
    ElseIf ((taille Mod 2) = 0 And taille > 0) Then
    Dim mid1 As Integer = taille / 2
    Dim midmid As Integer = mid1 / 2
    If (mid1 Mod 2 = 0) Then
    Return ((arrayInt(midmid - 1) + arrayInt(midmid)) / 2).ToString()
    Else
    Return (arrayInt(midmid)).ToString()
    End If
    ElseIf (taille = 1) Then
    Return arrayInt(1)
    ElseIf ((taille - 1) Mod 4 = 0) Then
    Dim n As Integer = (taille - 1) / 4
    Return ((arrayInt(n - 1) * 0.25 + arrayInt(n) * 0.75)).ToString()
    ElseIf ((taille - 3) Mod 4 = 0) Then
    Dim n As Integer = (taille - 3) / 4
    Return ((arrayInt(n) * 0.75 + arrayInt(n + 1) * 0.25)).ToString()
    Else
    Return ""
    End If
    End Function
    Function GetQ3(theRapport As String, theRegion As String, theEtab As String) As String
    Dim arrayInt As New System.Collections.ArrayList
    arrayInt = GetArray(theRapport, theRegion, theEtab)
    arrayInt.Sort()
    Dim taille As Integer = arrayInt.Count
    If (taille = 1) Then
    Return arrayInt(0)
    ElseIf ((taille Mod 2) = 0 And taille > 0) Then
    Dim mid1 As Integer = taille / 2
    Dim midmid As Integer = mid1 / 2
    If (mid1 Mod 2 = 0) Then
    Return ((arrayInt(mid1 + midmid - 1) + arrayInt(mid1 + midmid)) / 2).ToString()
    Else
    Return (arrayInt(mid1 + midmid)).ToString()
    End If
    ElseIf (taille = 1) Then
    Return arrayInt(1)
    ElseIf ((taille - 1) Mod 4 = 0) Then
    Dim n As Integer = (taille - 1) / 4
    Return ((arrayInt(3 * n) * 0.75 + arrayInt(3 * n + 1) * 0.25)).ToString()
    ElseIf ((taille - 3) Mod 4 = 0) Then
    Dim n As Integer = (taille - 3) / 4
    Return ((arrayInt(3 * n + 1) * 0.25 + arrayInt(3 * n + 2) * 0.75)).ToString()
    Else
    Return ""
    End If
    End Function
    Function GetArray(theRapport As String, theRegion As String, theEtab As String) As System.Collections.ArrayList
    Dim arrayInt As New System.Collections.ArrayList
    If (theHashTable Is Nothing Or theHashTable.Count = 0) Then
    Return arrayInt
    Else
    If (theHashTable.ContainsKey(theRapport)) Then
    Dim regionHT As System.Collections.Hashtable
    regionHT = theHashTable(theRapport)
    If (theRegion = "" And theEtab = "") Then
    For Each value As System.Collections.Hashtable In regionHT.Values
    For Each value2 As System.Collections.Hashtable In value.Values
    For Each valeur As Integer In value2.Values
    arrayInt.Add(valeur)
    Next
    Next
    Next
    ElseIf (regionHT.ContainsKey(theRegion) And theEtab = "") Then
    Dim etabHT As System.Collections.Hashtable
    etabHT = regionHT(theRegion)
    For Each value As System.Collections.Hashtable In etabHT.Values
    For Each valeur As Integer In value.Values
    arrayInt.Add(valeur)
    Next
    Next
    ElseIf (regionHT.ContainsKey(theRegion) And theEtab <> "") Then
    Dim etabHT As System.Collections.Hashtable
    etabHT = regionHT(theRegion)
    If Not (etabHT Is Nothing Or etabHT.Count = 0) Then
    If (etabHT.ContainsKey(theEtab)) Then
    Dim valuesHT As System.Collections.Hashtable
    valuesHT = etabHT(theEtab)
    For Each value As Integer In valuesHT.Values
    arrayInt.Add(value)
    Next
    End If
    End If
    End If
    End If
    Return arrayInt
    End If
    End Function
    Function PrintArray(theRapport As String, theRegion As String, theEtab As String) As String
    Dim arrayInt As New System.Collections.ArrayList
    arrayInt = GetArray(theRapport, theRegion, theEtab)
    Dim str As String = ""
    If (arrayInt.Count > 0) Then
    str = String.Join(" | ", arrayInt.ToArray)
    Else
    str = " "
    End If
    Return str
    End Function
    The first hashtable is for different tables of the report needing the median.
    I then use the following command to add value
    Code.AddValue("3_2",Fields!Region.Value,Fields!Etablissement.Value,Fields!rowNumber.Value,Fields!Value.Value)
    Then I get the median using the expressions
    =Code.GetMedian("3_2", Fields!Region.Value,Fields!Etablissement.Value)
    =Code.GetMedian("3_2", Fields!Region.Value,"")
    =Code.GetMedian("3_2", "","")
    I've tried placing the AddValue fonction on a hidden table and in the summary row of the tables.
    I get the proper value but as soon as I expand or collapse a row everything is change to blank. How can I keep the value or where could I put the AddValue function to make sure it is called on every action, for every table in the report ?
    Thanks

  • REP-1510 Group manager unable to compute column

    Hai all,
    I am using oracle 6i report builder.I have created a matrix report with different type of grouping and i tried to add a slno in the matrix report.I used summary column for showing the Serial Number but the serial number is showing on the report  when user has  select only one item (fromitem=01 and toitem=01).when user has  select more than one item (from item=01,toitem=10)it showing the error
    'REP-1510 Group manager unable to compute column'.
    How to solve this issue,how can create serial number in my matrix report

    try this one
       SELECT ROW_NUMBER() OVER (ORDER BY COLUMN_NAME) SLNO FROM TABLE_NAME;

  • Error 403 when editing report in report builder

    Hey Guys,
    I have a weird issue with the SSRS (Sharepoint Server Reporting Services), which I find very undocumented hence not so easy to implement in a multi-server farm.
    Anyway, I have a very small 2 servers SP farm running SP2013 Enterprise and Project Server 2013. In the backend I have a SQL2012 and all SP DBs are in an alwayson availibility group. Both SP servers are exactly identical in terms of roles and setup. The
    SQL SP reporting add-in has been installed on both servers.
    I created my SSRS service app and all is running fine to view reports; but when I try to edit a report in report builder it works on server1 and fails with a 403 on server2 (I'm of course logged in with the same account on both servers). I have no idea why
    one server givs me this 403 and since all this is new to me I'm a bit lost and not sure how to start troublshooting the issue.
    Would you have an idea what could cause this behavior ?

    Hi,
    Based on my research, there are many factors can cause this issue. For more details, we can refer to the following possible causes:
    Some configuration did not configure well. Open the Reporting Services Configuration Manager to check all the configuration, see
    http://msdn.microsoft.com/en-us/library/aa337424(v=sql.110).aspx on Reporting Services Tools.
    In the reporting services configuration manager tool, rebuild the virtual directory of report manager/report server.
    If the report server enables SSL, recreate a certificate and then rebind it to report server.
    It may resulted in config file of the report server / service.
    changing the AuthyenticatonTypes to RSWindowsNTLM in the report server config file.
    Besides, the issue can also be caused by the web.config for the SharePoint site was not correctly modified by the Reporting Services Add-in for SharePoint. For more details, please see the following posts:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/a8a66827-0995-4f87-bcae-f7750fa5d3fa/error-client-rendering-the-remote-server-returned-an-error-403-forbidden?forum=sqlreportingservices
    http://www.sqlservercentral.com/Forums/Topic780464-150-1.aspx#top
    Hope this helps.
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Unable to launch Report Builder 3.0

    I am running Reporting Services 2012 in Sharepoint integrated mode. I'm using Sharepoint 2010. My server is located in the US. Both my overseas and US users are unable to launch Report Builder but the errors are different.
    Overseas user:
    Following errors were detected during this operation.
     * [05/4/2012 7:43:26 PM] System.Deployment.Application.InvalidDeploymentException (ManifestLoad)
      - Exception occurred loading manifest from file MSReportBuilder.exe: the manifest may not be valid or the file could not be opened.
      - Source: System.Deployment
      - Stack trace:
       at System.Deployment.Application.Manifest.AssemblyManifest.ManifestLoadExceptionHelper(Exception exception, String filePath)
       at System.Deployment.Application.Manifest.AssemblyManifest.LoadFromInternalManifestFile(String filePath)
       at System.Deployment.Application.DownloadManager.ProcessDownloadedFile(Object sender, DownloadEventArgs e)
       at System.Deployment.Application.FileDownloader.DownloadModifiedEventHandler.Invoke(Object sender, DownloadEventArgs e)
       at System.Deployment.Application.SystemNetDownloader.DownloadSingleFile(DownloadQueueItem next)
       at System.Deployment.Application.SystemNetDownloader.DownloadAllFiles()
       at System.Deployment.Application.FileDownloader.Download(SubscriptionState subState)
       at System.Deployment.Application.DownloadManager.DownloadDependencies(SubscriptionState subState, AssemblyManifest deployManifest, AssemblyManifest appManifest, Uri sourceUriBase, String targetDirectory, String group, IDownloadNotification
    notification, DownloadOptions options)
       at System.Deployment.Application.ApplicationActivator.DownloadApplication(SubscriptionState subState, ActivationDescription actDesc, Int64 transactionId, TempDirectory& downloadTemp)
       at System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc)
       at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
       at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)
      --- Inner Exception ---
      System.Deployment.Application.DeploymentException (InvalidManifest)
      - Cannot load internal manifest from component file.
      - Source:
      - Stack trace:
    US user:
    Following errors were detected during this operation.
     * [5/4/2012 11:03:17 AM] System.Runtime.InteropServices.COMException
      - Failed to load the runtime. (Exception from HRESULT: 0x80131700)
      - Source: System.Deployment
      - Stack trace:
       at System.Deployment.Application.NativeMethods.GetRequestedRuntimeInfo(String pExe, String pwszVersion, String pConfigurationFile, UInt32 startupFlags, UInt32 runtimeInfoFlags, StringBuilder pDirectory, UInt32 dwDirectory, UInt32& dwDirectoryLength,
    StringBuilder pVersion, UInt32 cchBuffer, UInt32& dwLength)
       at System.Deployment.Application.Win32InterOp.SystemUtils.CheckSupportedImageAndCLRVersions(String path)
       at System.Deployment.Application.SubscriptionStore.CheckApplicationPayload(CommitApplicationParams commitParams)
       at System.Deployment.Application.SubscriptionStore.CommitApplication(SubscriptionState& subState, CommitApplicationParams commitParams)
       at System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc)
       at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
       at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)

    Hi,
    My issue is not resolved as i am also facing same issue. OS of the server is windows 2012, .net 4.5 is installed so don't need to install .net 4 separately. Here i am giving error details
    PLATFORM VERSION INFO
    Windows : 6.2.9200.0 (Win32NT)
    Common Language Runtime
    : 4.0.30319.18408
    System.Deployment.dll
    : 4.0.30319.17929 built by: FX45RTMREL
    clr.dll : 4.0.30319.18408 built by: FX451RTMGREL
    dfdll.dll : 4.0.30319.17929 built by: FX45RTMREL
    dfshim.dll : 4.0.41209.0 (Main.041209-0000)
    SOURCES
    Deployment url
    : http://xxx/sites/xxxx/_vti_bin/ReportBuilder/ReportBuilder_3_0_0_0.application?SaveLocation=http%3a%2f%2fxxx%2fsites%2fxxxx%2fDocuments
    Server
    : Microsoft-IIS/8.0
    X-Powered-By
    : ASP.NET
    X-AspNet-Version: 4.0.30319
    Application url
    : http://xxx/sites/xxxx/_vti_bin/ReportBuilder/RptBuilder_3/MSReportBuilder.exe.manifest
    Server
    : Microsoft-IIS/8.0
    X-Powered-By
    : ASP.NET
    X-AspNet-Version: 4.0.30319
    IDENTITIES
    Deployment Identity
    : ReportBuilder_3_0_0_0.application, Version=11.0.3000.0, Culture=neutral, PublicKeyToken=c3bce3770c238a49, processorArchitecture=x86
    APPLICATION SUMMARY
    * Online only application.
    * Trust url parameter is set.
    ERROR SUMMARY
    Below is a summary of the errors, details of these errors are listed later in the log.
    * Activation of http://xxx/sites/xxxx/_vti_bin/ReportBuilder/ReportBuilder_3_0_0_0.application?SaveLocation=http%3a%2f%2fxxx%2fsites%2xxxx%2fDocuments resulted in exception. Following failure messages were detected:
    + Application manifest has either a different computed hash than the one specified or no hash specified at all. 
    + File, MSReportBuilder.exe.manifest, has a different computed hash than specified in manifest.
    COMPONENT STORE TRANSACTION FAILURE SUMMARY
    No transaction error was detected.
    WARNINGS
    There were no warnings during this operation.
    OPERATION PROGRESS STATUS
    * [8/25/2014 3:37:07 AM] : Activation of http://xxx/sites/xxxx/_vti_bin/ReportBuilder/ReportBuilder_3_0_0_0.application?SaveLocation=http%3a%2f%2xxx%2fsites%2fxxxx%2fDocuments has started.
    * [8/25/2014 3:37:07 AM] : Processing of deployment manifest has successfully completed.
    * [8/25/2014 3:37:07 AM] : Installation of the application has started.
    ERROR DETAILS
    Following errors were detected during this operation.
    * [8/25/2014 3:37:10 AM] System.Deployment.Application.InvalidDeploymentException (HashValidation)
    - Application manifest has either a different computed hash than the one specified or no hash specified at all. 
    - Source: System.Deployment
    - Stack trace:
    at System.Deployment.Application.DownloadManager.DownloadApplicationManifest(AssemblyManifest deploymentManifest, String targetDir, Uri deploymentUri, IDownloadNotification notification, DownloadOptions options, Uri&
    appSourceUri, String& appManifestPath)
    at System.Deployment.Application.DownloadManager.DownloadApplicationManifest(AssemblyManifest deploymentManifest, String targetDir, Uri deploymentUri, Uri& appSourceUri, String& appManifestPath)
    at System.Deployment.Application.ApplicationActivator.DownloadApplication(SubscriptionState subState, ActivationDescription actDesc, Int64 transactionId, TempDirectory& downloadTemp)
    at System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc)
    at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String&
    errorPageUrl)
    at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)
    --- Inner Exception ---
    System.Deployment.Application.InvalidDeploymentException (HashValidation)
    - File, MSReportBuilder.exe.manifest, has a different computed hash than specified in manifest.
    - Source: System.Deployment
    - Stack trace:
    at System.Deployment.Application.ComponentVerifier.VerifyFileHash(String filePath, Hash hash)
    at System.Deployment.Application.ComponentVerifier.VerifyFileHash(String filePath, HashCollection hashCollection)
    at System.Deployment.Application.DownloadManager.DownloadApplicationManifest(AssemblyManifest deploymentManifest, String targetDir, Uri deploymentUri, IDownloadNotification notification, DownloadOptions options, Uri&
    appSourceUri, String& appManifestPath)
    COMPONENT STORE TRANSACTION DETAILS
    No transaction information is available.

Maybe you are looking for

  • Nokia sites and services

    Nokia sites and services By using the build-in web browser of E63, opening this address: "http://europe.nokia.com/support/product-support/maps-support/compatibility-and-download" always ends up with blank page and this message appears: [... "fastinne

  • Can't print pdf files with adobe XI?

    I can't print any pdf files since I updated to Adobe reader XI

  • Problem in CUP workflow-Stage configuration

    Dear all, We are facing a problem in workflow path. The workflow for create user has got 2 stage approval. In the first stage the approval type is "All approver" and the CAD for this stage is defined on the basis of business process of the role. So i

  • Iphone 5 wifi connected but no wifi logo

    anyone know why there is no wifi logo on my iphone even though my wifi is connected? I was at two different places and at both places wifi is connected (i can surf net etc) but there is no logo on my iphone. Thanks!

  • Can I keep all my media on my computer and delete or get around iCloud?

    I do not like the iCloud function. Can I get all my media back on my system and delete iCloud?