Need to burst BI publisher reports in the folder as well as by email

Hello

I want a particular BI report to have fun in a folder and I also want an email to be sent with this file as an attachment.

How we can implement these two DEL_CHANNEL at the same time.i.e.
FILE (to save the report in a folder)
and
E-MAIL (to send the report to my email Id).
Help, please.

in the application breaks,

do not use the union of the two channels, you use.

Tags: Business Intelligence

Similar Questions

  • Need help on calls to report in the Page of the OFA

    Hello

    At present I work EAM Module. Here, I need to call a single report.
    In my OFFICE there is a Page button ("the name of the button is * question *"). After clicking this button, I need to get only one report (the name of the report is "Maintenance picking slip issued Report").

    Please help me how to call report? I have no idea how to proceed for this.please explain clearly.


    Thanks in advance...

    Thank you
    Sandrine.

    Hi Raoul,.

    It comes to pesudo code:

    1 > create a package:

    create or replace function XML_OUTPUT_TXST
    return the CLOB
    is
    l_xmlType XMLType: = null;
    Start
    SELECT DISTINCT XMLELEMENT
    ('LINES',
    XMLAGG
    (XMLELEMENT
    ("DEMAND_DETAILS",
    XMLFOREST)
    demand_id AS "DEMAND_ID."
    MSI.item_name AS "nom_element."
    MSI. Description AS "DESCRIPTION."
    MSC.category_name AS 'ITEM_TYPE. "
    -NVL (md.daily_demand_rate, md.using_requirement_quantity) AS "DEMAND_QTY."
    MD.customer_id AS 'CUSTOMER_ID ',.
    msc_get_name. Customer (md.customer_id) 'CUSTOMER_NAME ',.
    MD.request_date AS "REQUEST_DATE."
    MD. SCHEDULE_SHIP_DATE AS "SCHEDULE_SHIP_DATE."
    MD. SCHEDULE_ARRIVAL_DATE AS 'SCHEDULE_ARRIVAL_DATE '.
    )
    )
    )
    )
    IN l_xmlType
    OF msc_demands md,.
    MSI msc_system_items,
    MCS msc_category_sets,
    msc_item_categories msc,
    msc_plans mp,
    mfg_lookups l1
    WHERE md.inventory_item_id = msi.inventory_item_id
    AND md.organization_id = msi.organization_id
    AND md.sr_instance_id = msi.sr_instance_id
    AND md.organization_id = msc.organization_id
    AND md.inventory_item_id = msc.inventory_item_id
    AND msc.category_set_id = mcs.category_set_id
    AND SUPERIOR (mcs.category_set_name) = 'PLANNING '.
    AND mp.plan_id = md.plan_id
    AND mp.plan_id = msi.plan_id
    AND mp.sr_instance_id = md.sr_instance_id
    AND ("MSC_DEMAND_ORIGINATION") = l1.lookup_type
    AND l1.lookup_code = md.origination_type
    AND md.origination_type <> 52
    - AND msi.item_name = c_item_no
    AND md.organization_id = 122;
    Return l_xmlType.getClobVal ();
    end;

    2 > use this sql for the release of the XML tag:

    Select double XML_OUTPUT_TXST

    3 > referring to these tags, do a RTF.
    4 > enter on the application server.
    5 > in the controller, get this model code
    6 > according to model code call your CUSTOM PACKAGE.
    7 > code for pop-up below
    httpservletresponse.setContentType("application/pdf");
    httpservletresponse.setContentLength (abyte0.length);
    httpservletresponse.setHeader ("Content-Disposition", "attachment; Filename = "+ pogeneratedocument.getfileName ());
    httpservletresponse.getOutputStream () .write (abyte0, 0, abyte0.length);
    httpservletresponse.getOutputStream .flush () ();
    httpservletresponse.getOutputStream (m:System.NET.Sockets.Socket.close ());
    return;

    Please see the AM, CO and of the package of the code which I have emailed earlier for your reference.

    Also click on the link: http://bipublisher.blogspot.com/2008/03/bi-publisher-bip-in-oa-framework-part-1.html

    Thank you
    Kumar

    Published by: Kumar Kovela, January 22, 2009 04:54

  • How to integrate a BI publisher report into the fusion app home page?

    Hello

    I have been a proponent of the ADF, new fusion app and BI publisher. We use Oracle Fusion Application version 11.1.7.0.0 for the implementation of compensation and BI publisher is a part of it.


    I developed a report editor BI, placed under the shared folder-Custom, to incorporate the same in the merger enforcement home page. By following the video How to embed a report in a dashboard sale?-YouTube, I followed steps below


    1 administration-> work area page to customize

    2. add content

    3 click on "reports and analytics.

    4. click on 'BIPresentationServer '.

    5. file sharing

    6 custom


    Question: If I have reports under this 'Custom' folder, it says "empty folder". It shows that the 'analysis', but not all reports. Problem is not with this single file but all. I also made sure that I am able to see all the reports when I browse using Navigator-> tools - > reports and analyses.


    Anyone of you can guide me on what is the issue and what to do?


    Thanks in advance.

    Thanks for the link. I'm reading for a better understanding.

    I come to know of SR that in order to see the BI Publisher in the list of servers of presentation of values, we must incorporate the report BI Publihser inside an OTBI dashboard.

    So we need to create a "Dashboard" folder (it is wort then only we are able to see via fusion apps. Select and integrate), dashboard and then and add the report wanted to this dashboard. Now we can navigate to this dashboard, open it and select the page to include it.

    Could be useful for the ppl who faced a similar question. Thank you.

    Rambeau

  • Reports on the folder permissions

    How can I use powerCLI report on which groups active directory has permissions on a folder in the Server vCenter?

    The following script kind of handset 2 previous scripts.

    It allows to print permissions that applies models and virtual computers.

    But that can easily be extended to do the same for data centers and records. Also call the function get-permissions for the files and data centers.

    function get-permissions($vm){
        $vmImpl = Get-VM -Name $vm -ErrorAction SilentlyContinue    if($vmImpl){
            Get-VIPermission -Entity $vmImpl | %{
                Write-Host "`t" $_.Role $_.Principal $_.Entity $_.Propagate
            }
        }
        else{
            $templImpl = Get-Template -Name $vm -ErrorAction SilentlyCOntinue        if($templImpl){
                Get-VIPermission -Entity $templImpl | %{
                    Write-Host "`t" $_.Role $_.Principal $_.Entity $_.Propagate
                }
            }
        }
    }
    
    function get-children-reverse($entity,$path)
    {
        if($entity.Name -ne "vm"){
            $path = $path + "\" + $entity.Name
        }
        foreach($child in $entity.ChildEntity){
            $childfld = Get-View -Id $child        switch($childfld.gettype().name){
                "Folder" {
                    Write-Host ($path + "\" + $childfld.Name)
                    get-children-reverse $childfld $path            }
                "VirtualMachine"{
                    $vm = $path + "\" + $childfld.Name
                    Write-Host $vm                get-permissions $childfld.Name
                }
                "Datacenter"{
                    Write-Host ($path + "\" + $childfld.Name)
                    get-children-reverse $childfld $path            }
                "ClusterComputeResource" {
                    Write-Host ($path + "\" + $childfld.Name)
                    foreach($esxMoRef in $childfld.Host){
                        $esx = Get-View -Id $esxMorEF                    $h = $esx.Name+ "\" + $path + "\" + $childfld.Name
                        Write-Host $h                }
                }
            }
        }
    }
    
    Get-Datacenter | %{
        $dc = Get-View -Id ($_).id
        $folder = Get-View -Id $dc.VmFolder
        get-children-reverse $folder $dc.Name
    }
    

    The script will export all output to the screen.

    If you need it in a different format, let me know.

  • I lost the search function of the messages and the folder "sent" under my second email address.

    The search function to search for messages that were sent to me has disappeared. I also have to email addresses in thunderbird. One shows all my sent messages. But there is no option "sent" under my second email address

    Lost search engine? This sounds as if you've lost a toolbar, or have lost a tool in the toolbar. Whatever it is, hopefully that will help the following:

    http://chrisramsden.vfast.co.UK/5_Lost_toolbars.html

    Do you have anything sent "from" this second account yet?

    Check the following is all / selected:

    View | Records | All the

  • How to hide URLS in BI Publisher report

    Hello

    I joined BI Publisher reports at the apex. I call the BI publisher reports through javascript.
    so, when I click on the "print" key on my apex page, it calls the javascript function and a pop up appears with the required report.

    My problem is when the pop up comes it comes with the url, the title of the page, the toolbar, but I don't want those things.i simply want the pdf file is displayed.

    Thanks Robert

    Published by: user8517953 on April 8, 2011 01:43

    Have you tried the option & _xpt = 1? This should make the entire document.

    Thank you
    BIPuser

  • Opening 5 LR I see "Lightroom has encountered an error when reading the preview cache and need to quit."  I deleted the folder Preview Cache completely (saved).  What can I do next to load Lightroom?

    Anybody out there can help get LR works again.

    Open LR 5 I see message "Lightroom has encountered an error in its cache of the preview reading and needs to stop smoking".  I deleted the folder Preview Cache completely (saved).  This does not solve the problem.  What can I do next to load Lightroom?

    If you remove the preview cache folder and the problem persists, then most likely you have found the wrong preview cache (it's for a different catalog previews) and you must find the right cache overview. You should use the search function of your operating system to find all files whose name ends with Previews.LRDATA and remove each of them until you can open your Lightroom Catalog.

  • execDialog outside the folder level script function

    HI Forum...

    Happy New New.

    I need support on your part I use the folder level script that is loaded in the Acrobat/Javascript folder and all by running the script I wanted to call the code of functions of dialogue app.exec recorded at the level of the external servers. I tried this by the importDataObject method to load the execDialog script in PDF as an attachment and followed by the reading of codes using the getObjectData method.

    Load the script in the folder Acrobat/javascript below...

    var rajniTrust = app.trustedFunction (function)

    {

    app.beginPriv ();

    Represented var = util.readFileIntoStream("/Users/rnarayanan/Desktop/ABERDEEN_Checklist.js");

    var c = util.stringFromStream (represented);

    this.importDataObject ("represented", "/ Users/rnarayanan/Desktop/ABERDEEN_Checklist.js");

    Represented var = this.getDataObjectContents ("represented");

    var util.stringFromStream = cFile (represented, "utf - 8");

    AFExecuteThisScript (cFile); THIS ISN'T RUNNING THE Script...

    app.endPriv ();

    }

    var DoCmdImportNamedAttach =

    "/ / Enter your JavaScript code ici\n +.

    "/ / Or select one or more JavaScrippets\n +.

    'rajniTrust() ';

    < / JSCodeSnippet >

    < JSCodeSnippet name = "ButtonObjDef" >

    var oButObjImportNamedAttach =

    {cName: "ImportNamedAttach"}

    cExec: DoCmdImportNamedAttach,.

    cEnable: «event.rc = (app.doc!» (= null)",

    cMarked: "event.rc = false"

    cTooltext: "Rajni_Automation."

    {NPO:-1};

    < / JSCodeSnippet >

    If (oIconImportNamedAttach! = null)

    oButObjImportNamedAttach.oIcon = oIconImportNamedAttach;

    try {App.removeToolButton ("ImportNamedAttach") ;} {catch (e)}

    < JSCodeSnippet name = "TryAddBut" >

    Try

    {

    < / JSCodeSnippet >

    < JSCodeSnippet name = "AddButtonfn" >

    app.addToolButton (oButObjImportNamedAttach);

    < / JSCodeSnippet >

    If ((event.type == "Doc") & & (app.viewerVersion > = 7))

    global ['ImportNamedAttach_InDoc'] = "3:28:2009:9:48:55";

    on the other

    global ['ImportNamedAttach'] = "3:28:2009:9:48:55";

    < JSCodeSnippet name = "CatchAddBut" >

    } catch (e)

    {

    If ((global.bReportNameCollision! = null) & & (global.bReportNameCollision == true))

    {

    strerror(errno) var = 'can not install AcroButton 'oButObjImportNamedAttach' \n ";

    strerror(errno) += ':' + e.fileName + '\n ';

    strerror(errno) += "Error:" + e.name + "\n";

    strerror(errno) += e.get_Message () + "\n";

    strerror(errno) += "name Possible conflict;

    App.Alert (strerror(errno), 0, 0, "error AcroButton");

    }

    }

    Thanks for the help.

    I don't see anywhere where the AFExecuteThisScript function is defined... I do not see it in the internal functions of the application.

    What this is it and why do you think it should work?

    To run the raw code you can use the eval command of JS.

  • Need to create useful reports from the results of TestStand (.mdb) database

    Any help is greatly appreciated!

    We need create reports from the results of TestStand (.mdb) database.  I was not able to find much online.

    Details:

    In 2014 TestStand, we have configured to use Access database management system.  Otherwise, the database settings are default.

    These reports will be targeted to managers and engineers.  They need to show objects as:

    Which EHR past/almost?

    For each DEGREE, what past/a failed test?

    Thanks for all the suggestions!

    Because I couldn't find anything pre-made, I created reports from scratch using queries in Microsoft Access 2010.

  • Update of reported to the need by MBSA in the United States Europe browser choice

    We need each month of security reports on our computers for security audits. This process is the race of MBSA on them. MBSA has early reports various computers such as demanding KB976002, the update of the European Microsoft browser choice. Each month, we will have 1 or 2 additional computers reporting like that suddenly in need. A branch shows all except a title in need. It started with one who need a year ago.

    We're under XP SP3 on all computers. All are in the United States in the midwest. All of them are desktop computers and are never has left the buildings and the country. All have everything in the set of locales in the United States, English or English (United States). All of them are on the correct time zone. If we run Microsoft Update, it does NOT show the update as being necessary. MBSA only shows and only on some computers.

    Our security audit of the sort reports now see the numerouse computers as being "At risk", by MBSA reports. How do we get this corrected?

    John

    This is a forum intended for consumers, John. You'd be a lot better off ad over the side ITPro-online http://social.technet.microsoft.com/Forums/en/itproxpsp/threads

  • How to set the time of data collection for information Publisher report

    Hello everyone,

    So, I'm trying to set up a report, which contains some information of tablespace. The report must be sent to my e-mail account around 07:00 every day, so I have an overview if we run into a few problems with some full tablespaces. the report and mail notification works well but my only problem is, the data are not updated. There is a comment under each data table in my report which said that the data had been updated on 8 to 13 hours ago according to the target database. is there a way I can trigger the update of data report on a specific time? So I can update the data before you run the report job every morning around 07:00? I'm totally noob, so I hope someone can help me, I tried to google it but I couldn't find anything useful.

    Unfortunately, there is really no good way to 'schedule' collection for this because it is perceived with a dozen of other data points and likely to cause problems.   What you could do, is create a metric custom extension with query data file you need (simple Dungeon it do not go beyond what you really need to prevent performance problems), deploy the metric on all target databases, then disable collection of gui (metrics and collection parameters) and cron the collection to run at a period determined using emctl control agent runCollection : .   You can then create a report about the data collected in mgmt$ metric_current.

  • To 11g BI Publisher reports files shared in the same instance.

    Hello

    I have to move reports BI editors of MY folders to the shared folders in the same instance of BI Publisher.

    I just wanted to know does move the data model associated with the report so?

    As of now, I just moved the BIP reports and they are working well, but didn't know about this part of the data model.
    Can someone throw light on what best practices related to mobile reports in BI Publisher.


    Thank you
    Ashish

    Ashish Gupta says:
    Should I move the data model in the reports only, folder under shared folders?
    I just wanted to know the best practices as to how the model data and reports are stored in shared folders as in separate folders or all in the same folder.

    Yes, the best practice is to create a folder called BEEP Reports (shared folder)-> in virtue of which you can create 2 folders in the data model and data model
    >

    Also how to make sure that these reports under shared folders are oriented for the data model in shared folders and not to the model of my records?

    Thank you
    Ashish

    To ensure that the data/report model points to model data in the shared folder go to the corresponding report and the right pane under the report you see options like history open hourly labor jobs more editing

    Select edit-> opens a new window-> top you see a magnifying glass icon click on that now opens a new window select the shared folder for the corresponding report datamodel that's all.

    It may be useful

    Thank you
    RM

  • Use the stored procedure to create the data model for the bi publisher report

    Hi all

    Can we use stored procedure to create the data model for BI Publisher reports? I did find an example by using the stored procedure to complete the data model in the bi publisher report.

    Thank you

    Virat

    Check out these links

    BI publisher to use the stored procedure
    Re: Stored procedures and dynamic columns
    Re: Is it possible to use stored procedures in BI Publisher GUI?
    Re: PL/SQL stored w / model XML?

    If brand pls help

  • Why is-BI Publisher creating reports on the file system in the wrong directory?

    In my Administration of BI Publisher Server, my tabling of report is set to this:

    / U02/Oracle/BI/user_projects/Domains/bifoundation_domain/config/bipublisher/Repository

    but it's actually create all new data models, reports, etc., in the following directory:

    / U02/Oracle/BI/instances/Instance1/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/Catalog/SampleAppLite/root/Shared

    I worked for a week full redesign and development of new reports only to find out they're all to another location. Is BI Publisher an example application

    Hi Multiverse,

    Did you select the catalog type "Oracle BI Publisher - filesystem" when cofiguring your repository? If not; Please select it and enter in the desired directory. It seems that the BEEP is now to save your reports / datamodels to OBIEE catalog location. You can copy / paste you are reporting to the new location.

    "SampleAppLite" is the default catalogname in OBIEE when no a vacuum is created.

    Kind regards

    Machiel

  • The BI Publisher report on an intranet page

    Hello Experts

    Wonder if it is possible to make a report available on an intranet page BI Publisher?

    So if users are going to a company intranet page they then could select and display a BI Publisher report?

    see you soon
    Tim

    You can use the link address and bar.

Maybe you are looking for

  • What options for a second OS on volume bootable?

    I'd be interested to know what solution is best for a different OS (because of application compatibility) Disc 1-a USB3 seems definitely too slow, at least in size 2.5 ". 2 - an external USB3 SSD would be ok? 3. or a CF card into the CF slot would be

  • Express of signal data display background color

    Is it possible to change the background color of the display of data in Signal Express?

  • Get windows Vista to reinstall on my computer

    Original title: Getting windows 7 to install in my computer My laptop with windows vista crashed. He came with a cd to reintall the operating system and I did not know that I should make a cd image and system restore. The flagship product is clearly

  • Desktop Pavilion a6742p does not start after the HP screen

    Less than a box of 64-bit years with 6 GB of RAM, Vista Home Premium. Does load the HP screen without feature, no possibility to go to recovery or utilities. No fan, no HD no spin. Not removable drive storage (only connected when you fill out the bac

  • Sidebar calendar shows only orange... not the data either

    My calendar loads in the bar but shows only an orange page.  There is nothing else... no data at all. I tried the tools without result; It only allows me to remove the calendar.