How to send a dashboard page as selection with ibot

Hi,
I am trying to send a dashboard page via email, but with a previous selection I have done through prompts.
This is what I have done:
1.Created the selection and saved as "Generic"
2.Selection is saved in my user OBIUSER under /users/obiuser/_selections/hj0qcjg2ln00aro9
3.I copied "Generic" from the above folder to a folder XY under the SHARED folder where I have some other dashboard stored.
4.When I am in Delviery content , choose "select content" and browse in the XY folder, but I see only the dashboard pages and not the selection "Generic"
The reason, I have copied it, is that from the delivery content session, I can not see my user, but just the SHARED folder.
Do I maybe need to create a _selections folder under the SHARED one and save it there?
Thanks and Regards
Giuliano

The article describes that when you have a saved selection for a dashboard page and you set this saved selection as default, the iBot will use this saved selection to filter the data on the dashboard page.
So, unfortunately, there is no option to select the saved selection you want to use for a dashboard.

Similar Messages

  • How to send the Adobe page as mail attachement from webdynpro...

    Hi Experts,
    How to send the Adobe page as external mail attachment from webdynpro automatically (for example: If I input the data for sales order in a view and created the sales order, if the sales order is created then have to place the created sales order number and the some details in a adobe form and should send as external mail and have to specifying the body as "Sales order created and details can be found in the attached adobe form" from webdynpro).
    Do the needful.
    Thanks & regards,
    Ravi.

    Hi ravi,
    See the WDA forum for the how to attach a file in webdynpro component for the attachments.

  • Need to send a dashboard page as an excel file in an iBot

    Hi,
    Is it possible to send a whole dashboard page as an excel file in an iBot/agent?
    We're using OBIEE 11.1.1.5.0 and have a requirement where different users need to access the dashboard pages via excel. Most of the pages have multiple requests and some also have charts.
    The other alternative that we looked at is using the MSOffice plugin but even with that i'm only able to access the individual requests one at a time but not the dashboard page.
    Thanks!!

    I think I found a workaround that resolves our issue: I send the dashboard page as an html attachment in an iBot and then open it with excel once received (open with).
    Thanks for your replies..

  • How to send alerts to Pager/Fax

    Hi all,
    How to send alerts to Pager/Fax......
    I know that this can be done by checking the checkbox SMS,FAX in alert inbox.
    For receiving the Alert through Email,We define the Receipents in TCode ALRTCATDEF under fixed receipents.
    Where does we provide the Pager number/Fax number /Mob number so that I can receive Alerts Even trough Pager and SMS.
    Thanks,
    Srinivasa

    Go to RWB->Alert Inbox->Personalize->Check SMS,
    Go to SU01->UserId->Change->Give mobile number & Fax Number in Communication Area
    G to SCOT -> Check weather SMS/Pager/Fax is configured or not
    ( It need to be Configured , Otherwise there is no medum to send the alerts to mobile,page,FaX ( Manditory))
    Check out SAP Connect (SCOT).
    http://help.sap.com/saphelp_me21sp2/helpdata/en/2b/d927734b8a11d1894c0000e8323c4f/frameset.htm
    SAPconnect provides a standard interface for external communication, which supports sending with telecommunication services, such as FAX, text message (pager/SMS), Internet mail, and X.400, as well as sending to printers and between different SAP systems. It enables external communication components to be connected to the SAP system.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b6d59590-0201-0010-5f9d-adb9f6b14d80

  • How do i combine single pages into documents with Adobe?

    How do i combine single pages into documents with Adobe?

    Hi zebideeplus,
    Using Reader, you need to purchase subscription for Adobe PDF Pack  to combine PDF files into single document.
    Refer: Acrobat.com Help | Adobe PDF Pack FAQ
    But, if you need to combine single pages, then it can be done with Adobe Acrobat only.
    Let me know if you have further queries.
    Regards,
    Anubha

  • How do you make a page scroll horizontally with mouse wheel?

    As the title says, how do you make a page scroll horizontally with mouse wheel in edge animate?

    This should get you there
    http://css-tricks.com/snippets/jquery/horz-scroll-with-mouse-wheel/
    1. Load the mousewheel min script via CDN (jquery-mousewheel - cdnjs.com - the missing cdn for javascript and css)  into the Scripts Panel;
    2. Add the provided snippet into your Stage > compositionReady event handler.
    hth
    Darrell

  • How to send the jsp page with the data as attachment

    hi
    my application is to display all the datas from the database.In the same page. i'm having a option to select mail address from the combo box and to send the page with the same format thru mail as an attachment .
    <%      String from="192.168.10.1";
              String to=request.getParameter("to");
              System.err.println(to);
              String mailhost="localhost";
             System.err.println("hiiiiiiiii");
              try
                   System.err.println("byeeeeeee");
                   Properties prop=System.getProperties();
                   prop.put("mail.smtp.host", mailhost);
                   Session ss=Session.getInstance(prop,null);
                System.err.println("session props");
                   Message message = new MimeMessage(ss);
                   System.err.println("message");
                   message.setFrom(new InternetAddress(from));
                   System.err.println("form not null");
                   message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
                   System.err.println("from and to r set");
                   message.setSubject("Hello JavaMail Attachment");
              // Create the message part
                   BodyPart messageBodyPart = new MimeBodyPart();
              // Fill the message
                   messageBodyPart.setText("have u got the attachement?");
                   Multipart multipart = new MimeMultipart();
                   multipart.addBodyPart(messageBodyPart);
              // Part two is attachment
                   messageBodyPart = new MimeBodyPart();
                   DataSource source = new FileDataSource("C:/Program Files/Apache Software Foundation/Tomcat 5.0/webapps/MgmtTool/emsReport.jsp");
                   messageBodyPart.setDataHandler(new DataHandler(source));
                   messageBodyPart.setFileName("emsReport.jsp");
                   multipart.addBodyPart(messageBodyPart);
              // Put parts in message
                   message.setContent(multipart);
                   System.err.println("ready");
              // Send the message
                   Transport.send(message);
                   out.println("mail was sent successfully");
              catch(Exception e)
              {out.println(e);}
              %>
    by using this code i 'm sending the emsreport page as attachment
    i'm recieving only the tabular format but i cant able to get those data which are present on that page
    i dont know wat to do???
    kindly help me
    thank u in advance

    Some of the points might help you in thinking towards right direction, you might already know this but doesn't look like you are following in your code anyway.
    1. The JSP that you are emailing is uncompiled source file. It need JVM environment to be able to run on.
    2. The JSP is a view technology so try to separate the view logic from the business.
    3. Try to put entire business logic in a Bean and use that in your JSP to start off with.
    You may need to write the HttpServletResponse#content on to the Writer and then persist it on the filesystem. and then send that persisted file as an attachment.
    Have a look at http://java.sun.com/j2se/1.5.0/docs/api/java/io/Writer.html
    It provide different type of writer implementations.
    HttpServletResponse#getWriter() provides PrintWriter instance.
    Does it make sense?

  • How can I convert iWeb page to html with NO javascript for email campaign?

    I have a holiday greeting I made in iWeb '09 for my business. The service I'm using to use to manage my mailing list wants me to strip all javascript code from the page so it is not seen as spam when it is emailed.
    How can I convert the page made in iWeb to an html page with no javascript?
    Thanks

    How can I convert the page made in iWeb to an html page with no javascript?
    You cannot. There will be nothing left. iWeb pages rely a lot on JavaScript.
    Use a template from Mail.app. Or create such template. These are simple TABLES and have no JavaScript in it.
    Do Cmd-Shift-G in the finder and type :
    /Library/Application Support/Apple/Mail/Stationery/Apple/Contents/Resources/
    Open one of the folders and open each successive folder until you see files like Picnic.mailstationery.
    Right-click to show the package content.
    Then navigate thru Contents, Resources until you see the files and images you need.
    Edit them to your hearts content.
    Double-click the file Picnic.mailstationery and it will open in Mail.app for further processing.

  • How do I turn the page on ibook with voice over on

    I can't get the iBook to voice over the page and how do I turn the page when Voice Over is on?  I can only get the voice over to read one line at a time - how do i get it to read the page continiously?

    Hi..
    Swipe the page from right ro left to turn pages.
    And try a two finger swipe from top to bottom to read an entire page.
    http://www.youtube.com/watch?v=T-dQI6S6_Hw

  • How to send a dashboard in mail ?

    Hi Experts,
    I have made a dashboard (v 4.1) using the BICS connection and using multiple prompts.
    Now, my requirement is :-  every month the dashboard should be mailed to an E-mail ID with updated data.
    (File type is not an issue .pdf, .swf, etc will be fine.)
    Any help will be appreciated !
    Thanks in Advance,
    Yash Patel

    Hi,
    Profiles and Publications are key things in this scenario.
    In Publication
    i)You will Locate the source documents for the publication.
    ii)You will select the Dynamic or Enterprise Recipients.
    iii)Schedule the publication.
    For creating Publication select a Folder where you want to create Publication.
    Select New-->Publication.
    A Profile defines profile Targets and profile Values.
    i)In profile Target you will have to select the Universe Objects on which you want to apply restrictions with the required report.
    Eg: Store.storeName and Employee.Store Objects in Universe
    ii)Profile Values
    Here you will specify how the selected Universe objects has to filter for a specific User or Group
    Eg: Steve user etc..
    Please find the below link for a reference
    http://www.dallasmarks.org/presentations/BOUC2009_DMarks_0909_Publications.pdf
    http://help.sap.com/businessobject/product_guides/boexir31SP3/en/xi31_sp3_publisher_en.pdf
    I will post a detail document.
    Regards,
    Venkat P

  • How to send the jsp page to .txt format

    Hi All
    Please suggest me how to create a .txt file using the desformat. My requirement is file should be saved as txt format and it will be sended by mail to be user pager. He can see the txt file through his pager. I tried several techniques but it not working.
    I am using the following URL:
    http://123.223 /reports/rwservlet? report=Admission.jsp&destype=file&desname=c:/demo/Admission.txt&userid=am/ampazz@tempdb
    The above URL is correct or any changes required.
    Pls suggest me…
    Thanking all
    Regards
    Srinivas

    Some of the points might help you in thinking towards right direction, you might already know this but doesn't look like you are following in your code anyway.
    1. The JSP that you are emailing is uncompiled source file. It need JVM environment to be able to run on.
    2. The JSP is a view technology so try to separate the view logic from the business.
    3. Try to put entire business logic in a Bean and use that in your JSP to start off with.
    You may need to write the HttpServletResponse#content on to the Writer and then persist it on the filesystem. and then send that persisted file as an attachment.
    Have a look at http://java.sun.com/j2se/1.5.0/docs/api/java/io/Writer.html
    It provide different type of writer implementations.
    HttpServletResponse#getWriter() provides PrintWriter instance.
    Does it make sense?

  • How to send message to pager in pl/sql?

    Hi all,
    I can send message to my local email address using utl_smtp.
    But i can NOT send message to my pager.The following error happened:
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 550 5.7.1 Unable to relay for
    [email protected]
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 98
    ORA-06512: at "SYS.UTL_SMTP", line 240
    any advice will be appreciated.

    Sound like the "how to" is ok for your code. If you can send email successfully with UTL_SMTP then your code is most likely fine.
    Unable to relay for [email protected]
    tells me the SMTP server will not send ("RELAY") ANY messages to that address. Most mail servers setup on db boxes have a set of restricted addresses that the mail server can send to.
    Talk to the system administrator to open that email address for the SMTP box.

  • How to send inline HTML page in mail(not as attachment)

    Hi,
    I am using JavaMail to send details to users using text mail. Its working successfully. But now i have to send the details on mails that will contain HTML page (not as attachment but as inline HTML page containing text) and details in it. Plz help me. Its urgent.
    Thanks in advance,
    Devom

    Set the contentType to "text/html" and send away.
    (If you need both text and html you will need to make a multi-part message), this is covered in the FAQ.
    http://java.sun.com/products/javamail/FAQ.html
    travis (at) overwrittenstack.com

  • How to dynamically hide dashboard pages

    Hi,
    I need to call a dasboard/page via a URL with GO&PATH. The dashboard has many pages which I do not want to displayed when called via the URL. Is there anyway of hiding the pages dynamically from the user. In essence I want the dashboard to behave like calling a report, I would use a report but I need the dashboard prompts to be displayed to the users report prompts do not dispaly on the same page as per dashboard prompt.
    Any help appreciated.
    Thanks
    Phil

    Check out the link Sijn gave:
    http://obiee101.blogspot.com/2010/07/obiee-remove-whole-portalbanner.html
    regards
    John
    http://obiee101.blogspot.com

  • How can I send a website page by email with Firefox, not just the link?

    I am unable to SEND web pages with Firefox.
    With Internet Explorer, I simply go to FILE - Send - Page by email, (or Link by email). By sending the page, I can add some comments, remove some advertising, and/or highlight points I would like to highlight.
    The question then, is there a way to Send - Page by email in Firefox?
    If so, I will make it my default browser.
    Thank you.

    What email service are you using?

