Bursting Filters

Hi,
I have a bursting file with a filter; the aim is to only generate an email when the report contains data:
<?xml version="1.0"?>
<xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
<xapi:request select="/AP_MISSING_EFT_ASSIGNMENTS/LIST_G_DISTRIBUTION">
<xapi:delivery>
<xapi:email server="something.something.gov.uk" port="25" from="me" reply-to="you">
<xapi:message id="email1" to="${DIST_EMAIL_ADDRESS}" cc="them" attachment="true" content-type="html/text" subject="Missing Supplier Bank Details">
"Email Body"
</xapi:message>
</xapi:email>
</xapi:delivery>
<xapi:document output-type="pdf" delivery="email1" output="Missing Supplier Bank Details">
<xapi:template type="xsl-fo" location="xdo://SCCAPP.XXCSD_AP_MISSING_EFT.en.00" filter="//G_ORG[ORG_ID!='']"/>
</xapi:document>
</xapi:request>
</xapi:requestset>
It works fine (if there is data the email is sent, if there isn't it doesn't), but (there's always one!), if there is no data the Bursting program still runs but completes with an error:
Generating Bursting Status Report..
--Exception ZIP file must have at least one entry
For 'tidiness' is there any way of stopping the bursting program from completing in error when there is no data?
Regards
Carl

use filter for non-existing data and email it to a non existing email address.
This way the program will create an output and try to email that and complete successfully, but since email address is not valid the mail will not be sent to anyone.

Similar Messages

  • Filtering XML records while bursting - processing only a subset of the data

    Hi
    I'm attempting to filter the records in my XML data while bursting, so that depending on the value of a data element, the entire record is either skipped or included in the burst output.
    I only want a subset of the XML output to be included in the burst output.
    I've tried applying a filter at the select stage -
    <xapi:request select="/AR_INVOICE/LIST_EMAIL_HEAD/EMAIL_HEAD{EMAIL_IND!=''}">
    This removes all the records where 'EMAIL_IND' is not null - i.e. there is an email address to send to,
    but instead of giving me multiple emails, one for each /AR_INVOICE/LIST_EMAIL_HEAD/EMAIL_HEAD,
    I get just one mail address that contains all of the data for the records that have email addresses.
    I also tried putting a filter on the template
    <xapi:template type="rtf" locale="" location="xdo://AR.XXARINVEMAILDUMMY.en.00/?getSource=true" translation="" filter="{EMAIL_IND!=''}" />
    i.e. having only one template and filtering as shown, but this has no effect.
    Note: I had to change the square brackets - '[' to curly brackets '{' to get the examples to show.
    Any ideas?
    Thanks in advance.
    Mike

    Hi
    I worked out a way to conditionally use ony a number of the data records in the bursting process - discarding the others.
    In EBS, I generate a set of data in a a data-definition template that contains entries for some people who require email delivery, and some who require printed output.
    In the concurrent programme, I specify an output rtf template that has a filter in it to print only the records for those who don't need emails.
    (don't you just love the way that the designers call both the data definition and the output definition - TEPLATES - not confusing at all.....)
    This step generates a sinlge sorted pdf file that is printed)
    Then came the tricky part to send emails only to those who need them- using the bursting engine - to the other set of people - but to "cleanly" dispose of the records for the people who do not want emails.
    What is not clear in any of the documentation at all is that the XMLPublisher bursting engine MUST handle ALL the records that it receives in the XML input.
    If you specify a filter on the output template in the bursting control file, that excludes some records (those not needing the email) the bursting engine doesn't know what do with the remaining records.
    Enter stage left - multiple delivery methods.
    I simply defined another delivery method sample template with a filter including only those records for people who do NOT need emails - type filesystem - and routed the output to the /tmp directory - the trash.
    The lesson(s) to be learnt
    1) The bursting engine needs to have instructions to handle ALL the XML data that is fed to it.
    2) You can define as many output documents and delivery methods as you like - putting filters on each delivery method as you like - BUT ALL XML RECORDS MUST be provided for.
    3) XML records that are not required in one output / bursting stream can be handled in another - and trashed in the /tmp - or other - area.
    The full bursting control file is shown below
    1) First define the two delivery methods
    2) Then define the two "documents" - using filters - using the two delivery methods.
    Hope this helps others wanting to do similary things
    Mike
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/AR_INVOICE/LIST_EMAIL_HEAD/EMAIL_HEAD">
    ----- Define the two delivery methods - first the "email"---------
    <xapi:delivery>
    <xapi:email server="10.1.1.2" port="25"
    from="${EM_DOC_EMAIL_ADDRESS}" reply-to ="${EM_COLLECTOR_EMAIL_ADDRESS}">
    <xapi:message id="email" to="[email protected]"
    attachment="true" subject="${EM_OPERATING_UNIT} invoice for ${EM_CUSTOMER_NAME}">
    Please review the attached invoice - terms are ${EM_TERMS}
    This will be sent to collector email ${EM_COLLECTOR_EMAIL_ADDRESS} and customer email ${EM_DOC_EMAIL_ADDRESS}
    </xapi:message>
    </xapi:email>
    ------ Second - the "null" - type filesystem ----------------
    <xapi:filesystem id="null" output="/tmp/xmlp_null_${EM_CUSTOMER_NAME}" />
    </xapi:delivery>
    ------Then define the first document using the"email" delivery -------------
    <xapi:document output-type="pdf" delivery="email">
    <xapi:template type="rtf" locale=""
    location="xdo://AR.XXARINVEMAILDUMMY.en.00/?getSource=true" translation="" filter=".//EMAIL_HEAD[EM_DOC_EMAIL_ADDRESS!='NO_EMAIL']">
    </xapi:template>
    </xapi:document>
    ------ Then define the other document using the "null" delivery --------------
    <xapi:document output-type="pdf" delivery="null">
         <xapi:template type="rtf" locale=""
         location="xdo://AR.XXARINVEMAILDUMMY.en.00/?getSource=true" translation="" filter=".//EMAIL_HEAD[EM_DOC_EMAIL_ADDRESS='NO_EMAIL']">
         </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>

  • How to get Bursting file to use the same template as selected by user

    I have created an XML publisher bursting control file for a standard Oracle report Direct Debit letter.
    The user wants to be able to select from a number of different letter templates which is ok except that the bursting control file is fixed to use one template.
    How can I get the bursting control file to use the same letter template as selected by the user when running the report ?
    I am using XML Publisher 5.6.3 with bursting patch.

    Try these following, which come to my mind now as of now.
    In the bursting file, you can do the filtering and apply different template..
    <xapi:template type="rtf" location="/usr/template1" filter=".//DIRECT_DEBIT[./parameter_or_element='first_template']"></xapi:template>
    <xapi:template type="rtf" location="/usr/template2" filter=".//DIRECT_DEBIT[./parameter_or_element='second_template']"></xapi:template>
    second option..
    you can replace the element from the xml in the bursting control file.
    ${ELEMENT_NAME}
    can be used in the template name i guess..
    <xapi:template type="rtf" locale=""
    location="xdo://AR.${SHORT_NAME}.en.US/?getSource=true" translation="" filter="">
    </xapi:template>
    But in this short name has to be in XML file...
    I haven;t tried it...wil try it wheni get time..

  • Multi pass bursting of a Crystal report on business view with a bex query

    In BO CMC, we have a group with a list of user.
    The idea is to burst (via the multi pass bursting method) a Crystal report for this list of user with the constraint that this report should only contains data of the store linked to the user.
    Our data comes from a SAP BI cube.
    The link between a Store and a User comes from an other system.
    We have build a bex query and use it as a data source of a Crystal Data Foundation.
    In this Data Foundation we have an other table storing the user ID and the Store ID.
    These 2 tables are linked in this Data Foundation on the Store ID.
    Business element and Business View have also been created on top of this Data Foundation.
    We have impletemented a filter in this Data Foundation to filter out data on the user id. This user id will be filled when bursting the report for all requested users thanks to this function :.
    As a user is linked to one store, the data foundation will filter the data coming from the bex query and show only the data of the user's store.
    We have build a crystal report using the business view created above as data source. We have made some test on a small amount of data and it works, data are correctly filter out and the reports shows only the data from one store.
    But the problem is that we have a lot of stores (more than 600) and doing this way implies that the bex query will always return the data for all the stores as the filter will occurs in the data foundation and not on the bex query.
    We need to find a way to make the bex query returning only the data of the store linked to the user for which we burst the report.
    As we have more than 600 stores this was an idea to avoid managing more than 600 under BO groups or more than 600 different filters.
    This solution do not work when the bex query result set is too large.
    Does anyone has an idea on how to implement such "dynamic" filter in the bex query? The parameter is the user ID but the filter to be applied on the bex query is on the store ID.
    We are under BO XI release 2, Crystal XI Release 2 and we have installed the BO release 2 integration kit for SAP

    Hi,
    what about setting up the data level security in BW ?
    Ingo

  • XML Bursting Output Report

    I am new to xml publisher and bursting.
    I have created a tax invoice that i can generate and print using XML Publisher.
    i now need to distribute the report - i have the option to email, fax or print.
    Unfortunately due to the nature of my clients infrastructure i cannot print directly to a printer so i resorted to creating a file on the linux server.
    This all works fine - i get the required number of emailed reports , faxed reports and filesystem reports but the output report doesn't generate.. It reckons i have a duplicate file reference somewhere.. and therefore the concurrent manager job completets with error..
    Can anyone help please..
    Cheers
    This is the error:
    Bursting process complete..
    Generating Bursting Status Report..
    --Exception
    duplicate entry: /Remittance_Advice20058652.pdf
    java.util.zip.ZipException: duplicate entry: /Remittance_Advice20058652.pdf
    This is my bursting file:
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/RCTI/G_HEADER">
    <xapi:delivery>
    <xapi:email id="123" server="<servername>" port="25" from="${RA_OFFICER}" reply-to ="${RA_OFFICER}">
    <xapi:message id="123" to="${C_DELIVERY_DETAILS}" cc="${CC_EMAIL}" attachment="true" subject="Remmitance Advice ${C_DOC_NUMBER} ${C_DOC_DATE} ">EFT REMITTANCE ADVICE to PAYEE
    Please find attached your EFT remittance advice for payments credited to your account.
    </xapi:message>
    </xapi:email>
    <xapi:filesystem id="file" output="/oratmp/RCTI/RCTI_${C_VENDOR_NAME}_${C_DOC_NUMBER}.pdf"/>
    </xapi:delivery>
    <xapi:document output-type="pdf" delivery="file">
    <xapi:template type="xsl-fo" location="/oratmp/TEMPLATE_PROD.xsl" filter=".//G_HEADER[C_DELIVERY_METHOD='']" >
    </xapi:template>
    </xapi:document>
    <xapi:document output="Remittance_Advice${C_DOC_NUMBER}" output-type="pdf" delivery="123">
    <xapi:template type="xsl-fo" location="/oratmp/TEMPLATE_PROD.xsl" filter=".//G_HEADER[C_DELIVERY_METHOD!='']" >
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Edited by: Lisa from Aus on 15/09/2010 19:43

    Hi Lisa,
    Thanks but it didn't solve my problem - so i went back to a couple previous versions - one that just emailed and one that just created the file and they both worked fine.Have you applied the patch?
    So i used the email only one and appended my filtering restriction to the end of the command and even though the reports were emailed correctly the bursting report failed to output with the duplicate entry error.
    Is the syntax of my filter wrong?Sorry, cannot be of much help -- Others with similar experience may help (or you may log a SR).
    Thanks,
    Hussein

  • Bursting with username as part of file name

    I'd like to do something like this, using :xdo_user_name as part of a bursted file name:
    bursting code:
    select distinct
    Geography.Region KEY,
    'Blue' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'PDF' OUTPUT_FORMAT,
    'FILE' DEL_CHANNEL,
    'C:\Bursting' PARAMETER1,
    Geography.Region || :xdo_user_name || '.pdf' PARAMETER2
    from Retro.Locales Geography
    This works perfectly fine if I omit the || :xdo_user_name from the column definition of parameter2. It fails with this error when I include it:
    oracle.apps.xdo.servlet.scheduler.ProcessingException: oracle.apps.xdo.XDOException: java.io.IOException: prepare query failed
    [nQSError: 42032] Parameters are not supported in the select list.
         at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2116)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:358)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    Is the inclusion of a user name possible possible in the bursting code?

    Hey Reed, thanks for responding.
    I have a Cf utility that parses logs, so I modifed it to print out the ASCII codes for each character. They look normal, as far as I can tell. The question mark has a code of 63 which is correct, and no non-alphabetic characters precede or follow.
    One interesting thing is that the stem being called is an index.cfm file, and the query string argument happens to be a template name, and it ends in .cfm. That's why it is making it all the way to CF, which chokes on it, instead of IIS logging a 404 error.
    Often an identifiable bot is requesting these bad URLs, though I have spotted another request with agent 'Mozilla/4.0.' I suspect that is some kind of automated scan. (I also see other requests with the same agent name, though a different IP, that look like errononeously URL-encoded requests. These get filtered by URLScan.)
    I don't know for sure is whether the specific clients that make these bad calls always make them them wrong way. They appear to. Most clients that access the site do so normally.
    I wonder if there could be something in the request header, perhaps that instructs IIS to expect a different charset than what is actually used, or something like that.

  • Selective Bursting-Use of Bursting control file

    Hi,
    I need some infromation on selective bursting of XMl data. I am bursting the Oracle EBS invoice print program based on whether the preference is email or printer. I could handle this easily in the bursting control file. The xml was filtered based in the email on the customer site and sent to proper delivery channel.
    Can the bursting control file be modified in such a way that for the customers that have an email address the invoice gets bursted to the correct email address(which it does now) and the other invoices (customers with no email address) becomes one pdf file(either on the filesystem or gets emailed using another delivery channel)
    My control file goes something like this
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- $Header: BURSTING_FILE_XEXP_EXP_DK_RAXINV.xml 115.5 2010/07/22 17:35:53 xdouser noship $ -->
    <!-- dbdrv: none -->
    --First Request for emailing the invoices based on G_INVOICE*+
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/EXP_DK_RAXINV/LIST_G_ORDER_BY/G_ORDER_BY/LIST_G_INVOICE/G_INVOICE">
    <xapi:delivery>
    <xapi:email server="server address" port="25" from="fromemail">
    <xapi:message id="123" to="${CF_EMAIL}" cc="${CF_CC_ADDRESS}" attachment="true" attachment-type="pdf" content-type="text/html" subject="${CF_EMAIL_SUBJECT}">
    </xapi:message>
    </xapi:email>
    <xapi:print id="printer1" printer="ipp://localhost:631/printers/KBH1S1-PRT" copies="1"/>
    </xapi:delivery>
    <xapi:document output="${CF_FILE_NAME}" output-type="pdf" delivery="123">
    <xapi:template type="rtf" location="xdo://XEXP.EXP_DKK_RAXINV.da.DK/?getSource=true" filter=".//G_INVOICE[CF_EMAIL!='abc']"></xapi:template>
    </xapi:document>
    </xapi:request>
    --New request to filter other invoices to group into into one file*+
    <xapi:request select="/EXP_DK_RAXINV/LIST_G_ORDER_BY">
    <xapi:delivery>
    <xapi:email server="serveraddress" port="25" from="fromemail">
    <xapi:message id="23" to="testemail address" cc="${CF_CC_ADDRESS}" attachment="true" attachment-type="pdf" content-type="text/html" subject="${CF_EMAIL_SUBJECT}">
    </xapi:message>
    </xapi:email>
    <xapi:print id="printer1" printer="ipp://localhost:631/printers/KBH1S1-PRT" copies="1"/>
    </xapi:delivery>
    <xapi:document output-type="pdf" delivery="23">
    <xapi:template type="rtf" location="xdo://XEXP.EXP_DKK_RAXINV.da.DK/?getSource=true" filter=".//G_INVOICE[CF_EMAIL='abc']"></xapi:template>-- this filter part does not work*
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Is there any way of achieving this.
    Thanks in advance

    Example here:
    http://garethroberts.blogspot.com/2010/08/ebs-bursting-filter-on-xml-elements.html
    Regards,
    Gareth

  • Crystal Report Bursting based on a field in the report

    Hi,
    I have a crystal report with  Invoice Number as a field in it.  I need to burst the report with following as the output.
    1. Destination: FTP server
    2.  Format : PDF : One PDF for every invoice.
    I was trying to use Publication through Infoview.  I would like to know how to achieve this.
    I do not have any parameters in the report or any group of users/recipients.  Hence, I have not created any Profiles.
    Thanks in advance.
    Girish

    Add your CR report as source document and then choose to have Dynamic recipients for your publication. Use there as source for the recipients' list the same report you want to burst. As Recipient identifier select the field that contains the invoice ID.
    In the personalization panel go to the Filters area and select in the Report field drop down your invoice field from the report. In the Dynamic recipients mapping drop down select again the field containing the invoice ID.
    Select the appropriate settings in the destination and format panels and let at least on BO user subscribe to the publication .
    After that you can run the publication.
    Regards,
    Stratos

  • Obiee 11g Ibots Bursting

    All: Is it possible to enforce data security filters when a report would need to be delivered to multiple users with individual data visibility? These users will not log in to the OBIEE 11g system and hence the user names (accounts) will not be present under user/groups of WebLogic Console.
    BI Publisher can do the same, but I wanted to confirm if OBIEE 11g's IBOT delivery is really not designed/setup to distribute content with individual data security when the users are not selected from logged in user accounts. In a nutshell, we won't pay license fees for users who receive their data thru Ibots.
    Thanks
    AR

    Short answer: No it isn't.
    Longer answer: No it isn't designed to do that. It's a question of security and handling of sensitive data. OBIEE does an implicit login when personalizing the content of an agent. So you can either go for BIP bursting or as you say pay the license fees.

  • Profile Target with 2 Filters: Is it possible for WebI Publication?

    Hi Guru's,
    My requirement is I have a report with Sales Representatives in a Web-I report coming from 2 different objects. The source tables are also different. The data is merged into the report level. My requirement is I need to filter for Sales Representative name and use publisher to do a report bursting. But in Profile Targets they allow to just put one filter. And with that my purpose is not solved. Is there any way I can have 2 filters in Profile Target and use an "AND" condition so that Sales Reps from both objects are filtered.
    Regards,
    Subhasis Das

    No, the email address is the "username" for the Sync account, you need a different email address for each Sync account that you setup.

  • Send report by mail with specific filtering by recipient.

    Hello, I have the following requirement:
    Send by email a web report containing outstanding invoices to a list of customers.
    The customers are not users in BW.
    Each customer is identified by 0BILL_TO and email addrress.
    Each recipient needs to receive the web report filtered on his value of 0BILL_TO.
    Is this scenario possible with the BEx Broadcaster in BW3.5?
    Best regards,
    Claudio

    What you are talking about is bursting and is a feature of Netweaver 2004s.
    Thanks,
    Jeff

  • How To Prevent Etext Output from Printing on Email Body on bursted report

    Hi,
    I was hoping somebody can help me out. I have a comma delimited text report that was created for EBS 12.1.1 using an rtf and registered with an output format of E-TEXT Outbound. I need this report emailed as an attachment. I have no problems generating the report and emailing it as an attachment. My problem is that aside from the report being an attachment, the report is also appended in the email body right below my intended email body. The report data can span many, many lines so I only want it attached as a text file and not part of the email body. How do I do this?
    Thanks in advance!
    ====================================================
    EBS version: 12.1.1
    XML Publisher version: 5.6.3
    ====================================================
    Bursting File:
    ====================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
        <xapi:request select="/ROWSET/EMAIL">
            <xapi:delivery>
                <xapi:email server="mail.xxx.net" port="25" from="[email protected]" reply-to="[email protected]">
                    <xapi:message id="123" to="${DEST_EMAIL}" attachment="true" subject="Email Report Testing">
    Hello,
    Thank you,
    To ensure that you're able to receive these messages without delay,
    please add [email protected] to your address book
    and/or spam filtering software.
                    </xapi:message>
                </xapi:email>
            </xapi:delivery>
            <xapi:document output="Email Report Testing" delivery="123">
                <xapi:template type="etext" location="xdo://XXAPP.XXAPP_BURSTR.en.US/?getSource=true" filter="/ROWSET/EMAIL/DEST_EMAIL!=''"></xapi:template>
            </xapi:document>
        </xapi:request>
    </xapi:requestset>====================================================
    Email Sample: (The red text below is the start of the report data that is already in the attachment.
    ====================================================
    Hello,
    Please find the attached data between 05-MAR-11 - 10-MAR-11.
    Thank you,
    To ensure that you're able to receive these messages without delay,
    please add [email protected] to your address book
    and/or spam filtering software.
    <font color="red">SOURCE_CODE,SOURCE_HEADER_NUMBER,INITIAL_PICKUP_DATE,DELIVERY_TYPE,FREIGHT_CODE,SCAC_CODE,PLANT_LOCATION_CODE,PLANT_DESCRIPTION,PLANT_CITY,PLANT_STATE,PLANT_ZIP,PLANT_COUNTRY,CUSTOMER_NUMBER,CUSTOMER_NAME,CUSTOMER_CITY,CUSTOMER_STATE,CUSTOMER_COUNTRY,CUSTOMER_ZIP,SHIPPED_QUANTITY,SRC_REQUESTED_QUANTITY,DET_GROSS_WEIGHT,DEL_GROSS_WEIGHT,SRC_REQUESTED_QUANTITY_UOM,NUMBER_OF_LPN,LLAST_SUN,LAST_SUN
    OE....</font>

    Turn off the viewing option in printer properties.

  • Report Burst to Enterprise Portal

    Hello,
    When using the Information Broadcaster one can use the option 'Broadcast by E-mail (Bursting)'.
    Nice feature here is that you can filter the documents by a characteristic value (e.g. Profit Center) so each recipient receives the document filtered with his/her own data.
    Would anyone know if this kind of 'bursting' can be used to Broadcast documents onto the Portal? (with or without a workaround)
    I have a requirement where a query needs to run for, let's say, 50 Profit Center and each profit center gets an pdf file (filename = profit center + timstamp) in the Portal.
    As you will understand I don't like creating broadcast settings for each profit center separately.
    Thanks!

    Hi Jay,
    Using the Broadcasting feature as is , we cannot Burst the Query with the help of a master data to Portal like we do for email addresses.
    But there are  tougher Work arounds.
    1. Like snehtih suggested create one Broadcast Settings per value(50 cost centers), Schedule them as a batch. But this involves lot of effort and lot of maintenance.
    2. Write a customized ABAP program that can read master data and update the values of the Broadcast settings every time before firing the broadcasts.
    This we have done it and works like a charm. The only disadvantage is that this is sequencial execution.
    Hope this helps.
    Regards.
    Shafi.

  • Broadcasting - Bursting - workbooks - 2004S

    Having tried Bursting with pdf format, and found its not possible (apart from using the very basic format options), I moved on to trying to get it to work with workbooks...
    BIG question: has ANYONE managed to get bursting to work with workbooks, is it POSSIBLE? We are on SP10, 2004S, and I am working through a portal to set up the Broadcasting (but not sending TO the portal).
    The impossible challenge appears to be getting the all the following fields to be filled, as some appear mutually exclusive, and yet the tool seems to need them all.
    The basic area of difficulty is 'Recipient Determination':
    1. In order for the 'Attribute for Recipient Determination' to offer a valid option it is necessary to first select a Characteristic (Company in my case)
    2. But Selecting Company excludes selection of a Variable, and without the variable the query runs for several Companies, and so Broadcaster doesn't know which person to email the workbook to.
    3. USUALLY, clicking Change (against 'By Following Selection') results in a an error - clicking straight after choosing Company usually avoids the error.
    The error that always seems to ocurr in the end is 'Characteristic values for recipient determination are not filtered'
    Any ideas? Any help much appreciated....
    Personally, I prefer pulling teeth!
    Patrick

    Hi Patrick,
    If you ask for the possibility for bursting workbook out, yes it's possible.
    But you need to do some preceding setting, this can be your references:
    https://service.sap.com/~sapidb/012003146900000085752006E/HowtoInformationBroadcasting.pdf
    Hopefully it can help you a lot.
    Regards,
    Niel.
    thanks for the points you choose to assign.

  • Bursting Analysis Report in OBIEE11g

    Hi Experts
    I have a report which I created in Answers and I need to burst this report based on one of the column like Profit center. There are about 10K centers and for some people I have to send report of 10 -20 Profit center for which they have access to.
    This would be a single report and data is already filtered based on the login info - row level security.
    How I could do that using Delivers in OBIEE11g. Do I need to include mail id in the database table and subsequently in the answers request.
    Thanks

    Any help pls.

Maybe you are looking for

  • Remote for Nomad II MG compatibile w/ Zen Tou

    I was looking around for the FM wired remote to accompany my Zen Touch 40 GB, and saw the remote entitled "Nomad II MG remote". The connector for this particular nomad remote looks VERY similar to the connection required for the Zen Touch remote also

  • Deleting photos not showing up in camera roll

    I need to delete photos from my phone to increase memory. I have deleted all the pictures off of the camera roll except for 628, but in settings ap, it shows832.  How do I delete those photos that are lurking around in messages/texts etc.?

  • Screen Sharing Crashes On Launch

    When I launch Screen Sharing, it crashes immediately. Here's the error report: Process:         Screen Sharing [457] Path:            /Applications/Utilities/Screen Sharing.app/Contents/MacOS/Screen Sharing Identifier:      com.apple.ScreenSharing Ve

  • Why isn't Report Builder embedding the fonts???

    I have a report built with all the label and fields all set to use Calibri and to embed the font. Yet when it shows the text in the rendered PDF file, it is not Calibri (or anything close) All Report Builder help tells me is that when we embed the fo

  • H264 profile for mp4 videos on mac firefox?

    I have some videos which are not playing on firefox beta on MAC 10.10. Can somebody tell me what is the exact profile and settings needed to be set for H264 video?