SSRS Report - Group Totals are Zero when Group Row Hidden

I have a report with one group called Counties. This group has a filter.
I added code to produce the totals for Prior, Current and DistinctCount:
Public Shared Dim grandTotal1 as Decimal = 0
Public Shared Dim CountyTotal1 as Decimal = 0
Public Function AddTotal1(ByVal b AS Decimal) AS Decimal
grandTotal1 = grandTotal1 + b
CountyTotal1 = CountyTotal1  + b
return b
End Function
Public Function GetCountyTotal1()
Dim ret as Decimal = CountyTotal1
CountyTotal1 = 0
return ret
End Function
Public Function GetGrandTotal1()
Dim ret as Decimal = grandTotal1
grandTotal1= 0
return ret
End Function
Public Shared Dim grandTotal2 as Decimal = 0
Public Shared Dim CountyTotal2 as Decimal = 0
Public Function AddTotal2(ByVal b AS Decimal) AS Decimal
grandTotal2 = grandTotal2 + b
CountyTotal2 = CountyTotal2  + b
return b
End Function
Public Function GetCountyTotal2()
Dim ret as Decimal = CountyTotal2
CountyTotal2 = 0
return ret
End Function
Public Function GetGrandTotal2()
Dim ret as Decimal = grandTotal2
grandTotal2= 0
return ret
End Function
Public Shared Dim grandTotal3 as Decimal = 0
Public Shared Dim CountyTotal3 as Decimal = 0
Public Function AddTotal3(ByVal b AS Decimal) AS Decimal
grandTotal3 = grandTotal3 + b
CountyTotal3 = CountyTotal3  + b
return b
End Function
Public Function GetCountyTotal3()
Dim ret as Decimal = CountyTotal3
CountyTotal3 = 0
  return ret
End Function
When it runs, it gives me this:
This works fine. But now I need to hide the details on the counties. I just need the line with the 15, 32 and the 9.
I highlighted the group row, right clicked -> Row Visibility and changed it to Hide. But when I do this, my results are three zeros.
I am at a loss now on how to just show the totals. Does anyone have any suggestions for me to try?
cpemtp1

Hi cpemtp1,
Per my understanding that you just want to get the total display in the report and hidden the details, right?
I have tested on my local environment and suggest you to create an new dataset and using the query below to get the Total of every country and then you can using the SUM() function to sum the total of all the country which meet the  conditions.
Detail information below for your reference:
Create an new dataset and using the query below to get the sum of every country meet the filter condition:
Select a.PRIORYEAR,a.CUREENTYEAR ,a.Country from (select SUM(PRIORYEAR) as P1,SUM(CUREENTYEAR) as C1,Country
from TableName
group by Country) a
where a.P1<=a.C1
Create an new tablix under the button of the existing Tablix or you can just remove the old tablix as below
Original Table:
New designed total:
If you still have nay problem, please feel free to ask.
Regards
Vicky Liu
Vicky Liu
TechNet Community Support

