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

Similar Messages

  • Need Report Ran Date on Adhoc Reports

    Hi All,
    I need the report execution date on adhoc report (SSRS 2005/ Report Builder 1.0).
    I was trying to use formula in text box, But, unfortunately it did not worked.
    Kindly update if it is possible to show report ran date on adhoc report.
    Thanks in Advance.
    Regards
    Kumud 

    Try SSRS Ad Hoc Web Reporting. It is super easy to use and even a ten year old kid can create SSRS reports with it. You can also use it to create and modify SSRS reports from your mobile devices such as IPad, IPhone, Android Phone or Surface.
    See this youtube on how easy SSRS reports can be creates.
    http://www.youtube.com/watch?v=CxQLX5UxIik
    You may try it yourself.
    http://www.ssrsreporting.com

  • 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>

  • How to use url to open report and refresh report's data,but the report's toolbar haven't "refresh data" button

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    HI,
    scenario is
    I hope use url to open the report,and refresh the report data,but I didn't the user use the "refresh data" button to refresh the report's data.How to do that?
    regards

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    Thank you for your attention, amr_foci .
    I created a Web Intelligence report,there will be more than 30 companies use.The company only allowed to see the Company Data. I want to use the url of the way, from my company in the development of the system to open report, and refresh reported Table data.but do not want users to use the toolbar of "data refresh" button to refresh the data .
    Now the question of identity authentication system, as well as statements by url open the question of Has been resolved, but it can not shield statements through the pages of "data refresh" button.
    In addition, I now used by the business object XI system is posted on the JAVA environment.
    Regards,

  • Reporting Sevices 2005 hangs every time after 3min running on Win 2008 R2

    Dear all,
    we installed Reporting Services 2005 Standard Edition running latest SP4 and Cumulative Update on Windows Server 2008 R2 x64 Enterprise Edition. The Server has 128 GB of RAM with 12 physical / 24 logical cores.
    So far the Reporting Services instance is starting, but the first access to the application takes very long. Warm up time is about 5 minutes. Then the application is working for about 3 minutes until it stops responding.
    A restart of IIS and Reporting Services Service had no effect on this issue. The logs do not contain any error message.
    The last entry of my log file is a normal info message:
    w3wp!library!8!07.08.2014-09:56:00:: i INFO: Cleaned 0 batch records, 0 policies, 0 sessions, 0 cache entries, 0 snapshots, 0 chunks, 0 running jobs, 0 persisted streams
    Is there anything we can do?
    I apprecieate any help.
    Thanks,
    Mark
    Mark Kuschel
    Blog
    Xing

    Hi Mark,
    If I understand correctly, you are render a report using a lot of time in report server. And we cannot find any error message in the log file.
    To troubleshoot this issue, we can use the report execution log to find out how often a report is requested, what formats are used the most, and how many milliseconds spent retrieving the data, processing the report, and rendering the report. Then refer
    to the time to take actions to improve the performance.
    Reference:
    ExecutionLog2 View - Analyzing and Optimizing Reports
    Troubleshooting Reports: Report Performance
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    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!

  • Different output format on pdf,  same report same data same user Report 10g

    Hi
    I’ve recently came up with a very strange problem
    I have the same report ( DevSuite 10g ) running on a win2003 server and without any obvious reason the output format changes from the original –correct one - ( the underlined text is not correct , font size is decreased , line spacing differs)
    The report is executed with the same user, the same parameters and the same data...
    Problem is solved only after a full server restart ( restarting only the report server, web cacle will not make any difference )
    Once the report is formatted strangely we cannot run it correctly (reboot is needed)
    Trace and log files shows nothing strange about the execution.
    Can you please tell me how to start investigate or suggest a solution?
    Thank you,
    M

    This is a wild guess, but it could be the result of there being no default printer. If you're using an in-process Reports Server, this runs by default under the LocalSystem operating system account. By default, this account does not have a default printer. Without a default printer, Reports may not format fonts correctly when producing PDF output.
    For more information, see "Printing and Font Errors When Using In-process Server" in Appendix D (Troubleshooting OracleAS Reports Services) of Oracle Application Server Reports Services Publishing Reports to the Web 10g Release 2 (10.1.2). It (like Metalink note 272017.1) suggests changing the registry to set a default printer that the LocalSystem account can "see"). Metalink note 370150.1 offers a more drastic solution -- configuring the Reports Server to run under a different operating system account that does have a default printer.
    Still, the theory that this "default printer" issue is the problem is not exactly consistent with the fact that your reports do work as expected at first, although there could be explanations for why the default printer is periodically changing (startup scripts, user intervention, etc.).
    Hope this helps.

  • Is it possible to create a report combining data from 2 reports?

    Post Author: swalker
    CA Forum: General
    We are upgrading the application, ServiceCenter.  We have reports that show our Response and Resolution Metrics.  I have 2 set of reports, one for the old version and one for the new version.  I need to combine the results of both reports into 1 and do calculations on the data from both.  Can this be done with 2 sub reports in the main report that does the calculations?  Can 1 report connect to 2 separate databases?  I am using Crystal Reports v8.5. Is there any documentation on this or sample reports?  Can any one please give me some guidance?  Thanks

    Post Author: swalker
    CA Forum: General
    yangster thanks for the quick reply.  I am not really sure about combining reports, so I looked into what you said.  I tried to create a shared variable on the field that I need to share but that field is a running total and I get an error when I try to run the report "This field cannot be used becaus eit must be evaluated later."    So I am not sure what to do now.  Is there a work around for this?  Thanks for any help.

  • BIA Master Data Index Not Updated After Change Run

    In BIA it shows master data 0VERSION table /BI0/SVERSION has 360 records which matches with the number of entries in SE16 /BI0/SVERSION.  One record was added to 0VERSION so now SE16 /BI0/SVERSION shows 361 records.  I did a change run for this infoobject 0VERSION but the BIA index for /BI0/SVERSION still only show 360 records. I expect it to show 361 records after the change run.  Is this a bug?  Thanks.

    Hi Thao,
    I see one of 3 possible scenarios:
    1) You load 0VERSION as a part of master data load (from flat file or another system). You see your 11th record in version "M" after load and then you run change run that makes "A" version of the record. ---> BIA index should be automatically updated. If not - open OSS message to SAP.
    2) You load transactional data in an InfoCube, and it has new value for characteristic 0VERSION. ---> In this case you need to run roll-up of this new load request in the InfoCube to let BIA index be in-sync.
    3) You are modifying 0VERSION manually (e.g. SQL INSERT statement), so system is not aware of new record at all. ---> You need to run the mentioned single-table-index program to update BIA index.
    Is it any of these 3 scenarios, or you have the 4th one?
    Regards,
    -Vitaliy
    Edited by: Vitaliy on Aug 19, 2008 1:59 PM

  • Not able to submit data ( HypConnect and HypSubmitData) after second run

    Hi,
    I have a Macro that runs several retrieves, run business rules and submits data. And it works fine for the 1st time when I open the excel macro. If I tried to run it twice i got and error "100000" in the hypconnect before the HypSubmitData. (If i open and close the excel again, it runs fine)
    My guess, its that something its getting locked and i have to do something to unlocked, however it is very strange cause everything else is done correctly (meanning before the submit, there are several connects and retrieves ).
    Pd. I have essbase server 11.1.1.3.500, provider server 11.1.1.3.500, smartview 11.1.2.2.310 32 bits, windows 7, excel 2010 32 bits, smartiew vba functions are setup for 32 bits version, i also have updated the registry for the explorer timeouts.
    Here is my piece of the code;
    X = HypConnectionExists("Conexiontest")
    If X = True Then
    X = HypRemoveConnection("Conexiontest")
    End If
    X = HypCreateConnection("", vUser, vPass, HYP_ESSBASE, CStr("http://" & vServidor & "/aps/SmartView"), "10.150.125.50", "036CPCK", "036CPCK", "Conexiontest", "Conexion a essbase")
    If X = 0 Then
    Y = HypConnect("", "Administrator", "hyp3r10n", "Conexiontest")
    Else
    MsgBox ("Error de conexión")
    End If
    Z = HypSubmitData(hoja)
    Kind Regards, I appreciate the help

    Hi,
    Well i found the error, basically im connecting with Hypcreate connection and HypConnect for the retrieves and HypCreate ConnectionEx HypConnectEx, it looks that it has a conflict with the two connection at the same page, therefore at the beggining of the macro im running hypdisconnect and hypdisconnectex, and then I can run it for several times without problems.

  • Wpdomain.db disappears after first run of MTA on Linux

    SLES10SP2
    GW7.03 No HP
    I'm trying to move from Netware 6.0sp8 to a SLES10SP2 VM on ESX4.
    I've used Reload to migrate my PO data but using dbcopy (per Danita's guide) to migrate the domain (with gateways).
    When I first fire up the MTA (gui) to test it loads up just fine. Exiting the MTA cleanly results in an error: "DIS: Internal Error (8209)". After this the MTA can not be restarted, I receive "Can't find domain database", which makes sense since all of the files in my domain directory have disappeared! The subdirectories are still there but there aren't any files in the root of the domain directory (hence why it can't find wpdomain.db).
    I've attempted this move 3 times now with zero success.
    Any thoughts or advice?

    dqualls,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Multi Layered Drill automatically goes to lowest level after first run

    Hi there,
    I'm using Xcelsius Engage 5.3.0.0.
    I have 3 combo charts each at a different level in drill down.
    Chart1: Faculty Level
    Chart2: Department Level
    Chart3: Discipline Level
    So 1 faculty can contain many departments and one department can contain many disciplines.
    Each graph dynamically appears over the other as the user drills down to level 3. I use "back" buttons using push buttons to clear previous input from the chart drill downs.
    My problem is that the drill down functionality works perfectly the FIRST TIME THROUGH but any time after that, it always drills through to the lowest level from the top automatically without letting me see Chart2.
    For example, if I drill on a faculty into the department chart and then select a department and drill into the discipline level that works fine. I then press back and am returned to the department level chart, click back one more time and am returned to the faculty level again. HOWEVER, once I select a different faculty to drill down on, I'm immediately shipped to the 3rd (discipline level) of that faculty.
    I've noticed that after it's worked properly the first time through, when I'm "backing out" using the push buttons and going back past the level 2 chart, a department is still highlighted as selected (even though all graphs involved are set to no default selection). So when I back out and select a different faculty I think department level chart still highlighted as selected is having an effect and Xcelsius thinks a user is clicking on a department so it ships me right off to the lowest level.
    I've done some googling and others are having the exact same problem I'm having:
    http://www.forumtopics.com/busobj/viewtopic.php?p=797270#797270
    I'd love a work around that doesn't involve the reset button.
    Thanks.

    http://www.forumtopics.com/busobj/viewtopic.php?p=797995
    Another of the same issue.
    Is there a bug fix or where can I submit this to be reviewed?

  • New PC, iTunes library in external disk, ruined after first run

    Hello,
    I built a new PC with Windows 7 64-bit and previously I had my  iTunes library directory pointing to an external HDD while in the old system Windows XP 32-bit. I now tried to point the new iTunes installation to my old iTunes library in the external HDD and iTunes would not "see" the library meaning the play lists and music would not appear in the new iTunes installation.
    So I was looking around for options in iTunes and found the main option "Import library from My Music" and this messed up my old library completely and didnt include the old Play lists in the iTunes ready for synchronizing with my iPhone. It messed up the old folder entirely overwriting everything ... how dumb  iTunes can be?
    At this point I had to delete the whole iTunes library and the master copy of my old library is only in my iPhone which I don't want to synchronize with the new computer and iTunes library because I would lose everything. How can I bring back my library to the new PC and iTunes installation from the iPhone? seems not possible? another jail from Apple?
    Seriously, I have many products from Apple and have always been happy except for the iTunes which I think is their "Black Sheep" so to speak, I would buy and use it more if it wasn't such a jailing and pain in the arse.
    TIA,
    Best regards,
    Giovanni

    It would seem your original problem was caused by having only the media folder on the external drive rather than a complete working iTunes library. It is unfortunate that you have deleted the media that was on the drive as you have created more work than would otherwise be the case. If it is not to late to undelete the media folder you should do that as it would cut down the work you have to do. If you have access to a backup copy of your user's documents folder from your old computer that would also prove useful. Either way this user tip should provide all the information needed to recover your library.
    Recovering your iTunes library from your iPod or iOS device.
    tt2

  • After Generate Report Get Data to Modify.vi, the unbundle doesn't work right.

    I'm fairly new to the program, interning at a local company.  I activated LabVIEW 8.5 on two additional computers right as rain, but for some reason, on one of them, certain VIs, such as excel.llb\append report data (str).vi, do not execute.  The broken arrow points to the unbundle by names, which take place after a Generate Report Get Data to Modify.vi .  I took a look at the online evaluation version of LabVIEW 8.5 on the NI website, but the only differences between the working block diagrams online and the ones on my computer are that the ones on my computer don't have blue names.  I clicked on the names online and several options appeared.  I clicked on the names in the VI block diagram on my computer, and it didn't even have the option that it had by default.  It's like the Get Data to Modify isn't passing any, or the right information. 
    Additional info:  I had this problem on the other computer, but I just re-copied the files and it worked fine.  That didn't happen with this one.  Also, the same version of Office is installed on both of them.  The biggest difference between that desktop and my work laptop is just that the desktop had the instruments I'm working with attached to it already.  Could that be it?

    Hello,
    Are you sure that you have the Report Generation Toolkit completely installed on the computer where you are seeing the issue?  This may be available in the evaluation version, but not in your copy if you have not purchased it. 
    Also, I cannot find any VI titled excel.llb\Excel excel.llb\append report data (str).vi, could you double check this name so that others can help you out?  If you do not have full functionality, I would assume that not all of the components are installed completely.
    Kameralina
    Ask NI (ni.com/ask)
    Search The KnowledgeBase
    NI Developer Zone
    Measure It. Fix It. ni.com/greenengineering/
    NI Vision ni.com/vision/

  • [Forum FAQ] How do I send an email to users when the data in the report have been changed in Reporting Services?

    Introduction
    There is a scenario that the data in the report changes infrequently, so the users want to be informed and get the most updated data once the data changes. By default, report server always run the report with the most recent data. Is there a way that we
    can subscribe the report, so that we can send an email to users when the data in the report has been changed?
    Solution
    To achieve this requirement, we can create a subscription for the report, then create a trigger in the table which including the report data. When this table has data insert, update or delete, it will be triggered and execute the subscription to send email
    to users.
    In the Report Manager, create a subscription for the report and make it only execute one time.
    When we create a subscription, a corresponding SQL Agent job will be created. Then we can use the query below to find out the job based on ScheduleId:
    -- List all SSRS subscriptions
    USE [ReportServer];  -- You may change the database name.
    GO 
    SELECT USR.UserName AS SubscriptionOwner
          ,SUB.ModifiedDate
          ,SUB.[Description]
          ,SUB.EventType
          ,SUB.DeliveryExtension
          ,SUB.LastStatus
          ,SUB.LastRunTime
          ,SCH.NextRunTime
          ,SCH.Name AS ScheduleName   
              ,RS.ScheduleId
          ,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
             ,SUB.ModifiedDate ;
    Create a trigger in the table which including the report data.
    CREATE TRIGGER reminder
    ON test.dbo.users
    AFTER INSERT, UPDATE, DELETE
    AS
    exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    Please note that the command ‘exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'’ is coming from the job properties. We can go to SQL Server Agent Jobs, right-click the corresponding job to open
    the Steps, copy the step command, and then paste it to the query.
    Then when the user table has data insert, update or delete, the trigger will be triggered and execute the subscription to send email to users.
    References:
    Subscriptions and Delivery (Reporting Services)
    Internal Working of SSRS Subscriptions
    SQL Server Agent
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

