How to print Iview contents only

Hello All,
How to print IView contents only instead of the whole portal. If I use javascript function, it prints whole screen. I want to print only the IVIEW contents. IView has tableview.
Thanks in advance,
Praveen

Hi,
we are using a 7.0 SP 16 Portal.
If you have an light portal with an low EPCF level maybe the option will not be shown.
Try it with the default SAP Portal Style as admin in that case you have an high EPCF level and you also should see the print option.
If your iview is embeded inside a page this can have different effects. Please test it with an stand alone iView before.
So with the high EPCF level the default portal style a single portal iView and the print option set to true you should see and use the print option.
The option "Show print option" is not for every iView type avaible for example web dynpro iViews has that option this i know for sure, because i use this option with web dynpro iViews.
Maybe you can build this function by your own i did this also with the following code. Maybe you can adapt that code:
String p1 = WDProtocolAdapter.getProtocolAdapter().getRequestObject().getParameter("PagePath");
String p2 = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("sap-ext-sid");
String p3 = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("sap-wd-cltwndid");
String[] url = wdThis.wdGetAPI().getComponent().getApplication().getURLService().getGeneralService().getAbsoluteWebResourceURL(wdThis.wdGetAPI().getComponent().getDeployableObjectPart().getName()).split("/");
parameter = p1 + "&iview_mode=default&sap-wd-renderMode=print&sap-wd-cltwndid=" + p4 + "&sap-wd-cltwndid-print=" + p4 + "&sap-wd-pb-ext-sid=" + p2 + "--" + p3 + "--&IviewPrint=true";
String newUrl = "http://" + url[2]+ "/irj/servlet/prt/portal/prtroot/com.sap.portal.pagebuilder.IviewModeProxy?iview_id=" + parameter;
kind regards
Fabian
Edited by: Fabian Eidner on Mar 23, 2009 3:40 PM

