SSRS 2012 Reports freeze after first run in IE 11

Hello,
We have just recently upgraded/migrated from SSRS 2008R2 to SSRS 2012 sp2 (Windows 2012 R1). 
We have found one report so far when using IE 11 that after the first run from the client side Internet Explorer freezes.  The report normally takes 4-5 seconds to run.  I have waited an hour and the report has not resolved.
The same report runs fine in Firefox or Chrome, even after multiple runs.  It also continues to run fine from our SSRS 2008R2 server from IE 11.
I have tried private browsing and it still only runs once and will not run again.  I have tried compatability mode and it will not run either.  I have also noted that it will crash our ERP system (java based) when it is running at the same time
in IE as when I run this report.  Other reports seem to work fine.
The report is simple, it is just a report of subscriptions from ReportServer.  There is some XML parsing in there though.  It is the only difference that I can see in all the other reports on the system.  Oh, the report runs fine from
Visual Studio 2012.  I have redeployed, and no luck yet.
Here is my query
WITH [EMAIL]([SubscriptionID], [EmailLine]) AS
 SELECT  I.[SubscriptionID],
         I1.rows.value('Value [1]', 'VARCHAR(MAX)') AS [EmailLine]
 FROM    (
          --if the Subscription is an e-mail, get the XML fragment which contains the Email line
          SELECT  S.[SubscriptionID],
                  --add a "root" element to create well-formed XML to the "ExtensionSettings"
                  --(in case it's NULL)
                  CONVERT(XML, N'<Root>' + CONVERT(NVARCHAR(MAX), S.[ExtensionSettings]) + N'</Root>') AS [ExtensionSettings]
          FROM    ReportServer.dbo.[Subscriptions] S WITH (NOLOCK)
          WHERE   --only get e-mail subscriptions
                  S.[DeliveryExtension] = 'Report Server Email'
         ) I CROSS APPLY
             --pull out elements in the "ParameterValues/ParameterValue" hierarchy
             I.ExtensionSettings.nodes('/Root/ParameterValues/ParameterValue') AS I1(rows)
 WHERE   --only get the Subject field
         --I1.rows.value('Name [1]', 'VARCHAR(100)') = 'Subject'
         I1.rows.value('Name [1]', 'VARCHAR(100)') IN ('TO', 'BCC','CC')
--get subscription data for all users
SELECT   replace([EMAIL].[EmailLine], '@plu.edu','') email_line,
        --internally put-together description of subscription
--        S.[Description],
        --user-friendly message for what happened the last time the subscription ran
        --which may be "New Subscription"
        --report path and name
        C.[Path], C.[Name],
        --start date and end date for schedule
        SC.[StartDate], SC.[EndDate],
        --when the subscription was modified
        S.[ModifiedDate]
FROM    --actual subscriptions
        ReportServer.dbo.[Subscriptions] S WITH (NOLOCK) LEFT OUTER JOIN
            --report details from Catalog
            ReportServer.dbo.[Catalog] C WITH (NOLOCK) ON
                S.[Report_OID] = C.[ItemID] LEFT OUTER JOIN
            --Users (owner)
            ReportServer.dbo.[Users] [U1] WITH (NOLOCK) ON
                S.[OwnerID] = [U1].[UserID] LEFT OUTER JOIN
            --Users (modified by)
            ReportServer.dbo.[Users] [U2] WITH (NOLOCK) ON
                S.[ModifiedByID] = [U2].[UserID] LEFT OUTER JOIN
            --Subscription Schedules
            ReportServer.dbo.[ReportSchedule] RS WITH (NOLOCK) ON
                S.[SubscriptionID] = RS.[SubscriptionID] LEFT OUTER JOIN
            --Schedules
            ReportServer.dbo.[Schedule] SC WITH (NOLOCK) ON
                RS.[ScheduleID] = SC.[ScheduleID] LEFT OUTER JOIN
            --Subjects CTE from e-mail subscriptions
            [EMAIL] ON
                S.[SubscriptionID] = [EMAIL].[SubscriptionID]
WHERE EmailLine is not null
and EmailLine like '%' + @Email + '%'
and C.[Path] like '%' + @Path + '%'
order by C.[Path]
The other observation that I have is that my CPU utilization goes up from 25% to over 50% when I kick this off.  So, it is definitely getting confused about something...
Thank you for your feedback,
Chris

Brad,
I am not sure how to attach the rdl, so here it is inline. 
The one thing that is strange is that my test SSRS 2012 SP2 server (Windows 2008R2) the report works.  However, their is a difference in the OS.  The production server is Windows 2012 
The report works in Visual Studio, it works in Firefox, it works in Chrome.  Just not in SSRS 2012 SP2 on Windows 2012.
Thanks
<?xml version="1.0" encoding="utf-8"?>
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
<Body>
<ReportItems>
<Tablix Name="table1">
<TablixBody>
<TablixColumns>
<TablixColumn>
<Width>4.125in</Width>
</TablixColumn>
<TablixColumn>
<Width>2.75in</Width>
</TablixColumn>
<TablixColumn>
<Width>2.625in</Width>
</TablixColumn>
<TablixColumn>
<Width>0.83333in</Width>
</TablixColumn>
<TablixColumn>
<Width>0.83333in</Width>
</TablixColumn>
<TablixColumn>
<Width>0.83333in</Width>
</TablixColumn>
</TablixColumns>
<TablixRows>
<TablixRow>
<Height>0.18in</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="textbox1">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Email Addresses</Value>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>Bold</FontWeight>
<TextDecoration>Underline</TextDecoration>
</Style>
</TextRun>
</TextRuns>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox1</rd:DefaultName>
<ZIndex>11</ZIndex>
<Style>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<BackgroundColor>White</BackgroundColor>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox2">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Path</Value>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>Bold</FontWeight>
<TextDecoration>Underline</TextDecoration>
</Style>
</TextRun>
</TextRuns>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox2</rd:DefaultName>
<ZIndex>10</ZIndex>
<Style>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<BackgroundColor>White</BackgroundColor>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox3">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Name</Value>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>Bold</FontWeight>
<TextDecoration>Underline</TextDecoration>
</Style>
</TextRun>
</TextRuns>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox3</rd:DefaultName>
<ZIndex>9</ZIndex>
<Style>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<BackgroundColor>White</BackgroundColor>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox4">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Start Date</Value>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>Bold</FontWeight>
<TextDecoration>Underline</TextDecoration>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox4</rd:DefaultName>
<ZIndex>8</ZIndex>
<Style>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<BackgroundColor>White</BackgroundColor>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox10">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>End Date</Value>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>Bold</FontWeight>
<TextDecoration>Underline</TextDecoration>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox10</rd:DefaultName>
<ZIndex>7</ZIndex>
<Style>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<BackgroundColor>White</BackgroundColor>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="textbox13">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>Modified Date</Value>
<Style>
<FontSize>8pt</FontSize>
<FontWeight>Bold</FontWeight>
<TextDecoration>Underline</TextDecoration>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>textbox13</rd:DefaultName>
<ZIndex>6</ZIndex>
<Style>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<BackgroundColor>White</BackgroundColor>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
<TablixRow>
<Height>0.18in</Height>
<TablixCells>
<TablixCell>
<CellContents>
<Textbox Name="email_line">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!email_line.Value</Value>
<Style>
<FontSize>8pt</FontSize>
</Style>
</TextRun>
</TextRuns>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName>email_line</rd:DefaultName>
<ZIndex>5</ZIndex>
<Style>
<TopBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</TopBorder>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<LeftBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</LeftBorder>
<RightBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</RightBorder>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Path">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!Path.Value</Value>
<Style>
<FontSize>8pt</FontSize>
</Style>
</TextRun>
</TextRuns>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName>Path</rd:DefaultName>
<ZIndex>4</ZIndex>
<Style>
<TopBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</TopBorder>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<LeftBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</LeftBorder>
<RightBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</RightBorder>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="Name">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!Name.Value</Value>
<Style>
<FontSize>8pt</FontSize>
</Style>
</TextRun>
</TextRuns>
<Style />
</Paragraph>
</Paragraphs>
<rd:DefaultName>Name</rd:DefaultName>
<ZIndex>3</ZIndex>
<Style>
<TopBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</TopBorder>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<LeftBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</LeftBorder>
<RightBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</RightBorder>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="StartDate">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!StartDate.Value</Value>
<Style>
<FontSize>8pt</FontSize>
<Format>d</Format>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>StartDate</rd:DefaultName>
<ZIndex>2</ZIndex>
<Style>
<TopBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</TopBorder>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<LeftBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</LeftBorder>
<RightBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</RightBorder>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="EndDate">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!EndDate.Value</Value>
<Style>
<FontSize>8pt</FontSize>
<Format>d</Format>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>EndDate</rd:DefaultName>
<ZIndex>1</ZIndex>
<Style>
<TopBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</TopBorder>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<LeftBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</LeftBorder>
<RightBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</RightBorder>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
<TablixCell>
<CellContents>
<Textbox Name="ModifiedDate">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Fields!ModifiedDate.Value</Value>
<Style>
<FontSize>8pt</FontSize>
<Format>d</Format>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Center</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<rd:DefaultName>ModifiedDate</rd:DefaultName>
<Style>
<TopBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</TopBorder>
<BottomBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</BottomBorder>
<LeftBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</LeftBorder>
<RightBorder>
<Color>Black</Color>
<Style>Solid</Style>
<Width>1pt</Width>
</RightBorder>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</CellContents>
</TablixCell>
</TablixCells>
</TablixRow>
</TablixRows>
</TablixBody>
<TablixColumnHierarchy>
<TablixMembers>
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
<TablixMember />
</TablixMembers>
</TablixColumnHierarchy>
<TablixRowHierarchy>
<TablixMembers>
<TablixMember>
<FixedData>true</FixedData>
<KeepWithGroup>After</KeepWithGroup>
<RepeatOnNewPage>true</RepeatOnNewPage>
<KeepTogether>true</KeepTogether>
</TablixMember>
<TablixMember>
<Group Name="table1_Details_Group">
<DataElementName>Detail</DataElementName>
</Group>
<TablixMembers>
<TablixMember />
</TablixMembers>
<DataElementName>Detail_Collection</DataElementName>
<DataElementOutput>Output</DataElementOutput>
<KeepTogether>true</KeepTogether>
</TablixMember>
</TablixMembers>
</TablixRowHierarchy>
<DataSetName>email</DataSetName>
<Height>0.36in</Height>
<Width>11.99999in</Width>
<Style />
</Tablix>
</ReportItems>
<Height>0.36in</Height>
<Style />
</Body>
<Width>12in</Width>
<Page>
<PageFooter>
<Height>0.25in</Height>
<PrintOnFirstPage>true</PrintOnFirstPage>
<PrintOnLastPage>true</PrintOnLastPage>
<ReportItems>
<Textbox Name="textbox8">
<CanGrow>true</CanGrow>
<KeepTogether>true</KeepTogether>
<Paragraphs>
<Paragraph>
<TextRuns>
<TextRun>
<Value>=Globals!ReportFolder &amp; "/" &amp; Globals!ReportName &amp; "/" &amp; User!UserID</Value>
<Style>
<FontSize>8pt</FontSize>
</Style>
</TextRun>
</TextRuns>
<Style>
<TextAlign>Right</TextAlign>
</Style>
</Paragraph>
</Paragraphs>
<Left>8in</Left>
<Height>0.25in</Height>
<Width>4in</Width>
<Style>
<VerticalAlign>Bottom</VerticalAlign>
<PaddingLeft>2pt</PaddingLeft>
<PaddingRight>2pt</PaddingRight>
<PaddingTop>2pt</PaddingTop>
<PaddingBottom>2pt</PaddingBottom>
</Style>
</Textbox>
</ReportItems>
<Style />
</PageFooter>
<LeftMargin>1in</LeftMargin>
<RightMargin>1in</RightMargin>
<TopMargin>1in</TopMargin>
<BottomMargin>1in</BottomMargin>
<Style />
</Page>
<AutoRefresh>0</AutoRefresh>
<DataSources>
<DataSource Name="SQL_ReportServer">
<DataSourceReference>SQL_ReportServer</DataSourceReference>
<rd:SecurityType>None</rd:SecurityType>
<rd:DataSourceID>77e94914-07c8-421a-b785-a126cad0d6ac</rd:DataSourceID>
</DataSource>
</DataSources>
<DataSets>
<DataSet Name="email">
<Query>
<DataSourceName>SQL_ReportServer</DataSourceName>
<QueryParameters>
<QueryParameter Name="@Email">
<Value>=Parameters!Email.Value</Value>
</QueryParameter>
<QueryParameter Name="@Path">
<Value>=Parameters!Path.Value</Value>
</QueryParameter>
</QueryParameters>
<CommandText>WITH [EMAIL]([SubscriptionID], [EmailLine]) AS
SELECT I.[SubscriptionID],
I1.rows.value('Value [1]', 'VARCHAR(MAX)') AS [EmailLine]
FROM (
--if the Subscription is an e-mail, get the XML fragment which contains the Email line
SELECT S.[SubscriptionID],
--add a "root" element to create well-formed XML to the "ExtensionSettings"
--(in case it's NULL)
CONVERT(XML, N'&lt;Root&gt;' + CONVERT(NVARCHAR(MAX), S.[ExtensionSettings]) + N'&lt;/Root&gt;') AS [ExtensionSettings]
FROM ReportServer.dbo.[Subscriptions] S WITH (NOLOCK)
WHERE --only get e-mail subscriptions
S.[DeliveryExtension] = 'Report Server Email'
) I CROSS APPLY
--pull out elements in the "ParameterValues/ParameterValue" hierarchy
I.ExtensionSettings.nodes('/Root/ParameterValues/ParameterValue') AS I1(rows)
WHERE --only get the Subject field
--I1.rows.value('Name [1]', 'VARCHAR(100)') = 'Subject'
I1.rows.value('Name [1]', 'VARCHAR(100)') IN ('TO', 'BCC','CC')
--get subscription data for all users
SELECT replace([EMAIL].[EmailLine], '@plu.edu','') email_line,
--internally put-together description of subscription
-- S.[Description],
--user-friendly message for what happened the last time the subscription ran
--which may be "New Subscription"
--report path and name
C.[Path], C.[Name],
--start date and end date for schedule
SC.[StartDate], SC.[EndDate],
--when the subscription was modified
S.[ModifiedDate]
FROM --actual subscriptions
ReportServer.dbo.[Subscriptions] S WITH (NOLOCK) LEFT OUTER JOIN
--report details from Catalog
ReportServer.dbo.[Catalog] C WITH (NOLOCK) ON
S.[Report_OID] = C.[ItemID] LEFT OUTER JOIN
--Users (owner)
ReportServer.dbo.[Users] [U1] WITH (NOLOCK) ON
S.[OwnerID] = [U1].[UserID] LEFT OUTER JOIN
--Users (modified by)
ReportServer.dbo.[Users] [U2] WITH (NOLOCK) ON
S.[ModifiedByID] = [U2].[UserID] LEFT OUTER JOIN
--Subscription Schedules
ReportServer.dbo.[ReportSchedule] RS WITH (NOLOCK) ON
S.[SubscriptionID] = RS.[SubscriptionID] LEFT OUTER JOIN
--Schedules
ReportServer.dbo.[Schedule] SC WITH (NOLOCK) ON
RS.[ScheduleID] = SC.[ScheduleID] LEFT OUTER JOIN
--Subjects CTE from e-mail subscriptions
[EMAIL] ON
S.[SubscriptionID] = [EMAIL].[SubscriptionID]
WHERE EmailLine is not null
and EmailLine like '%' + @Email + '%'
and C.[Path] like '%' + @Path + '%'
order by C.[Path]</CommandText>
<rd:UseGenericDesigner>true</rd:UseGenericDesigner>
</Query>
<Fields>
<Field Name="email_line">
<DataField>email_line</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="Path">
<DataField>Path</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="Name">
<DataField>Name</DataField>
<rd:TypeName>System.String</rd:TypeName>
</Field>
<Field Name="StartDate">
<DataField>StartDate</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
<Field Name="EndDate">
<DataField>EndDate</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
<Field Name="ModifiedDate">
<DataField>ModifiedDate</DataField>
<rd:TypeName>System.DateTime</rd:TypeName>
</Field>
</Fields>
</DataSet>
</DataSets>
<ReportParameters>
<ReportParameter Name="Email">
<DataType>String</DataType>
<AllowBlank>true</AllowBlank>
<Prompt>Email Like (e.g allen):</Prompt>
</ReportParameter>
<ReportParameter Name="Path">
<DataType>String</DataType>
<DefaultValue>
<Values>
<Value>%</Value>
</Values>
</DefaultValue>
<Prompt>Path like (e.g Advancement):</Prompt>
</ReportParameter>
<ReportParameter Name="Report_Parameter_2">
<DataType>Boolean</DataType>
<AllowBlank>true</AllowBlank>
<Prompt>Parameter OK?</Prompt>
</ReportParameter>
</ReportParameters>
<Language>en-US</Language>
<ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
<rd:ReportUnitType>Inch</rd:ReportUnitType>
<rd:ReportID>811078db-33dd-4670-9df4-be748e9ec2ef</rd:ReportID>
</Report>

Similar Messages

  • SSRS 2012 report integrated with SharePoint 2013 issue :Report refreshing after some idle time

    we have SSRS 2012 report integrated with SharePoint 2013  , when we click on any toggle item after some idle time of 60 secs and try again to expand
    another toggle item then  complete report is getting refreshed and  if we are in child report it is redirecting to parent report. . we didn’t set any refreshing property at report level. I hope there will be some idle time setting at sharepoint site
    level.
    what we observed.
    1. there is no problem when we expand toggle items without any idle time.
    2. when we open the report and expand few toggles and keep idle for 60 seconds and try
    again to expand another toggle item then  complete report is getting refreshed (all toggle items are collapsing).
    3. If you keep idle for 60 minutes and if you didn’t do any action like expanding toggle
    items it is not refreshing.
    why it is happening and how to stop that complete refresh.
    Surendra Thota

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Error while running SSRS 2012 report integrated with SharePoint 2013

    Hi,
    Our reporting services environment has SSRS 2012 integrated with SharePoint 2013. The SharePoint 2013 farm has 2 web front ends, 1 app server and a separate server for reporting services i.e SSRS 2012 .
    We have created a https web application in SharePoint 2013 and all the SSRS 2012 reports are deployed into a "Report Library" residing in its root site collection.
    The simple reports are running well. But there is a report where we have 3 multi-value parameters. On running this report in IE or Chrome, we get the error "Sys.WebForms.PageRequestManagerParserErrorException: The message received from the
    server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near ' <!DOCTYPE html PUB'."
    Some of the forums suggested to add the below entry in the web config of the SharePoint web app where the SSRS reports are deployed. We did that too, still the error is appearing. Please can anyone help .
    <appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="100000" />
    </appSettings>
    Thanks

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Running an SSRS 2012 report from C#

    Hello
    I have created the report in SSRS and it works fine
    I would be grateful if someone gives me a step by step procedure / link to Run an SSRS 2012 report from C#.
    regards
    Manoj Gokhale

    see this article
    http://www.codeproject.com/Articles/675762/Call-SSRS-Reports-by-using-Csharp
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Greater than Equal to Functionality when retirivng data from SSAS 2008 cube using SSRS 2012 report not working

    I have an SSRS 2012 report and SSAS Cube in 2008. My report criterion requires filtering on measures. So Created measures as dimensions . The report requires >= functionality on the measures. But in the Query designer of 
    the report there is =, IN, Within Range ,Excluding range , MDX as the operators.
    To achieve my goal. I have “From” and “To” as parameters on the numeric dimension. The “To” parameter I have set as internal and setting
     the default value of  “TO” .By writing another Dataset query that returns the “MAX” 
    value and the MAX value returned is a member of the measure converted to dim I confirmed.. So this whole works as >=.The user enters only the “FROM” parameter and the “TO” is set internally. The user can enter any value in the “From” parameter. Any
    value that is not even a member.It is a textbox. I cannot use a list of values from the “From” parameter.
    But whenever I run the report after entering all the selection criteria
     I keep getting
    Error “the restrictions imposed by the constrained flag in the strtomember functions were violated”
    I know this means that Max value in the “TO” section is not a member .
    I did try
    : StrToMember("[Fact RCS CV BLAST].[APPRLIMIT ACH].
    &[" & @ToFactRCSCVBLASTAPPRLIMITACH &
    "]", CONSTRAINED) )
     But I get “syntax for the “&” is incorrect”
    If I use Drop down for the “From” and “To” parameters then it works fine. But that’s not what Business Users need.
    Please let me know what the options to make this work. I did use parameters that filter the
     Dataset returned it works fine but there is a performance impact.

    Hi,
    I think if you use the following method you will be able to compare the members.
    CDbl(StrToMember("[Fact RCS CV BLAST].[APPRLIMIT ACH].&[" + @ToFactRCSCVBLASTAPPRLIMITACH + "]").Member_Name)
    As you mentioned that you converted your measures as dimensions, you are having an integer value as the member name. In that case use VBA functions with MDX to do the datatype conversion.
    Take a look into the following MDX written against Adventure Works;
    WITH CALCULATED MEMBER [Measures].[Member Name] AS
    CInt
    Right
    CStr
    [Date].[Calendar Year].CURRENTMEMBER.MEMBER_NAME
    ), 4
    SELECT {[Measures].[Sales Amount], [Measures].[Member Name]} ON COLUMNS,
    FILTER
    [Date].[Calendar Year].[Calendar Year].MEMBERS,
    CInt(Right(CStr([Date].[Calendar Year].CURRENTMEMBER.MEMBER_NAME), 4)) >= 2005 AND
    CInt(Right(CStr([Date].[Calendar Year].CURRENTMEMBER.MEMBER_NAME), 4)) <=2008
    } ON ROWS
    FROM [Adventure Works]
    I am filtering the Years by using the member names by extracting the Integer portion of the member name and applying data type conversion functions in VBA. So I 
    Keep in mind that you have to get rid of the CONSTRAINED clause if your business users can enter anything on the SSRS text box. 

  • How to deploy a SSRS 2012 report to IIS 8

    Hi SQL gurus.
    I wrote a simple SSRS 2012 report and saved it in d:\A_report\.  I installed, accepting default configurations, IIS8.  I used Reporting Services Config Mgr to configure report manager.  Web Service URL is
    http://testreport:80/Reports.  Database is ReportDb.  Report Manager is
    http://testreport:80/testreports.  I can see internet information services web page when I browsed it thru IIS manager.  Can someone please guide what are the next steps for me to publish my helloreport
    to the web?  or show me the chronological steps that leads me to successfully publish the report?  Do I need to creat a new virtual dir in wwwroot and start to save new reports to new virtual dir? are there anyother missing components/parts
    of services I had missed?  I want to learn but there are so many sources I read but each showed differenlty from others & I am confused.  I dont need Sharepoint.  For now, all I have is MS SQL 2012, MS SSRS 2012 & IIS8.   Thanks
    in advance.

    SSRS reports are no longer hosted in IIS, that changed after the 2005 version.
    Your web service URL should be http://testreport:80/ReportServer
    it should be a different URL to your Report manager URL (at the moment for some reason you have them both the same?)
    Then you can set up your config to point to your web service URL and deploy through visual studio
    http://msdn.microsoft.com/en-us/library/ms159270(v=sql.110).aspx

  • Mail app freezes after first use on iPad 3 and ios 8.1.  How to solve?

    Apple mail app freezes after first use after reset.  iPad 3 and IOS 8.1.  How do resolve?

    Hi, sixfinger.  
    Thank you for visiting Apple Support Communities.
    Try forcing all applications to close and restart the device.  Once this is done test to see if the Mail app functions correctly.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    Cheers,
    Jason H.

  • SSRS 2012 report not loading in Safari

    Hello,
    I have created SSRS Reports and they are working fine in all browsers except Safari.
    I have tried so many different things by applying CSS and JS to make Overflow property to Visible of div mentioned in this forum.
    http://stackoverflow.com/questions/5968082/ssrs-2008-r2-ssrs-2012-reports-are-blank-in-safari-and-chrome
    I am not sure now how to proceed further.
    I have added report in iframe and deployed to SharePoint.
    Can anyone please guide on this?
    Thank you,
    Mittal.

    Hi MittalPatel,
    In Reporting Services SQL Server 2012. Not all browsers support all report functionality.
    In the article below you can find that Safari is not supported in sharepoint mode.
    Planning for Reporting Services and Power View Browser Support (Reporting Services 2012)
    Although as
    Suhas Kudekar mentioned that we can add some script to  the configuration file to enable the visibility manually, but this also have some limitation.
    Only the machine which you have installed the reporting service instance that you can find the path of the configuration file to add the code the Safari browser will work fine, so the other machine which don't located the configuration file will still not
    support the render of the report.
    So, I recommended you to choose other browser which supported to view the report.
    Thanks for your understanding.
    Regards,
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • SSRS 2012: Report Header PrintOnFirstPage-problem after report migration from SSRS 2008

    Hi ,
    I developed my report using VS 2008 IDE and the report header property "PrintOnFirstPage" is set to False.
    The content of the header are some textboxes and lines that should show only on page number > 1.
    This works fine in VS 2008 IDE in preview mode as well as with reports rendered by SSRS 2008 report server.
    Recently I migrate&convert the same report to SSRS 2012 I noticed a different rendering behaviour of my report.
    So in VS 2010 preview mode, the page headers content (textboxe etc.)  is not visible on first page but the headers space did not colapse as it does in VS 2008 IDE preview mode.
    I checked all the report properties but unable to find a solution to my problem.
    I was able to reprduce the same behaviour by creating a new report using VS2010 IDE.
    Any ideas are greatly appreciated
    Thanks
    Bodo

    Hi BodoHH,
    I have tested on my local enviorment and can't reproduce the issue, the issue can be caused by many factors, it can be caused by the properties setting and can also caused by the visual studio, Detais information below for your reference:
    As you mentioned that you have check all the report properties, please also check the tablix,Page Header,report body properties to see if the size are the same with that in the SSRS2008.
    Please open this rdl report in the report builder to see if the print layout is correct, if it works fine, the issue can be caused by the visual studio.
    Please also try to upload the rdl report to report manager to check the layout.
    Please also provide the snaphot of the layout in VS2010 to let us better analysis about the issue.
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Applescript freezes upon first run when getting 'text of document 1 of application "Safari" '

    I'm working on an applescript that searches the text of a Safari web page for specific text.  The script  freezes / hangs / times out ONLY during the "first run".  By "first run"  I mean the first time the script is run after a period of time has passed. If the script is run a 2nd, 3rd, or 4th time, etc soon thereafter it works perfectly.  If you then wait an extended period of time again, the script freezes exactly as if it were a "first run".  This appears to be independent of whether Safari is open or closed, i.e. the script freezes even if Safari remains open between the last working run and the "first run".
    Details:
    A web page is opened.  I subsequently confirm the page is fully loaded with the following code set-up as a handler:
    tell application "Safari"
         repeat with i from 1 to 15
         if (do JavaScript "document.readyState" in current tab of window 1) is "complete" then
                             exit repeat -- page loading is complete, exiting loop     
         else
                             delay 1
         end if
         end repeat
         if i is greater than or equal to 15 then return false
         if i is less than 15 then return true
    end tell
    The Applescript event log confirms loading is complete and returns a value of true.  I can see the page is fully loaded, and in testing it is fully functional. All is good.
    I then search the text of the fully loaded web page for specific text.  It is this next step where Applescript hangs, but ONLY on the "first run":
    set searchTerm to "find this"
    if text of document 1 of application "Safari" contains (searchTerm as string) then
         -- do stuff
    end if
    The event log shows that applescript starts to "get every text of document 1" and even returns the initial text of the web page but hangs.  Applescrpt returns the following error: "Safari got an error: AppleEvent timed out.  Error -1712".  If I rerun the script at this point the full text of the web page is immediately displayed in the event log, and the script continues succesfully to the end.  The "IF" statement is not the issue per se because I get the same error if I remove the IF and instead set a variable to the value of 'text of document 1 of application "Safari".
    Bottom line - Applescript seems to hang while returning the text of the fully loaded web page, but ONLY on "first run". Any ideas?
    Note:  I've run this directly as an applescript and as a service via Automator.  Same result. I also tried putting the computer to sleep briefly, wake and rerunning the script.  This does not repeoduce the problem so while extended gaps in use cuases the problem, it does not appear that going to sleep during this time is sufficient to cause the issue.

    Thank you twtwtw, very helpful!
    I tried fiddling around with the name of the input variable(s): $@, $0, and $1, and although I could get it to work somewhat, the hangup was always on high ASCII characters like …, —, °, etc…  (They were called “high ASCII” in the old days, perhaps they are called something else now.)
    Checking the long list of output encodings via iconv --list, and trying a bunch of them didn’t work for me.
    But the real trick that worked for me was to do as you said and to change the “Pass input” menu to “to stdin.”
    However, using -t ASCII was suboptimal for high ASCII, so I changed it to -t UTF-8-MAC and it works perfectly now, all the wild international characters and punctuation are maintained! Hooray!  However, upon further testing, removing the pipe to iconv, it seems it’s not needed.
    So this is the final command:
    awk 'BEGIN{print "<ul>"} {print"<li>"$0"</li>"} END{print "</ul>"}'
    So for now this is the whole recipe to create Contextual Menu Items for the Services menu that replaces text snippets with HTML code surrounding them.
    1. Create a new Automator Service document.
    2. Check the box “Output replaces selected text.”
    3. Choose Actions, under Library choose Utilities, then drag Run Shell Script to the working area of the window.
    4. Set the Pass input menu to “to stdin.”
    5. Paste in the command (above).
    6. Save it; I prefix my HTML CMIs with HTML (space space), so this one is, “HTML  unordered list.”
    7. Begin using it. :-)
    Since it took me a while to cobble together the other ones I made, I should probably share them.  Once I get the time to bring over the other “involved” ones I’ll see if I can find out where is the best place to do that.
    Thank you both, red_menace, and twtwtw for your help!

  • Designing the SSRS 2012 report

    I want to design the SSRS 2012 like ,
    Report for Supplier detail transactions, (user can select more that one supplier at a time)
    Every page should contain - (New page for new supplier/new transaction)
    Supplier Name : -                    Bank Name : -
    Transaction Date: -                 Currency : -
    Payment Mode : -                    Pay Date : -
    Detail accounts per transaction  (May be sub report - i will pass supp id and tran id )
    Applied invoices (Sub report - i will pass supp id and tran id )
    (Page Footer)
    Total payment : -
    Total Applied Amount : -
    We can do it in crystal report like show subreport in detail section. Can we do in SSRS ??
    h2007

    Can we design a report like "Payslip" in SSRS 2012
    e.g. if there r 10 wmployees so one employee per page.
    Format will be like,
    --------------Start (this for each employee i.e. on each page)
    Emp No :                                  Join date :
    Emp name:                               designation :
    bitrh date:                                 monthly sal :
    age categoty :                           cheque no :
    Total Payment :
    Total deduction :
    Nett pay :
    Detail payments (this is sub rep)                         Detail deductions (sub rep)
    --------------End
    h2007

  • How to do Ad-hoc reports with SSRS 2012 (Report Builder 3.0) for the database SQL Server 2012

    <p>Hi,</p><p>Please could anybody help me how to do ad-hoc reports by using SSRS 2012.</p><p>I am able to create ad-hoc reports using Report Builder3.0 and SQL Server 2008 R2. </p><p>I have built the report Model
    in for the instance 2008 R2&nbsp;</p><div class="t-paste-container">Using Report Manager 2012 </div>

    Hi Gowri,
    From your description, you can create create ad-hoc reports using Report Builder 3.0 and SQL Server 2008 R2, and now you want to know how to how to do ad-hoc reports by using SSRS 2012, right? In SQL Server 2012, the default version of Report Builder is
    3.0, so you can create create ad-hoc reports using Report Builder 3.0 as before.
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    TechNet Community Support

  • My compiled program crashes after first run (LabVIEW 2009)

    I have a compiled program created with LabVIEW 2009 that on the first run after the computer is re-booted will work fine but after shutting down the program it will not run properly. 
    The program uses a compiled launcher to dynamically activate a set of VI's containing Queue Driven State Machines (QDSM).  On subsequent program starts the launcher module comes up fine and its progress bar shows that it is launching each of the VI's.  Once the launcher is complete it removes itself from memory leaving the dynamically launched VI's running.  The subsequent launches which fail the main user interface VI pops up barely long enough for the observer to see (if at all) then shuts down.  The program is then gone from memory as far as I can tell.  There are no processes in memory or anything.
    Additionally, the when I try to run the installed version of the exe on a computer that has the 2009 development environment installed I get this behavior consistently with a successful run even once.
    In both cases my program does not throw any errors (which are logged) nor does the runtime engine generate any that I can see.  Also, when I run my program in the development environment the program does not behave this way.  It has no problems at all.
    I have used this style of architecture before in LV8.6 with out any problems.  Can anyone suggest some possible solutions or even some debugging tips?  I have never had a problem that I could not duplicate in the development environment so I am unsure how begin attacking my issue.
    Thanks for any help.
    Jason
    Wire Warrior
    Behold the power of LabVIEW as my army of Roomba minions streaks across the floor!
    Solved!
    Go to Solution.

    I have solved the problem I think (at least as far as testing to this point has revealed).   After I added in the ability to log the states passed to the QDSM's, I was able to determine that the program was "crashing" after I dynamically closed the front panel of the launcher.  My program was designed to close the front panel of the launcher then pop-up the front panel of the main UI.   My EXE is built on to contain the launcher with my other QDSM files being maintained externally in specific directories.  What appeared to be happening is that when the launcher closed its front panel and before the UI opened up the run-time engine would decide since there were no windows open it would close itself down.  This is my supposition about what may be happening any way.  I modified my code to changed the launcher window to hidden and delay for 1/2 a second to give the main UI a chance to start fully running.  This fixed the problem, or at least worked around it.  If someone out there can explain to me exactly what is happening I sure would appreciate it.
    Thanks for all the help those of you who responded.  Your advice was very beneficial and certainly led me to a resolution faster.
    Jason
    Wire Warrior
    Behold the power of LabVIEW as my army of Roomba minions streaks across the floor!

  • Testing Report's data on OOTB Reports after first Run

    Hi Gurus,
    I am getting Data in the Financial Analytics Reports after doing all the required configurations, but how do i test if  the data thats coming is correct.
    ( I think somebody needs to create and  fire the SQL in EBS database and recreate the same exact report from sql)
    But for this, one should be well versed with the Payables, Receivables and General Ledger Data model.. 
    Should this testing be done by an OBIA Consultant?
    Need guidance here , as i am the only one doing all the stuff here... and its overwhelming with the amount of knowledge and work required.
    My source is EBS R 12.1.3
                        BI Apps version is 7.9.6.4
                        OBIEE 11.1.1.6.11
    Thanks
    Ashish

    Hi Ashish,
    I am implementing OBIA financial analytics 7.9.6.4 for EBS R12.1.3
    can u please share your experience as i am new to obiee.
    completed installation and started setups in DAC and informatica.
    could you please share any doc's related to configuration([email protected]).
    looking forward for your help.
    Regards,
    Sreekar

  • SSRS - Editing report definition after migration

    We recently migrated SQL 2005 SSRS to SQL 2012 SSRS. The migration went fine and reports subscriptions are being delivered in accordance with the subscription scheduler. However we have a need to update/review the actual Tsql that generates the report.
    the server the reports were originally created has been decommissioned. The question is how do I get access to the underlying tables - assuming the reports were generated  on the decommissioned server so I can handle change request for the report.
    regards,
    Norris

    Hi NCIII,
    According to your description, you recently migrated SSRS reports from SQL Server 2005 to SQL Server 2012, the reports and subscriptions work fine after migration. You need to update query of the report, but the server on which the reports originally created
    has been deactivated.
    In Reporting Services, we can use Report Manager to view and manage reports on the report server. Browse the folders on the server to locate reports, run reports to view them in a browser, and perform management tasks.
    Report Manager can help you with following management tasks:
    View and update the properties of reports, shared data sources, and other report items.
    Upload reports and create new shared data sources for reports.
    Create schedules to run reports at specified times and intervals.
    Create, change, or delete subscriptions to reports.
    Create report history and specify the number of report snapshots to keep in the report history.
    Create new folders on the server to organize your reports the way you want.
    In this case, we can preview reports in Report Builder. For detail information, please refer to the following steps:
    Start Report Manager (Default URL: http://<servername/Reports>).
    In Report Manager, navigate to the Contents page. Navigate to the folder that contains the report that you want to update.
    Click the drop-down arrow next to the report.
    Click Edit in Report Builder from the drop down list.
    In Report Data pane, expand Datasets node.
    Right-click the dataset and open Dataset Properties dialog box, the query will be displayed in Query text box.
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

Maybe you are looking for

  • Compensation Planning - Error while doing the planning for Employee

    Hi Friends, We have implemented standard MSS Business package. Line Mangers are using the Compensation Planning Iview and are facing errors while sending it for further approvals. In the steps. In the last step they get  RFC_ERROR_SYSTEM_FAILURE. A c

  • Itunes has encountered a problem & needs to close - HELP!

    Hi lovely people. Please help me. My iTunes just won't work. It won't open & when I click it the following appears: *iTunes has encountered a problem and needs to close. We are sorry for the inconvenience.* Data contained in the error report is: *App

  • Transaction variant SHD0

    Hi Friends, When I am tryin to change the fields in VA02 to 'output only' through SHD0, it is not working. I have created my own Transaction variant and activated it. Still its not working. But I did the same thing in VL02N it is working there. Can a

  • Compilation and Deployment issue.

    Hello Friends, I have little doubt in the concept of compliation of java source. If any application compiled using some jdkversion say 1.4.1_02 , but after the compilation the executables have been deployed on WAS sever which has jdk version say supp

  • Framework : Liferay-Struts 2 on WebLogic : java.io.NotSerializableException

    We have a portlet running within the Liferay-container, that is giving the stacktrace hereunder : The strange thing is the fact that this application is working without any problem within the Tomcat-container. StackTrace : java.io.NotSerializableExce