PayPal Express Checkout Error 13122

We sell silver bars on line, one of the items we sell contain the word 'Lakshmi' in the title and description, customers getting error 13122 which is PayPal User Agrement Violation, when I remove the word customers are able to checkout. Any idea why this word violates paypal user agreement?

Separate Issue; Update your
Flash Player '''v15.0.0.189 http://get.adobe.com/flashplayer/'''
Please flag your last post as '''Solved Problem''' so other will know.

Similar Messages

  • Paypal express checkout doesn't display properly - Firefox 33.0.3

    Paypal express checkout doesn't appear to be displaying properly in firefox (link to screenshot below). I've tried it with Chrome & IE and it works fine, so can only assume this is a firefox bug.
    Screenshot:
    http://voodoo-london.com/ss.png
    I've tried everything in regards to clearing cookies & cache but still no luck.
    Can anyone offer any explanation or resolution for this?

    Separate Issue; Update your
    Flash Player '''v15.0.0.189 http://get.adobe.com/flashplayer/'''
    Please flag your last post as '''Solved Problem''' so other will know.

  • Paypal Express Checkout Integration

    Hi All,
    I have paypal express checkout account. I want to integrate it with my apex application. So when a customer wants to pay, he can just click the paypal button on my app's page which takes him to the paypal payment screen.
    I would appreciate if someone tells me how to add paypal checkout button on the page?
    Thanks in advance.

    Hi,
    Did you actually read the document or just looked at the title and decided it was not what you wanted?
    Here is the text from the PDF document that talks about Express Checkout on Page 4.
    >
    <p>Integrating with the Express Checkout is a little more involved and requires calling three distinct APIs. You first establish with PayPal that you want to start an express checkout transaction by calling SetExpressCheckout. PayPal responds with a token which you will need for subsequent API calls and a redirect. In the call to SetExpressCheckout you pass a URL as a parameter to tell PayPal where to redirect back to. You then redirect to PayPal and pass the token you received.</p>
    <p>The consumer then chooses their payment option on the PayPal site and can optionally change their shipping address. Once they finalize the transaction at PayPal, they are redirected to the URL you provided in the call to SetExpressCheckout. Two parameters are passed with the URL you provide, token and payerid.</p>
    <p>You create a PL/SQL procedure that has exactly two parameters, token and payerid. This procedure is the URL you pass in SetExpressCheckout to let PayPal know where to redirect to once the transaction is done. The procedure looks up the Application Express session for your application using the token.</p>
    <p>Now that the consumer is back at your site, you will make a call to the second API, GetExpressCheckoutDetails. This retrieves information from PayPal about the consumer, such as their name, email, phone number, and shipping address. Your application can use that information to display a summary page and a Pay Now button.</p>
    <p>Finally, when the consumer clicks the Pay Now button, you call the third API, DoExpressCheckoutPayment. PayPal responds with an acknowledgement and transaction details which your application can store in a local table.</p>
    >
    As for your query
    >
    Then I copied the script in the html header section of my apex page. But the buy now button is being displayed in the top left corner of my page. How can I display it somewhere in the body of the page?
    >
    You can put the script into the Region Source, Region Header or Region Footer to get the position you want in the regions.
    Cheers,
    PS: You will find some good tips here as well http://www.apexskins.com/~andrewro/paypal/Paypal_Website_Payments_Standard_and_IPN_Integration.pdf
    Edited by: Prabodh on Jul 30, 2012 12:10 PM

  • Add second item into PayPal express checkout list

    I want to add second item into PayPal express checkout list public void initPayPal() throws SSLConfigurationException, InvalidCredentialException, IOException, HttpErrorException, InvalidResponseDataException, ClientActionRequiredException, MissingCredentialException, InterruptedException, OAuthException, ParserConfigurationException, com.paypal.exception.SSLConfigurationException, com.paypal.exception.InvalidCredentialException, com.paypal.exception.HttpErrorException, com.paypal.exception.InvalidResponseDataException, com.paypal.exception.ClientActionRequiredException, com.paypal.exception.MissingCredentialException, com.paypal.sdk.exceptions.OAuthException, org.xml.sax.SAXException
    PaymentDetailsType paymentDetails = new PaymentDetailsType();
    paymentDetails.setPaymentAction(PaymentActionCodeType.SALE);
    PaymentDetailsItemType item = new PaymentDetailsItemType();
    BasicAmountType amt = new BasicAmountType();
    amt.setCurrencyID(CurrencyCodeType.fromValue("USD"));
    double itemAmount = 1.00;
    amt.setValue(String.valueOf(itemAmount));
    int itemQuantity = 1;
    item.setQuantity(itemQuantity);
    item.setName("item");
    item.setAmount(amt);
    List<PaymentDetailsItemType> lineItems = new ArrayList<PaymentDetailsItemType>();
    lineItems.add(item);
    paymentDetails.setPaymentDetailsItem(lineItems);
    BasicAmountType orderTotal = new BasicAmountType();
    orderTotal.setCurrencyID(CurrencyCodeType.fromValue("USD"));
    orderTotal.setValue(String.valueOf(itemAmount * itemQuantity));
    paymentDetails.setOrderTotal(orderTotal);
    List<PaymentDetailsType> paymentDetailsList = new ArrayList<PaymentDetailsType>();
    paymentDetailsList.add(paymentDetails);
    SetExpressCheckoutRequestDetailsType setExpressCheckoutRequestDetails = new SetExpressCheckoutRequestDetailsType();
    setExpressCheckoutRequestDetails.
    setExpressCheckoutRequestDetails.setReturnURL("http://devtools-paypal.com/guide/expresscheckout/java?success=true");
    setExpressCheckoutRequestDetails.setCancelURL("http://devtools-paypal.com/guide/expresscheckout/java?cancel=true");
    setExpressCheckoutRequestDetails.setPaymentDetails(paymentDetailsList);
    SetExpressCheckoutRequestType setExpressCheckoutRequest = new SetExpressCheckoutRequestType(setExpressCheckoutRequestDetails);
    setExpressCheckoutRequest.setVersion("104.0");
    SetExpressCheckoutReq setExpressCheckoutReq = new SetExpressCheckoutReq();
    setExpressCheckoutReq.setSetExpressCheckoutRequest(setExpressCheckoutRequest);
    Map<String, String> sdkConfig = new HashMap<String, String>();
    sdkConfig.put("mode", "sandbox");
    sdkConfig.put("acct1.UserName", "peter.penzov_api1.gmail.com");
    sdkConfig.put("acct1.Password", "5LQB5QHQJVKP9QKN");
    sdkConfig.put("acct1.Signature", "AFcWxV21C7fd0v3bYYYRCpSSRl31A6JqBNQNOE3.Jwxfs7nIV1jR7qcl");
    PayPalAPIInterfaceServiceService service = new PayPalAPIInterfaceServiceService(sdkConfig);
    SetExpressCheckoutResponseType setExpressCheckoutResponse = service.setExpressCheckout(setExpressCheckoutReq);
    String token = setExpressCheckoutResponse.getToken();
    String link = "https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=" + token;
    ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();
    externalContext.redirect(link);
    }   

    Help please?

  • Paypal - express checkout issue

    My formcentral account Paypal express check out no loger working. I have contected  the adobe formcental suppor team with in last 3 weeks several time,  all I heard is case was escalated to advance support team. So far not a single attempt made to resolve the issue.
    My account ID - [email protected]

    Hi;
    I don't see the image attachments but I think I get what is going on...  I apologize for mis-leading you there, the page I mentioned is the old page, I saw it because of the cookies in my web browser when I tested your form, now that I have signed into and out of Paypal I get the expected new page that does not have as obvious of a "credit card payment" method...
    The reason you have seen two different landing pages is likely the same, cookie based, but none of this is controlled by FormsCentral, it is Paypal.  For alternate payment methods the new page has a "Checkout as Gues" option below the "Log In" button:
    Thanks,
    Josh

  • How get custom parameter back in PayPal Express Checkout response

    I'm sending the custom parameter <input type="hidden" name="PAYMENTREQUEST_0_CUSTOM" value="101"></input>  Got back result Array ( [TOKEN] => EC-2R626219M62454427 [SUCCESSPAGEREDIRECTREQUESTED] => false [TIMESTAMP] => 2013-11-04T09:38:47Z [CORRELATIONID] => 2441b978c048b [ACK] => Success [VERSION] => 104.0 [BUILD] => 8334781 [TRANSACTIONID] => 7JM13596VP514480B [TRANSACTIONTYPE] => expresscheckout [PAYMENTTYPE] => instant [ORDERTIME] => 2013-11-04T09:38:46Z [AMT] => 1.00 [FEEAMT] => 0.33 [TAXAMT] => 0.00 [CURRENCYCODE] => USD [PAYMENTSTATUS] => Pending [PENDINGREASON] => paymentreview [REASONCODE] => None [PROTECTIONELIGIBILITY] => Ineligible [INSURANCEOPTIONSELECTED] => false [SHIPPINGOPTIONISDEFAULT] => false [PAYMENTINFO_0_TRANSACTIONID] => 7JM13596VP514480B [PAYMENTINFO_0_TRANSACTIONTYPE] => expresscheckout [PAYMENTINFO_0_PAYMENTTYPE] => instant [PAYMENTINFO_0_ORDERTIME] => 2013-11-04T09:38:46Z [PAYMENTINFO_0_AMT] => 1.00 [PAYMENTINFO_0_FEEAMT] => 0.33 [PAYMENTINFO_0_TAXAMT] => 0.00 [PAYMENTINFO_0_CURRENCYCODE] => USD [PAYMENTINFO_0_PAYMENTSTATUS] => Pending [PAYMENTINFO_0_PENDINGREASON] => paymentreview [PAYMENTINFO_0_REASONCODE] => None [PAYMENTINFO_0_PROTECTIONELIGIBILITY] => Ineligible [PAYMENTINFO_0_PROTECTIONELIGIBILITYTYPE] => None [PAYMENTINFO_0_SECUREMERCHANTACCOUNTID] => YYA4BXSJ722PJ [PAYMENTINFO_0_ERRORCODE] => 0 [PAYMENTINFO_0_ACK] => Success ) Custom parameter didn't return, I need the to update my DB after the purchase.

    Issue Closed:
    Basically I used the expresscheckout as the basis and added a couponcode textbox, did validation etc. and passed if off to a subsequent custom process to create the cart/product/discount and redirected it to cart view.

  • Paypal Digital Goods Express Checkout Merchant FEE

    Hello Everyone, I  have a client who wants to integrate paypal express checkout for digital goods, she wants to know if it will cost her EXTRA fee's to use this Express Checkout Digital Goods service will the transaction / merchant fee will be same just like paypal charges for regular checkouts. Please advice ASAP

    Hi BR,
    The list is still the same. Digital goods express checkout has not been added yet. You can find the supported payment gateways list at : http://helpx.adobe.com/business-catalyst/kb/supported-payment-gateway-providers.html
    Regards,
    Aish

  • Adobe Muse and PayPal Digital Goods Express Checkout...

    I searched the forums and found only 1 post from over a year ago but It's a very important topic. Why no PayPal Digital Goods Express Checkout? ( http://support.muse.adobe.com/thread/1115348?start=0&tstart=0 ). The response then was:
    " At the moment the only PayPal integration we provide is Standard, Payflow or Website Payment Pro.
    We currently do not have plans to extend the current PayPal list. However I'll pass onto our dev team as a possible potential future enhancement
    Kind regards, Sidney."
    I need to make use of their Digital Goods Express Checkout. Has there been anything introducing it in this past year? If not I'm gonna have to jump ship to WordPress, who does support PayPal's Digital Goods.
    Someone from Adobe please let me know if I have to switch----Thanks.
    ---BR---

    Hi BR,
    The list is still the same. Digital goods express checkout has not been added yet. You can find the supported payment gateways list at : http://helpx.adobe.com/business-catalyst/kb/supported-payment-gateway-providers.html
    Regards,
    Aish

  • Does BC work with PayPal Express as a checkout option?

    We have a client who is using Paypal Payments "Pro" for their Gateway.
    They also want to add PayPal Express so that on the cart page a customer would have 2 options to checkout.
    option 1) checkout through their BC website with a credit card (paypal payments pro)
    option 2) click on the pay by paypal button to checkout through paypal express (they finish the process through paypal)
    This is a crappy mockup but this shows the idea (2 buttons, 1 for normal checkout and 1 to checkout with your paypal account).
    http://cl.ly/image/243R2I042T0q
    https://www.paypal.com/webapps/mpp/express-checkout
    Do you know if this is possible?
    I'm pretty sure I saw a tutorial about how to make this work recently on a site/blog but I can't recall where.
    Any Help is greatly appreciated.
    Thanks!

    Thanks Liam,
    Can you point me on any BC articles/tutorials etc. how we can set up this type of functionality exactly?
    Checkout Now (would go through normal BC checkout forms and process credit cards through paypal payment pro gateway)
    Checkout Now Via Paypal (leaves and checks out through paypal).
    Same thing as my Zappos example.
    Im a bit confused on your last post but you mentioned you can have an extra option to pay via paypal? I'm not able to find it.
    Thanks!

  • Wingtip Toys - Checkout Error 10401 when clicking the PayPal button

    Hi
    When I choose products and get a total that has decimals as for example 12,13 I do get the error shown beneath. If the total ens up with no decimals as for example 95,00 the system works ok. How to fix this error. Anybody that has an idea?
    Checkout Error
    10401
    Transaction refused because of an invalid argument. See additional error messages for details.
    Order total is invalid.
    Regards Egil Ryengen

    Hi Egil Ryengen,
    This forum is to discuss problems of C# development. I have searched about
    Wingtip Toys. This is ASP.NET Application. So you'll need to post it in the dedicated ASP.Net Forum
    http://forums.asp.net for better support.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Paypal customisation checkout

    Hi,
    I want to try and customise some things in Paypal Standard Checkout. With other cart systems this is possible because you can manipulate the API integrated within the cart, however BC seems to be embedded and nothing is customisable..... so frustrating.
    Anyway, the idea and the way they did it is contained in this link: http://stackoverflow.com/questions/4283251/disable-shipping-address-option-in-paypal-expre ss-checkout
    Can this be done in BC? Does anyone know or has anyone tried it out?
    Thanks, hope to hear something.
    Garuda

    Yes, the way it was intended.  I'm well aware of all their different payment methods, and if you follow their documentation you'll see they absolutely intend for people to be able to checkout quickly, easily, and securely.  Filling out forms goes against their idea of an "express checkout".
    Maybe I'm missing something, though.  Are you saying there is indeed some way to allow people to pay through PayPal without filling out the forms on the website?  If so, please let me know and that will be just fine.  Whether it's PayPal Standard, Express Checkout, Adaptive Payments, or whatever, I don't care as long as it accomplishes that goal.  And, for the record, it's not me that really cares all that much.  It's my client(s) using BC that are requesting this functionality.
    Everything I'm seeing, though, requires that the buyer (at least the first time they buy something) has to fill out these forms on the website to create an account within the system.  People simply don't like doing that, though, especially when they already have a PayPal account, and the numbers show it. 
    Don't take my word for it, study the Analytics data for a bunch of different sites.  Of course, make sure you have data for some that are done the way I've explained so you can see the difference, and I can tell you with quite certainty the conversion rates will be higher when a true "express" checkout of some sort is offered whether it's PayPal, Google, Amazon, or anything where the user doesn't have to type everything out.
    I realize I may be coming off as sort of an a$$, and I don't mean to.  The situation is simply this.  I've got a client running numerous websites.  Some of them are on BC and some are on different platforms.  I showed them conversion rate data and explained this concept to them.  I was then hired and I got PayPal integrated the way I'm saying on some of their other sites. They've been so impressed with the improvement in conversion rates on these sites that they want to migrate to a different platform all together if we can't get this working in BC.  Of course, that's a lot more work and will cost them a lot more money, but they're willing to do so because it's that important based on their own data.
    Quite frankly, in my eyes, this is opening up a new market for developers like myself.  I could do the same thing with other BC users and many of them would probably feel the same way, especially with recommendations of previous people like this guy.  I would much rather just find a way to make this happen for people in their existing system, though.  Unfortunately, you guys really don't seem to think it's a big deal, and almost seem to be taking offense to what I'm saying..??
    BC is freakin awesome!  I'm not trying to talk it down in any way.  I'm just trying to present the idea that, hey, there's still some room for improvement here, and it wouldn't be very hard at all to get working in this fashion.  Lots of other shopping cart platforms had this same problem at one point, but they've all been kinda catching up and offering this when including PayPal.
    I think you're missing the boat on this.  BC is sweet, and Adobe products rule, but this one little thing....ugh.

  • "Note to seller" missing for PayPal Express - in-context for mobile devices

    See subject... I am helping a friend with his website where we use a shopping solution for a wordpress website that integrates with paypal express. It uses "paypal express -  in context" ... unfortunately it appears "note to seller" is not yet implemented for "paypal express -  in context" when viewed on e.g. smartphones ... is there any ETA for this? It is a pretty vital field in our case...  https://developer.paypal.com/docs/classic/express-checkout/in-context/popup/
    https://developer.paypal.com/docs/classic/express-checkout/in-context/integration/ (would appreciate it greatly if this field could be supported soon9

    Actually I am not 100% sure. From the looks of it I am using "in-context", but the code my shopping cart uses (Cart66) does not seem to use the new URL the PayPal documentation dictates.  Anyhow, the problem remains. The notes field is not shown to mobile users. I think that it is somewhat odd to support it for orders coming through desktop, but not support it for mobile. I hope I am missing something

  • WHILE expression giving Error 306, wrong number or types of args in call to

    WHILE expression giving Error 306, wrong number or types of args in call to '='
    declare
         block_id block;
         item_id item;     
    begin
         block_id := find_block(:system.cursor_block);
         item_id := find_item(:system.cursor_item);
         message('Current Block: ' || :system.cursor_block || '  Current Item: ' || :system.cursor_item);
         next_block;
         while find_block(:system.cursor_block) = block_id
         loop
              message('Current Block: ' || :system.cursor_block || '  Current Item: ' || :system.cursor_item);
              next_block;
         end loop;
    exception
         when others then
         message(sqlerrm);
    end;I don't see what the problem is?
    Gus

    other than that there are logical errors in this
    u hav to use here != with the while loop.
    Again loop willl never return to first block.It will stuck at last block and will show error.
    For ur question u can use as
    declare
         --block_id block;
         --item_id item;     
         vc_first_block varchar2(65);
    begin
         vc_first_block := :system.cursor_block;
         --block_id := find_block(:system.cursor_block);
         --item_id := find_item(:system.cursor_item);
         message('Current Block: ' || :system.cursor_block || ' Current Item: ' || :system.cursor_item);
         next_block;
         while :system.cursor_block != vc_first_block
         loop
    Message was edited by:
    jeneesh

  • Express document error in VF01 while doing individual billing

    Hi,
      My Functional consultant is getting an "express document error" for the transaction VF01. I checked SM13 and its showing error message as " Error updating table J_1ipart2". How to resolve this issue ? 
      We are getting express document error only for the  individual billing functionality .

    Check the following notes:-
    1)  Note 1178497 - Dr/Cr indicator not updated in Part2 table for CEIV in J1IIN
    2)  Note 1544355 - Error in updating table J_1IPART2 - J1IV transaction
    thanks
    G. Lakshmipathi

  • Internal Checkout Error using Xcode Continuous Build Service

    I'm trying to use the new Xcode service in Mavericks' Server Version 3 to setup continuous build for a git repository on BitBucket. I've been unable to get it to work successfully. Currently, The Build Agent Logs section shows the following error:
    Oct 30 10:02:11 Robot2.local xcsbuildd[72534] <Debug>: [CSRemoteServiceProxy.m:79 7a566310 +0ms] Received successful response.
    Oct 30 10:02:11 Robot2.local xcsbuildd[72534] <Info>: [CSConfig.m:55 7a566310 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Oct 30 10:02:11 Robot2.local xcsbuildd[72534] <Debug>: [XCSBuildHelper.m:97 7a566310 +0ms] Updating bot run with GUID 7163a252-b3c2-4fca-b9e3-d6128dbb9db4
    Oct 30 10:02:11 Robot2.local xcsbuildd[72534] <Debug>: [XCSBuildHelper.m:102 7a566310 +0ms] Updating bot run (7163a252-b3c2-4fca-b9e3-d6128dbb9db4): {
                  guid = "7163a252-b3c2-4fca-b9e3-d6128dbb9db4";
                  status = failed;
                  subStatus = "internal-checkout-error";
    Does anyone know what this error means or how to get more information about what's going wrong?
    Perhaps relevant: under the Source Control Logs section, it looks like the checkout worked fine:
    Checking out files: 100% (5570/5570), done.
    done
    SSH Known Hosts file path is located at /Library/Server/Xcode/Config/ssh_known_hosts
    SSH strict host checking is disabled (you can enable this by editing the SSHStrictHostKeyChecking key in /Library/Server/Xcode/Config/xcsbuildd.plist
    Untrusted HTTPS certificates is enabled (you can disable this by editing the TrustSelfSignedSSLCertificates key in /Library/Server/Xcode/Config/xcsbuildd.plist
    9373dd12aae68843938144663d4a1c578481447d refs/heads/master
    SSH Known Hosts file path is located at /Library/Server/Xcode/Config/ssh_known_hosts
    SSH strict host checking is disabled (you can enable this by editing the SSHStrictHostKeyChecking key in /Library/Server/Xcode/Config/xcsbuildd.plist
    Untrusted HTTPS certificates is disabled (you can enable this by editing the TrustSelfSignedSSLCertificates key in /Library/Server/Xcode/Config/xcsbuildd.plist
    The SSH lines seem to be informational rather than indicating an error. However, I've tried changing the mentioned keys without any effect, though note that Xcode says that TrustSelfSignedSSLCertificates is enabled on one line and disabled on a later line, referring to the same config file in both cases.

    I just had the same problem, and there is a number of things you can check:
    Make sure the specified branch is pushed to the repository
    Make sure the scheme you selected is shared
    Make sure the scheme info is pushed to the repository
    In my case, someone put `xcshareddata` in .gitignore, so the scheme I selected wasn't available to the bot.
    Hope this helps someone.

Maybe you are looking for

  • RFC adapter does not work

    I create a RFC Receiver CC, I got the following trace error in XSMB_MONI in receiver call adapter phase: - <Trace level="1" type="B" name="CL_XMS_PLSRV_CALL_XMB-CALL_XMS_HTTP">   <Trace level="2" type="T">old values in cache (no lock found) - start r

  • PLS -00428-- an INTO clause is expected in the SELECT statement

    I dnt know what i'm doing wrong with statement, can you help me please. DECLARE start_date DATE:= to_date('01/09/2006' , 'DD-MON-YYYY'); end_date DATE:= to_date('30/09/2006' , 'DD-MON-YYYY'); BEGIN SELECT t.SEC_SHORT_NAME, t.SEC_ISIN, t.SEC_NO,t.SEC_

  • I can't set wpa2 password

    I setup my Airport time capsule. System works ok with no encription. When I introduce the WPA2 password, my MAC can't connect.

  • Bridge as Image Viewer

    Is it possible to use Bridge as a general image viewer? Can I make it, in Windows-speak, the default image viewer for various types of image formats? If I cannot now, I would like to recommend this capability. Often now I find myself needing to view

  • How to install mavericks from scratch

    Hi I have just upgraded my imac with an OWC Mercury 120 Gb SSD and increased ram up to 12 Gb. The upgrade was made by a service where I sent the mac with OSX Maverics and a few apps previously installed. Everything runs fine (no more tha 3 secs to st