Similar Messages

  • How to print HTML contents

    can anyone tell me how to print HTML contents...i needed it urgently
    Thanks

    actually i have a print button on html page....when i click on print button using window.print(); the html page gets printed...but along with it print button is also printed...i dont want print button to be printed...
    this is the issue...
    please resolve it
    Thanks a lot...

  • Urgent: how to print the contents displayed in JTextPane

    hi all,
    i've a problem printing the contents typed in styled format in JTextPane, when i print the contents nothing is printed. can anyone tell how can i print the contents typed in styled format or so. the code for implementing the print is given below.
    class ContentsArea extends JTextPane implements Pritable {
       public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
          if (pi >= 1) {
             return Printable.NO_SUCH_PAGE;
          Graphics2D g2d = (Graphics2D) g;
          g2d.translate(pf.getImageableX(), pf.getImageableY());
          g2d.translate(pf.getImageableWidth() / 2,
                          pf.getImageableHeight() / 2);
          Dimension d = getSize();
          double scale = Math.min(pf.getImageableWidth() / d.width,
                                    pf.getImageableHeight() / d.height);
          if (scale < 1.0) {
              g2d.scale(scale, scale);
          g2d.translate(-d.width / 2.0, -d.height / 2.0);
          return Printable.PAGE_EXISTS;
    }i'd be grateful to all ppl who helps me.
    Afroze.

    What's the exact problem? The printer printing a blank sheet or the printer not doing anything at all? First make sure in the main program you've got something along the lines of...
    import java.awt.print.*;
    PrinterJob printerJob = PrinterJob.getPrinterJob();
    PageFormat pageFormat = printerJob.defaultPage();
    if(!printerJob.printDialog()) return; //not essential but lets the user tweak printer setup
    pageFormat = printerJob.pageDialog(pageFormat); //ditto
    printerJob.setPrintable(this, pageFormat);
    print(...);
    The above code should go in an ActionListener, triggered when the user hits a print button or menuitem. I'm guessing you already have something similar set up.
    Then your print(...) method should be similar to
    public int print(Graphics g, PageFormat pageFormat, int pageIndex)
         if(pageIndex>0) return NO_SUCH_PAGE;
         Graphics2D gg = (Graphics2D)g;
         gg.draw(whatever's going to be printed);
         return PAGE_EXISTS;
    Which it is, although yours has clever scaling stuff built in ) The only thing you're not doing is rendering the actual content.
    So if you want the contents of the textpane, it'd make sense to use something like g.drawString(myTextPane.getContents()); in the print method. Note it's g and not g2d, since Graphics2D has more complicated text handling routines.
    I'm no expert tho )

  • How to print the content of a text edit ?

    Hi to all,
    I have a view with a text edit and I want to print its content. I created a button and I want to print text edit content pressing this button. How can I do? Which java code I have to insert in that button?
    thanks a lot,
    Antonio

    Antonio,
    Sadly, there is no way to do it directly. Even in plain HTML application it is impossible to print text of UI control (<textarea> in this case).
    So you have to open new browser window containing entered text and let user print text himself. Or invoke window.print() on document load event.
    VS

  • How to print the content of LinkedList int[] and LinkedList LinkedList ?

    Hi guys, its been a long time since i posted here, and now im coming back to programming using java. My problem is, how can i print the content of the list?
    Example:
    LinkedList<int[]> list = new LinkedList<int[]>;
    int[] input = {1,2,3,4,5};
    int[] input2 = {2,32,43,54,65};
    list.add(input);
    list.add(input2);
    how can i print all the content of the linkedlist?
    Please help me..I know its a dumb question but i really dunno how.
    here is the code:
    import java.util.LinkedList;
    import java.util.Scanner;
    import java.util.Arrays;
    public class Test{
         static void printThis(String[] in){
              System.out.print("Value: ");
              for(int i = 0;i<in.length;i++){
                   System.out.print(in[i] + " ");
              System.out.println();
         static void reset(String[] val){
              for(int i = 0;i<val.length;i++){
                   val[i] = "";
         public static void main(String[] args){
              LinkedList<String[]> list = new LinkedList<String[]>();
              LinkedList<String> listTrans = new LinkedList<String>();
              System.out.print("Enter the number of records: ");
              Scanner s = new Scanner(System.in);
              int numOfRecords = s.nextInt();
              System.out.print("Enter the number of records per run: ");
              s = new Scanner(System.in);
              System.out.println();
              int numOfRecordsInMemory = s.nextInt();
              String[] getData = new String[numOfRecords];
              String[] transferData = new String[numOfRecordsInMemory];
              int numOfRuns = 0;
              int counter = 0;
              for(int i = 0;i<numOfRecords;i++){
                   counter++;
                   System.out.print("Enter value number " + counter + ": ");
                   Scanner scan = new Scanner(System.in);
                   getData[i] = scan.next();
                   listTrans.add(getData);
              if(getData.length%numOfRecordsInMemory == 0){
                   numOfRuns = getData.length/numOfRecordsInMemory;
              }else if(getData.length%numOfRecordsInMemory != 0){
                   numOfRuns =(int)(getData.length/numOfRecordsInMemory)+ 1;
              System.out.println();
              System.out.println("Number of Runs: " + numOfRuns);
         int pass = 0;
         System.out.println("Size of the main list: " + listTrans.size());
         while(listTrans.size() != 0){
              if(listTrans.size() >= numOfRecordsInMemory){
                   for(int i = 0;i<numOfRecordsInMemory;i++){
                        transferData[i] = listTrans.remove();
                   System.out.println("Size of the list: " + listTrans.size());
                   printThis(transferData);
                   System.out.println();
                   Arrays.sort(transferData);
                   list.add(transferData);
                   reset(transferData);
              }else if(listTrans.size() < numOfRecordsInMemory){
                   pass = listTrans.size();
                   for(int k = 0;k<pass;k++){
                        transferData[k] = listTrans.remove();
                   System.out.println("Size of the list: " + listTrans.size());
                   printThis(transferData);
                   System.out.println();
                   Arrays.sort(transferData);
                   list.add(transferData);
                   reset(transferData);
    //This is the part that is confusing me.
    //im trying to print it but its not working.
              System.out.println("Size of the next list: " + list.size());
    //          for(int i = 0;i<list.size();i++){
    //                    System.out.println();
    //               for(int j = 0;j<list.get(i)[j].length();j++){                    
    //                    System.out.print(list.get(i)[j] + " ");

    Here's the funnest, mabye clearest way you could do it: Use 2 Mappers
    package tjacobs.util;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import tjacobs.Arrays;
    public class Mapper <T>{
         public static interface MappedFunc<T> {
              void map(T value);
         public Mapper(T[] vals, MappedFunc<T> function) {
              this (new Arrays.ArrayIterator<T>(vals), function);
         public Mapper(Iterator<T> iterator, MappedFunc<T> function) {
              while (iterator.hasNext()) {
                   function.map(iterator.next());
         public static void main(String[] args) {
              String[] s = new String[] {"a","b", "c", "abc", "ab"};
              MappedFunc<String> func = new MappedFunc<String>() {
                   public void map(String s) {
                        if (s.toLowerCase().startsWith("a")) {
                             System.out.println(s);
              Mapper m = new Mapper(s, func);
    }

  • How to print the contents of a form(window)

    I'm devloping visitors application in java. After the data entry, I need to display the selected information from database along with the photo and take a printout so that it looks like a card.
    I know how to display the contents in a form. How do I print the contents of the form?
    -Thanx
    Hane

    in JComponent there is a method called print(Graphics g)
    you can use that with a Printable class
    read bout the java.print package in the java doc

  • How to print the contents of doubly-Linked List

    Hi
    I have a DLList consists of header , trailer and 10 linked nodes in between
    Is there a simple way to print the contents ie "the elements"
    of the list
    thanks

    In general you should write an iterator for every linked data structure for fast traversal. I'm guessing you're writing your own DLL for an assignment because one normally uses the LinkedList structure that is included in the api. Anyway, here is an example of how the iterator is implemented for a double linked list:
    http://www.theparticle.com/_javadata2.html#Doubly_Linked_Lists_with_Enumeration

  • How to print window contents at the backside of a page(In scripts&smartform

    Hi,
    How to print the window contents at the back side of a page
    in scripts and smartforms?
    regards,
    prajwala

    Create a new page with the window and select "duplex" printing. Use Search button to get more information.

  • Texy edit - how to print page numbers only

    I wish the page numbers in TextEdit to be printed on my documents; in TextEdit preferences, when I select the option to number pages when printing, it also prints the date and document title. How can I have it only print the page numbers?

    It doesn't seem like you can just have the page numbers printed with TextEdit. When the help text appears in the preferences for printing the number of pages, it indicates it will also print the date and the title, so it is doing what it is designed to do, despite the misleading label for that item. Maybe another application (AppleWorks, BBEdit, Word?) can print just the page number.

  • How to print a paragraph only from a document or email on iMac

    how can I print a paragragh only from a document or email

    copy and paste the desired text into TextEdit then print it.

  • Canon print driver: how to print pure black only

    We love our MP610 printer. But on Mac OS 10.5.8 Leopard we cannot figure out how to print black-only using the big cartridge. We've been using grayscale, but this does not give true blacks, and we suspect is using color ink + the small black cartidge.
    Our goal is simply to conserve the expensive color cartridges, only using color when it is needed.
    Any advice would be appreciated.

    Judging by my Canon printer, the large black cartridge is for solid black only: it doesn't do grayscale. As you've found, grayscale is handled by the colour set. 'Solid black' would apply to text and objects such as lines and rectangles where the colour has been set to full black, not to black within colour or grayscale images.

  • How to print the content of a textarea in java?

    Hello, i'm currently developping a HTML Editor in java but i've got a problem with printing job... Does anyone know a simple code to print the content of a textarea by clicking on a button?
    for instance:
    JTextarea textarea = new JTextArea();
    JButton print = new JButton ();
    file_menu.add(print) ;
    print.addActionListener(
    new ActionListener()
    public void actionPerformed(ActionEvent event)
    ////----> what could i put here to print the content of my textarea named 'textarea' ? Does anyone know a class i could implement here? for instance: 'Print print = new Print(textarea);'
    I've searched on the web but i didn't find it...
    Thanks very much for your help...
    S�bastien

    public class TA extends JTextArea implements Printable{
    public TA(){
    super();
    this.setPreferredSize(new Dimension(500,500));
    public TA(int x, int y){
    super(x,y);
    public int print(Graphics g, PageFormat pf,int pi){
    if (pi >= 1) {
    return Printable.NO_SUCH_PAGE;
    Graphics2D g2 = (Graphics2D) g;
    g2.translate(pf.getImageableX(),pf.getImageableY());
    Font f = new Font("Monospaced", Font.PLAIN,6);
    g2.setFont (f);
    g2.drawString(this.getText(),100,100);
    this.paint(g2);
    return Printable.PAGE_EXISTS;
    And use in Action Listener
    // get the print job
    if(pj.printDialog()){
    PageFormat pformat = pj.defaultPage();
    pformat.setOrientation(PageFormat.PORTRAIT);
    System.out.println(pj.defaultPage());
    pj.setPrintable(ta,pj.pageDialog(pformat));
    try{
    pj.print();
    catch(PrinterException p){

  • How to print a content of a window

    I'm totatlly new to handling printer in java. can any one give me a hand to do this.
    what i want to do is i have a generated html report inside a JTextPane. i want to print this to take a rough copy of it. the text pane is inside a JInternalFrame and there is a button on it for this.
    can any one give me sample code for this. (to print a content of a TextPane)
    please use good comments in the code so i can get a good idea about this.
    Thankx in advance...

    Sorry for some error at code before. here is the revision:
    import java.awt.*;
    import java.awt.print.*;
    import javax.swing.*;
    public class ComponentPrintable implements Printable { // sorry forgot class keyword
         private Component componentToPrint; // in your case it's JTextPane
         public ComponentPrintable(Component componentToPrint) {
              this.componentToPrint = componentToPrint;
         public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
              if (pi > 0)
                   return NO_SUCH_PAGE;
              componentToPrint.print(g);
              // 'retrun' should be return...
              return PAGE_EXISTS;
         public static void main(String[] args) throws Exception {
              PrinterJob printerJob = PrinterJob.getPrinterJob();
              JLabel componentToPrintLabel = new JLabel(
                        "Here is sample of component to be printed");
              ComponentPrintable cp = new ComponentPrintable(componentToPrintLabel);
              printerJob.setPrintable(cp);
              // you can set page format by calling printerJob.pageDialog(...)
              printerJob.print();
    }you can compile and run it.
       $javac ComponentPrintable.java
       don't forget to turn on printer and prepare paper...
       $java ComponentPrintable
       see the result

  • How to print in black only when yellow toner is empty HP Color Laser Jet 2500.

    Hi,
    I have a HP color laserjet 2500, I need to print in black only, I have a nice full toner, but the yellow has just ran out and it's flashing on the top of the printer, can I tell the printer to ignor this and just use the black as the documents are all in black/grey?
    Thanks
    Andy 

    Hello.. Try this:::
    *click on start
    *go to the control panel
    *go to printers for windows vista user
    *go to printers and faxes for windows xp user
    *right click on your printer icon
    *go to printing preferences
    *select on color tab
    *you will see options for color
    *select the print in grayscale
    *click on apply or ok button
    *try to print
    ---let me know if it works!!!

  • How to print the content of a textarea by clicking on a button?

    Hello, i'm currently developping a HTML Editor in java but i've got a problem with printing job... Does anyone know a simple code to print the content of a textarea by clicking on a button?
    for instance:
    JTextarea textarea = new JTextArea();
    JButton print = new JButton ();
    file_menu.add(print) ;
    print.addActionListener(
    new ActionListener()
    public void actionPerformed(ActionEvent event)
    ////----> what could i put here to print the content of my textarea named 'textarea' ?
    I've searched on the web but i didn't find it...
    Thanks very much for your help...
    S�bastien

    I've never tried it, but here's an article that might help:
    http://www.apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-Printing.html

Maybe you are looking for

  • The speakers on my iPod Touch 2nd generation stopped working.

    The speakers on my iPod Touch 2nd generation stopped working.  The volume doesn't even register - can't turn it up or down.  On occasion the headphones will work when plugged in.  Turned it off and on, tried reset, nothing works.  I bought it second

  • Iphone 5 in saltwater

    hey, yesterday (thursday, 4th) at the beach I was using my jetski, I had my iPhone fully working in a sealed container inside the jetski, so I grabbed my iPhone and put it on my pocket and an aunt started jelling at me, I got distracted (don't blame

  • Implications of changing subaccount in bank determination

    Hi Gurus, I was asked to update the suspense accounts (sub accounts in SAP) for the automatic payment run procedure. Before I proceed, may I just seek an expert advise on what could be the implications of doing such changes in configuration? Thanks a

  • Invoice amount vs PO amount

    hi guys, does SAP allow posting of invoice with ref to PO if the amount of invoice already exceed or greater than its PO. For ex i have 1 PO amount is 125,000USD and it has 5 invoices. The sum of invoices amounts to 200,000+USD. will sap allow this k

  • New to flex, and i have a question

    all, I am trying to add the coverflow lib to my project, can someone give me an idea as to how about doing this. I have the source folder but i just dont know where to putting or how to add it to my project. any help would be great.