SSRS 2008 Fixed assets Report Prior YTD Depreciation column, and Accum Current Book Depreciation column

I have created Fixed assets Report , but our auditors would like to see separate Prior YTD Depr in separate column and current book Depr in separate column , right now Prior year YTD depr amd Currrent year depr showing in column Amount Curreny column, 
but I would like to show that amount in net column and Current book depr by each to accum and show in where I have $ 710.95 amount ,  can some one help me how can I change my query to come up what I am looking for,  I really need to fix this for
our auditors,  and donot to show the details by each month,  any help will be really appreciated,  you guys are so good, I wish I know more about Sql, 
my Query is below
SELECT        ASSETTABLE.NAME, ASSETTABLE.ASSETTYPE, ASSETTABLE.QUANTITY, ASSETTABLE.UNITOFMEASURE, ASSETTRANS.TRANSTYPE, ASSETTRANS.ASSETID,
                         ASSETTRANS.TRANSDATE, ASSETTRANS.DIMENSION2_, ASSETTRANS.AMOUNTMST, ASSETTRANS.ASSETGROUP, ASSETTRANS.DATAAREAID,
                         ASSETTABLE.UNITCOST
FROM            ASSETTABLE INNER JOIN
                         ASSETTRANS ON ASSETTABLE.ASSETID = ASSETTRANS.ASSETID
WHERE        (ASSETTRANS.DATAAREAID = N'AR1') AND (ASSETTRANS.TRANSDATE >= @Paramfromdate) AND (ASSETTRANS.TRANSDATE <= @Paramtodate)
thanks in advance

I don't think I understand exactly what the ask is. What field allows you to distinguish between prior year and current depreciation? TRANSTYPE?
I think your data is fine. I would suggest using a Matrix instead of a table. Just set the column group to group on the field that distinguishes between current and prior year depreciation. Add all of the rest of your column outside the column group so they
are only scoped by your row group(s). You can add those columns either before or after your column group columns.
If you have a lot of work into your report already and don't want to create a new matrix which will require you to recreate the work already done on your table. you can convert the existing table to a matrix as described in this technet wiki article:
http://social.technet.microsoft.com/wiki/contents/articles/21184.ssrs-converting-between-tablix-controls-matrix-table-list.aspx
"You will find a fortune, though it will not be the one you seek." -
Blind Seer, O Brother Where Art Thou
Please Mark posts as answers or helpful so that others may find the fortune they seek.