Similar Messages

  • Alter nate color applied in SSRS report is not updating correctly when you export to excel

    alternate color applied in SSRS report  is not updating correctly when you export to excel. Please let me know how can I resolve this issue
    Smash126

    Expression I am using report is
    =IIf(RowNumber(
    Nothing)
    Mod2 = 0,
    "Silver",
    Nothing)
    Smash126

  • How to Keep all the Portal report menu's are "open" when the user logs on?

    Hi
    I have a question about the BI Portalu2019s configuration.  Does anyone know how to keep the Web Portal (i-vew) report menu's are "open" when the user logs on?
    Thanks.
    For example:
    Web Report Panel
    Report  Folder A 
                  i-view  a1
                  i-view  a2
                  i-view  a3
                  i-view  a4
                  i-view  a5
                  i-view  a6
    Report  Folder B 
                  i-view  b1
                  i-view  b2
                  i-view  b3
                  i-view  b4
                  i-view  b5
                  i-view  b6

    Hi,
    Thank you very much.  The problem is the Folder didn't 'open when the user logs on.  Yes, the iview can be openned.  Does anyone know how to set the default Open for the Folder.  My question is about the folder in BI portal.  Yes, the ivew we can set the defaul Open but we have Folder in the portal and our user wants to be able to see the report lists when they log on to the Portal.
    For example:
    Our Current situation
        Navigation Panel
       .>Act vs Plan report Folder_
       .>Year to Day report Folder_
    Hope To Be (When user logs on the BI Portal)
       Navigation Panel
        .>Act vs. Plan report Folder
            (i-view) Report A
            (i-view) Report B
            (i-view) Report C
            (i-view) Report D
            (i-view) Report E
    .>Year to Day report Folder
           (i-view)  Budget by Cost Element report
           (i-view)  Actual by Cost Center report
           (i-view)  Income statement report
           (i-view)  Balance Sheet report

  • Group totals summary in another group summary section

    I have a report requirements that need to re-display the group total in a summary section.   Please see below simple example.  The second summary does not have fixed number of Units, it depends how many units are in each Department.
    I am not able to reproduce the department summary.   Is this possible in SSRS, I can do this in crystal?
    Example:
    Department ABC  Unit 100
    details line here....
    Unit 100 totals here
    Unit 120
    details line here.....
    Unit 120 totals here
    Unit 140....... 
    Department ABC summary
    Unit 100 total
    Unit 120 total
    Unit 140 total
    Department XYZ 
    Unit .................
    Department XYZ summary
    unit totals.................... (one to many)
    Final Summary
    Department ABC total
    Department XYZ total
    Jim Pan

    Hi Jim,
    In your case, we can work around the issue in SSRS. Suppose we have a dataset (DataSet1) include following fields: Department, Unit, Amount. Please refer to the following steps:
    Add a table in the report body. Please refer to the table structure below:
    Parent Group: Department
    Child Group: Unit
    Data: Amount
    Click the blank arrow of (Details) in the Row Groups dialog box. Click Add Total.
    Use the same method add total to the Unit and Department group.
    There is a screenshot for your reference:
    If you have any questions, please feel free to let me know.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • SSRS report email Scheduling omit zero record

    Is that a way to omit zero record for SSRS report email scheduling?
    That means if zero record happened it shouldn't trigger emailing.

    Hi SAMSUNG TECH,
    Per my understanding that you don't want to send the scheduled email subscription if the report have no data, right?
    I have tested on my local enviroment that you can modify the commend in the job step include some condition to send the email or not.
    Detials information in below for you reference:
    Open SQL Server Management Studio (SSMS) to connect to Database Engine ->expand SQL Server Agent->expand Jobs, double-click the Job.
    you can use query below to find the Subscription you have just created and the “ScheduleID” in the table is equal to the Jobs Name.
    use ReportServer;
    SELECT USR.UserName AS SubscriptionOwner
    ,SCH.ScheduleID
    ,SCH.NextRunTime
    ,SCH.LastRunTime
    ,SCH.EndDate
    ,SCH.EventData
    ,SUB.EventType
    ,SUB.SubscriptionID
    ,SUB.ModifiedDate
    ,SUB.[Description]
    ,SUB.DeliveryExtension
    ,SCH.Name AS ScheduleName
    ,CAT.[Path] AS ReportPath
    ,CAT.[Description] AS ReportDescription
    FROM dbo.Subscriptions AS SUB
    INNER JOIN dbo.Users AS USR
    ON SUB.OwnerID = USR.UserID
    INNER JOIN dbo.[Catalog] AS CAT
    ON SUB.Report_OID = CAT.ItemID
    INNER JOIN dbo.ReportSchedule AS RS
    ON SUB.Report_OID = RS.ReportID
    AND SUB.SubscriptionID = RS.SubscriptionID
    INNER JOIN dbo.Schedule AS SCH
    ON RS.ScheduleID = SCH.ScheduleID
    ORDER BY USR.UserName
    ,CAT.[Path]
    2.  Select "Steps" on the left pane on the Job Properties window.
    3.  Click Edit button in the bottom of the window and then change the command
    Existing command is:
    EXEC [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='9be28f07-3784-4070-802a-b7ca0aec4c7c'
    Change the command as below: (Remember to check the Database Name and table name):
    If exists
    (Select top 1 * from [DBName].TableName )
    EXEC   [ReportServer].dbo.AddEvent @EventType='TimedSubscription',   @EventData='9be28f07-3784-4070-802a-b7ca0aec4c7c'
    BEGIN
    END
    Note: Change the @EventType and @EventData to the values in your job,the value of this two fields can be found by execute the query in step1.
    More details information in below articles:
    http://www.jasonyousef.com/2012/02/dont-send-that-empty-ssrs-report.html
    http://blogs.msdn.com/b/bimusings/archive/2005/07/29/445080.aspx
    If you still have any question, please feel free to ask.
    Regards
    Vicky Liu

  • SSRS 2008 R2 Report - Sum Totals of a Filtered Group

    I'm at a loss here, so any help will me much appreciated. I will do my best to explain, but if you need additional information, please let me know:
    I have a very large dataset of patient data. Specifically for the numbers I need, I have a patient number field, a county field, a 1 or 0 for LastYear field, and a 1 or 0 for CurrentYear field.
    Example:
    PtNo    County  PY  CY
    45676  Scott     0    1
    45322  Cape     1     0
    47686  North     0     1
    The thing I am shooting for on my report is, "Volume growth in 3 counties (+20 cases)."
    I created a group and grouped by County (group name County) and I included a group filter to only include "total cases of CY" are greater than "total cases of PY" to narrow my data to only counties that had a higher current year sum
    than previous year sum.
    Example:
    County  PY    CY  Difference
    Scott    141  143     2
    Cape     90    98      8
    North    78     88    10 
    All is working well, except I don't need to see the Counties themselves, I just need the 3 counties and a difference of 20. 
    I explored online and found tutorials that said to right click on the field and select "Add Total" but this total did not have my filter in it and gave me everyone. I also tried adding a row outside the group and used the RunningValue function
    (i.e. RunningValue(Fields!FYTD_Current_Year.Value, Sum, "County"))  but it gave me a message that states "The Value expression for the text box 'Textbox456' has a scope parameter that is not valid for an aggregate function. The scope
    parameter must be set to a string constant that is equal to either the name of a containing data region or the name of a dataset."
    When I move the row with the RunningValue function inside the group, it runs but I get the same information repeated twice for each county with no final total.
    So I am not sure how to go about getting my values I need for my report. Anybody know how to resolve this?
    Thanks,
    Cyndi
    cpemtp1

    Hi Cyndi,
    Based on my understanding, you specify a filter condition in group properties. Then you want to sum the filtered values for each field.
    In this scenario, we need to specify a filter condition on group level. If we use sum() function out of group, the expression will calculate the total values on dataset level instead of group level. So we can’t simply use expression to achieve this goal.
    However, we can use custom code to record the filtered values for each field, then we can calculate the total based on these values. Please refer to the steps and screenshots below:
    1. Add the custom code below into the report:
    Public Shared Value1 as Integer=0
    Public Shared Function GetValue1(Item as Integer) as Integer
    value1= value1 + Item
    return Item
    End Function
    Public Shared Function GetTotal1()
    return value1
    End Function
    Public Shared Value2 as Integer=0
    Public Shared Function GetValue2(Item as Integer) as Integer
    value2= value2 + Item
    return Item
    End Function
    Public Shared Function GetTotal2()
    return value2
    End Function
    2. Design the tablix like below:
    3. The result looks like below:
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Group Contacts are shown in email (not hidden)

    Prior to Mavericks update, when I'd send an email to a group which I created in Address Book, I had the option (I think) of making those email addresses within the group to stay hidden. BCC, if you will.
    Not only did I have a difficult time choosing my group (it did not automatically fill in, nor did click/drag work), but now I'm embarrassed that all of the addresses are shown in the actual email.
    I was not able to find a setting that would allow me to ensure these addresses were kept private ...
    I'm hoping someone can point me in the right direction (and understands my question).
    Thanks in advance. First time posting!

    Well, I guess I'm glad it's not just me ... anxiously waiting for a fix.
    Contacts are also a bit 'wonky' when it comes to choosing a person/group when composing the email. ie, when I type in "xyz group", in the past just that group or any that started with the same letters would appear and I'd select it and I was good to go. Yesterday I noticed that there seemed to be two to choose from and I dare say that one group really wasnt a group at all and the email did not go out to all of the contacts in that group.
    I've attached some images to help explain what I mean ... "longaberger" is the group I'm wanting to send to.
    In the first image you see I have a few choices - only those exactly called "longaberger" are what I'm looking at.
    In the next image you see I've picked the first one, but notice how it appears ... it's really not a group.
    In the next images I've selected the other "longaberger" and see that that is the actual group.
    Thoughts? Comments? How do we make Apple aware of these issues?

  • Report Painter - Totals are different on face of report & line item details

    Hello,
    We have a report designed in report painter. Thye lIbrary table is GLPCT.
    When we run the report system gives e.g. 100 $ on face of report. However when we double click on that line to get a line item details reoprt the value is different. It is either less or more than the amount diaplayed on initial report.
    Please can you suggest what coule be the probable reason for this anamoly.
    Thaks & Regards
    Shreenath

    Hi Sreenath,
    when you double-click on a line you are jumping to another report.
    The report you are jumping to has either been defined as a linked report by you, or it has been copied from an original SAP-report if you started the creation of your report by copying a standard SAP report.
    The sending report tries to pass on all the selections for the cell you double-click to the line-item report. For standard SAP reports it is guaranteed that this should work and the line item report gives the sames results as the report you are calling it from.
    For self-defined reports, this may not always work. I have had problems especially when calling line-item reports from sum-lines of my self-defined report. The reason was that the selections could not be passed on properly.
    Example:
    line 1: selection on account X and profit center A
    line 2: selection on account Y and profit center B
    line 3: sum of line 1 and line 2
    Now, when I double-click on a cell of line 3 and jump to line items, it passes on the selection idependently, i.e.
    accounts: X, Y
    profit center: A, B
    the line item report now gives me all values for all combinations of accounts X and Y and profit centers A and B.
    It does not take into account the combined selections in my original report.

  • Display totals of 0 when no rows problem

    i have the following data
    code code2 rank id
    a1 red ff 1
    a1 red ff 2
    a1 red cm 3
    a1 blue ff 4
    a1 blue ff 5
    a1 blue ff 6
    a1 blue wma 7
    I want to display this grouped as follows
    a1 red ff 2
    a1 red cm 1
    a1 red wma 0
    a1 red wmb 0
    a1 blue ff 3
    a1 blue cm 0
    a1 blue wma 1
    a1 blue wmb 0
    i can retrieve the counted totals of id okay and include the wma, wmb rank but can only display them once not within each group of code, code2
    Any Help?

    Hi,
    You're correct that you need an outer join.
    If you make your present query an in-line view, it doesn't matter what's going on inside it: you can OUTER JOIN to the result set as you need to.
    Try this
    WITH
    original_query  AS
    select s.code, w.watch, r.code
           AS r_code -- Make names unique
           , count(*) amt
                             from  frs_station_assignments sa,
                            frs_stations s, frs_watches w, frs_firefighters f,
                            frs_ranks r
                           where r.code = f.rnk_code
                           and sa.fgt_id = f.id
                           and sa.stn_id = s.id
                          and sa.wch_id = w.id
                          and r.code in ('CM','FF', 'WMA','WMB')
                          and s.code = 'A1'
                          and w.watch in ('RED','WHITE','BLUE','GREEN')
                  group by s.code, w.watch, r.code
                  -- ORDER BY is done in main query
    SELECT  code
    ,       colors.watch
    ,       r_code
    ,       NVL (amt, 0)
    FROM    colors
    LEFT OUTER JOIN  original_query oq
    ON      colors.watch = oq.watch
    order by code, watch, r_code;If you don't have a colors table (with one row for every possible color), you can use another in-line view:
    WITH
    colors  AS
        SELECT DISTINCT watch
        FROM  frs_watches
        WHERE ... -- If necessary
    original_query AS ...
    [PRE]
    If frs_watches is the colors table, then take all references to it out of the big in-line view, and put them in the main query.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • CRM to BW extract - All Duration amounts are zero using 0CRM_SALES_ACT_1

    Hello,
    We are implementing the "CRM 4.0 Interaction Center with Winclient" and are using BW 3.1 for reporting.  The problem we are encountering is we are getting "DURATION" and "Face to Face Duration" amounts that are ZERO when extracting call center activity data using the data source 0CRM_SALES_ACT_1.  This data source feeds into the ODS 0SAL_DS01.  We are expecting the "Duration" amounts to be non-zero and represent the time the call center agent worked on a particular activity.  The data we are testing with has been entered manually and we are not yet connected using telephony server (so we cannot use the CTI data yet). 
    Any help regarding how I might solve this problem would greatly be appreciated.  Possibly this is a CRM configuration issue but don't know.
    Thanks and Regards,
    David Schroeder
    John Deere
    (309)748-1724

    Hi Silvio,
    I've experienced a similar problem with this extractor.  I attempted to Initialize Delta with Data Transfer to no avail.  The job ran for 12+ hours and stayed in "yellow" status (0 records extracted).  The following steps worked for me:
    1.  Initialize Delta without Data Transfer
    2.  Run Delta Update
    3.  Run Full Update and Indicate Request as Repair Request
    Worked like a champ, data load finished in less than 2 minutes.
    Hopefully this will help.
    Regards.
    Jason

  • View any report by presing button not when the page rendered by default

    hi all,
    i am new in apex and i need in help to solve the below issue:
    the reports in apex are shown when the page called by default,
    i want that the report will show only when i press any button to show it not when the page requested.
    hope i can get some solutions here.
    regards
    adnan

    Position the button ("Go", for example) in a region that always appear by default.
    Your report should be in a different region, but conditionally renders only when button Go is pressed (aka, request triggered by the button is activated)... or only when some parameter is not blank, whatever the condition you want to create.
    Edited by: Kleber M on Oct 7, 2011 7:33 AM

  • How to create dynamic variables with SSRS report ?

    Hi everyone,
    I want to create one dynamic SSRS report which  can show details when user input data into textbox . Example : Users will input app_id then report will show details of each this id ( name, phone,salary...) .
    Pls help me solve it .
    Many thanks,
    Hong

    Follow below step.
    1. First create a dataset. The select statement or result set must contain (App_id, name, phone,salary...).
    2. Add a report parameter "App ID" with default setting.
    3. Drag dataset fields to a table or tablix. Select the tablix properties. Go to Filter section.
    4. Select the expression as Field App ID, Operator as "=" and Value as Parameter App ID.
    Regards, RSingh

  • SSRS reports in office 365 and its alternative

    We are migrating MOSS 2007 to Office 365. I would like to have SSRS reports which are in MOSS 2007 to be present in Office 365. I Know Office 365 doesnt support SSRS reports. What
    are the alternatives I have?? Can i use power BI to accomplish this task?

    Hi Raju,
    Not right now, but as presented in the PASS summit, it is coming. Check it out this movie (fwd to ~ minute 38):
    http://www.sqlpass.org/bac/2014/DayOneKeynote.aspx
    Please contact us @
    [email protected] if you would like to discuss more details.
    Guy
    GALROY

  • SSRS 2012 - Groups in Report Manager aren't present when exported to Excel

    Hi all, hope somebody can help with this issue, as I cant seem to find any other posts about it
    I have a report in SSRS2012. It was copied from SSRS2005 quite recently, as we have upgraded. The SQL developer said that it didn't need any code changes, as he had some kind of tool to test code problems between the two versions.
    The report has a table, with 5 row groups, and one detail row. The table is setup as follows:
    Name                                         Sales         
    Costs       Profit
    Group1                                     
       Group2
          Group3
             Group4
                Group5
                   DetailsRow
    When I run this report using the Report Manager website from SSRS2005, and then export to Excel 2013, I get the 6 row groups in Excel, no problem whatsoever. I can drill into each group in Excel, using the group drilldown column on the left hand side. This
    works the same as the Report Manager website.
    If I run the exact same report from the Report Manager website in SSRS2012, the Report Manager result is the same as SSRS2005 - all the row groups are present, and the drilldown works fine. However, the export to Excel has issues with the groups. There are
    only 3 row groups showing in Excel, along with a column group added for no apparent reason. Drilling into each group shows inconsistent details, and there is no apparent logic as to what is shown within each group.
    Hopefully, someone has seen this issue before, and can help, because I have no idea what to do, having spent a couple of days trying to figure it out. I should also mention, that this issue with groups is seen on all my reports which have groups, not just
    this report
    Thanks for any and all help
    Naz

    Hi Naz,
    According to your description, the report works correctly in SSRS 2005 while the same report doesn’t work in SSRS 2012 when exporting to a Excel file.
    In your scenario, please make sure you are migrating the report from SSRS 2005 to SSRS 2012 instead of copying the .rdl directly. Generally, we are using Reporting Services Migration Tool to migrate reports between report server. Please refer to this article:
    SQL Server Reporting Services: Migrating SSRS reports, data sources and subscriptions from one server to another.
    After migrating the report successfully, you should upgrade the report definition in SQL Server Data Tools to upgrade the .rdl file. Please refer to this article:
    Upgrade Reports.
    If you have upgraded the report but the issue still persists, please provide report design for our analysis. If possible, please provide some screenshots about the preview result and Excel render result.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How to hide columns in each page of SSRS report for grouped tablix

    Hello all,
    I have a requirement like when SSRS report (used row grouping)is exported to EXCEL
    1)  Each report page should be exported to a separate excel sheet
    2) Each sheet will have different columns (that is some columns will hide in sheet2, sheet3...)
    3) Eg: If a country report is there with details like country name, country code, currency code. Now each country details should export to separate excel sheet and sheet 1 should show Country Name and Country code; Sheet2 should show: Country Code, Currency
    Code; Sheet3 should show: Country Name, Country Code, Currency Code.
    I am done with point#1 above: Each report page should be exported to a separate excel sheet. Can some one help on point#2:Each sheet will have different columns (that is some columns will hide in sheet2, sheet3...)
    Thanks,
    Paandey : Dont forget to mark it as Answered if found useful

    Hi paandey,
    According to your description, there are three columns named country name, country code, currency code in the report. When export the report to excel, you want to show Country Name and Country code in sheet1, Country Code and Currency Code in sheet2, and
    show all of the three columns in sheet3.
    In Reporting Services, we couldn’t achieve your goal by setting visibility of columns in one tablix. As a workaround, we can use three tablix in the report, then add page break to the tablix. For detail information, please refer to the following steps:
     1. Since you have created a tablix with three column, copy and paste it to the report twice.
     2. Right-click column handle of Currency code in tablix1, click Column Visibility.
     3. Check Show or hide based on an expression, click (fx) button, then type the expression:
    =(Globals!RenderFormat.Name = “EXCELOPENXML”)
     4. Right-click column handle of Country name in tablix2, set its visibility like step3 above.
     5. Select and right-click tablix2, click Tablix Properties.
     6. In General pane, in Page Break Options section, check Add a page break before check box.
     7. Click Visibility in left pane, check Show or hide based on an expression, click (fx) button, then type the expression:
    =(Globals!RenderFormat.Name <> “EXCELOPENXML”)
     8. Select and right-click tablix3, add page break to it like step6 above.
     9. Set its visibility like step7 above.
    The following screenshot is for your reference:
    For more information, please refer to the following document:
    http://blogs.msdn.com/b/robertbruckner/archive/2010/05/16/report-design-naming-excel-worksheets.aspx
    If you have any more questions, please feel free to ask.
    Best Regards,
    Wendy Fu

