Payment Program RFFORBR_D problem: the program is printing 2 copies

Hi guys!
I have a problem with the RFFOBR_D program : when I generate a payment order in F110 transaction, it generates a payment document, but with 2 copies of the last page. Do you know what is happening?
Thank you!
Cesar

Try this in a click event of a "Print Form" object:
form1.#subform[0].PrintButton1::click - (JavaScript, client)
// First copy (with printer dialog):
xfa.host.messageBox("Company copy (send this copy for blah blah blah)","Printer:");
TextField1.rawValue="COMPANY COPY";
xfa.event.re
xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 0, 0, 0, 0);
// Second copy (without printer dialog):
TextField1.rawValue="CUSTOMER COPY";
xfa.host.messageBox("Customer copy (save this copy for blah blah blah)","Pritner:");
xfa.host.print(0, "0", (xfa.host.numPages -1).toString(), 0, 0, 0, 0, 0);
The problem is messagebox. if second messagembox line is omited, no changes shown in texfield1 fields .
First messagebox can be ommited but second messagebox sentence is mandatory.
Other idea is using "post print" event for "reprint" entire form but untested for me.

Similar Messages

  • Controll9ng the sequence for printing checks

    How can I change the sequence that the payment program is printing checks out?  Checks are currently being printed out in vendor number sequence.  I want the checks to be printed out in payee name sequence?
    I know how to change the sequence for printing out the proposal and can do that.
    Also, from what I can tell, there are two sort variants available for the payment media (RFFO*) which is associated with my payment medium program.  One is K1 (postal code) and the Other is K2 (payee name).  However, neither appears to be used.
    Any assistance would be greatly appreciated.
    Greg Brown

    <a href="https://forums.sdn.sap.com/click.jspa?searchID=6044226&messageID=3849529">Refer to my post and give your mail ID to send a document that help facilitate configuring this.</a>

  • How do I e-print multiiple copies of the same document

    Trying to use the HP eprint feature. I have no problem with a single document, but cannot find the option to print multiple copies of the same document.
    This question was solved.
    View Solution.

    Well the ePrint feature does not have the "print multiple copy" feature. Your options are to either send the email more than once or make a copy of what you have sent, once it prints out. I hope my response has helped answer your question! Thanks
    If I have SOLVED your issue, please feel free to provide KUDOS and make sure you mark this thread as SOLUTION PROVIDED!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Prints multiple copies in Vista

    C8180 when we click print from any computer in the network always prints 3 copies. Doesn't matter if a website or from Lotus or any program. I Reference Chat Activity ID:3765683 in May and followed everything I was told and same problems.

    Not a solution by my problem may be similar. Have hplj4000 printing via home network using Windows xp. New laptop using Vista, cannot intall printer because of missing drivers. I downloaded drivers for vista and it says that I dont have the right driver?  This vista sucks...

  • Print Multiple copies of report, and resetting Page number for each copy.

    Dear frnds!
    i am using developer 6i reports i have a problem.
    i want to Print Multiple copies of report, and resetting Page number for each copy" that is 4 copies of an invoice is required
    1 - for user copy
    2- gate copy
    3- accounts office
    4- office copy
    any body please tell me the solution "i am using oracle 9i and developer 6i"
    Thanx
    Ibrar

    Hi,
    I was wondering if you were able to get your multiple copies working? Below is what I have so far, just trying to get it to work before changing the actual template.
    <?for-each-group@section:R5542520/Pick_Slips_Detail_Lines_S3;PickSlipNumber_ID260?>
    <?variable@incontext:G1;R5542520/Pick_Slips_Detail_Lines_S3;PickSlipNumber_ID260?>
    <?for-each@section:xdoxslt:foreach_number($_XDOCTX,1,3,1)?>
    HEADER
    PSN: <?$G1/Pick_Slip_Number_Display_ID54?>
    PSN Detail: <?$G1/PickSlipNumber_ID260?>
    Page 1 of 3
    <?start:body?>
    BODY
    <?$G1/LineNumber_ID6?>
    <?end body?>
    FOOTER
    <?end for-each?>
    <?end for-each-group?>
    XML:
    <R5542520>
    <Pick_Slips_Detail_Lines_S24>
    <Header_Custom_Section_S24>
    <Pick_Slip_Number_Display_ID54>123456</Pick_Slip_Number_Display_ID54>
    <PickSlipNumber_ID260>123456</PickSlipNumber_ID260>

  • Printing multiple copies in 1.3 and 1.4

    Hi,
    I have a problem while trying to print multiple copies of a doc programmatically (without the Print Dialog)with 1.3 and 1.4, but nobody seems to know an answer.
    In 1.3 you can set the nr. of copies on the PrinterJob with the setCopies() Method. But this just doesn't work...
    pj.setCopies(2);
    pJ.print();
    prints only one copy!
    On the 1.4 you can use the PrintRequestAttributeSet to set the nr of copies, I tried this too, but it also doesn't work, I always receive just one copy (or the nr. of copies set in the Print Dialog...)
    PrintRequestAttributeSet attset = new HashPrintRequestAttributeSet();
    attset.add(new Copies(2));
    pJ.print(aset);
    This has to work somehow, nobody seems to miss it and it is part of the API. Is there some other trick that must be taken into account? The Bug List brings a few old errors, but under 1.4 there is no bug listed...
    Thanks for helping me!
    Maria

    Thanks a lot for helping me, this just wasn't my problem; but at least I'am meanwhile a little bit wiser:
    the problem seems to be the printer: I can try here on 3 different printers (one of them is the ADOBE PDF, where I mostly do the testing).
    The Printer 1 returns the SupportedAttributeValues for Copies 1-2000 and prints the 2 Copies wished ( works properly!)
    The Printer 2 returns the SupportedAttributeValues for Copies 1-999 but doesn't print more than 1 copy (Any idea ??? )
    The Printer 3 ( the ADOBE PDF one ) returns the SupportedAttributeValues for Copies.class 1 and prints allways only one copy, which at the first view seems to be right...(I already have tried to change the MultipleDocumentHandling to SINGLE_DOCUMENT.SINGLE_DOCUMENT_NEW_SHEET but that doesn't help!)
    But I don't understand, why all the printers print 2 copies if I do it through the Print Dialog: when I increase the number of copies in the dialog, the specified number of copies is allways printed!!!
    It is driving me crazy! I cannot properly implement the requirement to print 2 copies of a document, because there is no information from the printer that this won't do it ( see the printer 2!!!) The information about the printer that the java API returns, seems to be less than the printer really can!!!??? I hope, I am wrong...
    So, if you have solved such problems, please let me know how!
    Lot of thanks,
    Maria

  • Problem in Printing cheques in Automatic Payment Program

    I have configured a APP and I am running a payment program for trial by using transaction F110. The same is running through and creating a cheque print job in the spool. But when I am printing a single cheque the system is taking double printouts. When I am printing multiple cheques the system is taking double printout of the last cheque.
    I was told that this is a BASIS problem, but I am not sure of this.
    Can you please let me know if it seems to be a BASIS problem and if yes, can anyone give me a resolution to it?

    Hi,
    This error comes when you dont have authority to run the job. If  this is the case go to SU53. You can find the object for which you are not authorized below "Authorization check failed". Take a screen shot and talk to your Basis for giving you the authority.
    For the second possibility Check SM37, select  the job status scheduled and then click on execute. It will show all the jobs. Select the particular job and release.
    Hope this helps
    Reagrds
    Pratiksha

  • Automatic Payment Program-problems with check printing/viewing

    Hello:
    I am new to the SAP field. I have been trying to make the automatic payment program work for me. I have been having trouble trying to view the print preview of checks by going to system->own spool requests.
    Steps followed ---Automatic Payment Program:
    I checked the open invoices -
    FBL1N
    I ran F110 and finally print out with the start immediately option checked
    I checked the open invoices FBL1N again and all the open invoices have cleared
    However I am unable to view the checks that should have printed for this payment run. Can anyone please tell me what I am doing wrong here.
    Thanks,
    Mahesh

    Mahesh,
    Go to F110, Enter the run date and then click enter - After that click on edit and then proposal and proposal list and you can see all the details - which actually runs the program RFZALI20.
    Hope that helps..
    Thanks,
    Nandita

  • HT1338 After updating my mac to the new operating system I have had several problems.  Now my printer program is not working.

    After updating my mac to the new operating system I have had several problems.  Now my printer program is not working.
    Do you have any suggestions?

    Start by telling us what printer you hope to use.
    Look at the printer manufacturers site to see if they have a 10.9 print driver.
    Assuming you have tried to delete & re-add the printer it's possible that the model is no longer supported.
    You can also try the printing system reset…(I think 10.9 is the same as the Lion instructions).
    http://support.apple.com/kb/HT1341
    If the model is supported you should be able to add it & the driver will be downloaded.

  • Questions on the SAP payment program

    Hi everyone,
    Here are general questions the SAP payment program. Even partial answers would be greatly appreciated. Thanks in advance!
    Questions:
    What are the type of accounts involved in a payment transaction? In which case a customer account could be involved?
    What could "payment proposal run" mean and imply?
    What could be done as "editing a proposal run"?
    In the "print payment media" step, what does DME stands for?
    And in general, what are the diffenrences between a posting and an FI document?
    Is the payment run launched automatically?
    Thanks again
    SB

    What are the type of accounts involved in a payment transaction? In which case a customer account could be involved?
    You will make the payments to vendors and customers accounts. Customer accounts may involve where you would like to make payment for the advance that you have received from customers.
    What could "payment proposal run" mean and imply?
    Payment proposal is nothing but SAP will give you a simulation showing what are the invoices going to be paid, what are the invoice not going to be paid (exception) due to various reasons.
    What could be done as "editing a proposal run"?
    In Editing the Payament proposal, you can block a invoice, which you would not like to make the payment. You have to create the payment block specially for the purpose of payment proposal.
    In the "print payment media" step, what does DME stands for?
    DME - Data Medium Exchange
    And in general, what are the diffenrences between a posting and an FI document?
    Posting is posting a document into the system.
    FI document is a document having debit and credit totalled. To post a document both and debit and credit must be tallied.
    Is the payment run launched automatically?
    There is no automatic launching of Automatic Payment Program. You can schedule the job in background, but I would not recommend this. I would recommend the user to enter the parameters, run proposal, execute payment run and print the media.
    Regards,
    Ravi

  • Automatic payment Program- F110 problem

    hi,  
    i did all house bank & Automatic Payment Program Settings
    & now when i am running APP in F110 i am getting Following Problem in EDIT PROPOSAL
    Error in creating the payment document;
    log
    please give me the solution how to come out of this problem
    i did in sand box there were no problems
    with regards,
    jay prakash

    hi
    sapfico dasari         
    While run APP so many errors system will display
    Mainly you should check following points
    1.if you run APP all payment documents are in over due
    2.check payment block
    3.check minumum and maximum amounts for incomming and out going payments
    4.check all dates
    5.check nest due date
    6.check all customization steps
    regards
    Trinadhnaidu.A
    Edited by: trinadhrao althi on Oct 15, 2008 7:17 AM

  • Run date problem in F110 - automatic payment program

    Hi.
    I am trying to run the automatic payment program in F110. I am facing the problem with the run date in this transaction. System is not giving me any error if i give the run date as today's date or future date.
    But in run date if i give previous date system is not executing the automatic payment program.
    Eg: Inovice posted on 01.01.2012. It becomes due on 01.01.2012. I gave run date as today's date 04.01.2012 or future date the system is executing correctly picking all invoices. But if i give the run date as previous to the current date i.e., 02.01.2012 or 03.01.2012 then system is not executing this transaction.
    This problem is coming for all company codes. So if there is any setting for restricting run date request you to help me in this regard where can i do such setting.
    Regards,
    Padmavathi

    Hi.
    My problem is solved.
    Actually client is entering the documents with posting date for earlier months whereas he has entered the documents this month.
    Therefore system is not picking the invoices in F110 - automatic payment program.
    Actually the run date entered is getting copied to the parameters entered i.e., posting date and documents entered upto date.
    Documents are entered in the system this month with posting dates of previous months. Therefore if i give the run date as this month date the run date is getting copied to doc entered upto date in the parameters tab as this month date. So only system is not picking invoices since invoices are entered in the system this month only.
    Now we changed the date for doc entered upto with previous month date and system is picking the invoices.
    Thanks a lot for your help.
    Regards,
    Padmavathi

  • F110 Auto. payment program ..Problem payment method not found

    Hi,
    I done the configuration for automatic payment program.with payment method c.
    when i am running the program the proposal is created but it is with a error saying no valid payment method found.
    Please guide me.
    Thanks
    Micheal

    I had given the payment method C in vendor master,Payment methods in country and payment methods in company code,Bank determination in FBZP.
    I am getting the same problem.Payment method not found.Please find the error list
    Information re. vendor 1900107 / customer  / paying company code 100 ...
    Payment with currency USD, payment method C: No valid payment procedure
    Information re. vendor 1900107 / paying company code 100 ...
    ... payment not possible because of reported error
    End of log
    Job finished
    Thanks and best regads
    Micheal

  • Configuration of Check printing in Automatic Payment Program

    Hi
    I am able to run the automatic payment program. But I am not sure how to configure check lots and check printing.  Could any one please help me with step by step instruction regarding the configuration required after running the program.
    Thanks
    Hariharan G

    Hi
    For the program RFFOUS_C give Variant(X).
    select maintain Variants button and select continue button.
    give program run date , Identification feature , paying company code , sending company code , payment method , House Bank , Account ID , Check Lot NO..
    Under Print Control
    select Print checks checkbox , give printer name and select print immediately checkbox.
    select Print Payment Advice Notes checkbox , give printer name and select print immediately checkbox.
    select Print Payment Summary checkbox , give printer name and select print immediately checkbox.
    No. of sample printouts (0) and select do not Void any checks checkbox.
    select Attributes button and give description and save.select back arrow.
    select Printout button and select Start Immediately checkbox.
    In the job name for the ? give variant name(X) and enter.
    To see the printed checks from the menu select System -
    >Services -
    >Jobs -
    >Job Overview(SM37) and execute.
    Also go to SP01 and execute.
    we will get the list of spool requests.
    Regards
    Venkat
    Edited by: Venkat Dara on Feb 4, 2009 12:55 PM

  • How to clear the down payment against the vendor invoice in the payment program?

    A down payment is made $25 Later an invoice is posted for $100 Now i want to Pay $75 to Vendor But the Automatic payment program  is not clearing the down payment against the vendor invoice. Could you please help how to clear the down payment against the vendor invoice in the payment program?

    Swathi,
    Need your help i have a strange situation
    1) F-48 and document posted with document no = 15..... in company code = L002 with payment block getting populated automatically
    2) F-48 and document posted with document no= 15..... in company code = Us11 without payment block and the screen does not even show payment block, I had to check this from BSEG table
    My question is
    a) How and where does this payment block is triggered through configured and how to process next steps.
    b) when I use F-48, how do we do the actual payment, is there a check printing and linking it to the KZ document or is check printing done outside the system and the KZ document type does not have any linkage.
    c) If I do FB60 for a higher amount how do we pay partial amount.
    Your response is appreciated.

Maybe you are looking for