Similar Messages

  • Fixed Assets Report on Acquisitions & Disposals

    Hi,
    Dear Friends could you please advise as to how can we generate the Fixed Assets Report for acquisitions and disposals of assets? Also we need to generate a report on Fixed Assets giving the complete details on opening balance, depreciation, acquisitions, disposals and closing balances.
    Your help would be much appreciated.
    Thanks in advance.
    Regards

    Hi,
    The following reports should meet your needs:
    Asset History Sheet - Tcode AR02 - opening balance, depreciation, acquisitions, disposals and closing balances
    Asset Acquisitions - Tcode AR05 - acquisitions
    Asset Retirements - Tcode AR06 - disposals
    Thanks,
    Chad

  • SSRS 2008 R2 is extremely slow. The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes. I have read this is a bug in SSRS 2008 R2. We installed the most recent patches and service packs.

    SSRS 2008 R2 is extremely slow.  The query runs in less than a second in the dataset designer but if you try to view the report it takes over 10 minutes.  I have read this is a bug in SSRS 2008 R2.  We installed the most recent patches and
    service packs.  Nothing we've done so far has fixed it and I see that I'm not the only person with this problem.  However I don't see any answers either.

    Hi Kim Sharp,
    According to your description that when you view the report it is extremely slow in SSRS 2008 R2 but it is very fast when execute the query in dataset designer, right?
    I have tested on my local environment and can‘t reproduce the issue. Obviously, it is the performance issue, rendering performance can be affected by a combination of factors that include hardware, number of concurrent users accessing reports, the amount
    of data in a report, design of the report, and output format. If you have parameters in your report which contains many values in the list, the bad performance as you mentioned is an known issue on 2008 R2 and already have the hotfix:
    http://support.microsoft.com/kb/2276203
    Any issue after applying the update, I recommend you that submit a feedback at https://connect.microsoft.com/SQLServer/ 
    If you don’t have, you can do some action to improve the performance when designing the report. Because how you create and update reports affects how fast the report renders.
    Actually, the Report Server ExecutionLog2  view contains reports performance data. You could make use of below query to see where the report processing time is being spent:
    After you determine whether the delay time is in data retrieval, report processing, or report rendering:
    use ReportServer
    SELECT TOP 10 ReportPath,parameters,
    TimeDataRetrieval + TimeProcessing + TimeRendering as [total time],
    TimeDataRetrieval, TimeProcessing, TimeRendering,
    ByteCount, [RowCount],Source, AdditionalInfo
    FROM ExecutionLog2
    ORDER BY Timestart DESC
    Use below methods to help troubleshoot issues according to the above query result :
    Troubleshooting Reports: Report Performance
    Besides this, you could also follow these articles for more information about this issue:
    Report Server Catalog Best Practices
    Performance, Snapshots, Caching (Reporting Services)
    Similar thread for your reference:
    SSRS slow
    Any problem, please feel free to ask
    Regards
    Vicky Liu

  • Regards Fixed asset report in monthly basis

    hi to all
    can you provide any standard reports for fixed asset report on monthly basis.
    Moderator message: Search before posting.
    Edited by: kishan P on Jan 2, 2012 12:05 PM

    <list of reports removed by moderator>>
    Moderator message: Let the OP search for them.
    Edited by: kishan P on Jan 2, 2012 12:03 PM

  • HELP WITH TRYING TO DO A FIXED ASSETS REPORT IN DISCOVERER

    Hi...
    I'll try and explain this simply as I can.
    I am trying to do a Disco report to basically list the asset numbers with the cost, the opening depreciation, the YTD depreciation, Accumulated depreciation and the remaining life of the asset.
    I can get most of the data from the FABG_DEPRECIATIONS table.
    The report will be run for a specific period say for example 05-2008. The problem I have is that for some of the assets there won't have been any depreciation for the year 2008 but I still need those assets to appear on the report showing the cost, opening depreciation etc.
    But because the report is being run for a specific period say 05-2008 in this example these assets that have no depreciation for the period are not being displayed on the report.
    As there isn't a field (I couldn't find one in any of the tables)that has the opening depreciation I have used a calculation for this which is Accumulated Depreciation - YTD depreciation. This is where my problem is. For those assets that have had no depreciation in the current year being reported on it should use the accumulated depreciation for say 12-2007 as the opening depreciation for the year 2008.
    So in the example of reporting for period 05-2008, it show the opening depreciation which would be the accumulated depreciation for 12-2007 and 0 (zero) for YTD depreciation.
    That is why I have attempted without success to use a union statement. The sql is below.
    I would be very grateful for some help with this please.
    select apps.fabg_depreciations.asset_id Asset_Number
    ,apps.fabg_depreciations.ytd_deprn YTD_Deprn
    ,apps.fabg_depreciations.deprn_amount Deprn_Amount
    ,apps.fabg_depreciations.accumulated_deprn Accumulated_Deprn
    ,apps.fabg_depreciations.reval_reserve Reval_reserve
    ,apps.fabg_acct_prds.period_name Period
    ,apps.fabg_asset_bks.original_cost Original_Cost
    ,apps.fabg_asset_bks.cost Cost
    ,apps.fabg_assets.asset_category_id Category_ID
    ,Null Period_Counter
    ,Null Opening_Dep
    ,apps.fabg_asset_cats.description Description
    from apps.fabg_depreciations
    , apps.fabg_acct_prds
    , apps.fabg_asset_bks
    , apps.fabg_assets
    , apps.fabg_asset_cats
    where apps.fabg_depreciations.book_type_code= 'ASSETS CCA'
    and apps.fabg_depreciations.period_counter =apps.fabg_acct_prds.period_counter
    and apps.fabg_asset_bks.asset_id=apps.fabg_depreciations.asset_id(+)
    and apps.fabg_assets.asset_id=apps.fabg_asset_bks.asset_id
    and apps.fabg_assets.asset_category_id=fabg_asset_cats.asset_category_id
    union
    select Null Asset_Number
    ,Null YTD_Deprn
    ,Null Deprn_Amount
    ,Null Accumulated_Deprn
    ,Null Reval_reserve
    ,Null Period
    ,Null Original_Cost
    ,Null Cost
    ,Null Category_ID
    ,Null Period_Counter
    ,decode(apps.fabg_depreciations.period_counter,24096,ytd_deprn,0) Opening_Dep
    ,Null Description
    from apps.fabg_depreciations
    , apps.fabg_acct_prds
    , apps.fabg_asset_bks
    , apps.fabg_assets
    , apps.fabg_asset_cats
    where apps.fabg_depreciations.book_type_code= 'ASSETS CCA'
    and apps.fabg_depreciations.period_counter=24096
    and apps.fabg_depreciations.period_counter =apps.fabg_acct_prds.period_counter
    and apps.fabg_asset_bks.asset_id=apps.fabg_depreciations.asset_id(+)
    and apps.fabg_assets.asset_id=apps.fabg_asset_bks.asset_id
    and apps.fabg_assets.asset_category_id=fabg_asset_cats.asset_category_id

    Hi...
    I've changed the custom code and used an embedded sql instead of a union but I still don't get the required info. I think it's down to the conditions. Can someone please help? Thanks.
    This is the revised code:
    select apps.fabg_depreciations.asset_id Asset_Number
    ,apps.fabg_depreciations.ytd_deprn YTD_Deprn
    ,apps.fabg_depreciations.deprn_amount Deprn_Amount
    ,apps.fabg_depreciations.accumulated_deprn Accumulated_Deprn
    ,apps.fabg_depreciations.reval_reserve Reval_reserve
    ,apps.fabg_acct_prds.period_name Period
    ,apps.fabg_asset_bks.original_cost Original_Cost
    ,apps.fabg_asset_bks.cost Cost
    ,apps.fabg_assets.asset_category_id Category_ID
    ,OD.accumulated_deprn Opening_Dep
    ,apps.fabg_asset_cats.description Description
    from apps.fabg_depreciations
    , apps.fabg_acct_prds
    , apps.fabg_asset_bks
    , apps.fabg_assets
    , apps.fabg_asset_cats
    ,(select fabg_depreciations.asset_id, fabg_depreciations.accumulated_deprn, fabg_depreciations.period_counter from apps.fabg_depreciations) OD
    where apps.fabg_depreciations.book_type_code= 'ASSETS CCA'
    and apps.fabg_asset_bks.asset_id=apps.fabg_assets.asset_id
    and apps.fabg_assets.asset_id = OD.asset_id
    and apps.fabg_assets.asset_id=apps.fabg_depreciations.asset_id
    --and apps.fabg_acct_prds.period_counter=apps.fabg_depreciations.period_counter(+)
    and apps.fabg_assets.asset_category_id=fabg_asset_cats.asset_category_id
    and apps.fabg_depreciations.period_counter=OD.period_counter(+)
    and OD.period_counter = 24096

  • Fixed Assets Reporting

    Hi All,
    I have a customer who has many company databases and is running Fixed Assets.
    They want to be able to print and file asset schedules after each depreciation run for each company.
    The current version does not allow printing of the Asset History Sheet, and exporting to Excel adds a lot of extra work to get page breaks and company names on each report.
    Has anyone developed a query for this report? I would like to solve their issue by use of a query and a print layout for them
    Thanks

    Is this a US customer running the SAP Fixed Assets add-on? I hope not becuase that add-on is not supported by SAP in the US
    Dan

  • Fixed Assets Reports - Help

    Hi all,
    Can anyone tell me which is the best report to run in Fixed Assets to get the planned depreciation for a particular month by asset for all the assets in a company code. I want to see the effect of the configuration change on the planned depreciation in the month in which depreciation is to be posted.
    Thanks in advance
    Kumar

    Hi Kumar,
    Just execute the standard SAP transaction <b>AFAB</b> in test mode. In the second window frame where it state "<b>Reason For Posting Run</b>", check the radio button "<b>Planned Posting Run</b>".  Since you want to see by asset, in the 3rd frame, "<b>Further Options</b>", tick the Check box "<b>List Assets</b>". This should give you the information you require.
    I hope the above helps.
    Regards,
    Jacob
    <b>PS:</b> Don't forget to award the point please.

  • Fixed Asset reports

    Hi,
    Are there any standard SAP reports that we could use to get the Tax Depreciations(14) for Fixed Assets in SAP?
    Any help would be appreciated.
    Thanks.
    ALAM.

    Alam:
    This link has a directory of the main reports used in Asset Accounting:  https://www.sdn.sap.com/irj/sdn/wiki?path=/display/erpfi/directoryofAsset+Reports&
    It references t-code AR03 for Total Depreciation.
    Hope that helps!
    Laurie Hensiek

  • Fixed Asset Report datewise

    Hai Experts,
          My report requirement is to get list of Fixed Asset by date wise. Now i am using BAPI_FIXEDASSET_GETDETAIL.
    This BAPI is giving output by year (Fiscal year).
           Please help me is there any other BAPI or Function Module to solve my issue. Also tell me the alternative solution for this.
    Thank you,

    check these
    BAPI_FIXEDASSET_CHANGE         Changes an Asset
    BAPI_FIXEDASSET_CREATE         Creates an Asset
    BAPI_FIXEDASSET_CREATE1        Creates an Asset
    BAPI_FIXEDASSET_GETDETAIL      Display Detailed Information on a Fixed Asset
    BAPI_FIXEDASSET_GETLIST        Information on Selected Assets
    BAPI_FIXEDASSET_OVRTAKE_CREATE BAPI for Legacy Data Transfer
    BAPI_FIXEDASSET_TEST           BAPI for Legacy Data Transfer
    AMFA                           Fixed asset posting BAPIs
    Thanks nd Regards,
    Karthik

  • Question on fixed asset reports

    Hello all,
    I work in the real estate accounting department of a large retailer. At quarter/year end we are required to prepare a set of workpapers to support the fixed asset ledger and related P&L accounts. Currently, we are using the following reports:
    To support asset account activity:
    S_ALR_87011967 – Asset balances by site
    S_ALR_87012050 – Asset acquisitions
    S_ALR_87012052 – Asset retirements
    S_ALR_87012054 – Intracompany asset transfers
    To support P&L account activity:
    FBL3N – G/L account line items
    The problem we are running into is that, for example, impairment losses are processed by retiring all the assets of the company and reacquiring them at the new fair market value. The net difference is the loss on impairment. Unfortunately, it shows up in our reports as a very large retirement followed by a very large acquisition. These need to be netted together on our schedules for the auditors. The problem right now is that we don’t have a good detail report to find impairment retirements/acquisitions, for when we select “list assets” in the retirements or acquisitions report it gives a hierarchical style report, which is almost impossible to export and process in Excel.
    So, my question is really twofold. Firstly, is it possible to turn off the hierarchical setting of a retirements or acquisition report when “list assets” is selected? Ideally, I'd like to see all the same data on a single row.
    Secondly, my real dream report would be more of a standard general ledger with a beginning balance, activity, and ending balance for the period that I could use for all my balance sheet and P&L accounts. I’ve tried using the FBL3N report for the balance sheet accounts and it works okay, but I haven’t been able to figure out how to get it to show the transaction types from the fixed asset ledger. I read something in another post that talked about using the BWASL field to show the transaction types, but I wasn’t able to locate it in the available fields list. Do I need to do something special when I run the report?
    Thank you so much!

    Hi Andreas,
    Thanks for getting back to me so quickly!
    I thought a custom query would probably be best. I'll need to request access to the transaction before I can try it out, but I'm sure I'll have a bunch more questions to bug you with when I do!
    Thanks again,
    William

  • SSRS 2008 Work order Report , when added item descriotion , somehow costgroup id is not working , donot know why, ( need help)

    SSRS 2008 Production orders created report, when I added item description some how cost group id is not working ,
    my costgroup id did not break into labor , only Mat Cost showed in the total,
    my query is as below,  did I link the wrong field,   I want to show Labor total also
    can some one suggest what I did wrong .
    any advise will be great
    SELECT        PRODTABLE.PRODID, PRODCALCTRANS.COSTGROUPID, PRODTABLE.QTYCALC, PRODTABLE.PRODSTATUS, PRODCALCTRANS.COSTAMOUNT,
                             PRODCALCTRANS.COSTMARKUP, PRODCALCTRANS.REALCOSTAMOUNT, PRODCALCTRANS.CALCTYPE, PRODTABLE.DATAAREAID, PRODCALCTRANS.KEY3,
                             PRODCALCTRANS.CONSUMPVARIABLE, PRODCALCTRANS.REALCONSUMP, PRODTABLE.ITEMID, PRODTABLE.SCHEDDATE, PRODTABLE.FINISHEDDATE,
                             PRODCALCTRANS.KEY1, PRODCALCTRANS.TRANSDATE, PRODCALCTRANS.QTY, PRODCALCTRANS.KEY2, PRODCALCTRANS.COLLECTREFLEVEL,
                             PRODCALCTRANS.LINENUM, INVENTTABLE.ITEMNAME, INVENTTABLE.ITEMID AS Expr1, PRODTABLE.INVENTTRANSID
    FROM            PRODTABLE INNER JOIN
                             PRODCALCTRANS ON PRODTABLE.PRODID = PRODCALCTRANS.PRODID AND PRODTABLE.DATAAREAID = PRODCALCTRANS.DATAAREAID INNER
    JOIN
                             INVENTTABLE ON PRODCALCTRANS.DATAAREAID = INVENTTABLE.DATAAREAID AND PRODCALCTRANS.KEY1 = INVENTTABLE.ITEMID
    WHERE        (PRODTABLE.PRODSTATUS = 7) AND (PRODTABLE.DATAAREAID = N'AR1') AND (PRODTABLE.ITEMID = @itemid) AND
                             (PRODTABLE.FINISHEDDATE >= @Paramfromdate) AND (PRODTABLE.FINISHEDDATE <= @Paramtodate) AND (PRODCALCTRANS.COLLECTREFLEVEL
    = 1) AND
                             (PRODCALCTRANS.CALCTYPE >= 0)

    Hi Bitia,
    As per my understanding, after you add Item field to the report, it does not calculate total of matl group, right? If that is the case, please refer to the following steps to troubleshoot the problem:
    Modify the dataset used to retrieve data, delete the fields will not be used in the report.
    Run the query in SQL Server Management Studio (SSMS) to make sure that there is data for matl cost group.
    Make sure that row group and totals are correctly added.
    In addition, do you want to add Finished date to page header? If that is the case, we can use ReportItem to achieve the goal. Please refer to the following steps:
    In design surface, right-click the report and click Insert, then click Page Header.
    Drag Text Box from Toolbox to page header.
    Right-click inside of Text Box, then click Expression.
    In the expression text box, type the code like below:
    =ReportItems!FinishedDate.Value
    If the problem remain unresolved, please provide the screenshot of the report in design view, the following screenshot is for your reference:
    Reference:
    ReportItems Collection References
    Adding Grouping and Totals
    Thanks,
    Wendy Fu

  • SSRS 2008 Created Commssion Report, now getting error message when I run this ( need Help)

    in SSRS 2008 2 years ago created Commission with sub reports added, it was working fine, some how started to get error  
    message when we entered some invoice # see below screen shot of error message
    but same time if I enter different invoice # it process the report without any error message , donot understand the problem
    what's causing this issue, I have looked each sub report,
    can some one suggest any idea,
    I have spent hrs to figure it out, no luck so far.
    thanks in advance
    see the 2nd screen shot with report process
    any help will be greatly appreciated

    Hi Wendy
    thanks for your reply
    I tried creating new report , I have 1 main report and 3 sub report on this
    on main report when I enter some invoice# and accountnum  data shows up with no problem,
    but same time if I enter different invoice# and accountnum , there is no data return  on same query, I have checked my query so many times, donot understand this issue, what's causing this problem, since all the data pulling from same tables, why its
    not pulling for some invoices,
     other strange thing , I created this report , year ago, there was no problem until now,
    all of the sudden this problem just shows up,'
    I am not that expert in sql , can I really use advise
    see below by query , if you can tell me what's wrong with my query I will be really greatfull I have spend so much time to figure it out, but so far no luck
    SELECT        VENDTRANS.DATAAREAID, SALESTABLE.SALESID, VENDTRANS.VOUCHER, SALESTABLE.SALESTYPE, SALESTABLE.SALESSTATUS, VENDTRANS.TRANSDATE,
                             CUSTINVOICEJOUR.INVOICEAMOUNT, VENDTRANS.INVOICE, VENDTRANS.PAYMMODE, VENDTRANS.ACCOUNTNUM, VENDTRANS.TRANSTYPE,
                             VENDTRANS.LASTSETTLEVOUCHER, VENDTRANS.TXT, CUSTINVOICEJOUR.INVOICEACCOUNT, CUSTINVOICEJOUR.INVOICINGNAME,
                             VENDTRANS.LASTSETTLEDATE, LEDGERJOURNALTRANS.ACCOUNTTYPE, LEDGERJOURNALTRANS.AMOUNTCURCREDIT, LEDGERJOURNALTRANS.LINENUM,
                             CUSTINVOICETRANS.INVOICEDATE
    FROM            SALESTABLE INNER JOIN
                             CUSTINVOICETRANS ON SALESTABLE.DATAAREAID = CUSTINVOICETRANS.DATAAREAID AND SALESTABLE.SALESID = CUSTINVOICETRANS.SALESID
    INNER JOIN
                             CUSTINVOICEJOUR ON CUSTINVOICETRANS.INVOICEID = CUSTINVOICEJOUR.INVOICEID AND CUSTINVOICETRANS.SALESID = CUSTINVOICEJOUR.SALESID
    AND
                             CUSTINVOICETRANS.INVOICEDATE = CUSTINVOICEJOUR.INVOICEDATE INNER JOIN
                             VENDTRANS ON CUSTINVOICETRANS.INVOICEID = VENDTRANS.INVOICE AND CUSTINVOICETRANS.DATAAREAID = VENDTRANS.DATAAREAID
    AND
                             CUSTINVOICEJOUR.DATAAREAID = VENDTRANS.DATAAREAID AND CUSTINVOICEJOUR.INVOICEDATE = VENDTRANS.TRANSDATE INNER JOIN
                             LEDGERJOURNALTRANS ON VENDTRANS.DATAAREAID = LEDGERJOURNALTRANS.DATAAREAID AND
                             VENDTRANS.ACCOUNTNUM = LEDGERJOURNALTRANS.ACCOUNTNUM AND CUSTINVOICETRANS.LINENUM = LEDGERJOURNALTRANS.LINENUM AND
                             VENDTRANS.INVOICE = LEDGERJOURNALTRANS.INVOICE AND VENDTRANS.VOUCHER = LEDGERJOURNALTRANS.VOUCHER AND
                             VENDTRANS.PAYMMODE = LEDGERJOURNALTRANS.PAYMMODE AND VENDTRANS.TRANSDATE = LEDGERJOURNALTRANS.TRANSDATE
    WHERE        (VENDTRANS.DATAAREAID = N'AR1') AND (SALESTABLE.SALESTYPE = 3) AND (SALESTABLE.SALESSTATUS = 3) AND (VENDTRANS.ACCOUNTNUM = @Accountnum)
                             AND (VENDTRANS.INVOICE = @Invoice) AND (LEDGERJOURNALTRANS.ACCOUNTTYPE = 2)

  • Standard T-code of Fix Asset report which shows Quanity and Value

    Hi friends,
    Is it any T-code in SAP which shows Fix Asset with quality and value.
    regards
    Hemant Maurya

    Hi,
    All standard SAP asset reports show values for Eg.S_ALR_87011990. To display quantity you may create a sort variant with quantity as one of the fields through S_ALR_87009120. You can then run the above report i.e. S_ALR_87011990 with this sort variant to display quantities also along with values.
    regards,
    Swati

  • SSRS 2008 r2 - the Report Manager won't load unless "/Reports" is added to the DNS entry in address bar

    Need some direction, please.
    We are moving off  SSRS 2005 to a new server with SSRS 2008R2. The old installation (2005) a DNS entry was created "reports" with the ip address and port number simple. In the Configuration manager the Report Manager Virtual Directory
    is "Reports". Website is Default web site. Typing "reports" into the address bar opens up report manager. When this is done the address shows as reports/reports/pages/folder etc.
    The new installation is configured the same(?). DNS entry "reports2" with new ip address and port number. In the Configuration manager the Report manager URL virtual directory is "Reports" URLs: =
    http://servername:port/Reports. The issue is when typing "Reports2" into the address bar the report manager won't open unless "reports" is added to the dns name i.e. http://reports2/reports
    is entered.
    This thread took me to more like kind thread than my searches. Went into IIS in the default web site I added an htm file with a redirect. Then started it, it works. Maybe due to my inexperience but seems counter intuitive as I thought Reporting Services did
    away with any reliance on IIS.

    Hi Urquhart,
    According to your description, if you type "Reports2" in the browser, then you want to redirect to the report manager homepage in SSRS 2008 R2, right?
    In Reporting Services 2008 R2, it uses HTTP.SYS for HTTP access and it’s independent of Internet Information Server(IIS). The role for HTTP.sys in Reporting Services is that, HTTP.sys receive the user's request, and then send it to report server. Report
    Server handle the request(e.g. authenticate the users), and then use HTTP.sys the send HTTP responses again. In a word, HTTP.sys is just a driver, which allow us to communicate the clients(browser) with Report Server without Microsoft Internet Information
    Server(IIS).
    So, since HTTP.SYS doesn’t provide URL redirection function, we are not able to redirect "Reports2" to report manager homepage by default. If we want to use redirect function, we should add a .html file in IIS to redirect the user to the report
    manager.
    Similar thread for your reference:
    SSRS 2008 URL Redirecting
    SSRS 2008 R2 Homepage Redirection
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • SSRS 2008 Work order report , in sub total donot want to add the 0 level in ( how to add the expression )

    working in Work order report, this report has different level , for example
    0 level transaction
    1 level transaction
    in subtotal don't want to add 0 level transaction,
    when I did the sub total it added all the level , so in sub total amount double up because of that
    how to add the expression so I can the level 0 take out from sub total , so it does not include in sub total
    can some one please help me with this
    thanks in advance

    Hi Simon_ Hou
    I tried the expr the way you suggested , it did not work  getting  error message,  the exp I added is below
    this the expression I added on sub total where is highlighted in Yellow,  under Cost amount column,
    I really appreciate the help
    =Sum(IIF(Fields!COLLECTREFLEVEL.Value=
    "0",0,Fields!CostAMOUNT.Value),"DataSet1")
    please see below my QUERY, can you please help and let me know what I did wrong in my exp
    SELECT        PRODTABLE.PRODID, PRODCALCTRANS.COSTGROUPID, PRODTABLE.QTYCALC, PRODTABLE.PRODSTATUS, PRODCALCTRANS.COSTAMOUNT,
                             PRODCALCTRANS.COSTMARKUP, PRODCALCTRANS.REALCOSTAMOUNT, PRODCALCTRANS.CALCTYPE, PRODTABLE.DATAAREAID, PRODCALCTRANS.KEY3,
                             PRODCALCTRANS.CONSUMPVARIABLE, PRODCALCTRANS.REALCONSUMP, PRODTABLE.ITEMID, PRODTABLE.SCHEDDATE, PRODTABLE.FINISHEDDATE,
                             PRODCALCTRANS.KEY1, PRODCALCTRANS.TRANSDATE, PRODCALCTRANS.QTY, PRODCALCTRANS.KEY2, PRODCALCTRANS.COLLECTREFLEVEL,
                             PRODCALCTRANS.LINENUM
    FROM            PRODTABLE INNER JOIN
                             PRODCALCTRANS ON PRODTABLE.PRODID = PRODCALCTRANS.PRODID AND PRODTABLE.DATAAREAID = PRODCALCTRANS.DATAAREAID
    WHERE        (PRODTABLE.PRODSTATUS = 7) AND (PRODTABLE.DATAAREAID = N'AR1') AND (PRODTABLE.ITEMID = @itemid) AND
                             (PRODTABLE.FINISHEDDATE >= @Paramfromdate) AND (PRODTABLE.FINISHEDDATE <= @Paramtodate)