Maybe you are looking for

  • Pricing doc. does not exist in CRM Sales Doc Creation

    Hello gurus I am new to Sales within CRM and recently have set up the IPC. The IPC communicates with the CRM Server without any issues.  I have download all data required in the IPC. When I create a new sales order in CRM all is ok apart from the con

  • For All Those Who Miss The Old Layout After Upgrad...

    So yeah, I feel your pain but I've found a kind of workaround that will give you some of the missing layout features you miss from the previous versions of Skype, including the compact view and opening chats in new windows. To do so, follow these ste

  • How to know the debit of dowloading in ftp to use it in the progress bar

    hello i have a class that download file from the server , and another class (progress bar) i dont know how i can get the debit of downloading with(ftp jave) to use it in the progress bar if so have an idea or have used the progress bar in ftp getting

  • "Long Page Applications" (vs. Ajax)

    I'm considering doing all my new websites in Flex, however I have one concern: Many website pages' content go way down pass "the fold" and are very long (or high), as you scroll down and down using the browser.  (e.g., a forum thread with many posts

  • PI Sender JMS channel not reading data

    Hello All, Scenario is JMS to Proxy. I have configured the JMS PI sender channel as per the details given by legacy team and they validated and confirmed that the channel configuration is correct. Also PI JMS Sender channel is with green status and n