How to implement other payment methods like PayPal in CRM 7.0

Hi,
I am looking for more payment methods than the (obviously) three available in CRM 7.0.
Is there a way to implement payment methads like:
PayPal, Mobile Payment, immediate transfer, debit entry, defferd payment etc.?
Thanks for helping me out.
Lars
Edited by: Lars Fischer von Mollard on Aug 4, 2010 1:51 PM

hi Lars
I could be of help, as I am product manager with PayPal and we have API based products that can integrated very easily with SAP's infrastructure.
Here is a simple demo that we did at a conference by working with SAP - PayPal/SAP demo on stage here:  http://www.youtube.com/watch?v=a80PvDvazkY
We have FIXED FEES processing that I am product managing, and am happy to discuss it further
regards
Srinivas Vadhri

Similar Messages

  • How to implement a back functionally like the back of the browser

    Hi, I have a commandImageLink("go back") in a template jspx. How to implement the back functionally like the back of the browser with a managed bean method??. For know I m not using task flows.

    I think you can use a javascript method to go back to the previous browser page.
    http://javascript.about.com/library/blback.htm
    http://www.pageresource.com/jscript/jhist.htm
    http://www.w3schools.com/jsref/met_his_back.asp
    Perhaps you find something useful and related to backing beans here:
    http://adfdevelopers.blogspot.com/2009/04/some-handy-code-for-backing-beans-adf.html
    NA
    http://nickaiva.blogspot.com

  • How to change my payment method?

    need to change mu paymemt method
    This post was transferred from its previous location to create its own new topic here; its subject and/or title has been edited to differentiate the post from other inquiries and to reflect the post's content. A link to this post appears where the post was originally added.

    Hi, Dynah, and welcome to the Community,
    This FAQ article explains how to change a payment method:
    https://support.skype.com/en/faq/FA10486/how-do-i-update-my-credit-card-details?
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Are there still no other payment-methods in germany?

    Hello,
    Searching the Adobe-Sites many old statements can be found which claim that other payment methods then CreditCard will be added to CC.
    It is okay for me to pay for a whole year and I really would like to pay via giro transfer or debit.
    It is also okay for me if you have any resellers / stores where I could do that.
    Edit:/ By the way: I am interested in the students version of CC

    Hi Suven,
    Welcome to Adobe Forum,
    I would request you get in touch with reseller to get Adobe Creative Cloud for one time payment.
    http://helpx.adobe.com/x-productkb/policy-pricing/find-reseller.html
    Regarding the payment process, please go through this link. http://helpx.adobe.com/x-productkb/policy-pricing/adobe-stores-online-order-payment-faq.ht ml
    Hope it helps your issue.
    Kind Regards,
    Rajshree

  • How can i edit payment method if i signed up for non payment

    How can i edit payment method if i signed up for non payment?

    Contact iTunes Customer Service and request assistance with your issue.
    Apple  Support  iTunes Store  Contact Us

  • How to implement classes and methods in badi's ?

    how to implement classes and methods in badi's? and where i have to write the code based on the requirement?can anyone explain me briefly?

    Hi
    Every BADI by default Implements an INTERFACE which already contains some methods with parameters.
    So you have to find the relavenet method based on the related paramters (by checking the fields in that paramters) you have to double click on the method and to write the code.
    see the doc
    DEFINING THE BADI
    1) execute Tcode SE18.
    2) Specify a definition Name : ZBADI_SPFLI
    3) Press create
    4) Choose the attribute tab. Specify short desc for badi.. and specify the type :
    multiple use.
    5) Choose the interface tab
    6) Specify interface name: ZIF_EX_BADI_SPFLI and save.
    7) Dbl clk on interface name to start class builder . specify a method name (name,
    level, desc).
    Method level desc
    Linese;ection instance methos some desc
    8) place the cursor on the method name desc its parameters to define the interface.
    Parameter type refe field desc
    I_carrid import spfli-carrid some
    I_connid import spefi-connid some
    9) save , check and activate…adapter class proposed by system is
    ZCL_IM_IM_LINESEL is genereated.
    IMPLEMENTATION OF BADI DEFINITION
    1) EXECUTE tcode se18.choose menuitem create from the implementation menubar.
    2) Specify aname for implementation ZIM_LINESEL
    3) Specify short desc.
    4) Choose interface tab. System proposes a name fo the implementation class.
    ZCL_IM_IMLINESEL which is already generarted.
    5) Specify short desc for method
    6) Dbl clk on method to insert code..(check the code in “AAA”).
    7) Save , check and activate the code.
    Some useful URL
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    Now write a sample program to use this badi method..
    Look for “BBB” sample program.
    “AAA”
    data : wa_flights type sflight,
    it_flights type table of sflight.
    format color col_heading.
    write:/ 'Flight info of:', i_carrid, i_connid.
    format color col_normal.
    select * from sflight
    into corresponding fields of table it_flights
    where carrid = i_carrid
    and connid = i_connid.
    loop at it_flights into wa_flights.
    write:/ wa_flights-fldate,
    wa_flights-planetype,
    wa_flights-price currency wa_flights-currency,
    wa_flights-seatsmax,
    wa_flights-seatsocc.
    endloop.
    “BBB”
    *& Report ZBADI_TEST *
    REPORT ZBADI_TEST .
    tables: spfli.
    data: wa_spfli type spfli,
    it_spfli type table of spfli with key carrid connid.
    *Initialise the object of the interface.
    data: exit_ref type ref to ZCL_IM_IM_LINESEL,
    exit_ref1 type ref to ZIF_EX_BADISPFLI1.
    selection-screen begin of block b1.
    select-options: s_carr for spfli-carrid.
    selection-screen end of block b1.
    start-of-selection.
    select * from spfli into corresponding fields of table it_spfli
    where carrid in s_carr.
    end-of-selection.
    loop at it_spfli into wa_spfli.
    write:/ wa_spfli-carrid,
    wa_spfli-connid,
    wa_spfli-cityfrom,
    wa_spfli-deptime,
    wa_spfli-arrtime.
    hide: wa_spfli-carrid, wa_spfli-connid.
    endloop.
    at line-selection.
    check not wa_spfli-carrid is initial.
    create object exit_ref.
    exit_ref1 = exit_ref.
    call method exit_ref1->lineselection
    EXPORTING
    i_carrid = wa_spfli-carrid
    i_connid = wa_spfli-connid.
    clear wa_spfli.
    Reward points for useful Answers
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • HT201303 how to delete my payment method?

    how to delete my payment method and my credit card details?

    the none option dissapears when theres a unauthorized or pending operation.. check your purchase history to see if theres a pending charge that couldnt go through..if theres some pending payment, it gets fixed, using another credit/debit card or a itunes gift card once theres no pending operation, the none option returns
    it can also be blocked by too many personal information changes
    to unblock you need to contact apple support, so they can reset your account and try again.. its recommended to make changes at intervals no less than 30 minutes between attempts

  • How to undecline my payment method

    i hav broplem ?
    how to undecline my payment method visa card
    can you heal me plaes

    You don't.
    Contact itunes support.

  • How to change the payment method of a subscription...

    Hello!
    I have just purchased a subscription in skype via credit card. Now I seek for a way to change the payment method from credit card to bank transfer.
    My problem here is, that when I go to the subscriptions page, I get the option to ''change payment method'', after which I get redirected to the payments page where I just can ''add a payment method''. This gives me the option to add a new credit card, which kind of fails the sense of changing the payment method at least for me.
    Am I overlooking something or can it really be possible that I am stuck with paying by credit card until I cancel my subscription?
    As a side info, I'm located in Finland, therefore I do only have access to Finnish banks (in case that makes any difference).
    I hope someone can help me solve this problem.
    Thanks in advance,
    Fahlyn
    Solved!
    Go to Solution.

    martinimartini wrote:
    I have the same problem. I used Pay Pal payment before but Pay Pal limited my account so I can only use Pay Pal until after 180 days according to their specific regulations. I also do not have any credit card. How am I supposed to pay for my Skype that I have been using since start of Skype. I really need outgoing calls.  Martin
    Hi,
    As I understand you have a restriction on your PayPal account, unfortunately this is something Skype can't help you with.
    But you can try alternative payment methods: www.skype.com/intl/en-us/prices/ways-to-pay/
    Another option is to let your friend set up Skype Manager account, purchase credit there and allocate it to you: https://support.skype.com/en-us/faq/FA10519/What-is-Skype-Manager-and-how-does-it-work
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • How to set default payment method for Supplier using API

    Hi All,
    I am doing data conversion and loading suppliers using ap_vendor_pub_pkg.create_vendor api. But, I cannot see any payment_method_lookup_code column in the RECORD type AP_VENDOR_PUB_PKG.r_vendor_rec_type.
    how do I assign a default payment method to a vendor ?
    Thanks
    Shankar

    Seems like an ER with Oracle Support.
    Bug 11895105: ADDING PAYMENT_METHOD_LOOKUP_CODE FOR AP_VENDOR_PUB_PKG.UPDATE_VENDOR_SITE
    Currently system doesnt allow you to update the PAYMENT_METHOD_LOOKUP_CODE in AP_VENDOR_PUB_PKG.Update_Vendor_Site.Because above column does not define in l_vendor_site_rec regardless other procedure.

  • HT1904 How to remove the payment method?

    I would like to update my apps but at the end come out with a message ask me to fill in the payment method. After I fill up the form but payment failure to do so. Then I wish to remove all the payment method but there is no a column to choose. I am confusing because I can remove it last time.

    Noor,
    Thanks for your reply.
    oPaymentDrafts 140 object  means to use "oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPaymentsDrafts)", right?
    I have already tried this but it still prompts me error: "The object does not support this method, Or method not implemented yet."
    My code is:
                oInPay = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPaymentsDrafts)
                oInPay.DocObjectCode = SAPbobsCOM.BoPaymentsObjectType.bopot_IncomingPayments
                oInPay.GetByKey(442)
                oInPay.Remove()

  • Check out with other payment method

    Hi everybody,
    I have a question regarding the check out for the e-commerce part of my website. At this moment I can't check if the check out fully works because the client has not payed the site. But next week he will. Till then I really like to know if my check out code is correct. Will it work? I don't use a credit card payment method but Ideal (the Netherlands) with a Mollie account. I did delete the credit card html code from the source and past the mollie code in. I copied the code from this webpage: http://helpx.adobe.com/business-catalyst/partner/setting-mollie-payment-gateway.html
    You can find the html code below:
    <form action="https://spoetnikmedia.worldsecuresystems.com/FormProcessv2.aspx?WebFormID=63724&OID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={module_cid}&amp;CC={module_urlcountrycode}&amp;Referrer={module_siteurl,true,true}" enctype="multipart/form-data" onsubmit="return checkWholeForm49581(this)" method="post" name="catwebformform49581" id="catwebformform42059">    <div class="form">    <div class="check2564">    <div class="item">    <label for="FirstName">Voornaam</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="FirstName" name="FirstName" />     &bull; </div>    <div class="item">    <label for="LastName">Achternaam</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="LastName" name="LastName" />     &bull; </div>    <div class="item">    <label for="EmailAddress">E-mail</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="EmailAddress" name="EmailAddress" />     &bull; </div>    <div class="item">    <label for="Company">Bedrijf</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="Company" name="Company" />    </div>    <div class="item">    <label for="ShippingAddress">Verzendadres</label>    <br />    <input type="text" maxlength="500" class="cat_textbox" id="ShippingAddress" name="ShippingAddress" />     &bull; </div>    <div class="item">    <label for="ShippingCity">Plaats</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="ShippingCity" name="ShippingCity" />     &bull; </div>    <div class="item">    <label for="ShippingZip">Postcode</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="ShippingZip" name="ShippingZip" />     &bull; </div>    <div class="item">    <label for="ShippingCountry">Land</label>    <br />    <select class="cat_dropdown" id="ShippingCountry" name="ShippingCountry">     &bull;    <option selected="selected" value="NL"> Nederland </option>    </select>    </div>    </div>    <div class="check7832">    <div class="item">    <label for="BillingAddress">Factuuradres</label>    <br />    <input type="text" maxlength="500" class="cat_textbox" id="BillingAddress" name="BillingAddress" />     &bull; </div>    <div class="item">    <label for="BillingCity">Plaats</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="BillingCity" name="BillingCity" />     &bull; </div>    <div class="item">    <label for="BillingZip">Postcode</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="BillingZip" name="BillingZip" />     &bull; </div>    <div class="item">    <label for="BillingCountry">Land</label>    <br />    <select class="cat_dropdown" id="BillingCountry" name="BillingCountry">     &bull;    <option selected="selected" value="NL"> Nederland </option>    </select>    </div>    <div class="item">    <label for="WorkPhone">Telefoonnummer</label>    <br />    <input type="text" maxlength="255" class="cat_textbox" id="WorkPhone" name="WorkPhone" />    </div>    <div class="item">    <label for="ShippingInstructions">Opmerkingen</label>    <br />    <textarea class="cat_listbox" rows="2" cols="5" id="ShippingInstructions" name="ShippingInstructions"></textarea>    </div>    {module_ccsecurity} </div>    <div class="browser_width colelem" id="u6298"><!-- simple frame --></div>    <div class="check2496">    <div class="item">    <label for="Amount">Bedrag<span id="constraint-300-label"></span></label>    <br />    <input type="text" class="cat_textbox" id="Amount" name="Amount" />    </div>    <div class="item">    <label for="banks">Selecteer uw bank</label> &bull;<br />    <select id="banks" name="extras1" class="cat_dropdown"></select>    </div>    <div class="item"><img src="/CatalystImages/globalsign-ssl-site-seal.gif" alt="GlobalSign SSL Site Seal" />    </div>    <div class="item">    <input type="submit" id="catwebformbutton" value="Submit" class="cat_button5874" />    </div>    </div>    </div>    <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>    <script type="text/javascript">//<![CDATA[var submitcount49581 = 0;function checkWholeForm49581(theForm){var why = "";if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "Voornaam"); if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Achternaam"); if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value); if (theForm.ShippingAddress) why += isEmpty(theForm.ShippingAddress.value, "Verzendadres"); if (theForm.ShippingCity) why += isEmpty(theForm.ShippingCity.value, "Plaats"); if (theForm.ShippingZip) why += isEmpty(theForm.ShippingZip.value, "Postcode"); if (theForm.ShippingCountry) why += checkDropdown(theForm.ShippingCountry.value, "Land"); if (theForm.BillingAddress) why += isEmpty(theForm.BillingAddress.value, "Factuuradres"); if (theForm.BillingCity) why += isEmpty(theForm.BillingCity.value, "Plaats"); if (theForm.BillingZip) why += isEmpty(theForm.BillingZip.value, "Postcode"); if (theForm.BillingCountry) why += checkDropdown(theForm.BillingCountry.value, "Land"); if (theForm.Amount) why += isCurrency(theForm.Amount.value, "Bedrag"); if(why != ""){alert(why);return false;}if(submitcount49581 == 0){submitcount49581++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}  LoadBanks();     function LoadBanks(){            //Load BankID select    var bankList = document.getElementById("banks");    bankList.options[0] = new Option("ABN AMRO","0031");    bankList.options[1] = new Option("Fortis","0081");    bankList.options[2] = new Option("ING/PostBank","0721");                bankList.options[3] = new Option("Rabobank","0021");    bankList.options[4] = new Option("SNS Bank","0751");    //bankList.options[5] = new Option("Test bank","9999");}</script></form> 
    I hope that you can tell me if this is going to work.
    Thank you so much for helping me with this!

    Hi,
    At the time of creating check lots in FCHI, do not assign the payment methods for account transfers.
    Thanks and Regards,
    Anit

  • How to implement setLineWrap equivalent method in a JTextPane

    I using a JTextPane in a chat Window, but if in this are writing a very large line this don't break lines as in the case of the setLineWrap(true) method for a JTextArea.
    How to implement break lines in a JTextPane equivalent to the setLineWrap(true) method for a JTextArea?

    ???import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Test3 extends JFrame {
      public Test3() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container content = getContentPane();
        JTextPane jtp = new JTextPane();
        StringBuffer sb = new StringBuffer();
        for (int i=0; i<100; i++) sb.append("this is some text.  ");
        jtp.setText(sb.toString());
        content.add(new JScrollPane(jtp), BorderLayout.CENTER);
        setSize(400, 400);
        setVisible(true);
      public static void main(String[] args) { new Test3(); }
    }

  • Paypal pro - payment method is paypal rather than a credit card. Supported in BC?

    Can BC use a paypal account as a payment method rather than a credit card when using paypal payments pro for a us site?  If so does the interface prompt for a paypal userid and password or is this collected in the checkout form?
    Many thanks in advance!

    Thank you for the info!  Very much appreciated.
    Brian.
    Brian A. (Rocky) Brewer
    Brewer Marketing Group
    brewermarketing.com
    Tel: 404.643.6964
    Fax: 404.935.5340
    Facebook | Twitter | LinkedIn | G+

  • TS3297 how to make my payment method

    hello there
    here is showing  your payment method was declined .......
    i dont get it what is this?

    If You re Using debit Card as your Payment Method then You Will get the Error Like that.
    Try to Use Visa or Master Credit card.

Maybe you are looking for

  • How to optimize Thunderbird for Windows 8.1 tablet

    I have installed Thunderbird on a Dell Venue Pro 11, which is an i5 based tablet using Windows 8.1. The default font sizes and other controls for Thunderbird are difficult to operate using only touch on the smaller screen. (Imagine Thunderbird runnin

  • Problem recording to DVD from DVR

    I am having a problem setting the recording speed when recording from DVR to DVD. When recording directly from the TV (either manually or programmed), I set the recording speed using the REC MODE button on the remote and it works well. When I record

  • Not able to connect to Verizon with my ipad2

    Recently unable to connect to Verizon and consequently the internet, on my ipad2. Cant seem to find a way to fix it.

  • CC&B - XAI Integration for Persons

    Good afternoon, We are trying to develop an Inbound Service so that external systems can create Persons on CC&B. We followed these steps to create and register the web service: 1. Used Schema Editor to create the schema and saved it to a XSD file. Th

  • ITunes locks up and forces hard reboot while playing video

    I am running iTunes 8.2.1 on an iMac G5 running Leopard 10.5.7. About 80% of the time I watch video through iTunes, regardless of whether or not the video came from the iTunes store or elsewhere, the computer locks up after a few minutes of playback