Customers have to make multiple attempts to pay

I'm highly embarrassed by how many times some of my customers have to resubmit their form before their Paypal payment is processed.  It happens so often that I now have to check my forms every day to make sure I don't miss bookings, and then I have to manually raise a Paypal invoice and send an apologetic email to those whose payments did not get processed.
These are not customers who have insufficient funds in their account. The problem seems to lie entirely with the AdobeForms software.

Hi Karen,
I received your email and have looked into our server logs for the transaction records under your account. It appears that in the past month, there are 129 form fillers initiated a payment transaction by submitting your forms, and 109 of them has successfully finished their transaction. Therefore, the failure rate is about  (129-109)/129 = 15.5%, which is honestly a bit high.
Out of the 20 users who didn't finished their transactions, 3 of them were reported by PayPal that their transaction cannot be completed and instructed us to redirect the users back to PayPal. We don't have the details about why the 3 transactions cannot be completed, but that find of cases are usually because the funding source they chose in PayPal had no sufficient fund or got declined, but they have other funding sources to choose from. We never heard back from PayPal about the remaining 17 users who initiated the transaction, which means they either changed their mind and close their browsers directly, or PayPal has directly declined their payments and eventually they gave up and close the browsers.
Please understand our integration with PayPal totally relies on PayPal to determine if the transaction can be approved or declined. There are 3 stages of a transaction:
1. FormsCentral asks PayPal to start a transaction.
2. The user is redirected to PayPal and finish their payment info there. We don't have any control over this stage.
3. When we receive a notice from PayPal indicating we can finalize the transaction, we call PayPal again to finalize the transaction.
If PayPal notifies us any errors at stage 1 & 3, we will have error logs in our server. If the PayPal can determine the transaction cannot be done at stage 2, they will just tell  the user there without notifying us. Some transaction problems can only be found at stage 3 when we ask PayPal to finalize the transaction.
In your case, we found no errors at stage 1, 2 recoverable errors at stage 3 and they successfully completed the payment after we redirected them back PayPal, and another 3 recoverable errors at stage 3 but the users eventually gave up after we redirected them back to PayPal. As I mentioned above, the other 17 users with unfinished transaction must have encountered errors at stage 2 or simply changed their mind.
We have some users complaining transaction failures at stage 2. We talked to PayPal and they mentioned the typical transactions that got declined at stage 2 are those being classified as high risk one based on their security check algorithm. PayPal won't reveal how their security check is done, but did mentioned a pretty common failure case. If people in the same company (behind the same firewall) try to make payments in a short time period, they will most likely be all declined, because their IP addresses appears the same to PayPal.
Based on my investigation, it looks like we cannot do anything so far to help improving the transaction success rate of your forms, since most failures in your case are not under our control at all. I am really sorry about that. Please understand our PayPal integration works just like a cashier at the checkout counter. The credit card machine (the PayPal payment page in our case) takes the credit card information and send it over to the bank (PayPal payment processing center in our case) to get approval. When a transaction is declined, it is the bank's (PayPal's in our case) decision that makes it fail. We as a clerk is only told by the credit card machine that the transaction cannot be completed with very limited details.
Here is my suggestion: whenever you found customers failed to complete the transaction, you can ask them:
1. Contact PayPal to ask why their transactions failed if they tried to pay with their PayPal account.
2. Contact either PayPal or their credit card bank to ask why the transaction failed if they tried to pay directly with their credit cards.
Please do let me know if you have further questions.
Thanks,
Eman Fu
Senior Computer Scientist
Adobe Systems Incorporated

