Showing posts with label state. Show all posts
Showing posts with label state. Show all posts

Monday, March 26, 2012

GetReportChunk(*,1) - Chunk was not found

Hi,
I'm seeing a lot of errors in my logfiles that state:
"INFO: ### GetReportChunk('C_4_S', 1), chunk was not found!
this=787c692c-161e-4696-89a0-ff884060abef"
I have a couple questions about these statements:
1. What do they mean
2. If a chunk isn't found does it mean that the report will not display
properly to the enduser
I also have log statements that state:
"INFO: ### GetReportChunk('RenderingInfo_EXCEL', 2), chunk was not
found! this=34c1c598-ffc4-4777-a478-f26ab9f8d9e6"
I wouldn't have been looking for the errors except that a couple of my
reports won't export properly to ANY format other than HTML4.0. I've just
started down the path of troubleshooting it and this is the first bit of
information I've run into that looks promising.
Also, from within VS.NET I'm able to export a report to Excel (PDF, XML,
etc.), but I'm not able to export the same report once it's been published
to RS.
Any thoughts, etc?
Thanks!
- JoelThese are not errors (which is why they are marked info) Lots of people
have been confused by this and we plan on changing this behavior in our next
release. Do you get an error when you try to export?
--
-Daniel
This posting is provided "AS IS" with no warranties, and confers no rights.
"Joel Rumerman" <JRumerman@.prometheuslabs.com> wrote in message
news:%23f8ryJJCFHA.904@.TK2MSFTNGP12.phx.gbl...
> Hi,
> I'm seeing a lot of errors in my logfiles that state:
> "INFO: ### GetReportChunk('C_4_S', 1), chunk was not found!
> this=787c692c-161e-4696-89a0-ff884060abef"
> I have a couple questions about these statements:
> 1. What do they mean
> 2. If a chunk isn't found does it mean that the report will not display
> properly to the enduser
>
> I also have log statements that state:
> "INFO: ### GetReportChunk('RenderingInfo_EXCEL', 2), chunk was not
> found! this=34c1c598-ffc4-4777-a478-f26ab9f8d9e6"
> I wouldn't have been looking for the errors except that a couple of my
> reports won't export properly to ANY format other than HTML4.0. I've just
> started down the path of troubleshooting it and this is the first bit of
> information I've run into that looks promising.
> Also, from within VS.NET I'm able to export a report to Excel (PDF, XML,
> etc.), but I'm not able to export the same report once it's been published
> to RS.
> Any thoughts, etc?
> Thanks!
> - Joel
>|||Daniel,
Thanks for the response.
Yes, I'm getting an error when I try to export a report when it has been
created with a specific set of parameters. It's funny, it works fine on our
Development box running RS Dev Edition, works fine when trying to export it
from within VS.NET, but fails when exporting on the production box that is
running Standard Edition. I did some testing with the report and it seems
that if I remove the legend from the chart, the export works just fine. I'm
perplexed by this and have posted another question to the newsgroup to ask
for information.
Thanks for any and all help!!
- Joel
"Daniel Reib [MSFT]" <danreib@.online.microsoft.com> wrote in message
news:e%23%23nNRVCFHA.3368@.TK2MSFTNGP10.phx.gbl...
> These are not errors (which is why they are marked info) Lots of people
> have been confused by this and we plan on changing this behavior in our
> next release. Do you get an error when you try to export?
> --
> -Daniel
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>
> "Joel Rumerman" <JRumerman@.prometheuslabs.com> wrote in message
> news:%23f8ryJJCFHA.904@.TK2MSFTNGP12.phx.gbl...
>> Hi,
>> I'm seeing a lot of errors in my logfiles that state:
>> "INFO: ### GetReportChunk('C_4_S', 1), chunk was not found!
>> this=787c692c-161e-4696-89a0-ff884060abef"
>> I have a couple questions about these statements:
>> 1. What do they mean
>> 2. If a chunk isn't found does it mean that the report will not
>> display properly to the enduser
>>
>> I also have log statements that state:
>> "INFO: ### GetReportChunk('RenderingInfo_EXCEL', 2), chunk was not
>> found! this=34c1c598-ffc4-4777-a478-f26ab9f8d9e6"
>> I wouldn't have been looking for the errors except that a couple of my
>> reports won't export properly to ANY format other than HTML4.0. I've just
>> started down the path of troubleshooting it and this is the first bit of
>> information I've run into that looks promising.
>> Also, from within VS.NET I'm able to export a report to Excel (PDF, XML,
>> etc.), but I'm not able to export the same report once it's been
>> published to RS.
>> Any thoughts, etc?
>> Thanks!
>> - Joel
>|||Joel:
Did you ever figure this one out? I am having a similar problem...I
found that is if I disable SSL in the RSReportServer.config file, I can
export with no problems...but if I have SSL on at any level (1,2, or 3)
I cannot export from within Report Manager. I get a file not found
error.
Erik

