PLD - How to print 'Offic Copy' or 'Customer Copy' on Docuemnts

While printing various Marketing documents,  I need to print a messge saying 'Office Copy' on the 1st copy of the Marketing document and 'Customer Copy' on the second copy of the Marketing document,  Is it possible to do this using the PLD??
Thanks!!
Dana

Dana,
The solution I am suggesting is my approach to your scenario.
Create a User defined field in the Marketing Documents ..Title level by going to Manage User Fields window, choose Tools  > User-Defined Fields > Manage User Fields.
It can be an alphanumic field.. Check Set Valid Values for Field and define
Office Copy
Customer Copy
Map this field into your PLD template and print.
Alternate Approach.
Is to use the Printed field in the ORDR table to check if the copy of the first copy or Second Copy. 
SAP Stored 'Y' on 'N' in this field and the same is available in the PLD .
In the PLD of the marketing document.. Page Header area
Add a Database field from ORDR - Sales Order...Field: Printed
Add a formula field and in the Contents Tab of the Field properties window .. Add formula to Check the Value of the Database Field you Added (Printed) = "Original"
Example: Field_203 == "Original"  (suppose field_203 is the printed field you added)
Add another formula field referring to the same printed field (Field_203 == "Copy")
Add two Text Fields with Text "Office Copy"  and "Customer Copy"
The the Office Copy text field, add the first formula field (Field_203 == "Original") as the link field and similarly the second formula field to the "Customer Copy" text field.
This way when you print the First time, the marketing document would evaulate the Printed field and Print Office Copy and the Second time onwards it will print customer Copy.
Good luck
Suda

