Customer credit card refund

Hi everyone,
I issued a credit memo to a customer because they returned some items.
The invoice was originally paid by credit card and they requested to refund their card.
These are the steps I took:
Sales A/R> Credit memo> Enter all information>click the Accounting tab and on the credit card transaction section,  select  the original charge> Add the CM and the message "credit card refunded" appeared on the bottom of the screen. The refund was also processed thru the gateway. So I thought everything worked.
However, the credit card refund does not show under Banking>Deposit>Credit card tab and when I checked the BP master data ,I noticed that the payment showed up as an Outgoing payment.
How do I fix? I need the payment to go to Incoming instead of Outgoing.
Any help would be appreciated

I am using SAP Business One and am having the same issue...  Everyone knows the credit card companies net together your sales and credits into one bank transfer. So, shouldn't the software work on the same premise, allowing outgoing and incoming payments regarding customers using the Payment Means Credit Card show in your deposit screen, allowing you to net your incoming and outgoing into one Deposit? You can make the outgoing payment to the customer for the refund and have it post to the Credit Card Clearing account, but it still won't show on the deposit screen.  It certainly will make for a diffucult bank rec if you have to constantly choose a Deposit and a Payment to net to one bank transaction.
Has anyone found a way to handle this issue??
We are not currently using an add-on. We are processing our credit card transactions outside SAP and posting them into SAP through Incoming Payments and Outgoing Payments.
I assume you can't to a negative Incoming Payment...
Kathleen Piano, CPA
Controller
On Rite Company