Maybe you are looking for

  • Getting values from a ResultSetTableModel

    Hey, I have a database that holds a customers table, an orders table and a table linking the two using the customerID and the orderID. When I search for customers by name, the results get displayed in a JTable via a ResultSetTableModel. But for now,

  • Ipod nano in ipod sock...no scratches

    I seem to read nothing but complaints everywhere about the nano and scratches. What a lame deal to have a scratched up ipod! However I personally have not had this trouble at all. I have been carrying my nano half the time (I have had it for weeks no

  • Multiple file formats and stacking

    Like many on this forum I need to keep track of the original RAW and other formats of the same file. This is for several reasons: 1. I have a large number of already converted RAW files into JPG and TIFF files, which I want to manage in the LR librar

  • 1 library, 1 external hardrive, 2 macs using it.

    Hello out there, Ive got my entire itunes library on my external 500gb hardrive. I would like to use both my imac g5 power pc and my macbook pro to use and share this one external hardrive so that I don't have to duplicate anything. my g5 is running

  • Flash SWF (with as3 code) integrate in Flex probelm

    Hello everyone, I'm having a problem to make my Flash SWF working in Flex. I created an animation movieclip, made a button and wrote a script to play this movieclip in Flash. Everything works fine but when I use SWFLoader in Flex to integrate this SW