Similar Messages

  • How to print the page in custom format

    Hi All,
    I've a login page like
    USER ID : Test box to enter data
    PASSWORD: Text Box to enter data
    A Button named as Print
    When i click on print button i want to print the form in custom format. when i use window.print in java script it is printing text boxes and button . but i dont want to print button and text boxes. i just want to print the user id and password entered by the user with corresponding labels.
    Can anyone suggest me how to print the page in the above format with out using the request object. coz i need to implemnt above with plain java script and html.
    Tks in Advance

    Use CSS. Check out the 'media' attribute. http://www.w3.org/TR/REC-CSS2/media.html

  • PLD: How to print 1 document to 2 printers

    Dear All,
    Can someone tell me how to print 1 document to 2 different printers? I need this for my delivery documents. 1 copy goes to 1 printer with normal A4 paper (return with signature copy) and the other needs to go the the other printer which has pre-printer paper with a logo and different color paper (for client to keep copy).
    Can this be done with normal functionality or does this require an add-on?
    Thanks!

    Hi,
    This can be done using a UDF.
    If Value of UDF is 1 then all the field related to the Deliver document has to Print
    If Value of UDF is 2 then all the field related to the Pre-printed format has to print
    This can be done by changing the UDF whenever your are taking the print out you have to select the UDF so that they can take the Delivery Document and Pre-printed document by using Formula field in the Single Print Layout.
    But you have to customize the report according to that.      I Had done the same for my client.
    Once the Problem is solved please close this issue.
    Regards
    Chidambaram

  • Help required. How to print Header Text in customized PO ?

    Hi experts,
    Please help me go forward with this.
    I'm using a ZMEDRUCK & standard printing program.
    I have put my code here. Pls go through it and help me what has to be corrected here.
    PROGRAM  ZMEDRUCK_SUBP2.
    FORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
      TABLES EKKO.
      DATA: BEGIN OF header OCCURS 0,
              ld_txt1(163),
              ld_txt2(163),
              ld_txt3(163),
            END OF header.
      DATA: li_lines LIKE STANDARD TABLE OF tline WITH HEADER LINE,
            ID like THEAD-TDID,
            TNAME LIKE THEAD-TDNAME,
            TDOBJECT like THEAD-TDOBJECT.
      DATA  HTEXT LIKE EKKO-EBELN.
      DATA f_lines TYPE P.
    *  HTEXT = EKKO-EBELN.
      READ TABLE in_tab WITH KEY EKKO-EBELN.
      if sy-subrc = 0.
      TNAME = in_tab-value.
      ENDIF.
    *TNAME = EKKO-EBELN.
    *CONCATENATE EKPO-ebeln EKPO-ebelp INTO v_item_text.
    *MOVE v_head_text to HNAME.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input         = TNAME
    IMPORTING
       OUTPUT        = TNAME
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
    *   CLIENT                        = SY-MANDT
        id                            = 'F01'
        language                      = 'E'
        name                          = TNAME
        object                        = 'EKKO'
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        = TNAME
      tables
        lines                         = li_lines
    EXCEPTIONS
       ID                            = 1
       LANGUAGE                      = 2
       NAME                          = 3
       NOT_FOUND                     = 4
       OBJECT                        = 5
       REFERENCE_CHECK               = 6
    *   WRONG_ACCESS_TO_ARCHIVE       = 7
    *   OTHERS                        = 8
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE li_lines INDEX 1.
      IF sy-subrc = 0.
        header-ld_txt1 = li_lines-tdline.
      ENDIF.
    DESCRIBE TABLE li_lines LINES f_lines.
      data: lstr type String,
            lstr1 type string,
            lstr2 type string,
            lstr3 type string,
            lstr4 type string.
      read table li_lines index 1.
        lstr = li_lines.
        condense lstr.
        clear li_lines.
      read table li_lines index 2.
        lstr1 = li_lines.
        condense lstr.
        clear li_lines.
      read table li_lines index 3.
        lstr2 = li_lines.
        condense lstr.
        clear li_lines.
      if f_lines GT 3.
        read table li_lines index 4.
        lstr3 = li_lines.
        condense lstr.
        clear li_lines.
      read table li_lines index 5.
        lstr4 = li_lines.
        condense lstr.
        clear li_lines.
        endif.
      DATA: v_text type text.
          CONCATENATE lstr1 lstr2 lstr3 lstr4 into v_text separated by ' '.
          CLEAR out_tab.
      READ TABLE out_tab WITH KEY name = 'TNAME'.
        out_tab-value = v_text.
        MODIFY out_tab INDEX sy-tabix.
    ENDFORM.
    And my script is :
    /:PERFORM FETCH_TABLE_DATA IN PROGRAM ZMEDRUCK_SUBP2
    /:USING &EKKO-EBELN&
    /:CHANGING &TNAME&
    /: ENDPERFORM
    IL RECEIVED FROM M/S     &TNAME&

    Hi,
    Use this Function module 'READ_TEXT'
    T_lines contains the header text, you can loop it and display it in sap script
    Function module to read the header text
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          client                  = sy-mandt
          id                      = 'F01'
          language                = sy-langu
          name                    = ekko-ebeln
          object                  =  ekko
        TABLES
          lines                   = t_lines
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
    Regards
    Krishna

  • Acrobat XI hyperlink does not work when printing Office Word 2010 to PDF

    Hello,
    I have word documents where I have added http hyperlinks.  The links function fine in the Word doc.  When I print the document to an Adobe PDF using Acrobat XI the resulting PDF file has the blue text which indicates it is a hyperlink but there is no link whe I hover over the text.  How do print Office 2010 documents to Adobe PDF and preserve the hyperlinks?

    The trick is not to print it but to use the PDF Maker plugin, if it's
    available, to convert the file to a PDF while maintaining links and other
    meta-objects (bookmarks, destinations, etc.).
    On Tue, Mar 31, 2015 at 8:11 PM, davids86393363 <[email protected]>

  • New customized report using PLD or QUERY PRINT LAYOUT to show customers onl

    I am working with a Software Developing firm as an SAP Consultant.
    Please tell me how to create a new     customized     report displaying various details as required by the client in the report using PLD or Query Print Layout.
    Please help me asap.

    Hi,
    You can create queries using the Query Generator or the Query Wizard tools.
    After you have created your own queries, you can link them to a required print layout.
    for user reports.Look at:
    Tools --> Queries --> Query Print Layout
    Set there your query reports.
    Printing User-Defined Queries
    After you had linked a user-defined query to a user report template, you can now print it
    according to its linked print layout.
    There are two ways for printing your user-defined queries.
    1. Using the Query Print Layout window:
    • Select from the upper menu Tools &#1048774; Queries &#1048774; Query Print Layout.
    • Click the Reports tab page.
    • Click to highlight the required query you would like to print.
    • Click on the printer icon or select from the upper menu File &#1048774; Print.
    • The user-defined query is printed according to its linked print layout.
    2. Using the Queries Manager window:
    • Click the Queries Manager icon on the upper tool bar.
    • Click to highlight the required query you would like to print.
    • Click on the printer icon or select from the upper menu File &#1048774; Print.
    • The user-defined query is printed according to its linked print layout.
    Note! You can also print preview user-defined queries. Do so by selecting the Print
    Preview option as described in the methods above for printing your query.
    Btw, you could search the manual training files relate to query PLD in http://www.service.sap.com/smb
    Rgds,

  • 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 do I print more than one custom-size photo on a page in PSE 10?

    I recently upgraded from Photoshop Elements 6 to Photoshop Elements 10.  I make greeting cards, and on PSE 6 I was able to print two custom-size (6-1/2” x 5”) cards on each 8-1/2” x 11” sheet of photo paper.  The option to print more than one custom-size card on a single sheet of paper is not available in PSE 10.  I want to know how I can print more than one custom-size card (or photo) on a page in PSE 10?

    In Editor:
    File>Print>#4 Select type of print>picture package

  • How to print the out put for each customer in table

    Dear SDN Team Members!
    I've created a report and the output is displayed on the smartform for the same.
    In this report, I've selected a list of  customers and the report has to print the list of transactions being made by each customer in Smartform. 
    These details must be printed seperately for each customer. 
    I'm thinking of control statement AT NEW & AT END.  But i don't know how to use them exactly so that the output is displayed seperately for each customer in the Smartform.
    Please provide syntax and points will be awarded for.
    Best Regards!

    Hi Krsihna,
      Its simple.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting formname = '<form name>'
    importing FM_NAME = lv_func_name.
    loop at itab.
    at new customer.  "customer must be the fisrt field in the itab and itab mus be sorted by customer.
    call function lv_func_name
    endat.
    endloop.
    Regards,
    Ravi

  • How can I copy a custom workspace to new installation? CS5 PC

    How can I copy a custom workspace to new installation? CS5 PC
    Must be a prefs file somewhere?

    It'll be in this list somewhere
    Preference file functions, names, locations | Photoshop CS5

  • How to Print the Account Balance in Outgoing Payment PLD

    Hello Experts
    How to Print the Account Balance in Outgoing Payment PLD
    Dixit Patel

    Hi,
    you can use udf in the outgoing payment to record  the vendor's account balance and then using the query FMS ;
    select balance from ocrd where cardcode = $[$4.0.0]
    Assign the query in the UDF so that each time after entering the vendor code, the balance appears.
    After add the payment, the balance is recorded.
    In PLD, you can create the UDF field to make the balance appears in the outgoing report.
    Rgds,
    JimM

  • 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

  • How do you copy, for example I work with blue prints and I want to copy a section and copy into another new page?

    How do you copy, for example I work with blue prints and I want to copy a section and copy into another new page?

    Forgot to add that it would be an adjustment layer with some kind of mask on it already. The mask is uncentered when copy and pasted which throws it off.
    I guess the same question would go towards doing the same for an object. How to copy and paste it over to a new doc, keeping its position within the document? is this possible?

  • How to print customer Sales Invoice directly from FI module?

    Hi,
    How to print customer Sales Invoice directly from FI module without using SD's t-code VF02 and VF03?

    hi,
    only way in FI is Correspondence functionality usage. Please config it and use F.61 or F.64 to print it.
    regds,
    raman

  • How to print custom size invitation​, 4.6875" x 6.8125"

    how do you print custom sized paper on the 8500A....been trying for hours now....paper size is 4.6875" x 6.8125"

    Hi,
    Please refer the link below to know how to print wallet size photos.
    http://www.hp.com/united-states/consumer/digital_p​hotography/print_better_photos/tips/wallet-sized-p​...
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

Maybe you are looking for

  • Scroll One Page at a Time

    Using InDesign CS5 version 7, on a mac OS10.6.8 I would like to be able to scroll through a document one page at a time using my mouse scroll wheel. In some other programs there is a setting to scroll "continuously" or "by pages" - in the latter, eac

  • "Unshelved" on digital editions 2.0

    I have digital editions 2.0. I wish to see books that I have not placed on my newly created shelves. How do I do this. The expert help on Adobe chat were unable to help me.

  • (WRT160N V3 router) Issue connecting to web-based setup page

    I am currently having 2 issues with my router. The first issue is the fact that I can not connect to my router's setup page (192.168.1.1). When I type the ip into my browser I get an error saying unable to connect to it. I have an internet connection

  • How loud should I keep my iPod Touch?

    I've heard one can recieve hearing loss listening to anything above 80 dB for a certain length of time. How loud should I keep the volume on my iPod Touch. Also, does anyone know how many dB each volume "block" is worth?

  • Migrate from WD Java to WD ABAP in ESS Trips and Expenses

    Hi I got request to migrate from from Java to ABAP fof ESS trips and expenses. Could someone please give me a link to the documentation or any existing blogs? thanks