Maybe you are looking for

  • Itunes won't open on my Vista Ultimate OS-error message is "ITunes won't open w/o Apple applications support, uninstalled and installed numerous time, QuickTime too?

    Itunes will not boot on Vista Ultimate-  error message is Itunes cannot opperate w/o Apple Application Support ITunes has been uninstalled and reinstalled numerous times, program files and Window files have been checked and deleted. All I want to do

  • Command Link attribute is returning null.

    Hi all, I have a pojo iterator with me. I have to generate command link for a attribute from that iterator. I generated them using a ForEach loop as below and put address of employee as an attribute of that tag. Now in the Action Listener i am fetchi

  • Oracle AWM

    Dear community, I would like to create cubes and to perform olap analysis by Oracle. I read that there is an Oracle tool named AWM (Analytic Workspace Manager) that do exactly this. The problem is that I can't find the download link in the Oracle Dow

  • Internal table operations

    Hi all,    Please tell me the alternative of using loop that is specified in Bold. some body saying that is an alternative of using some statement without using loop in loop. * data declaration DATA: BEGIN OF T1 OCCURS 0, F1 TYPE I, END OF T1. DATA:

  • Replacing the plastic cap on the magsafe power adapter

    I really love the tiny plastic caps that Apple sticks on top of the magsafe power adaptors, but alas! I finally lost mine today and am wondering where I can find a replacement (or two, or three). I have had no luck searching online for a solution. Pl