How to Print Document Numering In PLD

Hi,
I am creating a report for Goods Receipt PO . I need the PO no ( base doc no) along with its Document Numbering ie; the prefix and suffix that we define for the purchase order using Numbering type in Administration.  I am getting the PO no in the PLD of the goods receipt but not the prefix and suffix.
Even if I am selecting the Document Numering series table and prefix string/suffix string in the PLD ,  its not printing anything...
Any idea how to get it done?..
Regards,
Priya

hi,
    To get document no for GRN Select GOODS Receipt Note Table and select the field Document No. To add Prefix and suffix you create two text fiedls. In that type whatever u want. Then you keep this fields separtely and using concat function you can link the fields. For ex You need no SIP0107 like this means use the concat function like this Concat(Field_123,Field_124,Field_125) . you make all the fields invisible and make visible the concat field only.
Thanks..
siva,bangalore

Similar Messages

  • How to print documents using correspondence types?

    Sir/Madam,
    I am in the process of preparing the End User document for "How to print documents using correspondence types?  on client request.Plz give me the required stuff to prepare that.This is an urgent requirement.help me ASAP.
    Thanks in advance
    Regards
    Sap Guru
    [email protected]

    Hi
    use t.codes, FB12 & F.64
    Award points if it is useful
    Regards,
    A.Anandarajan

  • How to print documents from an iPad?

    I have an IPad 2 and a Canon Pixma 8120 printer. The printer is wireless, but it does not support air print (or whatever it is called).  Is there a way to print documents that I have on Pages, etc.  Canon offers something for printing pictures, but I can't figure out how to print documents.

    Check the App Store for such an app that can print.

  • How to print PDF file with PLD

    Hi Experts,
    We have three Annexure copy in PDF and wants to print with sales quotation PLD.
    Pls tell me how to print this.
    Regards,
    Datta Kharat

    Hi Jennifer,
    I dont want to print the PLD in PDF.
    I have Annexture copy in PDF which has to along print with PLD at the end of PLD print.
    I have stored this PDF in attachment folder on B1_SHR.
    and given the link option in UDF on Sales Quotation.
    Now I want If i click on PLD print first PLD should be print then automatcally the PDF has to print which has to attached with UDF.
    Regards,
    Datta kharat

  • How to Print Text in the PLD when we select Type : Text

    Hi All
    I designed a PLD for Purchase Order which is working well but
    whenever we select type: Text and we enter some text in the row level for each item. when we see the PLD priview
    Items are displaying but the text below the items are not displaying
    it displays an empty row after each item
    How should i print text in the PLD
    I required in this following Format
    ITEMCODE  DESCRIPTION      QTY
    001              XYZ                      20
    this is capital Good Item
    002             PQR                        30 
    this is Raw Material
    In this above format
    I didnt get the text below the Items
    Can any one suggest the correct answer

    Thanks for your reply
    I already select the linetext field from table POR10 and kept it  in the PLD
    but i didnt get my required format
    after giving that line text field  iam getting
    in this way
    S.No.        ITEMCODE   DESCRIPTION  QTY
       1               001               XYZ                 20
    this is Capital Goods
      2                                                                 
    this is Capital Goods
    the text is repeating twice
    I Put the ItemDescription field  in POR1 and Line Text Field in POR10 in the same repetitve area

  • How to print documents that attached to SAP FI document?

    Hi,
    Is there a program or function module to print documents that have been attached to SAP FI documents?
    I have requirements to develop functionality to print attached documents.
    Thanks in adavance,
    Mike

    You can do an advanced find on 'Notes' where 'Is Document' is Yes. You won't be able to see the actual attachment in the results obviously, but you can add information like file name etc and then open them up to see the actual document.
    Hope that helps
    Paul
    If my response helped you find your answer please show your thanks by taking the time to "Mark As Answer" and "Vote As Helpful".

  • How to print documents

    How to print documents

    The Print button (described in the Help file that Bernd refers to) prints to AirPrint printers. Here's a list:
    A List of Printers with AirPrint (updated Nov. 2013)
    Otherwise, you can pay for an app like PrinterPro from Readdle if your printer is not AirPrint-enabled.

  • How to print "Document & Markups"

    When using EPrint, I would like to be able to print the document and markups.  For example:
    We do inspections at our stores, and have the managers sign the form on our tablets.  We then send the form to the Eprint printers.  However, when we send the form to the printer, it prints the form, but not the signatures.  When printing to a "normal" printer, you can change the setting from "Document" to "Document and Markups."  Document and Markups printes the signatures.  How can I get an Eprint printer to print the signature?
    Thanks!

    Hi @MikeSkog,
    Welcome to the HP Support Forums.  I gather that you would like to learn if you can print the digital signatures on a form using ePrint. 
    I have included the Getting Started with ePrint document.  One of the FAQs at the bottom of the document is titled “Are there any limitations when using ePrint?”.  It indicates that currently ePrint does not support digitally signed documents.  
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • How to print document in Photoshop CS4?

    Is there a way in scripting (prefer vbscript) to print the active document?
    I have a document that I opened in Photoshop and modified it with the clients spec's.  Now I have to print this modified document.  I saw the printout() method/function, but it displays the print dialog box.  This has to be automated.  So I want to just print to the printer.
    Also how to you select the printer if it is not the default printer?  What about printer settings, how do you change those?
    Any help you be beneficial?
    Thanks.

    Sorry can't help with VB, but here are some of the settings in JavaScript.
    var doc = app.activeDocument;
    doc.printSettings.flip = false;
    doc.printSettings.setPagePosition(DocPositionStyle.SIZETOFIT);
    doc.printSettings.negative = false;
    doc.printOneCopy(); //Print One Copy
    doc.printSettings.caption = true/false;
    doc.printSettings.labels = true/false;
    doc.printSettings.cornerCropMarks = true/false;
    doc.printSettings.centerCropMarks = true/false;
    doc.printSettings.colorBars = true/false;
    doc.printSettings.regMarks = true/false;
    doc.printSettings.negative = true/false;
    doc.printSettings.flip = true/false;
    doc.printSettings.interpolate = true/false;
    doc.printSettings.vectorData = true/false;
    doc.printSettings.hardProof = true/false;
    doc.printSettings.mapBlack = true/false;
    doc.printSettings.printSelected = true/false;
    var bgColor = new SolidColor;
    bgColor .rgb.red = xxx;
    bgColor .rgb.green = xxx;
    bgColor .rgb.blue = xxx;
    doc.printSettings.backgroundColor = bgColor;
    doc.printSettings.renderIntent = Intent.PERCEPTUAL/intent.SATURATION/
    intent.RelativeColorimetric/intent.intent.AbsoluteColorimetric;
    doc.printSettings.printBorder = xx;
    doc.printSettings.bleedWidth = xx;
    // Format for setPagePosition(DocPositionStyle, X (optional), Y
    (optional), scale (optional))
    // DocPositionStyle.USERDEFINED
    // DocPositionStyle.PRINTCENTERED
    // DocPositionStyle.SIZETOFIT
    doc.printSettings.setPagePosition(DocPositionStyle.USERDEFINED, 1.5, 2.0);
    //If necessary, you can also get the list of printers and the current
    //printer using code similar to the following:
    var currPrinter = doc.printSettings.currentPrinter;
    var message = "Printer is: " + currPrinter;
    alert(message);
    printers = doc.printSettings.printers;
    message = "Printers are: " + printers;
    alert(message);

  • How to print documents what is on USB stick on HP8610?

    I have documents that I put on a USB flash stick and would like to print some of them.  After I highlite item and try to print it says I can only print with apps.  What do I have to do?

    lhesssr
    Welcome to the HP Community Forum.
    First, be sure you have installed the Full Feature Software for your printer.
    Install Full Feature Software – Printer
    Commentary
    This mystery message is likely telling you to open the document using whatever application is necessary to view the document and print the document from that application.
    Examples:
    If the document is a Word document, that is, if the document suffix is .doc or .docx, then open the document using Office Word (or an equivalent) Editor.  Once the document is open in Word, you can print the document. 
    If the document is a PDF file, open the file in Adobe Reader and print. 
    If the document is an html document, open that document in your favorite browser.
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • PCUI: How to print documents

    Hi there,
    Let's say after completing a sales order, I would like to print out the complete sales order (in Adobe Acrobat - for saving). How can this be achieved?
    Many thanks in advance.
    Regards.

    hi Dell
    you will have to add the print object to PCUI object

  • How to print document in reverse color, B

    HP Photosmart Premium Fax All-in-One Printer - C410a 
    Operating System:  Windows 7 64bit 
    I want to convert a .PDF file from Black-&-White to White-&-Black.  A 303 page manual I need to print has black pages and white ink (ouch!).   
    Thanks

    Hmm, I found this link that has a post indicating most PDFs can be inverted using a well rounded image editing software like Photoshop or Gimp(Free). If you decide to go that route here are the steps from that0n3guy's post:
    "-Download and install gimp
    -Open the pdf with gimp: File -> open ->file.pdf
    An import from pdf screen will pop up. You can only import one page at a time (well.. you can do multiples, but it puts it in its own layer... ). I usually only up the resolution to about 150 or 200 pixels/inch.
    - Invert the colors: Colors -> Invert
    - Save the image as a tiff -> file -> save as
    done" -- The post is somewhat dated so more functionality could have been added to handle multiple pages.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • How to print out page number

    I want to print page number with every page how it possible.....
    So that I would come to know how many printed documents are left....
    Please reply soon

    Hi Friend,
    In the Live Previewer menu
    on top there are two buttons
    one for Insert date and time
    two for Insert page numbers
    select the second one it will diff
    options for page displaying
    so that u can display the page numbers
    bye
    srini

  • How to print from iPad mini to a Cacon imagePrint MF4880dw

    Just bought this Canon all-in-one, and after installing it, found that was not compatible with air print. There seem to be several possible solutions to print to it from my iPad mini. What do the experts feel is the best way to print documents?

    How to Print from Your iPad: Summary of Printer and Printing Options
    http://ipadacademy.com/2012/03/how-to-print-from-your-ipad-summary-of-printer-an d-printing-options
    How to Print from Your iPad
    http://www.dummies.com/how-to/content/how-to-print-from-your-ipad.html
    How do you print directly from the iPad
    http://www.everymac.com/systems/apple/ipad/ipad-faq/how-to-print-documents-direc tly-from-ipad.html
    Print from iPad / iPhone without AirPrint
    http://ipadhelp.com/ipad-help/print-from-ipad-iphone-without-airprint/
    How to Enable AirPrint on a Mac and Use Any Printer
    http://ipadhelp.com/ipad-help/how-to-use-airprint-with-any-printer/
    iPad Power: How to Print
    http://www.macworld.com/article/1160312/ipad_printing.html
    Check out these print apps for the iPad.
    Print Utility for iPad ($3.99) http://itunes.apple.com/us/app/print-utility-for-ipad/id422858586?mt=8
    Print Agent Pro for iPad ($5.99) http://itunes.apple.com/us/app/print-agent-pro-for-ipad/id421782942?mt=8   Print Agent Pro can print to many non-AirPrint and non-wireless printers on your network, even if they are only connected to a Mac or PC via USB.
    FingerPrint turns any printer into an AirPrint printer
    http://reviews.cnet.com/8301-19512_7-57368414-233/fingerprint-turns-any-printer- into-an-airprint-printer/
    Print (Print to ALL Printers) ($1.99)
    https://itunes.apple.com/us/app/print-print-to-all-printers/id299423224?mt=8
     Cheers, Tom

  • How to print DOC or PDF files

    Hi all,
    please tell me how to print documents (.pdf , .doc , .xls , .jpeg, .gif, .bmp) with java coding
    i have tried like this ..
    try {
    //          Open the input file
              InputStream is = new BufferedInputStream(
              new FileInputStream("C:\\Documents and Settings\\3041\\Desktop\\New Folder (2)\\00.pdf"));
              PrintService service = PrintServiceLookup.lookupDefaultPrintService();
              DocFlavor[] flavors = service.getSupportedDocFlavors();
              for (int i = 0; i < flavors.length; i++) {
                   System.out.println(flavors.getMimeType());
    //          Create the print job
              DocPrintJob job = service.createPrintJob();
              Doc doc = new SimpleDoc(is, DocFlavor.INPUT_STREAM.PDF, null);
    //          Print it
              job.print(doc, null);
              is.close();
              } catch (PrintException e) {
              System.out.println (e);
              } catch (IOException e) {
              System.out.println (e);
    which prints all images properly but not doc or pdf files please help how to print PDF or DOC files
    Edited by: getzkk on Oct 8, 2007 7:31 AM
    Edited by: getzkk on Oct 8, 2007 4:02 PM

    Well, the ability to convert the pdf to html and then to PDF is a worthy solution.
    10,000 emails would require a batch convert solution.
    This is very much beyond what I know. I'll have to leave this to better minds.
    I could suggest a third party tool. Have a look at this:
    http://a-pdf.com/faq/can-i-split-pdf-file-with-nonstandard-page-size.htm
    Other than that,I can't think of anything else.
    Gene

Maybe you are looking for

  • G20-110: Burning recorded TV to DVD-RW?

    Hi, Does anyone know if this is possible? I've got a G20-110 and have tried to burn a programme, I have recorded, onto DVD-RW via 'Windows XP MCE', but when it gets to 4%, it spits the disc out??

  • Problem in creating an index

    hi every1, i am creating index first time, on a table consisting of 3,000,000 rows ( 3 million ) but it cant be created my query and error is as below SQL> ; 1* create unique index idx_spda on day.spda(mcode,mdetail,sdate) SQL> / create unique index

  • ORA 0655, PLS 00201 identifier sys.dbms_repcat_utl2@tdr1.world

    I have created a repgroup CAROLINE and I get an error when I try to add a master site to it.The master definition site is on v 8.1.7.0.0.(tammy sid) and the master site (pony sid) on v 8.0.6.3.0. The error I get is : ORA-06550: line 1, column 7: PLS-

  • Dreamweaver CC Startup Error

    Just migrated all of my stuff from an older MacBook Pro to a new one, and now when I start Dreamweaver, I am getting this error: loadNewTypeError: Cannot call method 'toLowerCase' of undefined. I also had a bunch of EVE and CMN errors at first but re

  • Transaction process in Abap

    HI, There is a way to do transaction process in Abap (interaction between two process), Thanks, Micheal