Paypal App - Requested Money Pending - doesn't show online

I requested money from a buyer using the Paypal Mobile app on my iphone. The customer asked me where his items were today and I had told him I hadn't received any funds. I went through my transactions online and there was nothing showing as being requested or having been received from a request for funds. I logged on to my iphones mobile app and it shows the $50 is "pending" but I did not receive any notifications of a payment having been received. I can't cancel the request, nor can I see any requests were ever made. It seems as this was lost in translation somewhere. I can not refund the money either if it was something that was actually received. I can't ship the item until the payment is complete either.... I have been doing business with paypal for over 15yrs so I am familiar with how it works, or ... used to.Any help would be appreciated. 

This happened to me today. 2 MObile requests - no record of them when I log in from my laptop. I did receive the text on my phone that the requestor wants to be paid - but I can't pay it - when I log in the request is nowhere to be found. The second mobile payment I had a friend initiate (small amout) just to see if it was a fluke - low and behold it's the same scenario.  Finally - I see posts relating to this bug that go back 2 years. Come on PayPal --- give us something that works.

Similar Messages

  • Whats app requesting money to redownload

    A friend of mine downloaded the Whats app long while ago, deleted it yesterday and then, tried to redownload it.
    However, when trying to redownlod the app, it requests him to pay for the app.
    We tried to reinstall the app from the purchase history list, but the app is not there, which is ackward.
    As far as i know, if i downlaoded an app, it would be in the purchase list and i dont have to pay for it again.
    iPhone 4 with a 6.1.3 IOS
    Anyone can help?
    Thanks and best regards,

    Caesar_4500 wrote:
    Beside, even if it became a paid app and i have to pay, that doesn't mean that it won't be on the my purchase list.
    The purchase list contains all the apps whether paid or free.
    When was that decission took place that makes it a paid app?
    Again, wrong.  When a developer does replace a free version with a paid version, the release becomes a new release.  So the free version may remain in your purchase list, but its moot if that release is no longer actually in the app store for download.  The paid version, as a new release, will not be in your purchase list until you actually purchase it.

  • Numbers app downloaded from iPad doesn't show in apps when syncing with Macbook Pro

    I purchased an iPad mini today and updated to version 8.0 so I could download the Numbers and Pages App.  When I plugged into my Macbook Pro OSX 10.9.5 to sync it shows all the apps I have from my iPhone, but the Numbers and Pages app weren't there.  I had to download again from iTunes.  It then shows to be on my iPhone where I don't want it.  Am I doing something wrong?   Can I eliminate from just my iPhone? I don't want to keep data in the cloud.

    Cancel that, I've just seen the iphone icon on the itunes tool bar. all done.
    sorry folks

  • Money converter doesn't show any output...

    Hi, I have the following source :
    package euros;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class converter extends Applet
    double beginWaarde, franceuro, guldeneuro, uitkomst;
         Button knop1, knop2, knop3, knop4, knop5, knop6;
         TextField invoer, uitvoer;
         public void init()
         {   setLayout(null);
         knop1 = new Button( "gulden => euro" );
         knop2 = new Button( "franc => euro" );
    knop3 = new Button( "euro => francs" );
    knop4 = new Button( "franc => gulden" );
    knop5 = new Button( "gulden => franc" );
    knop6 = new Button( "euro => gulden" );
    knop1.setBounds(0,25,100,25);
    knop2.setBounds(100,25,100,25);
    knop3.setBounds(200,25,100,25);
    knop4.setBounds(300,25,100,25);
    knop5.setBounds(400,25,100,25);
    knop6.setBounds(500,25,100,25);
    invoer = new TextField( "0" );
    uitvoer = new TextField();
    String invoer1 = invoer.getText();
    Double menno = Double.valueOf( invoer1 );
    beginWaarde = menno.doubleValue();
    invoer.setBounds(50,100,100,25);
         uitvoer.setBounds(150,100,300,25);
    add( knop1 );
              add( knop2 );
    add( knop3 );
    add( knop4 );
    add( knop5 );
    add( knop6 );
    add(uitvoer);
    add(invoer);
         public boolean action( Event e, Object o )
              if( e.target == knop1 )
              {       uitkomst = beginWaarde/2.20371;
    uitvoer.setText( "Het aantal Euro's is : " + uitkomst );
                   repaint();
    return true;
              if( e.target == knop2 )
    uitkomst = beginWaarde/6.3;
    uitvoer.setText( "Het aantal Euro's is : " + uitkomst );
    repaint();
                   return true;
              if( e.target == knop3 )
    uitkomst = beginWaarde*6.3;
                   uitvoer.setText( "Het aantal Francs is : " + uitkomst );
    repaint();
                   return true;
    if( e.target == knop4 )
    uitkomst = beginWaarde/2.86;
                   uitvoer.setText( "Het aantal Guldens is : " + uitkomst );
    repaint();
                   return true;
    if( e.target == knop5 )
    uitkomst = beginWaarde/2.86;
                   uitvoer.setText( "Het aantal Francs is : " + uitkomst );
    repaint();
                   return true;
    if( e.target == knop6 )
    uitkomst = beginWaarde*2.2037;
                   uitvoer.setText( "Het aantal Guldens is : " + uitkomst );
    repaint();
                   return true;
              return false;
    and don't get any awnsers in the textfield called 'uitvoer'
    It just shows 0.0 all the time instead of one of the calqulations specified...
    I can't find out what's wrong with it.
    Can someone help me ??
    Thanks in advance,
    Menno.

    your code can be changed as below.
    package euros;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class converter extends Applet
         double beginWaarde, franceuro, guldeneuro, uitkomst;
         Button knop1, knop2, knop3, knop4, knop5, knop6;
         TextField invoer, uitvoer;
         public void init()
              setLayout(null);
              knop1 = new Button( "gulden => euro" );
              knop2 = new Button( "franc => euro" );
              knop3 = new Button( "euro => francs" );
              knop4 = new Button( "franc => gulden" );
              knop5 = new Button( "gulden => franc" );
              knop6 = new Button( "euro => gulden" );
              knop1.setBounds(0,25,100,25);
              knop2.setBounds(100,25,100,25);
              knop3.setBounds(200,25,100,25);
              knop4.setBounds(300,25,100,25);
              knop5.setBounds(400,25,100,25);
              knop6.setBounds(500,25,100,25);
              invoer = new TextField( "0" );
              uitvoer = new TextField();
    //          String invoer1 = invoer.getText();
    //          Double menno = Double.valueOf( invoer1 );
    //          beginWaarde = menno.doubleValue();
    // This part should be moved to the method action(...)
              invoer.setBounds(50,100,100,25);
              uitvoer.setBounds(150,100,300,25);
              add( knop1 );
              add( knop2 );
              add( knop3 );
              add( knop4 );
              add( knop5 );
              add( knop6 );
              add(uitvoer);
              add(invoer);
         public boolean action( Event e, Object o )
              if( e.target == knop1 )
    // getting the value in invoer
                   String invoer1 = invoer.getText();
                   Double menno = Double.valueOf( invoer1 );
                   beginWaarde = menno.doubleValue();
                   uitkomst = beginWaarde/2.20371;
                   uitvoer.setText( "Het aantal Euro's is : " + uitkomst );
                   repaint();
                   return true;
    }

  • I bought ringtone thru App Store but it doesn't show up to select it in sounds

    Does anyone know why I can't select text tone after I bought it thru the i tunes store?

    carolfrommb wrote:
    It is not in applications, I have been looking for it  for weeks now. I have ical, ichat, but no iphoto. That is why i thought i had to purchase it, but bought the iphone app by mistake.
    Use spotlight to search for it:

  • Just updated Pages to version 5.1 on App Store but Pages doesn't show that it's updated and cannot open a document

    I just updated the software in Pages to 5.1 on my iMac OS (Mavericks) but the Pages Application is giving me an error saying that I cannot open a document recently updated until I perform a software update!
    When I am in Pages and to go About Pages it still shows Pages 4.3 (1098)

    You have 2 Pages on your Mac.
    Pages 5.1 is in your Applications folder.
    Pages '09 is in your Applications/iWork folder.
    You are alternately opening the wrong one.
    Peter

  • 4.2 bug/issue: imported app is created but doesn't show up in builder

    Hi all,
    We are running into an issue in APEX 4.2 when importing an application.
    The issue is already explained in every detail several years ago on this forum but it wasn't answered:
    https://community.oracle.com/thread/2464689
    Any suggestions these days?
    Regards,
    Bart

    That would be because the PXI 5124 is a digitizer not a analog input device.  You need to use the NI SCOPE driver not NI DAQmx
    Jeff

  • FF8 doesn't show online content, just local (off-line) content; Other browsers shows online content. (MAC OSX Lion)

    I just posted a few weeks ago this
    https://support.mozilla.com/en-US/questions/894108
    I follow up the guides that I mentioned in there, without success.
    My Problem:
    By example, I can navigate through a Site on Chrome, I saved a complete page content to my local machine from Chrome ... Then, I open this page on firefox and I can see the content. When I visit the site directly from FF, the page area keep in white background, any content is displayed.
    Any suggestions, idea, tip, hint?
    Rgds,
    iVieL

    Ok, finally FF8 works.
    In other posts, people said that I must check for firewalls or antivirus rules/restrictions. Well, I did, I disabled my native firewall without any luck. I have installed Little Snitch, and I disabled too for test FF8 connectivity ... any success reach neither.
    Just today I found a post in some forum, that literally said:
    "To anyone that's still having problems, it may be because you have Little Snitch 2.4.0 installed. This is a known bug for that version. Try updating to 2.4.2."
    I was using 2.4.0 version, and just update to the last one ... but FF8 still no works ... lol ... I just decide to disable it, and FF8 works perfectly. Now I just delete all my Little Snitch rules.
    This fix the problem, but I don't be sure that the update fix the problem or just the Little Snitch's rules clean.
    Rgds, iVieL

  • The contact picture doesn't show up in the mail app

    Hi,
    I've used facebook account to import all of my contacts to ML, so every contact already has a picure. In my mail app I added one of contacts to ML contacts by clicking on his name and choosing "Add to Contacts", now when I click on his name and choose "Show Contact Card" I can see his picture in the card but in mail app his picture frame doesn't show up. what's wrong?
    Thanks in advance

    Thanks sberman for reply,
    No he hasn't. I've tested this with other contacs. If someone is already in my facebook cantacts and I receieve an email from him, but he hasn't included that email address in his facebook account, if I add this new email to his contact card, his picture frame will not appear in mail app. I can see his both facebook and other email address in the contact card.

  • Apps doesn't show up in iTunes after Sync

    I synced my iPhone to a new Macbook, as my old PC had crashed, and the Apps in my iPhone doesn't show up in the iTunes. what should i do?

    Hi Ocean20,
    Thanks for your help!

  • Am using quickoffice pro.  I want to bring files from mac to my ipod through file sharing on itunes but quick office doesn't show up under the app that can be used for file sharing.  what to do?

    I am using quickoffice pro on my ipod.  I want to bring files from my mac to my ipod using file sharing on itunes.  I read to select officepro under apps then select from there but though office pro shows as an app I have, it doesn't show up on the apps under file sharing.  How do I get it there?

    Check Apple's Home Sharing tutorial: iTunes: Setting up Home Sharing on your computer - Apple Support

  • Problem with applications that doesn't show even if installed and to uninstall some that work wrong

    Hi there!
    Problem #1: I've been having problems with my Windguru application in my Iphone. From sometime onwards, it is not showing the forecasted wind, etc after I open it. Tried to uninstall and install again but the problem continues. Seems like there is something sticking in my iphone that is preventing the app to work correctly after uninstalled. Is there something "Windows like" to clean all remains of an application?
    Problem #2 and somehow related: I installed Netflix app in my Iphone as a trial and went ok. Then, logically, tried in my Ipad but something went wrong. The App is installed but doesn't show anyplace. In App store it shows as installed, in General Settings it shows in the list of applications, but no Icon!
    Then I tried to uninstall from Itunes and the same thing continued happening. Worse, then I tried to install from Itunes, SAW the icon with the progress bar being installed in the Ipad and suddenly it dissapeared!!
    Anyone can help?
    Thanks in advance.

    Driskol wrote:but i dont have access to the old kernel
    I can't solve your problem, but I can help you work around it by downgrading if nobody else can figure it out.
    You can find old packages here at the Arch Rollback Machine project repo someone thankfully keeps running,
    http://arm.nrk.cc/
    Just go to 'core' and get the package(s) you need and downgrade. There is also a thread on here somewhere about setting up pacman.conf to point to a specific date with ARM if you don't want to get individual stuff manually, but just doing it individually would probably be easier, as I don't expect the kernel has too many other things you need
    Last edited by FrozenFox (2009-04-17 10:51:42)

  • ReportViewer doesn't show in deployed web app

    I have created a pretty basic web application in Visual Studio 2010.  It uses Access databases with Crystal 13.  I created a report based directly from the mdb files (no datasets) which are located in my app_data folder (the same location my report resides).   Everything is working perfectly on the development machine, when I publish it to the web server, the Crystal Report Viewer doesn't show.   No errors, no messages, just a blank white page.    I'm not sure why this is happening, but I did discover that the source code for the page with the Crystal Report Viewer shows full paths to the databases on my C: drive.  Is that where my problem is?
    If that's the issue, how do I make my database paths relative?  I can go to "Set Data Source locations" in the report, but no matter what I do (I tried creating new connections using Access/Excel DAO as well as OLE DB ADO), it always shows a full path.
    I have pulled my hair out on this one for a while now.  Please help!
    John

    Make sure you are on SP 1 for CRVS2010:
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads [original link is broken]
    Make sure you use SP1 runtime:
    MSI 32 bit
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0_1.zip
    MSI 64 bit
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_64bit_13_0_1.zip
    Read the following articles re. how to configure the viewer (don't let the titles throw you. also, the articles do not go as far as CRVS2010, but the patter will be obvious):
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0437ea8-97d2-2b10-2795-c202a76a5e80
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50aa68c0-82dd-2b10-42bf-e5502b45cd3a
    Finally, you do not mention if this is a 32 build app or a 64 bit app, 32 or 64 bit OS. IN the .NET IDE you are all 32 bit. Deploying a web app to a 32 bit OS means you have to run the app under a 32bit app pool.
    Use an HTTP sniffing utility like [Charles|http://xk72.com/] or [Fiddler|http://www.fiddlertool.com/fiddler/] to determine the viewer HTTP requests.
    - Ludek

  • Lock Screen 2 ? i purchase this app bur it doesn't show in App Store

    hello, i purchase this amp Lock Screen 2 and it doesn't show in my app strore, it says The item you requested is not currently available in Portuguese shop, but is available in Brazilian Store. Click Change Store to view this item.  i did already change store but it doesnt do nothing , can someone help me please   
      http://lockscreenapplication.blogspot.pt  

    I too purchased this Lock Screen 2 app 3 years ago. I was happy using it every day.
    Then I bought a new mac and I wanted to download again this app. But doesn't show on MacAppStore anymore.
    I think if even the app isn't on the market anymore not allowing further purchase, Apple should make the purchased apps available to download again.
    Who can help me with this?

  • When trying to update apps it asks for account password but it doesn't show my account. Help!

    When trying to update apps it asks for account password but it doesn't show my account ID, it shows my dad's. How can I fix this so I can sign in?

    It sounds like the apps were purchased using your dads account, so they will have to be updated using that account.

Maybe you are looking for

  • JBO-25013: Too many objects match the primary key oracle.jbo.Key

    hi am adding values from one viewObject to another viewObject am geting this error JBO-25013: Too many objects match the primary key oracle.jbo.Key i used this code <af:commandButton text="Add New" id="cb5"                                         act

  • Any solution for flash 10 full screen crashes?

    I have a Win7 64-bit system with ATI 5770 board, latest ATI drivers.  Since installing Flash 10, any full screen display of Flash content leads to blue screen, while in window content runs fine.  I've turned off Flash hardware acceleration and it mak

  • Select iPhoto libraries in Media?

    I have several iPhoto libraries. Media is always showing the same library. How can I select a different one ? Francois

  • Parameter query or cascading combo boxes

    In my Access 2013 web app, I have a form for entering a specific type of  activity.  I am using a related item control to add contacts to each activity.  The main table is Activity, the related Item Control is based on (join table) Assignment.  So fa

  • Error when trying to copy files to a DVD+RW

    I am unable to copy images to a brand new blank DVD+RW disc. I keep getting an error message "Current disc canot be overwritten...". Please help.