How to print view selector choice

Hi all,
I have view selector with two requests (pivot tables). First has name A, and second B. How can I print name of made choice in dashboard. When I select choice A or B I would like to print above pivot table name of made choice. Is that possible?
Thanks

hi...
use filters view..
or
narrative view to display the selected items in the prompt..
use @column position for that particular column on which you applied is prompted..

Similar Messages

  • How to print view contents

    How can I print the whole view content
    from a button on the view.
    I have written a Printable implemented java class
    and calling that from print button on my view, but it is not working

    Hi Kavitha,
    Create a context variable "vaPrintData" type "String". "vaPrintData" is for holding the data to be print.
    Create one "TextView" object (txtViewPrintData) in your text view object's text value map the context variable "vaPrintData".
    On click of the "PRINT" button, in action handler set the data to be displayed to the value attribute "vaPrintData".
    Hope this helps you
    Regards,
    Santhosh.C

  • OBIEE 11g - View selector performance with YTD,MTD,Dept ...

    We are implementing BI Apps 7963 OBIEE 11.1.5. Financial Analytics. We have a financial report with multiple compound layout views MTD,YTD, by company, by dept.We are experiencing some memory leak issues by Sawserver when we run the report. How does the view selector works ? does it run the query in Database when first time report is accessed and then build all these different views on BI server or query will be run against database for specific view when accessed? Any known performance issues with view selectors ? Any one used view selector for different versions of reports (MTD, YTD ..).
    Your feedback is greatly appreciated.
    Thanks in advance

    I am experiencing performance issues with view selector. It repeats the SQL for each view resulting in duplicate SQL to be run and thus resulting in poor performance of reports. Is this an expected behavior of view selector?
    Thanks.

  • How to print from a planning view in APO SNP ?

    Does anybody know how to print on paper from the planning view in the planning book.
    I have made a view with a key figure.
    In the view, I can see the productnumber, the key figure and the values.
    Some users want to print it on paper.

    Hi,
    CSV method of download is the SAP standard format for saving the
    files.
    You can either create your own custom logic for saving in excel or
    use BW functionality for extracting the required fields and form a
    report to save & print in excel
    Regards
    R. Senthil Mareeswaran.

  • How to print the report directly without previewing (report viewer) using c# windows application

    Hi,
    Currently, we are using crystal report to all of our reporting applications, but since I/users have encountered some issues about CR's speed to load only a simple report, maybe it is now time for us to adopt a new reporting environment in which I think SSRS
    can fill this problem.
    To start with, I have here a sample code, that uses the crystal report to print the report directly without previewing:
    csCashInvoiceCal csCashCal; --Crystal report name .rpt
    dsCsReceipt dsCs; --created dataset
    DataTable u;
    DataRow s;
    private System.Drawing.Printing.PrintDocument printDocument1;
    private System.Windows.Forms.PrintDialog printDialog1;
    ParameterValues paramValue;
    ParameterDiscreteValue discreteValue;
    ParameterFieldDefinition fieldDefinition;
    private void btnPrint_Click(object sender, EventArgs e)
    this.Cursor = Cursors.WaitCursor;
    loadReceipt2();
    print2();
    csCashCal.Close();
    this.Cursor = Cursors.Default;
    private void loadReceipt2()
    dsCs = new dsCsReceipt(); --created dataset
    u = dsCs.Tables.Add("DtCsReceipt");
    u.Columns.Add("Qty", Type.GetType("System.String"));
    u.Columns.Add("UOM", Type.GetType("System.String"));
    u.Columns.Add("Description", Type.GetType("System.String"));
    u.Columns.Add("UnitPrice", Type.GetType("System.String"));
    u.Columns.Add("Discount", Type.GetType("System.String"));
    u.Columns.Add("Amount", Type.GetType("System.String"));
    try
    for (int i = 0; i < dgvDesc.Rows.Count - 1; i++)
    s = u.NewRow(); double.TryParse(dgvDesc.Rows[i].Cells[Discount2.Name].Value.ToString(), out discount);
    s["Qty"] = double.Parse(dgvDesc.Rows[i].Cells[Qty.Name].Value.ToString());
    s["UOM"] = dgvDesc.Rows[i].Cells[Uom2.Name].Value.ToString();
    s["Description"] = invcode + dgvDesc.Rows[i].Cells[Description.Name].Value.ToString();
    s["UnitPrice"] = dgvDesc.Rows[i].Cells[UnitPrice.Name].Value.ToString();
    if (discount != 0)
    s["Discount"] = "(" + string.Format("{0:0.##}", discount) + "%)";
    else
    s["Discount"] = "";
    s["Amount"] = dgvDesc.Rows[i].Cells[Amount2.Name].Value.ToString();
    u.Rows.Add(s);
    catch (Exception) { }
    csCashCal = new csCashInvoiceCal();
    csCashCal.SetDataSource(dsCs.Tables[1]);
    //csCashCal.Refresh();
    loadParameter2();
    private void loadParameter2()
    ParameterFieldDefinitions paramFieldDefinitions;
    paramValue = new ParameterValues();
    discreteValue = new ParameterDiscreteValue();
    paramFieldDefinitions = csCashCal.DataDefinition.ParameterFields;
    discreteValue.Value = date;
    fieldDefinition = paramFieldDefinitions["Date"];
    commonParam();
    discreteValue.Value = txtcsno.Text;
    fieldDefinition = paramFieldDefinitions["InvoiceNo"];
    commonParam();
    discreteValue.Value = txtNameTo.Text;
    fieldDefinition = paramFieldDefinitions["CustomerName"];
    commonParam();
    discreteValue.Value = txtAdd.Text;
    fieldDefinition = paramFieldDefinitions["CustomerAddress"];
    commonParam();
    ------other parameters----
    private void commonParam()
    paramValue.Clear();
    paramValue.Add(discreteValue);
    fieldDefinition.ApplyCurrentValues(paramValue);
    private void print2()
    using (printDocument1 = new System.Drawing.Printing.PrintDocument())
    using (this.printDialog1 = new PrintDialog())
    //this.printDialog1.UseEXDialog = true;
    this.printDialog1.Document = this.printDocument1;
    DialogResult dr = this.printDialog1.ShowDialog();
    if (dr == DialogResult.OK)
    int nCopy = this.printDocument1.PrinterSettings.Copies;
    int sPage = this.printDocument1.PrinterSettings.FromPage;
    int ePage = this.printDocument1.PrinterSettings.ToPage;
    string PrinterName = this.printDocument1.PrinterSettings.PrinterName;
    try
    csCashCal.PrintOptions.PrinterName = PrinterName;
    csCashCal.PrintToPrinter(nCopy, false, sPage, ePage);
    printcount++;
    //saveCountPrint();
    catch (Exception err)
    MessageBox.Show(err.ToString());
    This is only a simple sales receipt application that uses dgv and textboxes to push its data to dataset to the crystal report, a simple one but there are instances that it is very slow.
    But I'm having trouble implementing this using SSRS, since I'm only new to this one, wherein I created the report using report wizard, with two button options inside the form for print preview or direct print selection. Actually, it is very easy to implement
    with print preview because it uses reportviewer. My problem is that how can I print the report directly without using a reportviewer?
    So here is my code so far which I don't know what's next:
    private void button2_Click(object sender, EventArgs e)
    this.Cursor = Cursors.WaitCursor;
    loadReceipt3();
    //print3();
    this.Cursor = Cursors.Default;
    ReportParameter[] parameter = new ReportParameter[11];
    private void loadParameter3()
    parameter[0] = new ReportParameter("InvoiceNo", txtcsno.Text);
    parameter[1] = new ReportParameter("Date", date);
    parameter[2] = new ReportParameter("CustomerTin", txtTin.Text);
    parameter[3] = new ReportParameter("CustomerName", txtNameTo.Text);
    parameter[4] = new ReportParameter("CustomerAddress", txtAdd.Text);
    parameter[5] = new ReportParameter("Agent", agent);
    parameter[6] = new ReportParameter("Discount", "Discount: ");
    parameter[7] = new ReportParameter("TotalDiscount", lblDiscount.Text + "%");
    parameter[8] = new ReportParameter("TotalSales", rdtotal);
    parameter[9] = new ReportParameter("Tax", rdtax);
    parameter[10] = new ReportParameter("TotalAmount", rdnet);
    private void loadReceipt3()
    DataSet dsrs = new DataSet();
    DataTable dtrs = new DataTable();
    DataRow drs;
    dtrs.Columns.Add("Qty", Type.GetType("System.String"));
    dtrs.Columns.Add("UOM", Type.GetType("System.String"));
    dtrs.Columns.Add("Description", Type.GetType("System.String"));
    dtrs.Columns.Add("UnitPrice", Type.GetType("System.String"));
    dtrs.Columns.Add("Discount", Type.GetType("System.String"));
    dtrs.Columns.Add("Amount", Type.GetType("System.String"));
    try
    for (int i = 0; i < dgvDesc.Rows.Count - 1; i++)
    drs = dtrs.NewRow();
    drs["Qty"] = double.Parse(dgvDesc.Rows[i].Cells[Qty.Name].Value.ToString());
    drs["UOM"] = dgvDesc.Rows[i].Cells[Uom2.Name].Value.ToString();
    drs["Description"] = invcode + dgvDesc.Rows[i].Cells[Description.Name].Value.ToString();
    drs["UnitPrice"] = dgvDesc.Rows[i].Cells[UnitPrice.Name].Value.ToString();
    if (discount != 0)
    drs["Discount"] = "(" + string.Format("{0:0.##}", discount) + "%)";
    else
    drs["Discount"] = "";
    drs["Amount"] = dgvDesc.Rows[i].Cells[Amount2.Name].Value.ToString();
    dtrs.Rows.Add(s);
    catch (Exception) { }
    int addtlRow = 7;
    if (addtlRow > (count - 1))
    addtlRow = addtlRow - (count - 1);
    for (int i = 0; i < addtlRow; i++)
    dtrs.Rows.Add();
    loadParameter3();
    LocalReport localreport = new LocalReport();
    localreport.SetParameters(parameter);
    localreport.DataSources.Clear();
    localreport.DataSources.Add(new ReportDataSource("dsSalesReceiptSsrs", dtrs));
    localreport.Refresh();
    //what's next....
    So what's next after local..refresh()? Actually, I have googled a lot but I didn't found the exact solution that I'm looking for which confuses me a lot.
    Anyway I'm using VS 2010 with sql server 2012 express.
    You're help will be greatly appreciated.
    Thank you,
    Hardz

    After some further studies with ReportViewer controls and with the use of this tutorial @ : http://msdn.microsoft.com/en-us/library/ms252091.aspx, which helps me a lot on how to print a report without using a report viewer, I found out what is missing
    with my code above and helps solve my question.
    Here's the continuation of the code above:
    private void loadReceipt3()
    loadParameter3();
    LocalReport localreport = new LocalReport();
    localreport.ReportPath = @"..\..\SsrsCashReceipt.rdlc";
    localreport.SetParameters(parameter);
    localreport.DataSources.Clear();
    localreport.DataSources.Add(new ReportDataSource("dsSalesReceiptSsrs", dtrs));
    Export(localreport);
    print4();
    private IList<Stream> m_streams;
    private int m_currentPageIndex;
    private void Export(LocalReport report)
    string deviceInfo =
    @"<DeviceInfo>
    <OutputFormat>EMF</OutputFormat>
    <PageWidth>8.5in</PageWidth>
    <PageHeight>11in</PageHeight>
    <MarginTop>0.25in</MarginTop>
    <MarginLeft>0.25in</MarginLeft>
    <MarginRight>0.25in</MarginRight>
    <MarginBottom>0.25in</MarginBottom>
    </DeviceInfo>";
    Warning[] warnings;
    m_streams = new List<Stream>();
    report.Render("Image", deviceInfo, CreateStream,
    out warnings);
    foreach (Stream stream in m_streams)
    stream.Position = 0;
    private void print4()
    if (m_streams == null || m_streams.Count == 0)
    throw new Exception("Error: no stream to print.");
    PrintDocument printDoc = new PrintDocument();
    PrintDialog printDlg = new PrintDialog();
    printDlg.Document = printDoc;
    DialogResult dr = printDlg.ShowDialog();
    if (dr == DialogResult.OK)
    if (!printDoc.PrinterSettings.IsValid)
    throw new Exception("Error: cannot find the default printer.");
    else
    printDoc.PrintPage += new PrintPageEventHandler(PrintPage);
    m_currentPageIndex = 0;
    printDoc.Print();
    Dispose();
    public void Dispose()
    if (m_streams != null)
    foreach (Stream stream in m_streams)
    stream.Close();
    m_streams = null;
    private Stream CreateStream(string name, string fileNameExtension, Encoding encoding, string mimeType, bool willSeek)
    Stream stream = new FileStream(name + "." + fileNameExtension,
    FileMode.Create);
    m_streams.Add(stream);
    return stream;
    private void PrintPage(object sender, PrintPageEventArgs ev)
    Metafile pageImage = new
    Metafile(m_streams[m_currentPageIndex]);
    // Adjust rectangular area with printer margins.
    Rectangle adjustedRect = new Rectangle(
    ev.PageBounds.Left - (int)ev.PageSettings.HardMarginX,
    ev.PageBounds.Top - (int)ev.PageSettings.HardMarginY,
    ev.PageBounds.Width,
    ev.PageBounds.Height);
    // Draw a white background for the report
    ev.Graphics.FillRectangle(Brushes.White, adjustedRect);
    // Draw the report content
    ev.Graphics.DrawImage(pageImage, adjustedRect);
    // Prepare for the next page. Make sure we haven't hit the end.
    m_currentPageIndex++;
    ev.HasMorePages = (m_currentPageIndex < m_streams.Count);
    Thank you very much for this wonderful tutorial. :)

  • In VIEWING (to print) my iTunes music (in finder), how can i view subfolders without clicking on the  triangle of each main folder?

    In VIEWING (to print) my iTunes music (in finder), how can i view subfolders without clicking on the  triangle of each main folder?
    I am trying to print a list of all my music. For example, main folder is BEATLES.  Subfolders are Magical Mystery Tour, Yellow Submarine, Abbey Road, etc...
    and I want to view and print all the subfolders. This is a recovery project after my hard drive failed. I know this is truly a "finder" question and will double post there.
    Thanks.
    Amy

    amy lynn wrote:
    way too much ink.
    Don't know what this means but okay.

  • How do I view my subfolders so I can print a list of my directory (main folders and internal subfolders) without clicking the triangle to expand each main folder?

    In VIEWING (to print) my iTunes music (in finder), how can i view subfolders without clicking on the  triangle of each main folder?
    I am trying to print a list of all my music. For example, main folder is BEATLES.  Subfolders are Magical Mystery Tour, Yellow Submarine, Abbey Road, etc...
    and I want to view and print all the subfolders. This is a recovery project after my hard drive failed. I know this is truly a "finder" question and will double post there.
    Thanks.
    Amy

    Try PrintWindow:
    http://www.macupdate.com/app/mac/6465/print-window
    Regards.

  • How to layout a page in numbers 3.0 -- I can't edit in print view

    How to layout a page in numbers 3.0 -- I can't edit in print view any more.  I am using the new version and miss the show print view mode.

    The recipe for my tables:
    1-write a line  (begining page 1) (5 pixel width)
            Begin x=1  y=1
            End    x=903  y=903
    2- write a line (begining page 2) (5 pixel width)
            Begin x=1  y=1213
            End    x=903  y=1213
    3- write a line (begining page 2) 
            Begin x=1  y=     2425
            End    x=903  y=  2425
    etc
    Print and set autoadjust off and 60%

  • How do i view and print pdf file in mac osx with ff4.0?

    How do i view and print pdf files in ff 4.0 on a mac with osx. for some reason the updated ff version does not support it. Makes no sense that something that worked in an earlier version now does not...
    Thanks,
    Ron

    Please don't post the same question multiple times!

  • How do I view/print a pdf document in an email? I'm not getting the little hand icon.

    How do I view/print a pdf document in an email? I'm not getting the little hand icon.

    Ah, yes, I'm using Adobe Reader!  That makes sense.  Thanks so much for your reply.  At the moment, I scan Word documents into my computer and they're automatically converted to PDFs.  If I had Adobe Acrobat on my computer, and scanned in documents, would they open in Reader automatically or could I open them in Acrobat and therefore add password protection?

  • How to displayed multiple report in View selector in OBIEE

    I have one table in that AM and PM hours wise data is having.My requirement is if I select in filter AM or PM the respect data only displayed in the below report.How it is possible other wise how to use in View selector.
    Edited by: user8035288 on Mar 23, 2009 10:40 PM

    hi..
    you have changed your subject name from column selector to View Selector.. :-)
    To do this,
    I assuming that AM and PM are columns
    Create a pivot view with AM column and PM column is excluded here...
    Create another Pivot with PM and AM excluded..
    Now go to view selector, from the available view select Pivot, and Pivot1 views Rename them as you want to show in drop down..
    add View Selector to Compound Layout..
    If AM, PM are values, then just keep the corresponding column in Pages of Pivot .. which acts as prompt...
    You need not to go for view selector in this case....

  • How to set PAPER SIZE in PRINT VIEW

    I am missing a step here in printing to Tabloid paper size.
    How do I set the paper size in the actual document or on the actual sheet?
    I am in Print View and I am guessing that it is showing the Sheets for my document as printing on 8 1/2 x 11 paper which appears to mean that no matter what I do - once I go to Print (like printing to Tabloid paper size) that this document will print at 8 1/2 x 11 even if it is printing on 11 x 17 paper.
    I understand that I need to move the slider to get the document to fit on the paper but it appears that right now I am doing this simply to get the document to fit on 8 1/2 x 11.
    Is there a setting somewhere that tells Print View what paper size to use? Is this set by Individual Sheet?
    Thanks,
    Jon

    Ah crimeny. This is Inspector > Page?
    I am getting a bit confused as to how to print on various size paper and how to SAVE THESE SETTINGS.
    For EACH SHEET I have to do the following:
    First I pulldown to the Printer and the Page Size in INSPECTOR
    THEN I scale the Sheet Manually to fit this paper in PRINT VIEW
    THEN I run PRINT?
    Now what?
    Is there a way to get this to Print in Color instead of Black and White?
    Can I make some PRESETS somewhere that will let me print to this printer at Tabloid size in Color and then in Black and White and also make some PRESETS that will let me print 8 1/2 x 11 and 12 x 18 so I can just pulldown to these?
    Thanks for any help. I'm not on a deadline but I am losing this battle apparently...

  • How do we view smartform output without clicking print preview

    how can we view form without using print preview
    Thanks in advance

    Use 'TEST' button (F8) that is placed on the toolbar - have to use it few times to get to the preview.
    You can fill there your data fields (or not) and see preview of the smartform
    (use 'Print preview' when it will ask about the printer)
    It's also helpful for debugging problems (f.e. table width isn't matching window width) when the form is not printing in it's main program - it writes You the problem.

  • How can I work in 'print view' in the new version of Numbers

    I've just upgrade to Mavericks and am using the latest version of Numbers. In the previous version I was using I was able to work in "Print View", it made pagination so much easier. I can't find that option in the new version. Is it possible?

    It seems to work differently from previous incarnations.  If you Hit Cmd+P it takes you to a print setup screen where the document can be set up. You can then print or just hit "Done" to take you back to normal editing.

  • How Both View Selector and Column Selector in one report dashboard section

    Can we use a view selector and column selector inside a report in one section of the dashboard?
    env: obiee 10g
    Appreciate any links and pointers
    Thanks in Advance
    Kris
    Edited by: user566193 on Mar 22, 2011 10:18 PM

    hi kris,
    Can we use a view selector and column selector inside a report in one section of the dashboard?Here view selector is nothing but having multiple views and selecting depends on what end user want to see.You are saying in a single report in once section only.
    If it is a single report you can go with using a column selector.
    Note:-View selector and column selector combination can be used.....but it looks wierd as you need to select view at the same time the corresponding column.
    UPDATED POST
    Yes you can have it by creating different compound layouts with pivots in it.
    Cheers,
    KK
    Edited by: Kranthi.K on Mar 22, 2011 11:27 PM

Maybe you are looking for

  • Mini dvi to video adapter ...how does this work?

    I just bought a mini-dvi to video adapter (with the composite /s-video output) I plugged it into my tv, and I can get the desktop on my tv. But I see only the desktop, no icons or windows etc. Do I have to setup something? Or change something in my s

  • How do i reset my password if i don't know my old password

    so i forgot my old password but i needed to update things on my macbook pro :'| i read the interactions to the help on apple and i put the disc macbook mac os xinstall dvd  but then brought me to snow leopard and told me to install it but i didnt hav

  • *Inbound Web Service - Inactive*

    Hi, I am on Siebel 7.5 version I have created a Inbound web service and published when tested from soapUI it says There is no active Web Service with operation named 'http://siebel.com/asi/:SiebelSRQueryById'.(SBL-EAI-04313)+ Using ASI framework I ha

  • How do i do the replacement by reading from a file ?

    The multibyte representation in cloumn 2 in the input file is encoded in UTf8 format. I have the code to get the code point value from a multibyte representation. But i am not sure how to do the same when reading from a file. A better explanation of

  • Tcp/ip printing

    Well I for one would like to setup with a printer! Any chance it will happen ever? Post relates to: Pre p100eww (Bell)