Printing with J2SE 1.4 Printing API

Hi Everyone,
Is there any tutotial or any type of documentation that talks about how to use J2SE v.1.4 Printing API. I've heard that it's much simpler and easier to use than old AWT printing API.
Thanks in advance,
YM

do NOT cross post

Similar Messages

  • Problem with Java Print API ( awt ) : Migrated from 1.1 to 1.4

    We had migrated an application ( applet based) from Java 1.1.8 to java 1.4.
    We use the java.awt.print apis for printing data from our applications.
    There is difference in print quality after the migration. For e.g. if the data frame had a scroll bar when taken print out, the scroll bar was not visible in java1.1 version application but is being printed with java1.4 version.
    We are unable to find the cause of this problem. Any help in this regard would be of great help.
    Thanks in advance.

    Hi,
    thanks, this solved the problem.
    Thank you.
    Best regards,
    Peter

  • Problem with too small page size using Java 2D Printing API.

    Hello,
    I have problem with resolution of printer using Java 2D Printing API. Despite my printer has 600 x 600 DPI, inside java.awt.print.Printable.print(Graphics, PageFormat, int) I receive page format with 600 x 840 page size.
    I have tried to set resolution using javax.print.attribute.PrintRequestAttributeSetand javax.print.attribute.standard.PrinterResolution, but with no result.
    Can anybody solve this problem?
    Regards,
    Karl.

    600 x 840 is a Point value; Point is defined as 1/72nd of an inch. Printers do have much higher DPI than this, but I believe that this DPI has to do with richness of the printed image, not an actual ability to color with that level of resolution. You might want to try calling zoom on your Graphics2D object. Otherwise, I don't know what else you can try.

  • What is the best 3rd party print API available with rich print capabilities

    Hi
    Our SWING based application is 6 years old and we have been using a third party print API that was available at that time.
    As it is a very old API, all the print features are not available and it provides just a minimal print features. Now we are thinking of migrating to a best available print API.
    What is the best third party print API available with robust print capabilities? OUR COMPANY IS READY TO SPEND SOME BUCKS TO BUY ANY ROBUST THIRD PARTY PRINT API.
    Thanks
    Reddy

    I just put this into my client class (removed the stuff i had that weren't needed):
    import java.io.*;
    import java.util.Scanner;
    public class ListClient
         public static void main (String [] args) throws IOException
             Friend[] friend = new Friend [20];
             List myPals = new List();
             Scanner s = null;
            try {
                s = new Scanner(new BufferedReader(new FileReader("myFriends.dat")));
                while (s.hasNext()) {
                    System.out.println(s.next());
            } finally {
                if (s != null) {
                    s.close();
    }my file (called myFriends.dat, in the same file this program is in) has 3 names listed in a column with their birthdays right next to each and phone numbers right next to the bdays.
    when i right click on the listClient class and "tell it to work", it does nothing... did i do it completely wrong? lol

  • Java Printing API - Unable to print on HP LaserJet

    Hi,
    I'm trying to use Java's printing API to print a PDF file onto a network/local printer.
    My code works fine when I try printing onto Canon printers but the behavior is erratic on HP LaserJet printers.
    I've tried using two different models of HP LaserJet (4050 Series and 1020 Series )
    1. On HP LaserJet 4050 Series PS the print job is processed, but the printer outputs junk/ascii characters instead of the actual pdf
    2. On HP LaserJet 1020 Series the print job reaches the queue but stays there indefinitely with the status message 'Printing'.
    After this the only way to bring the printer back alive is to shut it down and restart it again.
    In both these cases printing from any other application works fine, I run into these issues while using the printing API.
    Here's a code snippet that demonstrates the way my client code is written.
      PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
      pras.add(new Copies(1));
      pras.add(MediaSizeName.ISO_A4);
      DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE; 
      ByteArrayInputStream bytesinputStream =  new ByteArrayInputStream(myPDFfileContent);
      //'printJob' was obtained by iterating over PrintServiceLookup.lookupPrintServices(null, pras);
      DocPrintJob job = printJob.getPrintService().createPrintJob();
      doc = new SimpleDoc(bytesinputStream, flavor, new HashDocAttributeSet());
      job.print(doc, pras);I'm hoping that someone has experienced this issue before and can help me with this..
    Thank you....

    plz try to download the following set of drivers from the link below :::\
    http://gimp-print.sourceforge.net/MacOSX.php3
    This is a new set of default drivers and mayhelp u in resolving the issue.
    Plz do run disk first aid after installing the driver....might suggest even before installaing.
    Thanx !! for trying.

  • Printing a PDF document using Java 1.4 Printing API

    Hi,
    When I tried to print a PDF document using JAVA 1.4 Printing API, I got the following exception.
    Exception in thread "main" sun.print.PrintJobFlavorException: invalid flavor
    at sun.print.Win32PrintJob.print(Win32PrintJob.java:290)
    at Printing.main(Printing.java:40)
    I am able to print the same PDF document using Acrobat reader.
    Is PDF format not supported in JAVA 1.4 printing API? or is something wrong in my code?
    here is the sample JAVA program that I was using
    import javax.print.*;
    import javax.print.attribute.*;
    import java.io.*;
    public class Printing {
    public static void main(String args[]) throws Exception {
    String filename = args[0];
    PrintRequestAttributeSet pras =
    new HashPrintRequestAttributeSet();
    DocFlavor flavor = DocFlavor.INPUT_STREAM.PDF;
    PrintService defaultService =
    PrintServiceLookup.lookupDefaultPrintService();
    DocPrintJob job = defaultService.createPrintJob();
    FileInputStream fis = new FileInputStream(filename);
    DocAttributeSet das = new HashDocAttributeSet();
    Doc doc = new SimpleDoc(fis, flavor, das);
    job.print(doc, pras);
    Thread.sleep(10000);
    System.exit(0);
    Thank you
    Sumana

    Here's a pure Java solution (that works!):
    http://www.mycgiserver.com/~zhouwu/pdf/readme.html
    The caveats are:
    - prints only to the default printer
    - requires a properties file located in the home directory
    my workaround for the last:
         * Print a PDF file to the default printer (might consume lots of memory!).
         * <p>
         * <b>Required:</b>
         * <ul>
         * <li>a file "acrobat.properties" needs to be in the working directory. The content is:
    <table align="center" bgcolor="#E0E0E0" border=1 cellpadding="10" cellspacing="0"><tr><td><pre style="margin-top:0; margin-bottom:0">
    #com.adobe.acrobat.Viewer Properties
    #Wed Oct 29 20:34:05 PST 2003
    com.adobe.acrobat.AcceptedLicAgreement=true
    com.adobe.acrobat.Fax_Fine_Mode=true
    com.adobe.acrobat.Find\:FindAll=false
    com.adobe.acrobat.Find\:FindBackwards=false
    com.adobe.acrobat.Find\:FindWholeWord=false
    com.adobe.acrobat.Find\:MatchCase=false
    com.adobe.acrobat.Open_Dialog_Directory=C\:\\temp\\
    com.adobe.acrobat.Open_Dialog_File=itext.pdf
    com.adobe.acrobat.Print_Method_Known=true
    com.adobe.acrobat.Shrink_To_Fit=false
    com.adobe.acrobat.SitePreferencesURL=file\://localhost/C\:/pdf/acrobat-site.properties
    com.adobe.acrobat.Use_Print_Server=false
    com.adobe.acrobat.util.fontDirectories=C\:\\Winnt\\Fonts
    com.adobe.acrobat.util.fontIgnoreExtensions=.fon;.pfm;.ini;.lst;.txt;.doc;.ttmap;.z;.enc;.dir;.afm;.f3b;.pfa;.spd;.ps;.bepf;.map;.alias;.scale;.all;.upr
    </pre></td></tr></table>
         * <li>The JAR files PDFPrinter.jar, acrobat.jar and MRJToolkitStubs.zip in the CLASSPATH.
         * </ul>
         * <p>
         * Note: the file "acrobat.properties" is expected to be in the user's home directory. As this is not always feasible,
         * the system property "user.home" is mapped to "user.dir" for the time of execution.
         * @param fileName Name of PDF file to print.
         * @throws Exception on error.
         * @see <a href="http://www.mycgiserver.com/~zhouwu/pdf/readme.html">PDF Server (Silent) Printing</a>
        public void printPDF(String fileName) throws Exception {
            String oldHome = System.getProperty("user.home");
            System.setProperty("user.home", System.getProperty("user.dir"));
            PDFPrinter vi = new PDFPrinter();
            vi.activate();
            vi.setDocumentInputStream(new FileInputStream(fileName));
            vi.printAll();
            System.setProperty("user.home", oldHome);
        }//printPDF()I just need the following additional files in my CLASSPATH: PDFPrinter.jar, acrobat.jar and MRJToolkitStubs.zip. Despite the note at the site above that "printing quality is not very good", i can't agree: the print quality is quite good. Not perfect, but acceptable for most uses.
    (Tested on Windows 2000 SP4, J2SE 1.4.2_03, hp laserjet 2300dn)

  • PrintScreen Functionality using Java Print Api(without Robot)

    Hi Guys
    I have an issue to discuss,can any of you tell me that is it possible to take the screen shot of screen(not printing on paper) in java using Print Api .
    I have done it with robot but i want to do it without using Robot.
    Thanks
    Vipul

    Vipul wrote:
    can u please tell me how to implement it.i want to take the screenshot not printing a java container on paper.
    package test;
    * Screenshot.java
    import java.awt.*;
    import java.awt.print.*;
    import javax.swing.*;
    public class Screenshot extends JPanel {
        private Container container;
        public Screenshot(Container container) {
            this.container = container;
        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            container.print(g);
        //"main" only for Testing:
        public static void main(String[] args) {
            final JFrame f = new JFrame("Frame");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setSize(500, 600);
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(new JTextField("Begin"), BorderLayout.NORTH);
            panel.add(new JColorChooser());
            panel.add(new JTextField("End"), BorderLayout.SOUTH);
            f.add(panel);
            f.setVisible(true);
            new Thread(new Runnable() {
                public void run() {
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException ex) {
                    JDialog d = new JDialog(f, "Screenshot of Frame");
                    d.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
                    d.setSize(f.getSize());
                    d.setLocationRelativeTo(null);
                    d.add(new Screenshot(f.getContentPane()));
                    d.setVisible(true);
            }).start();
    }

  • How to use java print API???  very very urgent

    Hi
    I fed up with the JAVA print API. If anybody knows how to print a file .txt, please let me know.
    cheers
    shyam

    import javax.swing.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.sql.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import utility.*;
    import java.awt.print.*;
    public class remRunPrint extends JFrame implements ActionListener, Printable {
         static JButton j = new JButton("Print");
         String printer = "IT";
         java.util.Date pDate;
         public void setCopies(int i) {
              copies = i;
         public void setPrinter(String s) {
              if (s.length() > 0) {
                   printer = s;
         public void getInfo(int vid) {
              ResultSet verRS;
              try {
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection conn = DriverManager.getConnection("jdbc:odbc:SOMEdbnAME");
                   Statement stmt = conn.createStatement();
                   verRS = stmt.executeQuery("SOME SQL QUERY HERE");
                   verRS.next();
                   //SET SOME VARIABLES HERE..
              } catch (Exception e) {
                   System.out.println("getinfo: " + e);
    public void actionPerformed(ActionEvent e) {
    if (e.getSource() instanceof JButton) {  
                   wookie();
         public void wookie() {
              PrinterJob printJob = PrinterJob.getPrinterJob();
              Paper paper = new Paper();
              PageFormat page = new PageFormat();
              paper.setImageableArea(0, 0, 600, 800);     
              page.setPaper(paper);
              printJob.setPrintable(this, page);
              PrintService[] services = PrintServiceLookup.lookupPrintServices(null, new HashPrintRequestAttributeSet());
              PrintService ps = PrintServiceLookup.lookupDefaultPrintService();
              for (int i=0; i<services.length;i++) {
                   if (services.toString().indexOf(printer) > 0) {
                        ps = services[i];     
              try{
                   printJob.setCopies(copies);
                   //printJob.pageDialog(page);
                   printJob.setPrintService(ps);
                   //if (printJob.printDialog()) {
                        printJob.print();
              } catch (Exception e) {
                   System.out.println("wookie1run1" + e);
         public static void main(String[] args) {
              remRunPrint at = new remRunPrint();
              at.getInfo((new Integer(args[0])).intValue());
              at.drawShapes();
              at.wookie();
         public void drawShapes() {
              setBounds(0, 0, 670, 550);
              addWindowListener(new WindowAdapter() {public void windowClosing(WindowEvent e) {System.exit(0);}});
              JLabel l = new JLabel("<html><body><table><tr bgcolor=blue><td><font color=red>Hello EVERYONE</font></td></tr></table></body></html>");
              l.setBounds(20, 20, 120, 20);
              j.setBounds(10, 10, 10, 10);
              j.addActionListener(this);
              getContentPane().setLayout(null);
              getContentPane().add(l);
              getContentPane().add(j);
              show();
         public remRunPrint(){}
         public void paint(Graphics g) {
              g.setFont(new Font("SansSerif", Font.PLAIN, 6));
              g.drawString("PrintDate:", 520, 20);
              g.setFont(new Font("SansSerif", Font.BOLD, 9));
              g.drawString(pDateSTR, 550, 20);
              g.drawString("JOB: ", 23, 37);
              g.drawString("VERSION:", 310, 37);
              g.drawString("#" + vID, 310, 28);
              g.setFont(new Font("SansSerif", Font.BOLD, 18));
              g.drawString(jName, 48, 37);
              g.drawString(vName, 355, 37);
              //HERE ARE A COUPLE LINES OF AWT DRAWING TO A SCREEN THAT WORK ... IF YOU LAUNCH THIS APP FROM THE COMMAND LINE
              //IT WILL SHOW YOU WHAT YOU ARE GOING TO PRINT.. SO YOU CAN FORMAT IT AND BUILD IT FIRST THEN PRINT IT WITH THE
              //BUTTON...
         public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
    if (pi >= 1) {
    return Printable.NO_SUCH_PAGE;
              paint(g);
    return Printable.PAGE_EXISTS;

  • Java Print API - Pages per sheet

    Hello
    I made a java application to print a file.
    Everything works fine.
    Now, I would like to be able to indicate that I want to print 2 pages per sheet.
    How can I do that?

    Thanks
    So I tried using 2 different ways: using javax.print API and using java.awt.print.PrinterJob
    Here is the code and result with the javax.print API:
    Result: the file is printed correctly but the properties I filled on the printer dialog selection, no properties has been taken: I choose monochrome, the file has been printed in colors, I choose 2 pages per sheet and 1 page has been printed each sheet.
    Code:
    import java.io.FileInputStream;
    import javax.print.Doc;
    import javax.print.DocFlavor;
    import javax.print.DocPrintJob;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.ServiceUI;
    import javax.print.SimpleDoc;
    import javax.print.attribute.Attribute;
    import javax.print.attribute.AttributeSet;
    import javax.print.attribute.HashAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintServiceAttributeSet;
    import javax.print.attribute.standard.JobName;
    import javax.print.attribute.standard.Sides;
    public class Tst4 {
         public static void main(String[] args) {
              FileInputStream fis = null;
              try {
                   PrintService[] services = PrintServiceLookup.lookupPrintServices(
                         null, null);
                   AttributeSet attributes = new HashPrintRequestAttributeSet();
                   PrintService service =  ServiceUI.printDialog(null, 50, 50,
                                            services, null, null,
                                            (HashPrintRequestAttributeSet)attributes);
                   if (service != null) {
                        fis = new FileInputStream("D:/Temp/coms/test/1.pdf");
                        Doc myDoc = new SimpleDoc(fis, DocFlavor.INPUT_STREAM.AUTOSENSE, null);
                        DocPrintJob job = service.createPrintJob();
                        try {
                             System.out.println("Printing");
                             PrintRequestAttributeSet attr_set = new HashPrintRequestAttributeSet();
                             attr_set.add(new JobName("tst.pdf", null));
                             job.print(myDoc, attr_set);
                        } catch (Exception pe) {
                           pe.printStackTrace();
              } catch(Exception e) {
                   e.printStackTrace();
              } finally {
                   try {
                        fis.close();
                   } catch(Exception ee) {}
    }Here is the code and result with the java.awt.print API:
    Result: the file has been printed correctly, the properties I choose on the printer dialog were well taken. The only problem is the printing seems to be slower.
    import java.awt.print.Book;
    import java.awt.print.PageFormat;
    import java.awt.print.PrinterJob;
    import java.io.File;
    import java.io.FileInputStream;
    import java.nio.ByteBuffer;
    import java.nio.channels.FileChannel;
    import com.sun.pdfview.PDFFile;
    import com.sun.pdfview.PDFPrintPage;
    public class Tst6 {
         public static void main(String[] args) {
              System.out.println("Begin");
              FileInputStream psStream = null;
              try {
                   File f = new File("D:/Temp/coms/test/1.pdf");
                   psStream = new FileInputStream(f);
                   FileChannel fc = psStream.getChannel();
                   ByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
                   PDFFile pdfFile = new PDFFile(bb);
                   PDFPrintPage pages = new PDFPrintPage(pdfFile);
                   PrinterJob pj = PrinterJob.getPrinterJob();
                   PageFormat pf = PrinterJob.getPrinterJob().defaultPage();
                   pj.setJobName(f.getName());
                   Book book = new Book();
                   book.append(pages, pf, pdfFile.getNumPages());
                   pj.setPageable(book);
                   if (pj.printDialog()) {
                        System.out.println("Printing");
                        pj.print();
              } catch(Exception e) {
                   e.printStackTrace();
              } finally {
                   try {
                        psStream.close();
                   } catch(Exception se) {}
              System.out.println("End");
    }What can I do to have the same result using both approached (I want to have the result of printing using java.awt libraries but using javax.print API - I want the properties on printer dialog to be taken when using javax.print API)
    Thanks
    Regards.
    Edited by: pjmorce on Feb 18, 2009 1:13 AM
    Edited by: pjmorce on Feb 18, 2009 5:51 AM

  • My Swing app (JRE 1.5.0_12-b04) is crashing while invoking print apis ..

    My Swing app is crashing each time when the print apis are invoked. This is happening only on a particular box. We are able to print from other apps on the same box.
    Any pointers on whats going on? Thanks in advance.
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c918fea, pid=3020, tid=248
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_12-b04 mixed mode)
    # Problematic frame:
    # C [ntdll.dll+0x18fea]
    Stack: [0x17f80000,0x17fc0000), sp=0x17fbf4c8, free space=253k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x18fea]
    C [ntdll.dll+0x104b]
    C [mtl70um.dll+0x11aba]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j sun.awt.windows.WPrinterJob.getDefaultPage(Ljava/awt/print/PageFormat;)V+0
    j sun.awt.windows.WPrinterJob.defaultPage(Ljava/awt/print/PageFormat;)Ljava/awt/print/PageFormat;+10
    j java.awt.print.PrinterJob.defaultPage()Ljava/awt/print/PageFormat;+8
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 (cores per cpu 2, threads per core 1) family 6 model 15 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1023216k(425124k free), swap 2464284k(1971892k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_12-b04) for windows-x86, built on May 2 2007 02:07:59 by "java_re" with MS VC++ 6.0

    Hi Raj,
    We are having same problem. By the time you might have resolved it. can you please tell me that what's wrong going on?
    Thanks in advance,
    Jatin

  • Label print API

    Hi All,
    Does EBS have an API to print labels? I'm searching for information on the label printing API and an example of how to call it from a JavaConccurnetProgram. Is there another forum more appropriate for this question? I've done a lot of searching on this issue and haven't found much help, any insights will be really appreciated.
    Thanks,
    Mike

    Pl post details of OS and EBS versions, along with which module you intend to print labels from. See if these MOS Docs help -
    Label Printing Strategies for Oracle Warehouse Management System (WMS) (Doc ID 414368.1)
    https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=414368.1&h=Y
    11i - Inventory Label Printing Documentation (Doc ID 277357.1)
    https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=277357.1&h=Y
    There are also 3rd party solutions available -
    http://www.zebra.com/id/zebra/na/en/index/about_zebra/alliances/strategic_alliances/oracle.html
    http://www.nicelabel.com/resources/files/doc/literature/fl-NiceLabel_and_Oracle-eng.pdf
    HTH
    Srini

  • How to print a document in reverse order using Java Print API ?

    I need to print a document in reverse order using Java Print API (*Reverse Order Printing*)
    Does Java Print API supports reverse order printing ?
    Thnks.,

    deepak_c3 wrote:
    Thanks for the info.,
    where should the page number n-1-i be returned ?
    Which method implementation of Pageable interface should return the page number ?w.r.t. your first question: don't return that number but return page n-1-i when page i is requested; your document will be printed in reverse order. Your class should implement the entire interface and wrap the original Pageable. (for that number n your class can consult the wrapped interface; read the API for the Pageable interface).
    kind regards,
    Jos

  • What are the printing api available in java

    I am very new to java..
    I want to print a file from my java program .. how to do it..
    please help.

    http://onesearch.sun.com/search/developers/index.jsp?col=devforums&qp_name=New+To+Java+Technology&qp=forum%3A54&qt=printing+api
    Mike

  • Printing a microsoft word doc using Java Print API

    Hi,
    I have to print a microsoft word doc.I am using Java Print API, but the code is printing only Hashcodes instead of the actual document.
    Here is the code. Please let me know whats wrong in it.
    CODE:::
    public String print() throws Exception {
    String realPath = getRealPath("/images/formLibrary/csaAddressContactRequestForm100.doc");
    PrintRequestAttributeSet pras1 = new HashPrintRequestAttributeSet();
    DocFlavor flavor1 = DocFlavor.INPUT_STREAM.AUTOSENSE;
    PrintService defaultService = PrintServiceLookup.lookupDefaultPrintService();
    DocPrintJob job = defaultService.createPrintJob();
    FileInputStream fis1 = new FileInputStream(realPath);
    DocAttributeSet das = new HashDocAttributeSet();
    Doc doc1 = new SimpleDoc(fis1, flavor1, das);
    job.print(doc1, pras1);
    Thread.sleep(10000);
    System.exit(0);
    return "";
    }

    By using an appropriate library. JText, whatever.
    Google, man.I think Rene meant iText!Whatever. :) Never used it, I just remembered there was something named like that. Thanks.

  • New printing API stand alone?

    Hi again...
    Is it possible to use the new printing API on the JDK 1.3
    (as additional package) or do I have to switch to JDK 1.4?
    Thanks in advance.

    Try setting the OS PATH env variable to the directory where the .DLL is located before you launch the container. Or else put the .DLL in a directory which is in the existing path.
    cheers
    -steve-

Maybe you are looking for

  • Still cannot upgrade iTunes

    This is an update to an earlier question I had posted. I desperately need help! I have a Dell Inspiron 1525 laptop with Windows Vista 32-bit and a 2nd generation iPod touch running iOS 3.1.3 (7E18). However, I would, obviously, like to upgrade to the

  • Need to create sale order from the flat file & mail has to be sent

    Hi Experts,           I have a requirement to create a sale order from a flat file and once the oder is created, mail has to be sent to customer as well as to internal user with the order details. I want to know how this process can be implemented an

  • Expense lines

    I have a custom table which stores(expense report lines data) for each invoice number.Currently the number of lines in this table are duplicated.Lets say the standard table has 4 lines for each invoice number, the custom table has 8 rows or more than

  • SD - billing document list

    From which table or transaction can I get billing docs which r not posted in accounting for any reason. S@meer

  • Dynamic write statements

    HI Experts, Can anybody tell  me following answers. I have select-options: p_date like Ztab1-date. (we can choose here till 15dates)                                       low =01/07/07 to high-15/07/07 output screen. <b>items   date1 date2 date3 date