Maybe you are looking for

  • G/L account is missing error when try to add AP Credit Memo

    Dear All Experts, we are facing problem in adding A/P Credit memo, which is made based upon AP Invoice. Error is :-  [A/P Credit Memo - Whse Status] , 'G/L account is missing (1)'  [Message 131-46] Can any one know why this problem is coming? Regards

  • Problem in Goods Issue against process order

    Dear All, I m facing the problem in Goods issance, I have one raw material batch whose last GR date is 01.09.2010. when i try to post Goods issue, posting date 29.09.2010. system generate the following error message: Deficit of BA Unrestr. prev. 25.0

  • My sing keeps freezing and skipping to totally seperate song! why?

    i bought a song recently and it stops in the middle and it either goes to the next song or two songs ahead. It works on my siblings ipod's and we use the same computer is there a reason for this and how do i fix it?

  • Creating a signature and Encrypt the file

    Hi Experts,     I have an requirement,  I need to create a module in which I need to pass four values (Namely signing key, signing algorithm, encyption key and encryption algorithm) through parameters as inputs.  Based on these parameters, I need to

  • Process chains not delivered in BPC 7.5 NW SP4 Version

    Hi Experts, We have installed BPC 7.5 NW SP04 sandbox system and we found that there are two process chains (/CPMB/IMPORT_IOBJ_MASTER, /CPMB/IMPORT_IOBJ_HIER) not delivered with BPC NW 7.5 NW versino which are used for BW Master data imports. Please