Payment medium DME format for Cheque Refunds

Dear Gurus,
We have cheque Refund process in ISU FICA, cheques are not printed in SAP, instead data  will send to printwork bench via SAP PI  to print the cheques and distribute to customers,  which is handled by  3rd Party.
In order to send the data we may  have to develop custom payment medium generate DME file,  I wanted to check with you if any one has an idea is there any SAP standard payment medium format or function module which enables less development.
Would really appreciate your inputs and thoughts.
I checked by copying International Payment medium CHECK and activated DME format, however am unsuccessful on put. DME file generated with no Data.
Regards
Prab.

Pravakar,
There is no standard DME format for Chq Refunds as far as I know.
In R/3, there is a standard program for Voyager<FCKR>. If you are looking for similar program in ISU, You need to go for customized program.
Also if you want Text file for your Chq Refund, suggest you look into the format of Legacy to understand the format.
If it is similar to BACS Refund file like VOL1, HDR1, HDR2 etc, you can copy the standard FMs
FKK_PAYMEDIUM_BACS_00
FKK_PAYMEDIUM_BACWAY_10
FKK_PAYMEDIUM_BACS_15
FKK_PAYMEDIUM_BACWAY_20
FKK_PAYMEDIUM_BACWAY_25
FKK_PAYMEDIUM_BACS_30
FKK_PAYMEDIUM_BACWAY_40
and tailor suit to your requirements. But again, if this is only a text file for SAP PI, suggest you to look what they are expecting from SAP <like Chq no, amount,date, Customer number>.
In that case you can write a program where it shall use the data base tables DFKKCR*, DFKKOP & FKKVKP.
Coming to FPY1, you may see a DME entry in FDTA for Check but you cannot view it there as it is only a correspondece. Alternatively you can view in Spool.
Hope this is clear and helps.
Rgds
Rajendra