Similar Messages

  • I have to make Multiple entry at table maintanance at a time

    Hello all,
    My requirment is to enable the multple user can loginto the same table for making there entry simultaneosuly .
    i have created the table and table maintance as well. and i have created the new lock object and added the code accrdingly and i have used the custom fm which is generated in the tablemainta  function group.
    forex: table xyz
    user 1 , 2, 3, 4, 5,so on..
    table should allow all user tomake there entry at time and the entry edited one user should be disabled to other user.
    I have gone the forum i didnt found the correct one ..plz guide me ..plz find the attached code .i got this code and referredthe samein my prog ..any suggestions on the below.
    1.       Create table ZTEST_SHUKS3.
    2.       Create table maintenance generator for the table. 
    3       Create lock object EYTSS_E433SH in SE11. Give it name as EZTEST_SHUKS3. 
    4       create a report  ZREP_SHUKS3 and transaction code ZTEST_SHUKS3  to call this report. This tcode will call table  mainatance     generator of table ZTEST_SHUKS3 . 
    5  create the report as below
    6 Now open table maintenance function  group(ZTEST_SHUKS3)  in SE80.We know for table maintenance SAP automatically creates code in the function group. Now we will make some modification in that existing code to change the behavior. Open the screen you created through table maintenance and add one module. 
    screen: 0001
    double clik on screen and add one module in PBO of the screen
    loop at extract with control
    tctrl_ZTEST_SHUKS3 CURSOR NEXTLINE.
    MODULE LIST SHOW LISTE
    ADD HERE
    MODULE m_change_locking
    Check the code below to be added in the module m_change_locking. 
    MODULE m_change_locking OUTPUT.
    *Call the function module corresponding to the lock object we created
      CALL FUNCTION 'ENQUEUE_EZTEST_SHUKS3'
        EXPORTING
          matnr          = ztest_shuks3-matnr
          werks          = ztest_shuks3-werks
        EXCEPTIONS
          foreign_lock   = 1
          system_failure = 2
          OTHERS         = 3.
      IF sy-subrc NE 0.
    row is locked..hence gray..
        LOOP AT SCREEN.
          screen-input = 0.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    ENDMODULE.                 " m_change_locking  OUTPUT 
    REPORT  zrep_shuks3.
    **Selection range for view maintenance
    DATA:
      BEGIN OF selekttab OCCURS 1.         "Selektionsbereich
            INCLUDE STRUCTURE vimsellist.
    DATA: END OF selekttab,
    **Table of inactive CUA functions for view maintenance
    BEGIN OF excl_cua_funct OCCURS 1.    "inaktive CUA-Fkt bei View-Pflege
            INCLUDE STRUCTURE vimexclfun.
    DATA: END OF excl_cua_funct.
    DATA: lt_enq_del TYPE STANDARD TABLE OF seqg3,
          lt_enq_read TYPE STANDARD TABLE OF seqg7,
          lw_enq_read TYPE seqg7,
          lw_enq_del TYPE seqg3,
          lv_subrc TYPE sy-subrc.
    *Read all the lock details in system
    CALL FUNCTION 'ENQUE_READ2'
      EXPORTING
        gclient = sy-mandt
        gname   = ' '
        guname  = '*'
      TABLES
        enq     = lt_enq_read.
    *We will search entry for table level lock for our table
    LOOP AT lt_enq_read INTO lw_enq_read
    WHERE gname EQ 'RSTABLE'
    AND   garg CS 'ZTEST_SHUKS3'.
      MOVE-CORRESPONDING lw_enq_read TO lw_enq_del.
      APPEND lw_enq_del TO lt_enq_del.
    ENDLOOP.
    *Delete table level lock entry for our table
    CALL FUNCTION 'ENQUE_DELETE'
      EXPORTING
        check_upd_requests = 1
      IMPORTING
        subrc              = lv_subrc
      TABLES
        enq                = lt_enq_del.
    *Now call the table maintenace generator.
    CALL FUNCTION 'VIEW_MAINTENANCE_CALL'
      EXPORTING
        action               = 'U'
        view_name            = 'ZTEST_SHUKS3'
        show_selection_popup = 'X'
      TABLES
        dba_sellist          = selekttab
        excl_cua_funct       = excl_cua_funct.
    I followed the same steps but still not getting the multiple user enable .
    plz help
    regards
    Raju
    Edited by: abaprthree on Jul 22, 2009 7:54 PM

    Hi,
    I think you are looking for the report which will allow only for entries not for change. In this case, at PBO you write the code to make all the rows in display mode which have records using LOOP at SCREEN .....ENDLOOP. When you click on on NEW ENTRY button, add blank rows and put user entries. When you save,check for existing entries in the table because many users are entering the data at the same time, so check for duplicates KEY entries and UPDATE the table on SAVE button. If you will go in this way, I don't think you have to go for LOCK object. It's required only if you are going for EDIT mode.

  • Can I use one purchase of Acrobat on more than one computer? I work on a desk top, lap top, and netbook.  Do I have to purchase multiple copies or what?  (PS -- If I start with a free trial download, how long can it be used for?)

    How many times can I use Acrobat Pro on my three compters -- the desk top, lap top, the net book.  Do I have to make multiple purchases?

    Hi markala,
    As per the End User License Agreement a single purchase of retail license for Acrobat is good for 2 computers.
    If you want to install it on 3 machines you need to procure a volume license.
    Regards,
    Rave

  • I have installed ios7 on my iPad 4. After installation it asked me pass code which I have never set. After multiple attempts it is disabled. I don't have backup on my iCloud or iTunes. Is there anyone who can help to enable it or to reverse iPad to ios6.

    I have installed ios7 on my iPad 4. After installation it asked me a pass code which I have never set. After multiple attempts it is disabled. I don't have backup on my iCloud or iTunes. Is there anyone who can help to enable it or to reverse iPad to ios6. I asked Apple store & tech said to format it but I will lose all the data..!

    Thanks for that. Much more constructive than the last comment. It's only the restriction code I can't recall, not the access passcode. So I can currently access the device, just not age restricted content. Does that's make a difference? I also wondered if anyone knew how many attempts you get to try to get it right. Now tried 21 times and so far nothing bad has happened but I am concerned I'll eventually be completely locked out of the device. That doesn't seem in the spirit of things though. Surely it's foreseeable that a child could repeatedly try to guess the code so I can't see that it would be right to lock the device down completely in that circumstance, particularly if the access code is being typed in correctly every time.
    Thanks

  • Is there any way to sort the alarms differently in the Clock app? I have alarms for multiple days during the week, all of which overlap each other. It makes no sense to me that the alarms sort by time and not day. Thanks!

    Is there any way to sort the alarms differently in the Clock app? I have alarms for multiple days during the week, all of which overlap each other. It makes no sense to me that the alarms sort by time and not day.

    No, there is no way to change the sort order.
    Submit your feedback requesting this feature directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Are there pepes out there using ipads to make group music with children who have profound and multiple learning difficulties? I am and I'd love to share the ideas.

    Are there pepes out there using ipads to make group music with children who have profound and multiple learning difficulties? I am and I'd love to share the ideas.
    I am the music teacher in a  Special school in London UK currently working with Drake Music who are a charity that go into schools to enable music making through music technology. Our purpose is to enable a group of 7 children who have profound and multiple learning difficulties to play instruments on the ipads or through the soundbeam and to be able to play and jam together with me underscoring on the guitar. We're having a lot of fun and we're all learning a lot about what can be achieved using the amazing ipad technology. If you're doing a similar project I'd love to hear from you and we can swap notes!

    See Recover your iTunes library from your iPod or iOS device.
    You can use iTunes to easily manage multiple devices by having each sync with selected playlists. I don't personally have any recommendations for other software but perhaps others might.
    tt2

  • Can i have pages on multiple devices or do i have to pay for it again?

    Can i have pages on multiple devices (Ipad and MacBook pro) or do i have to pay for it again?
    I already have Pages in my ipad and i´m wondering if there is any way to pass it to my computer

    The Apple I.D. is only used for purchases from iTunes and the Mac App Store so should not be confused with your User log-in.
    Just use the one Apple I.D. (his) when you install and you'll be fine.
    Uninstall it and reinstall it "for all users", which was an option given to you at the time.
    Peter

  • I am using Windows 7 Home Premium 64-bit OS.  I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installa

    I am using Windows 7 Home Premium 64-bit OS.I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installation process it gave me an error message that said: 
    Runtime error! 
    Program C:\Program Files\iTunes.exe
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I quit the installation, uninstalled iTunes and rebooted my computer.  I now receive a similar message with a slight difference:
    Runtime error! 
    Program C:\Program Files (x86)...
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I did not leave anything out from the error message.  It doesn't point to a specific file, it just ends with "(x86)..."  Every time I boot up my computer, this error message pops up on my desktop.
    How do I repair this issue?  I have found multiple suggested solutions but am unsure which one is the best, and I don't want to try a bunch of different things for fear I may make the problem worse.  I would like to try and fix this myself if possible but I need to know if that is really possible or if I need to take my computer to someone for repairs.  Any suggestions will be greatly appreciated!!

    Hi lustyln,
    I'm having a little trouble understanding all of what you are trying to explain. From what I can tell, it sounds like your PC has a lot of software problems and you want to know what is supposed to be there and what isn't.
    For reference, here are your product specifications:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01893242&lc=en&product=4043282
    To get your PC software back to how it was when it was first purchased, run a system recovery:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01867418&lc=en&product=4043282
    I hope this helps.
    ...an HP employee just trying to help where I can, but not speaking on behalf of HP.

  • How do I make multiple movies look like one?

    I created a demo of 136 slides with mostly screencaps and one
    small flash animation. The final published flash file is
    approximately 30MB. When the demo is run on multiple computers, the
    CPU utilization rises up to almost 100%, this makes the demo run
    very slowly on most computers. I was advised to cut my captivate
    movie in half ( in slides)... however even then the CPU utilization
    is quite high. How can I break my demo into multiple linked movies
    (to bring down the file size) but still have it play smoothly
    without it stopping to load after each new movie? How do I make
    multiple movies look like one?
    Thank you.

    Would it work to make the navigation of the page go to the
    next movie?

  • My childs ipod touch is missing, someone tried to reset the password around the same time it "Vanished" is there a way to track what WIFI network was used to make this attempt?    We think it was taken at her school and any small info would help!

    Trying to find my daughters ipod touch,  the last we saw it was around thursday and strangly I recieved an email that the apple id was attempting to be changed and or reset...this was not by me or my wife and my daughter is 7 so i dont think it was her...we think it may have been taken at her school but not sure so what i was wondering was is there a way to pinpiont the wifi network that was used to make this attempt??      If it is then it will be a huge help,              This was a gift from "santa" and finding would really make us happy!!    Thanks for any and all help!!

    Trying to find my daughters ipod touch,  the last we saw it was around thursday and strangly I recieved an email that the apple id was attempting to be changed and or reset...this was not by me or my wife and my daughter is 7 so i dont think it was her...we think it may have been taken at her school but not sure so what i was wondering was is there a way to pinpiont the wifi network that was used to make this attempt??      If it is then it will be a huge help,              This was a gift from "santa" and finding would really make us happy!!    Thanks for any and all help!!

  • How do I make multiple screens transition?

    I have figured out how to make multiple camera angles play onscreen at one time, but I would like the layout to change while the video plays, how do I do this (or at least get started)?  I realize that this is probably basic, but I am making the move from basic editing in iMovie and it is proving painful.

    OK, so I am making a demo video for my live music show.
    I have three angles, one front, one of the guitar, and one of my feet.I have all three playing onscreen simultaneously in three screen panels on the main video screen.
    If I export it right now you see all three angles playing at once
    The layout is such that one angle is larger than the other two.
    I would like, at certain points in the video, to have the emphasis change, and have the video transition to one of the other panels getting larger, and the big one getting smaller.
    Does that help?
    Brady

  • How do I make multiple text bold, for example scene headings or character names?

    How do I make multiple text bold, for example scene headings or character names?

    You can do that by editing the template of the document.
    Open the document, go to Edit->Template. A dialog will launch which will have element types on the left and it's properties on the right.
    Select Scene Heading(or Character name) on the left. On the right, go to 'Text' tab and click on Bold checkbox.
    Press OK.
    Hope this helps.
    Cheers,
    Sunny

  • HT201493 Can I make multiple find my friends accounts off of one apple id to see my children's locations?

    I would like to have my kids' location but we are all on the same apple id. can we make multiple accounts?

    Go here: https://appleid.apple.com and create a separate ID for each device.  Then go to Settings>iCloud and set up a different iCloud account on each device using a different ID.  Then launch the Find My Friends app on each device and log in using this iCloud ID.

  • HT1752 I both one Mac Pro 15" March 2009  and five month ago I have to change the harddrive and put some actional memories, since I have to make the upgrade for Lion IOS. Now the motherboard fails. What should I do or expect from Apple to solve this probl

    Hi everyone. I both a Mac Pro 15" in March 2009. Five month ago I  was forced to buy by one new hard drive and extent the memory, because I had to make the upgrade (and pay) to install the new Lion operation system. Four days ago the Mother-board fails. To change it will cost a fortune. What should I do or expect from Apple to solve this problem? I am very disappointed because my trust on Apple was destroyed.

    I am not sure why you are upset with Apple. Electronics equipment does fail. If the product is out of warranty or you do not have AppleCare there's not much you can do with Apple. Apple will charge you for the repair. Suggest you look for a third party repair store since they are usually less expensive than Apple. Alternatively you can buy one for about $850US and install it yourself. Sorry, but there aren't many choices in this situation.

  • Please help! i need to make multiple custom shaped frames for different videos in one scene and cant work out how!

    hi there!
    im really stuck on this and cant work it out i hope you guys can help! i have been trying to make a single shot or scene whatever you want to call it with multiple videos playing all at the same time in it but i want them all to have their own custom shape. i know that i can just put them together into one frame and play them at once but they are all the original rectangle shape they where filmed in and i could put a mask over each one to make it a circle but i want to make each one a custom shape for example if you where to make a face out of 4 videos and one was the shape of the main part of the face one was the eyes one for the hair and one for the mouth now i would have to make the shape of each video the right shape for the corresponding body part then place them on top of each other and then i would have a face made from looping videos. i cannot work out how to make the frames of each video a custom shape after searching tutorials please can someone help me with this it would be greatly appreciated as it is a collage project. thanks very much for your time in the matter Josh.

    ok thanks yea thats helped alot im new to this so thats why it seems basic to you but not me. i have tryed to find out through tutorials but could work it out. im now able to do this but i want to draw my mask free hand and it seems you can only place points with the pen tool? is this the only way to make the shape of my mask? or example in photoshop which i know well i can use a paint brush and paint any shape i want to make a mask but i cant see how to do that in after effects? any help on this would be greatly appreceated. thanks josh

Maybe you are looking for