Creation of Payment Medium with method T for US

I am trying to create the file for payment method T for US. I am not getting the print file. I am getting the message that the file cannot be opened. Any idea what should be format of this file?

I am trying to create the file for payment method T for US. I am not getting the print file. I am getting the message that the file cannot be opened. Any idea what should be format of this file?

Similar Messages

  • R12.1.1 How to Terminate Payment batch with status "Submitted for Printing"

    Hello,
    We have a requirement to terminate the payment batch which was submitted for printing. How can we terminate the payment batch which is in "Submitted for Printing" status? The reasons could be due to the issues with the data in XML file. Ex. Special charecters etc which printing software (Adobe/evergreen) fail to recognize.
    We are on 12.1.1.
    We appreciate your thoughts and help.
    Thanks,

    Thanks for your response. We do not see the terminate option. When we click on Take action we have a choice to reprint or record print status. On the dashboard the terminate option is disabled. Do you think there is any configuration to enable the terminate option?
    Thanks,

  • Payment Medium Workbench Customizing guide for pdf

    Hello everybody,
    I am currently struggeling with setting up a pdf print with the PMW. For some reason no print is executed, eventhough the form and the interface are activated and assigned to the company code / payment method. There is no error log and also SLG1 gives no clue.
    Does anybody know a good tutorial or SAP docu site that lists the necessary steps and prerequisites that have to be met in order to get PMW and pdf running?
    Many thanks!
    Best regards,
    Alex

    Hi Dee Dee,
    As stated above, the customizing is all ok.
    Thanks anyway.
    @All: solved the problem in the meantime myself, I will prepare and provide a manual how to set it up after I got it all done and working.
    BR,
    Alex

  • Creation of Custom IDoc with Message control for sales Order

    Hi all,
    I am trying to create custom Outbound IDoc with message control.
    I wrote the code in a function module and i want to register that function module. (as in inbound registration of function module as in BD51).I am not knowing if that registration is necessary for outbound Idoc, if so in which transacition?
    Please list me the steps to create a custom IDoc for Message control.
    Thanks in advance,
    Regards,
    John.

    Hi,
    You need to use FM : MASTER_IDOC_DISTRIBUTE to create outbound idoc.fill the data in the tables EDIDC,EDIDD and generate the IDOC.
    check this link:
    Re: Master_IDoc_Distribute
    and use transaction : WEDI for IDOC configurations.
    here you will have all the transactions(step by step) to set the outbound IDOC configurations.
    Regards
    Appana

  • Outgoing Payment Query with GL Name for all payment means

    Hi all
    Thanks a lot for the earlier help of Nagarajan! 
    I managed to improve this Query now the only problem is the Bank Transfer Bank account name does not appear on the same line as the Bank transfer amount.
    Please help to test execute on your Demo Database and let me know the correction.
    DECLARE @REPORTBY AS NVARCHAR(1)  
    /* SELECT FROM [dbo].[OFPR] T0 */    
    /* WHERE */ DECLARE @DATEFROM datetime   
    SET @DATEFROM =/* T0.F_RefDate */'[%0]'    
    /* SELECT FROM [dbo].[OFPR] T1 */    
    /* WHERE */ DECLARE @DATETO datetime    
    SET @DATETO=/* T1.T_RefDate */'[%1]'    
    SET @DATEFROM = '20140101'  
    SET @DATETO = '20140131'  
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
      /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.AcctName, T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct, T4.AcctName, T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct, T6.AcctName, T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.AcctName, T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on T5.AcctCode = t3.creditacct left join OACT T6 on t0.CashAcct = t6.AcctCode 
    WHERE T0.DocType = 'C'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO   
    UNION ALL   
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [PAY-TO NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
      /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.AcctName, T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct, T4.AcctName, T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct, T6.AcctName, T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName  [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.AcctName, T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on T5.AcctCode = t3.creditacct left join OACT T6 on t0.CashAcct = t6.AcctCode 
    WHERE T0.DocType = 'S'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO   
    UNION ALL  
    SELECT  ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr 
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
      /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.AcctName, T2.Currency
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct, T4.AcctName, T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct, T6.AcctName, T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName  [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.AcctName, T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc 
      , CASE T0.DOCTYPE WHEN 'A' THEN 0 ELSE T0.NoDocSum END [PMNT ON ACC.]
      , CASE T0.DOCTYPE WHEN 'A' THEN 0 ELSE T0.NoDocSumFC END [PMNT ON ACC. (FC)] 
      , T0.DocRate [Payment Rate]
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on T5.AcctCode = t3.creditacct left join OACT T6 on t0.CashAcct = t6.AcctCode 
    WHERE T0.DocType = 'A'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO

    Hi,
    Please post your discussion without mentioning member name.
    Try this:
    DECLARE @REPORTBY AS NVARCHAR(1)  
    /* SELECT FROM [dbo].[OFPR] T0 */    
    /* WHERE */ DECLARE @DATEFROM datetime   
    SET @DATEFROM =/* T0.F_RefDate */'[%0]'    
    /* SELECT FROM [dbo].[OFPR] T1 */    
    /* WHERE */ DECLARE @DATETO datetime    
    SET @DATETO=/* T1.T_RefDate */'[%1]'    
    SET @DATEFROM = '20140101'  
    SET @DATETO = '20140131'  
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
         /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.[AcctName], T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct,T6.[AcctName],T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct,T4.[AcctName], T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.[AcctName],T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum  left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on  T5.AcctCode = t3.creditacct left join  OACT T6 on t0.CashAcct = t6.AcctCode
    WHERE T0.DocType = 'C'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO 
    union all
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
         /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.[AcctName], T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct,T6.[AcctName], T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct,T4.[AcctName], T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.[AcctName],T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum  left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on  T5.AcctCode = t3.creditacct left join  OACT T6 on t0.CashAcct = t6.AcctCode
    WHERE T0.DocType = 'S'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO 
    union all
    SELECT   ISNULL(T01.BeginStr,'') + ' ' + CONVERT(NVARCHAR(20), T0.DOCNUM) [DOCUMENT NO.] 
      , T0.DocDate [DATE]
      , T0.CardCode [CARDCODE]
      , T0.CardName [NAME]
      , T0.DocCurr
      , T0.DocTotal [TOTAL incl. GST]
      , T0.DocTotalFC  [TOTAL (FC) incl. GST]
      , T0.Comments [Remarks]
      , T0.JrnlMemo
      , T0.CounterRef [Ref 2]
         /*BANK CHARGES*/
      , T0.BcgSum [Bank Charges], T0.BcgSumFC [Bank Charges (FC)]
      /*CHECK PAYMENT*/
      , T2.CheckAct, T4.[AcctName], T2.Currency [Check Curr.]
      , T2.CheckSum, T0.CheckSumFC 
      , T2.AcctNum, T2.BankCode
      /*BANK TRANSFER*/
      , T0.TrsfrAcct, T6.[AcctName], T0.TrsfrSum, T0.TrsfrSumFC 
      , T0.CashAcct,T4.[AcctName], T0.CashSum, T0.CashSumFC 
      /*CREDIT CARD/ADJUSTMENT PAYMENT*/
      , T03.CardName [ADJ. TYPE], T3.CreditAcct [ADJ. ACC.], T5.[AcctName],T0.CreditSum, T0.CredSumFC
      /*PAYMENT ON ACCOUNT*/
      , T0.PayNoDoc, T0.NoDocSum, T0.NoDocSumFC
      , T0.DocRate 
      , T0.DiffCurr 
    FROM OVPM T0   
    LEFT OUTER JOIN NNM1 T01 ON T0.ObjType = T01.ObjectCode AND T0.Series = T01.Series   
    LEFT OUTER JOIN VPM1 T2 ON T0.DocNum = T2.DocNum   
    LEFT OUTER JOIN (VPM3 T3 LEFT OUTER JOIN OCRC T03 ON T3.CreditCard = T03.CreditCard)  
    ON T0.DocNum = T3.DocNum  left join OACT t4 on T2.CheckAct = T4.AcctCode left join OACT t5 on  T5.AcctCode = t3.creditacct left join  OACT T6 on t0.CashAcct = t6.AcctCode
    WHERE T0.DocType = 'A'  
    AND T0.DOCDATE BETWEEN @DATEFROM AND @DATETO 
    Thanks & Regards,
    Nagarajan

  • F110 - payment medium generation too fast ?

    Hello
    I want to share with you a new behavior we are having from time to time with F110 automatic payment.
    we are generating a payment medium (SEPA_CT).
    Sometime SAP can not generate the payment medium file, saying it can not find the FI document (that was just generated in first step of payment).
    once finished, we run again the generation of payment medium, and now it's able to generate the payment medium with no problem.
    is there someone else have / had this problem ? is there a way to solve this issue ?
    Thank you All

    Hi Tamim,
    I hope this would be some help to you.
    Cause :
    Payment program and payment medium program were scheduled together,The payment program SAPF110S has not yet generated all payment documents for the payment run, but the payment medium program SAPFPAYM/RFFO* has already started to create a PMW file.
    Solution recommended by SAP in Note 1896498 - F110: Error BFIBL02167 and 1922823 - F110 F111 Schedule payment media immediately w/ validation (attached):
    If you schedule the creation of payment media together with the payment program (F110 or F111), you cannot activate payment document validation.
    Schedule the payment medium printout AFTER all payment documents were created. Please, pay an extra attention that if the checkbox "Payment document validation" is set, the payment medium program should not be started together with the payment run program.

  • Dynamic Filename in Sel screen for Payment Medium Creation program SAPFPAYM

    Hi,
    We have a requirement to provide the dyanamic filename on the selection screen of payment medium program SAPFPAYM. The filename should contain the concatenation of date and time stamp.
    For eg. it should be something like CLIENTNAME.ACH.PY<YYMMDDHHSS>.TXT.
    Do we need to write the code in any of the custom event in the transaction OBPM3 to acheive this requirement OR Can anyone of you suggest me an alternate way to acheive this dyamic filename selection functionality.
    Thanks!
    Rupesh

    Thanks Henri
    I have used the same method to implement this. I have awarded you point for this as well.
    Thanks,
    Rupesh

  • Duplicate Payment Medium Creation

    Hi All,
    We are using Payment Medium workbench format ACH forone of the payment methods. When we do payment run F110 with this payment method, we are seeing a check box "Create Payment Medium" even during payment proposal run. If a user is checking this box during payment proposal it creates a payment medium file.
    Note: this check box is there even when I am not entrying print-variant.
    Hence, we run the risk of creating payment medium twice, once during payment proposal and second time during a payment run. Is there a way, we can suppress this check box "Create payment Medium" during payment proposal .
    Thanks
    Ron
    Edited by: Ron on Jan 7, 2010 4:49 PM

    Hi Smita,
    This is helpful.
    Just to be clear, Do we need to enter a different File Path for proposal in the Custom functional module (event 21) itself (which is separate from the path entered in FBPM selection variant for format ACH). Please let me know
    Thanks
    Ron

  • FI AP:  Payment Method W for wire transfers

    Hello SAP Friends-
    Under t-code FBZP Payment Method in Co.codes, I noticed that we are using the same SAPSCRIPT under payment medium we use for checks.  The problem is that the wires are printing off with signatures on them and the users were wondering if that could be removed?  I was think do we need a SAPSCRIPT for wires and ACH and if so, should we be using a different SAPSCRIPT than for checks?
    What does everyone else do?
    Thank you!

    Thank you GKA-
    But if it is the same SAPSCRIPT for checks, I cannot have the signatures removed right?  Then that would mean the signatures will not print on the checks which would be BAD!  ;o)
    The 2nd option is a possibility but what does your current client do?  What is your experience?

  • Iphone's App store rejects payment method, even for free apps! Someone please help me!

    Hi
    Last night i downloaded some apps, that i had to pay for using my Visa Credit Card. I have had this set as my payment method for ages. Anyway, it all worked and i got the apps, but today i tried to download another app, which was free and i had to sign in to my Apple ID or whatever the prompt is, so that i could download the free app.
    I signed in and recieved another popup asking me to sign in and review billing information. I pressed OK and signed in again and was taken to the billing information and payment information page. On this page it says that there was an error with a previous purchase from the App Store and that i must check all my payment information is correct.  All the information that i had entered there when first adding my payment method was still there. Except for the security code.
    I re-entered the security code and pressed done, and the page said that the payment information was not valid, or not allowed and asks me to change my payment information and / or method. So i re-enter all my information for my payment method and it still doesn' t work. It still says that there is an error with a previous purchase and that i must recheck or change my payment and billing information. The error cannot be right though, as all the apps that i have either downloaded or bought have downloaded fine.
    Sometimes the error message changes to saying my payment information has been rejected, which cannot be right either, as i was using the payment method yesterday. I know i don't have any funds in my account at the moment, but that should not be relevant as i am trying to download a free app.
    I tried downloading different free apps, but was unsuccessful.
    Because I spent around an hour or so trying to download the app, i then downloaded the lastest software update, which was 6.0.1 or something. I updated from the 5.something software.
    I was still unable to download anything from the app store.
    I have tried to edit the billing and payment information from the App Store, Safari on the Iphone and from Google Chrome on my computer, none of these have helped.
    If someone has a soloution or if Apple can sort my account out, i will be so grateful.
    I use an Iphone 3gs and updated the software on it after my payment information wasn't working for about an hour.
    A slightly-annoyed person.
    Message was edited by: Entropicaful

    This happened to me about a year ago, call Apple customer service and they should be able to help. It had something to do with Apple's system not reading the credit card info correctly even if it had been stored and worked fine before. They fixed my problem instantly after I wasted alot of time trying to get things to work.
    Hope this helps.

  • APP Error : none of the payment methods defined for these items

    Sapgurus,
    I have posted a vendor invoice using F-43.
    P.key 25 vendor account
    P.key 50 bank account.
    I have selected the payment method as Check.
    So what I have posted is a vendor invoice for outgoing payment using T.Code F-43. Doc date -- Posting date -- B.line date entered - 08.06.2008
    Now I want them to be cleared using APP. So I have created an APP run to be scheduled on 10.06.2008 and which takes up all documents posted upto 09.06.2008. I have selected paying company code, payment method , vendor maintained print program RFFOUS_C variant.
    Now when I am doing the proposal run and then simultaneously the payment run. It is showing error that "none of the payment methods defined for these items" . Why is it so.
    and no payments are being posted.
    I checked in FBZP also that the paying bank is defined and in payment methods for that country check is there.
    Please reply asap..
    Thanks and regards,
    Priyajit

    Hello Ghosh,
    Please check the following things
    Customization:
    1. Define pay method at country & co.code
    2. Assign pay method to your vendor masters
    3. Define bank determination with the combination of pay method
    4. Have u assigned pay methods while positng business transactions
    APP run:
    1.Give your pay method
    2.If u have any exeptions, pl edit the proposal and reallocate your correct pay method and rerun
    this will helps you, if u have any querry pl revert
    thanks
    Para

  • APP -f110 Payment medium creation

    Hi Gurus,
    We are having problem with payment medium in APP. It's being generated at proposal, payment run and Print out. Every time we run this individual step the system won't let us run it without selecting payment medium. As a result there are three DME files are created.
    Now we are going to automating the email remittances and we don't want three email remittance going out each time to same supplier.
    We just want the payment medium should be created once at payment update run.
    Can anyone throw some light on this?
    Your expert advise would be highly appreciated.
    Thanks
    Sam

    To my understanding Payment medium gets generated only if  "Payment medium" check box is selected in pop up which appears when we run click proposal run or payment run button. In that case, you should not flag this check box during proposal run.
    Print programs are generally integrated to Payment run, hence you need not run print program again for DME files. This happens at the payment run automatically provided valid variant is attached in print parameters.

  • Payment medium program with DME format

    Hi!
    I am working for south african client.
    The standard DME format available for south africa is ACB_ZA ( acb format).
    The payment program used is RFFOZA_A and assigned to payment method "A- ACB clearing".
    But the format given by bank is different.
    So, here i have two options:
    1. Change the DME format through DMEE and other configuration and assign the DME format in Payment medium work bench in payment method country step.
    2.  Copy the  payment program RFFOZA_A to ZRFFZA_A, assign the new DME format to generate DME file in new format.
    is new DME foramt for example ZACB_ZA in payment program ZRFFZA_A?
    regs,
    ramesh

    Hello Ramesh,
    Your description is little confusing and unclear.
    Please clarify what do you mean by the following :
    "is new DME foramt for example ZACB_ZA in payment program ZRFFZA_A?"
    Yes, i can understand that you would like to change the existing format of South Africa in DMEE.
    I can think of the following meanings :
    1.  Assignment of DME format in FBZP "Payment method/Country". Here you use the option 'PMW' and enter the format that you want.
    2. You may also execute the program SAPFPAYM from SE38 and give the payment run details to get the result in the format specified here.
    Hope the above helps. Please let me know if my understanding is not correct.
    Thanks and regards,
    Suresh Jayanthi.

  • Creation of payment terms on for payment on instalment basis trans  OBB8

    Hi
    I have a few doubts in creation of payment terms
    10% - advance payment - 60 days invoice date
    65%  - on shipment of goods - 60 days invoice date
    20% - on receipt of final documentation  - 60 days invoice date
    my doubt is do i need to consider remaing 5% as discount and as a instalment . for exam
    if 10% advance is 30 days invoice date and other 2 are 60 days how should i consider it
    Waiting for your valable suggestions
    Thank you
    Medha

    Hi,
    I think you can create the three payment terms as below in transaction OBB8:-
    1000  for payment of 10%
    2000  for payment of 65%
    3000  for payment of 25% (With discount of 20% (5%/25%*100)
    Then link these payment terms to a installement payment term 9999 in transaction OBB9.
    (Note:- You can change the payment term name instead of 1000, 2000, 3000, 9999.)
    Regards,
    SDNer

  • Payment medium program for MT103 format

    Hi,
    We had a requirement of generating MT013 format from automatic payment program and we are on ECC 5.0 Version.
    I have tried generating with program RFFOM100, but unable to meet all the requirement for HSBC bank, UK.
    I have another program RU_MT103 in ECC 6.0 but this is not available for ECC 5.0.
    Can anyone suggest the payment medium program to be used to generate MT 103 format.
    Thanks in advance
    Rajesh Angadala

    Hi, I implemented this MT103 two years ago for ECC500;
    At the end I copied program RFFOM100 and created a new ZFFOM103 based on the original one.
    Other option is to use PMW. If I am right I think that SAP provides a PMW format (MT103) and a structure (FPM_SWIFT_103) that I think that could be useful if you are used to PMW.
    I hope this helps
    Rafael Barreda

Maybe you are looking for