Similar Messages

  • Corresponding Classical Payment Medium Program-RFFOAU_T  for Australia

    Hi All,
    I am using classical payment medium program RFFOAU_T for Australia, it is not genarating any out put file, so please guide me if you have any idea about this program i need to configure any extra settings for this program.
    Thanks in advance
    bye
    Message was edited by:
            Venkata srinivas

    Hi.
    I would like to ask you if you have finally solved this issue, and if you are  using PS2 for international payments. We are also setting up a Company in Portugal and need some info about the formats we can use to send automatic payments.
    Thanks in advance.
    Ignacio.

  • Payment Medium Workbench(PMW) for check printing

    Dear experts,
    We have recently implemented PMW to speed up our telegrahic transfer (TT) payments to the banks.
    All is well so far.
    Now we want to include the check printouts as well. Previously when we were using the  classic payment medium program, we were able to assign the RFFOUS_C for check printing.
    How do I go about doing the same thing in the PMW? Appreciate some pointers.
    regards
    Sylvia

    Hello,
    SAP has provided some of the DME structures for different countries. like GB_BACS for GB etc.
    If your client is not part of those structure, probably you are required to create your own structure. It also depends on the bank of your client. They may want the file in a different format. Therefore, you need to first talk to the bank and get a sample file in which they need the format.
    You can create the DME structure by using transaction code DMEE - Tree Type is PAYM.
    You can create the DME structure as a flat file or XML file based on the requirement of your client (bank).
    You can also copy the standard structure to Z structure and modify it according to your requirements.
    Please also make sure that you have made settings in OBPM1, OBPM2, OBPM3 and OBPM4 (More importantly you should maintain the path where it needs to be downloaded)
    Take help of basis consultant in order to create the directories. You can see the directories in AL11.
    If there are no directory path maintained in OBPM4, then the file gets saved to temporary directory in AL11.
    Regards,
    Ravi

  • DME format for Banamex

    Hi Experts
    I am unable to find SAP delivered file format for BANAMEX ( leading bank in Mexico ) in DMEE for Tree type PAYM.
    Can anyone guide me on this?
    Thanks

    821111   Mexico BANAMEX Version C - Legal Change
    944953   Mexico BANAMEX Version C - Legal Change
    101440   Payment medium formats
    As described in the mentioned note 821111 you can create the DME for
    BANAMEX using RFFOM100.
    Run the program  RFFOM100 and goto Output Control TAB, then
    if you goto the field 'Alternative format you will see that the
    following formats can be choosen:
      BANAMEX Mexico - Banamex
      BANAMEX_4R Mexico - Banamex
      BSM Mexico - Banco Santander Mexicano
    The SAP Note 395679 describes the formats that are available in the
    Payment Medium Workbench.
    Other formats are not offered at the moment in the standard system.
    You can use the Payment Medium Workbench to create special DME's.
    Please see the note 524520.
    The second tool which is integrated in PMW and which can be used for
    creating new files is DMEE-engine (transaction DMEE).
    I hope it helps.
    Regards,
    Fernando Evangelista

  • Payment info displayed twice in payment medium (DMEE)

    Hi Experts,
    I have an issue where for a particular comapny code XYZ there are two payment info created in payment medium for the same collection date, where as there should be one Payment info created.
    For other company codes it is creating only one.
    I have not made any changes in the DMEE tree structure.
    Also, I have checked all the transactions OPBM1/OBPM2/OBPM4. FQP1/FQP3/FQP4...etc but I every thing is configured same for all the companycode.
    I have also checked if there could be some ZFMs which could cause this discrepancy but there are none.
    Has someone come across this kind of issue..Please let me know what could I possibly be missing?
    Thanks.

    The reason for the multiple payment info is the sequence type, a new payment info is created for each sequence type. If you don't use parallel processing in the payment run you can avoid this by implementing a grouping string in event 00 of the payment medium, transaction FQP3, payment medium SEPA_DD, function module FKK_PAYMEDIUM_EU_SEPA_DD_00 has no code, you need to fill the sequence type in field  E_SRTF1, for this you should check if the mandate that is used on the payment is a new one or an already used one. Something like:
    CONSTANTS: lc_frst TYPE srtf1_pay VALUE 'FRST',
    lc_rcur TYPE srtf1_pay VALUE 'RCUR',
    lc_ooff TYPE srtf1_pay VALUE 'OOFF'.
    DATA: l_mandate_info TYPE sepa_str_mandate_pain_dd.
    DATA: l_current_mandate TYPE sepa_str_data_mandate_data.
    IF i_payh-mguid <> space.
    CALL FUNCTION 'SEPA_MANDATE_API_GET_FOR_DD'
    EXPORTING
    i_mguid           = i_payh-mguid
    IMPORTING
    e_mandate_pain_dd = l_mandate_info.
    IF l_mandate_info-pay_type = '1'.
    MOVE lc_ooff TO e_srtf1.
    ELSE.
    CALL FUNCTION 'DMEE_SEPA_MANDATE_GET'
    EXPORTING
    i_mguid        = i_payh-mguid
    IMPORTING
    e_mandate_data = l_current_mandate.
    IF l_current_mandate-firstuse_docid EQ
    l_current_mandate-lastuse_docid.
    e_srtf1 = lc_frst.
    ELSE.
    e_srtf1 = lc_rcur.
    ENDIF.
    ENDIF.
    The issue is that without sorting, each time the payment sequence changes from one payment to another, SAP created a new payment info.
    If you use parallel processing, this can work but only on each parallel processing interval, if you really want one payment info for each sequence type, request collection date, then you need a more complex solution and I would require consultancy work to implement it.
    Adriano.

  • Payment medium mt103 format

    Hi,
    i am working on  DME(Data Medium Exchange), with the MT103,
    and the function module linked is Z_FI_PAYMEDIUM_MT103_31.
    my problem is when i try to debug and change  the customized FM .. ..moudule,
    i am not able to locate the program...how is this FM is getting called.
    and i am running the payment medium through  F110 T-code.
    pl.help..
    Thanks&Regards
    Harikumar.p

    Hi,
    Thius reply may be a bit late but I had a similar problem and this is how I went about it, I assume you are utilisng the payment medium workbench.
    To be able to debug or step through your custom FM or any other FM used to produce payment media with the payment media workbench you'll have to call the payment medium program inetractively (online or manually). The reason you're not able to step into the FM is because during payment medium creation with F110 the payment program is called using a background job and I think you can't debug a program that's executed in the background.
    In short execute program SAPFPAYM_SCHEDULE specifying your payment run ID and date. hope this helps
    Andy.

  • DMEE format for tax reporting - USM1 - structure RFUMS_TAX_ITEM

    Hi Sap experts,
    I'm using the DMEE format USM1, in the structure RFUMS_TAX_ITEM, I don't understand following fields:
    USER_FIELD_1     USER_FIELD_1     CHAR     40     0     First Field Entered by User
    USER_FIELD_2     USER_FIELD_2     CHAR     40     0     Second Field Entered by User
    USER_FIELD_3     USER_FIELD_3     CHAR     40     0     Third Field Entered by User
    USER_FIELD_4     USER_FIELD_4     CHAR     40     0     Fourth Field Entered by User
    USER_FIELD_A     USER_FIELD_A     CHAR     40     0     Field A Entered by User
    USER_FIELD_B     USER_FIELD_B     CHAR     40     0     Field B Entered by User
    How can we use those fields from BSEG / BKPF?
    I would like to use those fields to put additional infomations for the file generation ?
    Can you help me undestand how we can use / customise those fields?
    Thanks!
    Karim

    Any idea, experts?

  • DMEE format for 1099B

    Hi All,
    I haven't worked on the DME engine before, but now I have a requirement for which I have to create a tree format for 1099B and 1099S which do not exist in SAP. I'm planning to make a Z copy of IDWTFILE_US_1099INT or IDWTFILE_US_1099MISC and add/remove fields as required relevant to the B and S versions of 1099.
    Can you please advise me on the considerations and dependencies, as well as tips and tricks on this one?
    Thanks in advance.
    - J

    Hi Shirish,
    This is what we did for 1099 B file format.
    1. Copy the IDWTFILE_US_1099 file format to the customer name space.
    2. Add the relevant additional fields per IRS publication (you can get this from the IRS website)
    3. Create seperate output group for 1099B and specify the new customer DMEE tree.
    4. Also, in the program RFIDYYWT, set up variant to pick only the withholding tax type relevant to 1099B (you might have to  setup/activate the relevant withholding tax types)
    5. This way you can output only the 1099-B relevant FI line items.
    Let me know how this worked out.

  • Payment Medium Format

    Dear Friends,
    After customized format tree created in T.code DMEE1, where and how can we attach this Payment Medium format to payment media program (RFFOM100).
    After the f110 is completed, dmee is used and we have to download the Payment Medium file format according to the client specified format.
    All the help will greatly apprecaiated.
    Regards
    Sridhar

    hi,
    before this you should configure a payment method ( T code OBVCU) , for payment data (DME) as per your client bank format. while creating payment method  choose the payment medium program as RFFOM100. To generate the file, you have to run the APP this payment method.
    After the payments have been successfully posted, you can go to DME administration and with the help of dme manager download files on your PC. SAP has determined that the standard print programs for automatic payments will no longer be supported, and they will be replaced by transfer structures created by a tool called the DME Engine.
    This tool enables the business to create DME output files without ABAP development, and can be attached to a print program and form for the creation of Payment Advices.
    Outside of the DME Engine (DMEE), the majority of the configuration takes place within the following
    IMG Path: Financial Accounting -> Accounts Receivable and Accounts Payable -> Business Transactions -> Outgoing Payments -> Automatic Outgoing Payments -> Payment Media -> Make Settings for Payment Media Formats from Payment Medium Workbench Config
    Assign Selection Variants
    IMG -> Financial Accounting -> Accounts Receivable and Accounts Payable -> Business Transactions -> Outgoing Payments -> Automatic Outgoing Payments -> Payment Media -> Make Settings for Payment Medium Formats from Payment Medium Workbench -> Create / Assign Selection Variants or transaction
    OBPM4..select your format that you are using
    Check in FBZP config that all is linked!
    Start with FBZP, create all there than go to DMEE either to create your own format or use the standard ones.. than go to the menu path above and work through from create to assign...
    most of the work lies with payment method, and after running APP create the varient for the programms which are required.
    regards,
    rajendra

  • Payment Advice with DME format

    Hi Experts,
    I have done a settings for DME format for Canada. It is generating properly, but while making payment run I am unable to get Remittance Payment advice using same settings.
    My abaper said that there is some print program needs to be attached in the setting for generating the advice.
    Please help me to resolve this issue.

    Hi,
    Good morning and greetings,
    Please go through the following link
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/70/42753ced012a49e10000000a11402f/frameset.htm
    and also go through the following SAP OSS Notes
    Note 395679 - PMW: Overview of available formats
    Please reward points if found useful
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

  • Error Log -  Too many payment mediums created for this payment group

    Hi Experts,
    When I am doing payment to customers through T-code F110, I am able to clear the open item. But when we are executing the Payment medium - DME Administration, generate the Payment Advice and when we see the print preview of the Payment Advice in spool request, System is showing the following errors,
    "BFIBL02160               Too many payment mediums created for this payment group"
    "BFIBL02616               End of log for payment run 20120123 / NAA02 , NSD / 200"
    "This is line 1/column 45 on page 1"
    Message no. SP01R116
    Kindly help how to rectify the same
    Thanks in advance
    Regards,
    Nimish Agarwal

    Hi Nimish Agarwal,
    With reference to the error faced i.e. BFIBL02160 "too many payment
    mediums created for this payment group", please review the information
    provided in the long text of this error in detail.
    Please ensure that the orders are not carried out several times.
    Alternatively you can apply the optional usable message 166 (same
    class: BFIBL02), so that you can prevent creating duplicates in future.
    Please customize this message as an error so as to prevent the system
    from creating duplicate files. You can customize this message in OBA5.
    The message BFIBL02 160 always occurs, if you create more than one
    file for the same payment run, in order to warn you not to send the
    same file twice to the bank.
    The SAPFPAYM program does not create 2 files at once. But if you
    run this program more than once for the same payment run, more than
    one file is created. From the second run on you receive the error
    message BFIBL02 160. You can easily test it, by creating a new
    payment proposal and creating a new file with this proposal and
    SAPFPAYM. The first time you run this program you will not receive
    the message.
    Hope this clarifies.
    Kind Regards,
    Fernando Evangelista

  • Generating DME format by executing F110

    Hi
    As per the bank requested, we have an developed and Data Medium Engine format using DMEE. After executing the payment run, I had downloaded the output of the file using
    Environment --> Payment Medium  --> DME Administration
    When i go into
    Environment --> Generate doc. Pmt adv
    I got the error
    internal error 13 in function module REMADV_INSERT
    Message no. FZ203
    Diagnosis
    Function module REMADV_INSERT crashed, issuing error code 13.
    Procedure
    If this happens a second time, contact the SAP Hotline.
    Please let me know if there is some config missing at my end.
    Help in this regard is highly appreciated and awarded with points.
    Thanks
    Rajanikanth

    help required for this question
    Thanks
    Rajanikanth

  • Output of DMEE format

    Hi all..
    I am using DMEE format for ouput file which to be sent to bank in their format. I designed the format and did all configuration settings for the same. Now how to get the file output to my desktop or common server? Kindly guide.
    Thanks & regards

    When you have finished the automatic payment run and the MDE file is created, all you need to do is, in transaction F110>Go to Environment>Payment Medium-->DME Administration, esecute the initial selection screen, on the next screen when Data Medium Overiew appears, select the item and press Shift+F4 and you will be able to download it on your desktop.
    Hope this helps!!!
    Regards,
    Murlidhar Khatri

  • 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

  • Payment Medium - F110 - RFFOES_D - CBS19 FILE

    Hi,
    I have a problem concerning TR. F110 - domiciliary receipt ( recibo domiciliário ). The payment medium program is RFFOES_D. Everything is maintained and i can generate a file. The problem is that in TR F110 --> Environment --> payment medium --> DME administration i only can see " exported files " ( the icon appears in that collumn).
    I had the same problem when creating with DMEE, i only could see the "second file" because in the Selection variants - TR OBPM4 - there was a check box to choose that.
    Is there anything i could do in order to have the same beahaviour but for classic Payment Medium Programs?
    for example if you put in google the following search criteria : " Programa automatico de pagos rffoes_d " the first one is a PDF file, in the last page there is the exact beahaviour that i want , concerning the CBS19 file.
    Can u please help me, it's very urgent. Full points of course for any help !!
    Thanks in advance,
    Mário

    Hi Naveen,
    You need to maintain the variant for the Payment media. Please follow these twh steps to solve the probelm.
    1. Check for the payment  Methos 'E.'  in country whether in OBVCU, a programme for Payment medium has been maintained, if not please maintain the same. For India it is RFFOIN_C.
    2. Maintain the Variant for this programme under SE38 and select the same when setup the payment proposal under Printout/data medium.
    Your problem will get solved and can see the payment media file generated.
    Hope this resolves your issue.
    Regards
    Bharat

