Copy Number

Hi experts,
In Sap 8.8 with Crystal Report, when printing a Invoice document I want to write diferent texts depending on the
printed copy.
Ex I want to write 3 copies of an Invoice.
In copy number 1 I want do write "Original", in copy number 2 I want to write "Duplicate" and in copy
number 3 I want to write "Other"
The only way I now is coping the invoice layout 3 times and change the text that I want to write in each one.
This is not a good solution because if I have to change something I have to change in the three layouts.
Is there any function "COPY NUMBER" ? Or how can I work around this situation?
Best regards,
Augusto Silva

Hi Augusto........
In SAP 8.8 there is a provision called sequence printing in PLD layout.
Create three replica of PLDs and on each one give the respective text as Original in one and duplicate in two and buyer in third like that and assign the sequence so the moment user give print command all the three copies will come out....
try this solution once.......
Regards,
Rahul

Similar Messages

  • Current copy number in scripts

    Hi  ALL,
    I have a problem in scripts. i want to print the no of copies for scripts,for copies suppose i want 3 copies then it should come like 1/3,2/3,3/3.in this i got the total no of copies from nast-anzal .i gave as &nast-anzal&.i got like copy  /3,but the current copy number i dint get,
    soo plzz kindly give me the answer.
    thanks in advance,
    Anil.

    Hi Anil,
    You can write a logic like,
    take a counter,
    while counter <= &page&
    Print the script.
    counter = counter + 1.
    endwhile.
    Hope the above pseudo code will help you.
    Rgds,
    Sripal

  • To copy Number Ranges in a client copy

    Hello All,
    I have to do a client copy of our Golden client ( Development) to Production system. The client in PRD is fresh. They do not want the application data to be copied to PRD client. They only need the customizing configs to be copied to PRD along with the number ranges. If i use the SAP_CUST profile to do client copy, it says that application data is deleted( which in my case is not existing as it is new client) and number ranges are RESET. What does it mean by "RESET"?
    In my case, how can i  copy the existing number ranges of my Golden Client to PRD client? Can i use SAP_CUST profile for copy? which profile can be used to copy number ranges? WIll the number range be copied along with cust configs using SAP_CUST? I am very confused. Please help me with this.
    Thanks in Advance.

    Hi,
    Firstly, I am not agreeing with your point to do a copy from Development client to production client though it is a Fresh client. Why you are using this approach? You can do the transports of customization from development to production. This approach is not advisable. Please check it again before you proceed with this procedure.
    As per my knowledge, number ranges has to be defined manually in any (production) systems. You can open the production client for changes and then create the number range and then close it.
    Regards,
    Sharath

  • Copy Number Range Interval - FBN1

    Respected Sir,
    Kindly let me know how do I copy number range interval from one fiscal year to another?
    Regards
    Chirag Shah

    Yes,
    I got the answer
    by using T-Code - OBH2
    Thanks

  • Copy number ranges...

    Hi
    Where we can copy number ranges for document types in SEM-BCS.
    Any specific T.code...

    Hi Dan,
    By giving year as 9999 in my number ranges, for exapmle if I post in 2008 how system takes the number ranges?
    In year 2008 doc no: 1 posted similarly do I can get document number : 1 in year 2008 or do I cannot get this document number any more?

  • Auto print copy number

    Using Adobe 8 Professional
    I have a 40 page document in which I will need to print 300 (+/-) copies of.  I want to print an incremental 3 digit "form" number on the first page of each copy so that my first set prints "100", the second set "101", etc.  It would be ideal if the form number could repeat once it gets to number 104, but I would settle for running numbers.
    Is there a way to do this and if so, how?

    You will need to add a form field to the first page. You can then use JavaScript to create a controlled loop action to add 1 to the value of the form field and print print that copy, and then repeat that loop until 300 copies are printed.
    Assuming you have a field named "Copy_Number" on page 1 of the PDF.
    // print 300 copies:
    for(i = 0; i < 300; i++) {
    this.getField("Copy_Number").value = i + 1; // add copy number to PDF
    this.print(); // print the PDF
    } // end loop

  • Print Copy Number

    Hi all
    When I print more than 1 copy of particular report, I want to print Copy Number(1st copy ,2nd copy etc...) for report first page. Please expalin how to do it
    Thanking You

    Hi
    Have you tried with SRW package. look at it. it supports some printer options too.
    Thankyou
    Sasi

  • Crashing when calling a copied number

    Hi,
    I am Aamir Tariq and I have iPhone 5s with iOS 8.1 installed. Today I am experiencing problems with one particular feature. I will one more feature problem because I think thats another software problem. I have to mention my country because the problems are related. I am from India and my International Calling code is +91.
    Problems:
    1. When I get a call, then all of them are shown as +91 919876543210. I added the phone number myself so that you can understand the situation. If I return call then the network's system says "The area code dialed by you does not exist". I have been facing this problem since the upgrade.
    2. Now to dial this number, I copy the number to notepad, make necessary changes and paste it in 'Keypad' function. Since today morning, I am not able to paste the edited number. Whenever I try to paste a number, the screen shifts automatically to home screen. Or you can say that the dialing feature crashes.
    Note: I installed iOS8.1 on the night it was launched in India and have been facing problem 1 since then. I thought someone must have informed you but unfortunately I see no post by anyone on this topic here.
    Regards,
    Aamir Tariq

    Hanging problem and contacts page crashing was because of Swipe Keyboard. I have removed the app and my iPhone doesnt have these problems anymore. My other problem of WiFi hotspot is not connected to this, as I got Swipe just a month ago at max.

  • Copying Number

    Hi all,
    My class contains a reference of type Number:
    class MyNumber {
    Number numb;
    String Name;
    //other stuff ....
    During the construction, the numb field will always be initialized with a concrete type: Integer, Float, etc. But I cannot write a copy constructor, since I cannot call "new" on Number - it's an abstract class, and I don't know the exact type of the Number in the source object:
    MyNumber (MyNumber source){
    numb = new Number (source.numb) // cannot do this
    I could do this instead:
    numb = source.numb.clone();
    but none of the Number-derived classes has a public clone() method.
    Given that, what's the most "correct" Java way to implement a copy constructor or a clone() method for MyNumber class?
    Thank you all!
    -Alex

    Sorry, I think I missed something because I don't understand why you can't do this:
    class MyNumber
    Number numb;
    String Name;
    //other stuff ....
    public MyNumber(Integer i)
    numb = i;
    public MyNumber(Double d)
    numb = d;
    public MyNumber(MyNumber source)
    numb = source.numb;
    }

  • Copying number to XBLNR field

    Dear friends,
    Is it possible to write the number which is  in PO field-VA01 screen to XBLNR field in FB02 screen..
    Thans in advance...

    Hi,
    Check in TA:VTFA
    There is field named Refernce number : Pass A there.
    FI reference number
    The reference number is a piece of additional information forwarded from SD and FI.
    If a field is not filled in the order, you can determine field contents here:
    1. A:Customer purchase order
    2. B:Sales order number
    3. C:Delivery number
    4. D:External delivery number
    5. E:Current invoice number
    If you do not make an entry and the field is not filled in the order, the billing number is adopted automatically.
    Example
    If want to link the delivery to invoices in accounting (which is necessary in the self-billing procedure), enter 'C' for the relevant invoices.
    Note
    When you are working with invoice lists, the system automatically assigns the invoice reference number to the invoice list so that all single invoices in accounting can be cleared together. You may also use the allocation number field in the above cases.
    Exception: Cancellation
    For cancellation, the table settings have priority. This means that when the setting is blank, the field is filled from the billing document
    entries.
    Please note that as of 3.0D, cancellation can no longer be controlled in copy control. This is carried out in the billing type table with the billing type of the document to be cancelled.
    Best Regards,
    Nisha

  • SAPscript - print copy number

    Hi All,
    I have to print 2 copies of a SAPscript. One is an internal copy and one is a customer copy.
    I would like to print 'Customer Copy' on the 2nd copy. But I cannot seem to find any SAPscript system variable that keeps track of the copy count... I know that Smartforms uses a COPYCOUNT variable but I am using SAPscript here.
    Any ideas? Has anyone done this before?
    Thanks,
    N.

    Hi,
    Fill the structure ITCPO... with TDCOPIES = 2 and pass it to the OPEN_FORM FM
    Now while printing the form... in your print program
    declare a variable to hold the string value "Customer copy'
    do tdcopies times
      case sy-index.
      when 1.
         var = 'ORIGINAL'.
      when 2.
        var = 'CUSTOMER COPY'.
      when others.
      endcase.
    call your text element where you are displaying the var value
    enddo.
    regards
    padma

  • Try to copy number in ip communicator

    Hi All,
    have a good day,
    kindly i have try to copy numbers from cisco ip communicator directories but it's useless, is there any way to do it.
    Thanks in advance

    Thanks for reply,
    i searched there but i can't numbers such as missed call numbers or received numbers which i can see it in IP communicator directories.
    Thanks

  • Copy and Paste Number

    I am unable to copy and paste a number from the call logs in the hub to the 'to' field in the text message. On pressing the number in the call log the copy number option appears but the number cannot be pasted in the text message 'to' field. The clipboard window is empty.
    Also, how do i update 'my number'...it is currently showing as 'unknown number'
    Solved!
    Go to Solution.

    Rahul,
    In the text message "To" feld, keep it pressed and you will get a menu on the side with paste option. 
    Also iin call logs if you keep the number pressed, in the side menu goto view call details and at the bottom you will get an option to text that number - so no need to goto text messages and then paste....
    to update your number goto settings > Security & privacy > sim card > edit phone number
    Please like / click solved if done

  • How do I add an area code to a phone number after clicking number in text message?

    Some people send 7 digit phone number in emails and text messages, and I need to add the area code to the front of the number, or else AT&T will choke. I have not found a simple way to do this.
    Current method: copy number to notes, add area code, then paste full number into dialer

    Any carrier in the U.S. will choke unless the number is in your area code.
    I'm not aware of a way to do this. Selecting the number dials the number.

  • Nokia 7230 - How to insert a phone number from Con...

    I know this is an issue with some other models, but HOW do I insert a phone number from my contacts into a text message?
    -If I go to Phonebook and "copy" number, then I try to paste it into my message, I get an answer that there is nothing to paste.
    -I cannot open the phonebook while I am in the texting window, there is no option, in old models one had "insert telephone number", with 7230 I can only  insert a smile or special character.
    -I DO NOT WANT to send a MMS with visiting card, just plain sms with a number taken from my contacts.
    Thanks to whoever can help!
    Mod

    Hi modjadii,
    The compact UI style used in 7230 does not allow copying phone number to text message the same way as in some previous models but please try this as a solution.
    Write a text message and when you need to insert phone number from your contacts select Options - More - Exit editor (or just press End key to return to idle screen). The text you have already written stays at the text editor and is visible once the editor is opened again.
    Open your contacts by choosing Names and select Options - More - Business card - Via text message and search the contact whose number you want to copy. After selecting the contact you'll get the phone number to screen and you can select Options - Editing options - Copy all.
    Now the number is copied for pasting and you can open the text message editor again and select Options - More - Modify text - Paste.
    Hope this helps.
    jakivi

Maybe you are looking for