Similar Messages

  • Credit card refund from AR on creating a credit memo

    AR (11.5.1) does not have functionality to refund credit card payments back to the card holders amount.
    Has any one created a custom solution to automate credit card refunds after a credit-memo is created in AR? I mean actually crediting the cardholders account --- not just updating statuses within the Oracle apps.
    Thanks for your responses.
    - Tushar

    DO you use ipayment with a thirdparty Payment vendor ?

  • Customer Credit Card Informaiton.

    Hi All,
    How differentiate the credit cards are assigned at customer level and site level in iby_creditcard table.
    I am actually using the follwoing query to get the customer credit card information.
    SELECT o628511.card_owner_id
    , o628511.instrument_type
    , o628511.purchasecard_flag
    , o628511.active_flag
    , o628511.single_use_flag
    , o628511.information_only_flag
    , o628511.expirydate
    , o628511.masked_cc_number
    , SUBSTR (o628511.masked_cc_number, -4) last4digists_cc_number
    , o628511.card_issuer_code
    , order_of_preference "Credit Card Priority"
    , o364701.location_id
    , o364693.cust_account_id
    , o528349.party_site_use_id
    , o364687.start_date "Receipt Method Start Date"
    , o364687.end_date "Receipt Method End Date"
    , o364687.NAME "Receipt Method Name"
    , o436603.receipt_method_id
    , o436603.primary_flag "Receipt Primary Flag"
    , o628343.start_date "Credit Card Start Date"
    , o628343.end_date "Credit Card End Date"
    FROM ar.ar_receipt_methods o364687
    , ar.hz_cust_accounts o364693
    , ar.hz_locations o364699
    , ar.hz_parties o364700
    , ar.hz_party_sites o364701
    , ar.ra_cust_receipt_methods o436603
    , ar.hz_party_site_uses o528349
    , ar.hz_cust_acct_sites_all site
    , ar.hz_cust_site_uses_all aaa
    , iby.iby_pmt_instr_uses_all o628343
    , iby.iby_creditcard o628511
    WHERE o364699.location_id = o364701.location_id
    AND o364700.party_id = o364693.party_id
    AND o364700.party_id = o364701.party_id
    AND o364693.account_number = '111111'
    AND o364693.cust_account_id = o436603.customer_id(+)
    AND aaa.site_use_id(+) = o436603.site_use_id
    AND site.party_site_id = o364701.party_site_id
    AND aaa.cust_acct_site_id = site.cust_acct_site_id
    AND o364687.receipt_method_id(+) = o436603.receipt_method_id
    AND o364701.party_site_id = o528349.party_site_id
    AND o628511.instrid = o628343.instrument_id
    AND o628343.instrument_type = 'CREDITCARD'
    AND o528349.party_site_use_id = o628511.addressid
    Thanks in Advance
    ram

    I have solved the issue using bellow query.
    SELECT DISTINCT ibyc.card_owner_id
    , hzcsu.site_use_id
    , hzcsu.site_use_code
    , ibyc.instrument_type
    , ibyc.purchasecard_flag
    , ibyc.active_flag
    , ibyc.single_use_flag
    , ibyc.information_only_flag
    , ibyc.expirydate
    , ibyc.masked_cc_number
    , SUBSTR (ibyc.masked_cc_number, -4) last4digists_cc_number
    , ibyc.card_issuer_code
    , order_of_preference "Credit Card Priority"
    , hzps.location_id
    , hzca.cust_account_id
    , hzpsu.party_site_use_id
    , receipt.start_date "Receipt Method Start Date"
    , receipt.end_date "Receipt Method End Date"
    , receipt.NAME "Receipt Method Name"
    , receipt.receipt_method_id
    , receipt.primary_flag "Receipt Primary Flag"
    , ibypiu.start_date "Credit Card Start Date"
    , ibypiu.end_date "Credit Card End Date"
    , ibyep.ext_payer_id
    , DECODE (ibyep.acct_site_use_id, NULL, 'CUSTOMER_LEVEL', 'SITE_LEVEL') card_level
    FROM ar.hz_cust_accounts hzca
    , ar.hz_locations hzl
    , ar.hz_parties hzp
    , ar.hz_party_sites hzps
    , ar.hz_party_site_uses hzpsu
    , ar.hz_cust_acct_sites_all hzcas
    , ar.hz_cust_site_uses_all hzcsu
    , (SELECT aaa.cust_account_id
    , aaa.site_use_id
    , arrm.start_date
    , arrm.end_date
    , arrm.NAME
    , arcrm.receipt_method_id
    , arcrm.primary_flag
    FROM ar.ra_cust_receipt_methods arcrm
    , ar.ar_receipt_methods arrm
    , (SELECT hzca1.cust_account_id
    , hzcsu1.site_use_id
    FROM hz_cust_accounts hzca1
    , hz_cust_acct_sites_all hzcas1
    , hz_cust_site_uses_all hzcsu1
    WHERE hzca1.cust_account_id = hzcas1.cust_account_id
    AND hzcas1.cust_acct_site_id = hzcsu1.cust_acct_site_id) aaa
    WHERE arrm.receipt_method_id(+) = arcrm.receipt_method_id
    AND aaa.cust_account_id = arcrm.customer_id(+)
    AND aaa.site_use_id = arcrm.site_use_id(+)) receipt
    , iby.iby_pmt_instr_uses_all ibypiu
    , iby.iby_creditcard ibyc
    , iby_external_payers_all ibyep
    WHERE hzl.location_id = hzps.location_id
    AND hzp.party_id = hzca.party_id
    AND hzp.party_id = hzps.party_id
    --AND    hzca.account_number = '12345'
    AND SYSDATE <= NVL (ibyc.inactive_date, SYSDATE)
    AND hzcas.party_site_id = hzps.party_site_id
    AND hzcsu.cust_acct_site_id = hzcas.cust_acct_site_id
    AND hzps.party_site_id = hzpsu.party_site_id
    AND ibyc.instrid = ibypiu.instrument_id
    AND ibypiu.instrument_type = 'CREDITCARD'
    AND hzcsu.site_use_code = 'BILL_TO'
    AND hzpsu.party_site_use_id = ibyc.addressid
    AND ibyep.cust_account_id = hzca.cust_account_id
    AND ibyep.ext_payer_id = ibypiu.ext_pmt_party_id
    AND hzca.cust_account_id = receipt.cust_account_id
    AND hzcsu.site_use_id = receipt.site_use_id
    Thanks
    Ram
    Edited by: ram on Aug 31, 2009 1:37 PM

  • Credit Card Refunds, Deposit Form, and Bank Reconciliation

    Our Credit Card Refunds do not show in the Deposit Formm, can they?
    Without the refunds showing in the Deposit form, our bank reconciliation does not match the bank.  We have to create a separate JE to move the refund from undeposited cash to the bank account.  Now the bank shows one deposit of $100 and we have two transactions, a deposit for $120 and a refund for -$20 for a combined total of $100.
    This make the audit trail very convoluted.
    Is there a setting to show the refunds in the Deposit Form?
    Thanks,
    Rob
    Edited by: Rob Burke on Nov 25, 2009 11:19 AM

    Thanks Gordon,
    We do add the credit memo and payment on account.  We want this payment on account to show in the deposit form so that the deposit matches the credit card deposit.
    Deposit the following amounts $10 + $12 +7 and refund $2.  Our credit card processor deposits $27.  SAP deposits $29 via the Deposit form and then we create a journal entry for the $2 refund.  We would prefer our reconciliation to match the bank statement and show a single entry for $27.
    Thanks for your help anyway.
    Rob

  • Processing Credit Card refunds-not using SD, posting CC pymts thru Lockbox

    I have tried to search the forums, all of them, for this issue but have not been able to find a solution.  I have not specifically checked the OSS notes.  Here is our situation.  We use our proprietary system to do our credit card processing and then we import the sales information through an IDOC into SAP to create the customer open invoices.  Once we receive payment from our processor,  our system is configured to load the payments through the Lockbox programming.  The only issue we have with this is that we cannot load any refunds, credits,  that might have been issued to customers through lockbox. Right now, we have an LSMW set up but this is very time consuming for our IT department and we would like to see if there is a better solution with SAP.

    hello sir,
    i want to your help
    i was installed fresh windows 7 via cd rom and then after installed all software.
    and now after 1 day customer complained me that cd rom not read any cd and i m also check when i insurt cd so its not read and when i am double click on cd rom icon its eject so what i do for that please reply on my email address.
    [text removed for privacy]
    VIMAL

  • HT3702 Need credit card refunded

    hi,
    i was not asked to confirm purchase. neither did i get a notice that my credit card will be charged $5.40 just for trying to download the iPhoto app. i havent completed the installation, and i will never do it. please remove it from my records and refund the money to my credit card. i remember the keynote for iphone/ios7 mention that this app and other such apps will be free. its a disgrace that i was charged although i'm on ios7
    if you wont refund, i'm going to turn to a windows phone. i havent finished the sownload and i will not download it even if it is available later at no cost. i don't need that app for regular usage
    request you to refund the amount as i cannot afford to pay for apps. i am a regular customer for music, and most of the music i purchase is out of the itunes store. this is the first time ever it didnt ask for confirming i'll be charged on my card, and if it is an iphone feature, i call it a defect because the customer needs to be notified at least the very first time about his card getting charged which didn't happen.
    i love apple and will continue using it for music. but if you charge me without notifying me, i will switch to a windows phone. again, all i want is a refund on my apple id purchase for iPhoto app.
    removed apple id(s) after seeing that this is a public forum
    sincerely
    vishwamurthy
    <Email Edited by Host>

    We are fellow users. You will be charged when you click on the item's price to buy it, but you can use Settings > General > Restrictions > Require Password set to 'immediately' which should always prompt you for your password for each purchase (the default is a 15 minute period during which it doesn't need reentering).
    You can try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Customer- credit Card Issue on Sales Order

    Hi Experts,
    There is an issue,where an incorrect Credit Card details are showing up during an order creation for a Customer.
    In XD02, the payment card details shows it as Master Card. But while creating order(VA01),it showing VISA card. Can anyone explain what could be the issue?
    It should appear as Master card in VA01 too.
    Thanks,
    Arhy

    Hi,
    Check the Card details of the  Payer and not Sold to Party.
    Regards,
    Sharan

  • Mass deletion of customer credit cards

    Hi All,
    I'm trying to write a program to identify credit cards which are either expired or over xxx days old in our system and then delete them.  The issue I have is that my program is very, very slow.  I'm deleting the credit cards by using a recording of XD02, I did look for a function module to do this but couldn't find one.  I'm now searching again for a standard function module to do this, as my program took 16 hours to delete 600 credit cards and we have over 100,000 to delete.
    Can anyone help me?
    Thanks,
    Gill

    Hi Gill,
    You could try to fix this with E-Catts.
    Even if it is not their main goel, it can be used for this.
    This is quite simple to deal with.
    Transaction secatt.
    Create a test script, in the Editor tab, click on pattern.
    then select UI control / TCD(record), pick your transaction in the fill then execute.
    You'll have to do the work for one customer.
    Then once you're done, after save, you should be back to secatt tranacation. Pick yes to the transfer data question.
    Then double click in the editor on XD02_01.
    Expanse the following nodes: Dynpro / [1]  then double click on FIELD.
    you should find here the customer number you filled.
    On the line you should have for example: 'S' 'RF02D-KUNNR' 6000001
    S is for set new value.
    You have to change the customer number by a variable named for exampl I_KUNNR, press enter then select import parameter.
    You can now save your test script. Exit to secatt transaction then create a Test configuration.
    In configuration tab fill your test script name then go to Variants tabs.
    You will find a screen where you can fill a line for each customer you want to deal with. (you can also use an excel file)
    Good luck.
    Do not hesitate if you have questions

  • HT1933 How do i get in touch with someone about credit card refund

    Help

    If it was an unauthorized charge, particularly one that doesn't appear in the Purchase History in your iTunes Store account, you should contact your credit card company and report the charge. Otherwise, go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store. Note that the terms of sale for the iTunes Store state that all sales are final, so if you wish to ask for a refund for something other than an error in the store itself, a refund is by no means guaranteed.
    Regards.

  • How to encrypt information like customer credit card information?

    Hi I would like to know what is is the safe way to add a credit card information form for my customers, without compromising their information? ON Adobe Muse

    Hi Veronica,
    If you choose to host the site on Business Catalyst, you can take advantage of the BC's Ecommerce feature to achieve what you are looking for, For more info, Please refer to the following link Business Catalyst Help | E-commerce
    Regards,
    Aish

  • We are evaluating EchoSign to receive customer Credit Card and CVV information for payment against a contract.

    Is EchoSign PRO appropriate as it does not support Advanced Form Fields?  Is this covered in Team or Enterprise/Global? Or is it best practice to integrate the CC data fields into our own PDF form with the idea that the data in transit is wrapped in SSL and 256BIT AES?

    Hello,
    An EchoSign Pro subscription will allow for field data to be masked, and setting up that property is pretty quick with the in-tool form creator.
    For masking fields follow these simple steps.
    1) Log in to your EchoSign account and upload the document and make sure u check the check box "Preview, position signatures or add form fields".
    2) This will take you to the page where in you have to put the form fields (boxes).
    3) Now click the tab that says Data fields along the top, just above the Signature block(red in color).
    4) This opens the Data fields options. Select the "text field", and place it in the required place.
    5) Double click on that text field, and the properties menu will open for the field.
    6) Near the top of the Properties menu, you will find a check box that says Mask field data, check that box and save changes and you are good to go!
    Masked field data will not be visible to any subsequent signer to the document, and will not be view-able on the final PDF.
    To recover the field information, you will have to pull a CSV of the field data from the transaction. This can be done per transaction from the Manage tab in EchoSign, or from the History tab if you create a re-usable document.
    For ease of use, we recommend creating the document as a reusable template as the History tab export will give you a full history every time.
    One thing to note with Credit Card numbers is that you want to break the field of 16 numbers into two fields.
    Opening a CSV in Excel will truncate a field number to 15 significant numbers, and you want all 16.
    Please see this article for a more information.

  • How to get credit card number.

    Hi everybody,
    I'm trying to get a customer credit card number for use it on a form that is generated from a reversed document created when a credit card payment fails or if the card is declined.
    I found the credit card information on table VCNUM but how can I relate that information with the data that storages documents information like BKPF, BSEG, etc...
    If anyone can help me will be appreciated...

    Hi,
    Check this table VCNUM, this is Credit card master table. and CCNUM (Credit card number) is the field which you are looking for .
    Get the Card number from VCNUM and go to table <b>BSEGC</b> here you get all the info.
    Regards
    vijay

  • Handling Credit Card processing- need solution

    Hello SAP Gurus'
    I need a solution in accepting credit card for payment against an invoice.  My client here in the US has a CCC headquatered in Europe.  They tell my client to input the credit card number and expiration date in the text field under customer open items and input request in assingment field.  They in turn somehow process the credit card number and associate the payment with the invoice.  They haven't provided a test of this yet.  I don't believe it can happen.  At any rate, I am NOT a proponent of having customer credit card info on the text field. 
    I understand there is a solution is changing the payment method to prompt the transaction thereby processing the credit card someone against the open receivable or balance on account.  I am not sure how that part works.
    Can anyone help me with the solution?
    POINTS PROMISED

    CMM
    Try this link:
    http://www.sap-img.com/sap-sd/set-up-for-credit-card-payment-processing.htm
    This gives detailed steps in setting up credit card processing for SAP.
    I would definately NOT recommend holding Credit Card numbers in a plain text field!  Speak to your Internal Control to get their backing for this!

  • Error credit card information for service of Travel ESS

    Dear Experts.
    I have the following issue.
    When I  Create Travel Request in the ESS the system display the following message :
    Please can help me with suggestion for solve this issue?
    Regards

    Hello Kris,
    You can maintain the Customer credit card information in Customer master data - General Data - Payment Transactions. There you can see the Button called Payment Cards - Click on it, then you are faced with a screen Customer Payment cards and then Enter you customer Credit card Information like type (VISA/MASTER), Card Number , Validity dates etc.
    The Payment Method field in Customer Master data - Company Code data - Payment Transactions tab, is responsbile for customer mode of payment after sales order creation. If the Payment Method is through Credit Card, during sales order creation the system will check the Payment method and If the Paymethod is credit, it will get the credit card details validated from third party system and get credited the sales order value amount.
    The Pre-requisite is to develop the Interface with Third party service provider for Credit Card transactions (eg. XIPAY).
    It is suggested to sit with your abaper and get the relevant user exit implemented to allow the credit card as a payment method in sales transactions with your customers.
    Hope it helps.
    Thanks, Ram.

  • REMOVING credit card information for existing AppleID

    Ive noticed that iTunes is giving the newly users the option to use
    a Credit Card or not. Ive been using iTunes for 5 years now, this has NEVER been a problem
    till recently. Im using my credit card as my billing information, but now that
    this keeps popping up...
    This is overly irrating, my iPhone has updates on apps & my Macbook Pro
    needs to be update! Ive been researching this problem, a lot of them do say there is a options
    to chose, 'None.' I sure as **** dont see it. Hopefully Im not the only on with this problem.
    PLEASE I NEED HELP

    Hello Kris,
    You can maintain the Customer credit card information in Customer master data - General Data - Payment Transactions. There you can see the Button called Payment Cards - Click on it, then you are faced with a screen Customer Payment cards and then Enter you customer Credit card Information like type (VISA/MASTER), Card Number , Validity dates etc.
    The Payment Method field in Customer Master data - Company Code data - Payment Transactions tab, is responsbile for customer mode of payment after sales order creation. If the Payment Method is through Credit Card, during sales order creation the system will check the Payment method and If the Paymethod is credit, it will get the credit card details validated from third party system and get credited the sales order value amount.
    The Pre-requisite is to develop the Interface with Third party service provider for Credit Card transactions (eg. XIPAY).
    It is suggested to sit with your abaper and get the relevant user exit implemented to allow the credit card as a payment method in sales transactions with your customers.
    Hope it helps.
    Thanks, Ram.

Maybe you are looking for

  • I dont know how to get the screen from "Connected do not eject

    I just got an ipod nano(3rd generation) listened for hours then went to put more songs on and forgot to eject now it is stuck on "Connected Eject before disconnecting" itunes does not recognize how do i fix this.

  • Macbook Air to Tv

    Hi all, newbie here. Recently brought my MBA, now I want to connect it to my TV to watch films etc. I've been told there are two different ways of doing this, thunderbolt to HDMI OR Apple TV 3rd Gen. I want to know, what the differences are? And whic

  • New Driver/Install-CD nee

    Hi, I've got a SB Audigy Player and want to install it properly. But the installation have got errors.. it runs till 97% and sto ps. After a few Minutes I must terminate the "CPAXXX" process of the CD and then I get the "finished" screen, but the sou

  • Big space in front of hyperlinks.

    Everywhere I have a hyperlink in the html files, javahelp puts a big space in front of it. This leaves big gaps in a sentence that has a word that is a hyperlink. Any idea what causes this? Or any way to prevent it?

  • Spotlight will not search...

    Here is what happened. Finder hard crashed so badly that it required that I shut off the computer.(Mac Pro) I could not even bring up force quit. When it came back up, Spotlight just would not search. It would come up, but typing in a term would do n