Maybe you are looking for

  • New Condition type for pricing

    Hi, I have a requirement wherein I want to create new condition type for add on cost of material with manaual entry . this condition is to be given in inforecord. How to proceed? also, this contion type to be inserted in pricing schema??

  • CS4 Installation/Deployment Problem

    Hello All, I am new to the forum so I want to thank you in advance for any help you might be able to provide. I have been given the task of deploying CS4 Enterprise to our organization.  Using the process described in the CS4 Deployment guide I made

  • Mac App Store re-installation

    I did system restore for OSX 10.9.5 using Time Machine. Unfortunately, I did not back up the application, which end up no application was installed after restoration including the MAC App Store. I try to get it installed online, however, I cannot vie

  • Audigy 2/EX problem with speaker config program cannot tune the speaker sys

    AppName: spkrcal.exe AppVer: .0..0 ModName: openal32.dll ModVer: 6.4.348.0 Offset: 000086ac I get this when trying to load the Speaker Calibrator. It will not run! So I cannot setup the speakers properly! it used to work!,all I get now is the MS..sen

  • Macbook "liquid damage"

    I bought a macbook in feb., within three days of ownership it no longer worked. I sent it to Apple, they said it had been damaged by liquid and needed a new logic board at over $800 cost to me. Being a brand new computer, and me not spilling any liqu