Monday, March 12, 2012

Get toggle state in an expression

Is it possible to get a toggle state in an expression?
I'm thinking something like:
=Switch( ReportItems!textbox8.ToggleState, true,
RunningValue(1, Count, "table1") > 3, true,
true, false)
Of course, "ToggleState is not a member of ReportItem". Is there a
member that will tell me if the toggle box is showing a + or -? Or
some other way of telling if the button has been toggled?
ThanksHi steve,
Even I am looking for same kind of solution.Did you come across anything for
this.
Do mind sharing it?
thanks
S
"Steven" wrote:
> Is it possible to get a toggle state in an expression?
> I'm thinking something like:
> =Switch( ReportItems!textbox8.ToggleState, true,
> RunningValue(1, Count, "table1") > 3, true,
> true, false)
> Of course, "ToggleState is not a member of ReportItem". Is there a
> member that will tell me if the toggle box is showing a + or -? Or
> some other way of telling if the button has been toggled?
> Thanks
>|||Me too! Did you find a solution?
"ERS Developer" wrote:
> Hi steve,
> Even I am looking for same kind of solution.Did you come across anything for
> this.
> Do mind sharing it?
>
> thanks
> S
> "Steven" wrote:
> > Is it possible to get a toggle state in an expression?
> > I'm thinking something like:
> > =Switch( ReportItems!textbox8.ToggleState, true,
> > RunningValue(1, Count, "table1") > 3, true,
> > true, false)
> >
> > Of course, "ToggleState is not a member of ReportItem". Is there a
> > member that will tell me if the toggle box is showing a + or -? Or
> > some other way of telling if the button has been toggled?
> >
> > Thanks
> >

Get Toggle state at report runtime

Hi,
I would like to find the toggle state of a textbox in the report to set an
expression according to that state. I need to navigate to a second report
with different parameters according to the toggle state of a particular row
in my report. How do I write the expression (something like iif(toggle state
= 'Collapsed', Parameter A, Parameter B))?
Thanks,
Ronen FidelHello Ronen,
Unfortunatly, you could not refer the visability state of an report item in
the expression.
I would like to know your business more detailed that I may provide a
solution instead of refer the visability.
Here is an example which have a conditional background color by the toggle
state.
Maybe this will be some help for you.
http://www.msbicentral.com/Downloads/tabid/96/Default.aspx
DrillDownSample.RDL
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================(This posting is provided "AS IS", with no warranties, and confers no
rights.)|||Wei,
I'll add more details:
I created a matrix report. I created a group by on the row cell and added
navigation expression on the data cell. When the row cell is expanded the
drill through works fine since I send the row cell id as parameter to the
next report. When the row cell in collapsed, the data cell shows the sun of
all data correctly but the drill through is not working as it should since
the parameter value that it pass to the second report is the first value of
the grouped by data. I wanted to get the toggled state and then if it is
collapsed then send 'ALL' in the parameter and when it is expanded send the
row id.
Thanks,
Ronen Fidel
Unisfair
"Wei Lu [MSFT]" wrote:
> Hello Ronen,
> Unfortunatly, you could not refer the visability state of an report item in
> the expression.
> I would like to know your business more detailed that I may provide a
> solution instead of refer the visability.
> Here is an example which have a conditional background color by the toggle
> state.
> Maybe this will be some help for you.
> http://www.msbicentral.com/Downloads/tabid/96/Default.aspx
> DrillDownSample.RDL
> Sincerely,
> Wei Lu
> Microsoft Online Community Support
> ==================================================> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
> ications.
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at
> http://msdn.microsoft.com/subscriptions/support/default.aspx.
> ==================================================> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>|||Hello Ronen,
To understand your issue better and try to reproduce this issue, I would
like to get some sample report from you.
You could send the report file to me. To get my email address, please
remove the ONLINE in my email.
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================(This posting is provided "AS IS", with no warranties, and confers no
rights.)|||Wei,
I sent you the reprt via email.
Thanks,
Ronen Fidel
Unisfair
"Wei Lu [MSFT]" wrote:
> Hello Ronen,
> To understand your issue better and try to reproduce this issue, I would
> like to get some sample report from you.
> You could send the report file to me. To get my email address, please
> remove the ONLINE in my email.
> Sincerely,
> Wei Lu
> Microsoft Online Community Support
> ==================================================> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
> ications.
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at
> http://msdn.microsoft.com/subscriptions/support/default.aspx.
> ==================================================> (This posting is provided "AS IS", with no warranties, and confers no
> rights.)
>