Multiple Payment types in F-29 / F-28

Dear Friends,
I need your inputs on the following scenario:
1) My client wants to activate multiple payment types in F-29 / F-28
2) When the customer is making payments to the company he can pay in different payment types like some part in cash and some part through credit card.
Ex : incoming payment is 1000
       Cash - 200
       Credit Card - 800
3) Please guide me where to customize the above when there is no SD involved.
Thanks & Regards
Sivaram

Hi:
          Suppose you have an invoice of 1000 for the customer, what you need to do is , go to F-28, enter all parameters and in the main screen suppose you enter Cash GL , enter amount 200,press enter, select the invoice you want to post this against, and charge off the difference of 800 to the Credit card GL you want tp post in. Please check . I hope this will work for you.
Regards

Similar Messages

  • Multiple Payment Types in Sales Order Header Window without Prepayment

    Hi,
    I am trying to enter multiple payment types in Sales Order Header window. If I dont enable Prepayment, then its not allowing me to distribute payments across multiple payments.
    Is there a way where I can enter multiple payment types in Payments Window of Sales Order-> Actions, and enter multiple payment types and distribute the amount.
    While entering sales order, want to enter multiple payment types without enabling prepayment. If its not prepayment, its not allowing me to distribute the amount.
    It will be really helpful if someone can reply urgently.

    Hi,
    Any help on this will be really appreciated.
    I am not able to get any reply from Oracle SR Team as well.

  • 1 Vendor-  Multiple payment types

    Good Morning SAP Gurus
    My client has a requirement that per Vendor, have multiple payment type such as check, wire and ach.  How do you select how to pay vendor for each type?  What drives this and what in configuration?
    For example, they may want to remit to vendor with a check and alternate payee with a wire.
    Thank you.
    Edited by: AMS on Feb 1, 2010 9:13 AM

    Hi,
    In T.Code FBZP, you can define different type of payment methods on company code level
    after that those payments type can assign to any vendors
    In T.Code : FK02, payment transaction accounting -> Automatic payment transactions -> payment method
    You can link different types of payments methods as defined in T.Code OBVU
    regards,
    Sanju M S

  • Multiple payment options like Funds transfer. credit card and PDCs in B2B

    Hi Guys,
    My requirement is to have multiple payment options in B2B Shop.
    1. Blank cheques
    2. Funds transfer
    3. Credit card
    How can we provide this option in B2B order?
    As per Sap Help we can have either of the payment option. we can't provide this option to B2B user. In the transaction type ISBB, customizing header level if we give payment plan type, the system will take that option into consideration, If we don't give any value in that field, by default system will take "Invoive".
    Urgent.
    Thnaks in advance,
    Srinivas

    Hi Guys,
    My requirement is to have multiple payment options in B2B Shop.
    1. Blank cheques
    2. Funds transfer
    3. Credit card
    How can we provide this option in B2B order?
    As per Sap Help we can have either of the payment option. we can't provide this option to B2B user. In the transaction type ISBB, customizing header level if we give payment plan type, the system will take that option into consideration, If we don't give any value in that field, by default system will take "Invoive".
    Urgent.
    Thnaks in advance,
    Srinivas

  • Query for Daily Payment Records against Multiple Payment Means

    Hi Experts,
    I've got this query to show daily payment details which related today's invoice only, however, if there are multiple payment means which linked to one invoice then it just shows last payment record only. Let say, Invoice no. 1 paid by three cheques and query shows last row of cheque amount only. Is it possible to shows multiple payment means against one invoice as well?
    Thanks in advance for any help.
    SELECT DISTINCT
    T0.DocDate as 'Posting Date',
    T0.DocNum as 'AR Invoice Number',
    T0.CardName,
    T1.DocDate as 'Payment Date',
    T1.DocNum as 'Incoming Payment Number ',
    T0.DocTotal as 'AR Invoice Total',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T0.DocTotal
    WHEN T1.TrsfrSum > 0 THEN T0.DocTotal - T0.PaidToDate
    WHEN T1.CashSum > 0 THEN T0.DocTotal - T0.PaidToDate
    WHEN T1.CreditSum > 0 THEN T0.DocTotal - T0.PaidToDate
    WHEN T1.CheckSum > 0 THEN T0.DocTotal - T0.PaidToDate
    ELSE T0.DocTotal
    END AS 'AR Sum',
    CASE
    WHEN T0.ObjType = 13 THEN 'ARIV'
    WHEN T0.ObjType = 14 THEN 'ARCR'
    ELSE 'N/A'
    END AS 'Doc Type',
    CASE
    WHEN T1.Series = 12 THEN 'IPAY'
    WHEN T1.Series = 15 THEN 'OPAY'
    ELSE 'N/A'
    END AS 'Doc Series',
    T0.ObjType,
    T1.Series,
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.TrsfrSum - T1.TrsfrSum
    WHEN T1.CheckSum > 0 THEN '0'
    WHEN T1.CashSum > 0 THEN '0'
    WHEN T1.CreditSum > 0 THEN '0'
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T2.SumApplied
    END AS 'TrsfrSum',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.CashSum - T1.CashSum
    WHEN T1.CheckSum > 0 THEN '0'
    WHEN T1.TrsfrSum > 0 THEN '0'
    WHEN T1.CreditSum > 0 THEN '0'
    WHEN T1.CashSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T2.SumApplied
    END AS 'CashSum',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.CheckSum - T1.CheckSum
    WHEN T1.CashSum > 0 THEN '0'
    WHEN T1.TrsfrSum > 0 THEN '0'
    WHEN T1.CreditSum > 0 THEN '0'
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T2.SumApplied
    END AS 'CheckSum',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.CreditSum - T1.CreditSum
    WHEN T1.CashSum > 0 THEN '0'
    WHEN T1.TrsfrSum > 0 THEN '0'
    WHEN T1.CheckSum > 0 THEN '0'
    WHEN T1.CreditSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T2.SumApplied
    END AS 'CreditSum',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.TrsfrSum - T1.TrsfrSum
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END  'Paid To Date',
    T1.JrnlMemo
    FROM OINV T0
    LEFT JOIN ORCT T1 ON T0.ReceiptNum = T1.DocEntry
    LEFT JOIN RCT2 T2 ON T1.DocNum = T2.DocNum AND T0.DocEntry = T2.DocEntry
    Left Join OSLP T3 ON T3.SlpCode= T0.SlpCode
    WHERE DateDiff(D,T0.DocDate,GetDate())=0
    ORDER BY T0.DocDate, T1.DocDate, 'CreditSum', 'CheckSum', 'CashSum', 'TrsfrSum', 'AR Sum'
    Edited by: Won Gyu (Gerald) Lee on Feb 22, 2012 7:15 AM
    Edited by: Won Gyu (Gerald) Lee on Feb 22, 2012 7:15 AM
    Edited by: Won Gyu (Gerald) Lee on Feb 22, 2012 7:17 AM

    Hi Gordon,
    Thanks for reply and I've got your book which is being very helpful.
    I tried and it seems to shows multiple payment list, however, there are all same value in 'CashSum', 'CheckSum', 'CreditSum', 'TrsfrSum' columns.
    For example, if invoice link with one payment mean (cash:$10.00) then it shows like this.
    'CashSum', 'CheckSum', 'CreditSum', 'TrsfrSum'
            10.00                   10.00             10.00          10.00
    SELECT DISTINCT
    T0.DocDate as 'Posting Date',
    T0.DocNum as 'AR Invoice Number',
    T0.CardName,
    T1.DocDate as 'Payment Date',
    T1.DocNum as 'Incoming Payment Number ',
    T0.DocTotal as 'AR Invoice Total',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T0.DocTotal
    WHEN T1.TrsfrSum > 0 THEN T0.DocTotal - T0.PaidToDate
    WHEN T1.CashSum > 0 THEN T0.DocTotal - T0.PaidToDate
    WHEN T1.CreditSum > 0 THEN T0.DocTotal - T0.PaidToDate
    WHEN T1.CheckSum > 0 THEN T0.DocTotal - T0.PaidToDate
    ELSE T0.DocTotal
    END AS 'AR Sum',
    CASE
    WHEN T0.ObjType = 13 THEN 'ARIV'
    WHEN T0.ObjType = 14 THEN 'ARCR'
    ELSE 'N/A'
    END AS 'Doc Type',
    CASE
    WHEN T1.Series = 12 THEN 'IPAY'
    WHEN T1.Series = 15 THEN 'OPAY'
    ELSE 'N/A'
    END AS 'Doc Series',
    T0.ObjType,
    T1.Series,
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.TrsfrSum - T1.TrsfrSum
    WHEN T1.CheckSum > 0 THEN '0'
    WHEN T1.CashSum > 0 THEN '0'
    WHEN T1.CreditSum > 0 THEN '0'
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T2.SumApplied
    END AS 'TrsfrSum',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.CashSum - T1.CashSum
    WHEN T1.CheckSum > 0 THEN '0'
    WHEN T1.TrsfrSum > 0 THEN '0'
    WHEN T1.CreditSum > 0 THEN '0'
    WHEN T1.CashSum > T0.DocTotal THEN T2.SumApplied
    ELSE T2.SumApplied
    END AS 'CashSum',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.CheckSum - T1.CheckSum
    WHEN T1.CashSum > 0 THEN '0'
    WHEN T1.TrsfrSum > 0 THEN '0'
    WHEN T1.CreditSum > 0 THEN '0'
    WHEN T1.CheckSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T2.SumApplied
    END AS 'CheckSum',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.CreditSum - T1.CreditSum
    WHEN T1.CashSum > 0 THEN '0'
    WHEN T1.TrsfrSum > 0 THEN '0'
    WHEN T1.CheckSum > 0 THEN '0'
    WHEN T1.CreditSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T2.SumApplied
    END AS 'CreditSum',
    CASE
    WHEN T1.JrnlMemo = 'Cancelled' THEN T1.TrsfrSum - T1.TrsfrSum
    WHEN T1.TrsfrSum > T0.DocTotal THEN T0.PaidToDate
    ELSE T1.TrsfrSum
    END  'Paid To Date',
    T1.JrnlMemo
    FROM OINV T0
    LEFT JOIN ORCT T1 ON T0.DocNum = T1.DocNum
    LEFT JOIN RCT2 T2 ON T0.DocEntry = T2.DocEntry
    Left Join OSLP T3 ON T3.SlpCode= T0.SlpCode
    WHERE T0.DocDate = [%0]
    ORDER BY T0.DocDate, T1.DocDate, 'CreditSum', 'CheckSum', 'CashSum', 'TrsfrSum', 'AR Sum'

  • How do I remove a credit/debit card from my account? I ask because I currently have a VISA gift/debit card with 50 dollars on it, but the money has run out so I want to usea new card. Also, there is no 'None' check option for payment type on my account.

    How do I remove a credit/debit card from my account? I ask because I currently have a VISA gift/debit card with 50 dollars on it, but the money has run out so I want to usea new card. Also, there is no 'None' check option for payment type on my account.

    Depending on how you created your account, "None" may or may not be an option. I believe it has something to do with whether the account was made through an App Store request or the regular iTunes Store. For example, my account allows no card but my father's doesn't allow there to be no card.
    To change the card, go to your account settings and change the information to your new card, and hit save.

  • I can't download from app store apps. if i try then open account and ask me shange payment type because there is a billing problem with a previous purchase. I download one game 0.99 and nothing more! help me. How can i contact with apple?

    I can't download from app store apps. if i try then open account and ask me shange payment type because there is a billing problem with a previous purchase. I download one game 0.99 and nothing more! help me. How can i contact with apple?

    Click here and ask the iTunes Store staff for assistance.
    (102938)

  • Custom components that accept multiple data types

    The components that come with Flex, such as Datagrid, can
    accept
    multiple data types as a data source. For instance, you can
    bind a
    Datagrid to XML return from an HTTPService request or you can
    build an
    array and bind to that. I'd like to build my own component
    that does
    something similar, but I can't find any examples of this. I
    don't
    really even know what terms I'd search under to find it.
    Can anyone out there give me any idea of how this is done?
    Also, I'm a
    bit hazy on how the column definitions you set up in the MXML
    tag get
    received inside the class. I'd appreciate any insight on how
    this
    works.
    Thanks;
    Amy

    "Amy Blankenship *AdobeCommunityExpert*"
    <[email protected]>
    wrote in message news:[email protected]...
    >
    > "rvollmar" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> For the second part of your post, are you asking how
    to set up columns in
    >> ActionScript? e.g.
    >>
    >> private function setColumnConfig1(dg:DataGrid):void{
    >> colArray = new Array();
    >> var col1:DataGridColumn = new DataGridColumn();
    >> var col2:DataGridColumn = new DataGridColumn();
    >> var col3:DataGridColumn = new DataGridColumn();
    >> var col4:DataGridColumn = new DataGridColumn();
    >> var col5:DataGridColumn = new DataGridColumn();
    >> var col6:DataGridColumn = new DataGridColumn();
    >>
    >> col1.dataField = "recordName";
    >> col2.dataField = "image";
    >> col3.dataField = "recordAmount";
    >> col4.dataField = "who";
    >> col5.dataField = "where";
    >> col6.dataField = "when";
    >>
    >> col2.itemRenderer = application.ImageRenderer;
    >>
    >> colArray.push(col1);
    >> colArray.push(col2);
    >> colArray.push(col3);
    >> colArray.push(col4);
    >> colArray.push(col5);
    >> colArray.push(col6);
    >>
    >> dg.columns = colArray;
    >> }
    >>
    >> Or were you wondering, when one writes this in mxml:
    >>
    >> <mx:columns>
    >> <mx:DataGridColumn ...>
    >> ...
    >> </mx:columns>
    >>
    >> how do you then have the control use that
    information?
    >
    > The latter. But the fact is that I was misreading the
    example I was
    > looking at.
    >
    > <?xml version="1.0"?>
    > <!-- dpcontrols/DataGridSimpleAttributes.mxml -->
    > <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml">
    > <mx:DataGrid>
    > <mx:ArrayCollection>
    > <mx:Object Artist="Pavement"
    > Album="Slanted and Enchanted" Price="11.99" />
    > <mx:Object Artist="Pavement"
    > Album="Brighten the Corners" Price="11.99" />
    > </mx:ArrayCollection>
    > </mx:DataGrid>
    > </mx:Application>
    > I was thinking the ArrayCollection was going to the
    columns, but of course
    > it is the dataProvider. Am I right in thinking that
    internally the
    > control has a defaultProperty metatag that enables the
    contents of the
    > parent DataGrid tag to just come in and populate the
    dataProvider through
    > PFM?Thanks;Amy
    OK, I have looked at the source file, and it looks like the
    [DefaultProperty] metatdata tag is at least not used in the
    ListBase.as
    class. So I am guessing it is either higher or lower in the
    heirarchy...?
    -Amy

  • My iCloud storage payment is going to be going through is 7 days but the card on file needs to be changed. How do I change he payment type?

    My iCloud storage payment is going to be going through is 7 days but the card on file needs to be changed. How do I change he payment type?

    Welcome to Apple Support Communities
    To change your payment, read > http://support.apple.com/kb/ht1918

  • Single invoice for multiple payment terms

    Hi Friends,
    I have given 2 different payment terms for 2 line items in single order and the billing is splitted due to this reason. I want to know where the system is checking this control. Because I want to create single Invoive even the payment terms are different. (The routine 003 under Data VBRK/VBRP in SO to Bill copy controls will be usefull only to create single Invoice for multiple SO's where the payment terms is same). But I need to create single Invoice even for multiple payment terms.
    Can anyone suggest me at the earliest please.
    Kumar

    Hi Kumar,
    The Billing Split is take care at Copy control level.
    For multiple line items in one single SO, with different Payment terms is not acceptable as per the  business logic and its not best practices.
    Please suggest the business to go on Split method only.
    Or
    Try to use Proforma Invoice Concept.
    Regards
    Srini

  • With Pages 5.2 how can i use multiple language types in a single document

    My Macbook Air Has the version 10.9.3
    I'm used to work with the old version of Page.
    But now I am using the new version of Pages 5.2 (1860).
    I want to know with the new version how do I use an multiple language types in a single document option.
    In the old  version of Pages I was using  Inspector -> Text -> "More" tab -> Language: British Inglese.
    In the new Pages 5.2 I do not know how to do it
    Could you help me?
    melo

    It's not possible to tag text with multiple languages in Pages 5.  Go back to Pages 4, which should still be in you iWork folder.
    For the whole doc in Pages 5, use Edit > Spellling and Grammar > Show Spelling and Grammar.

  • How to add a new payment type

    Hi,
    We need to add a new payment type in Oracle Applications 11i and I could not find the required setup steps. The Form Name is : APXPAWKB
    The user's navigation is as follows:
    Payables super user responsibility->Payments -> Entry ->Payments:Type:
    There is a LOV with Manual, Quick and Refund and we need to add a fourth one as Elses.
    How can we do this?
    Thank You...

    Hi,
    You cannot define a payment type as that is based on a lookup defined under the navigation Setup>lookup>Payables.
    This look up access level is System whihc implies it does not allow user level values to be defined.
    So you have to use the available payment types,
    Thanks
    Manish Jain.

  • HT1918 I do not see None option in the payment type section. Please help to remove my credit card information from apple account.

    I signed into my apple account by iTunes and try to remove credit card information. However, I do not see None option in the payment type section. Please help.

    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • View for multiple Content Type List

    Hello
    I have a SP list with multiple Content types.
    i want add a kind of view for the list that have diffrent content types for the some item/record.
    it means that every time someone edit this item and change/add diffrent data in diffrent contant type
    is there any way to do that?
    or there is a way to add the Content type dropdown list in Display view and not just in Edit view? can i do it in SP Designer?

    Hi Avinoam, do you have access to InfoPath? You can do what your asking with that program.
    cameron rautmann

  • Multiple Display Types in a single column

    I have a situation where I have to display a bunch of attributes for a customer. Each attribute can have a different type, Text, Dropdown, Date etc and that information is stored in a table.
    I was able to use apex_item to display the different display types based on the type of attribute.
    So the layout of the form has 2 columns, column 1 is the name of the attribute and column 2 is the value of the attribute (displayed as the various types of date, text, dropdown etc) However, I am having an issue with the Date popups. When I select a date it always goes into whatever date is listed first. No sorting is going on in the select or the report.
    I'm guessing my issue has to do with displaying different display types in the same column? If that is true, how should I change my approach to this problem? I want all the attributes on a single page, so is my only option to have each attribute in a different region?
    Thanks,
    -- Johnnie

    Denes,
    OK thanks for the heads up, let me try to clarify.
    My problem is that I have multiple date popups on the same form. When I pick a date for any of the date popups, it always updates the first date popup field on the form. I stated there was no sorting at all because this thread indicated that sorting could cause this issue:
    DATE_POPUP
    Another hit for this issue was here:
    Re: HTMLDB_ITME.DATE_POPUP problems
    This suggested that having multiple data types in the same column (which is what I am doing) is not supported, but this is an old thread.
    My form will be a manual tabular form. I need to display a list of attributes, however some are freeform text, some are SQL LOV dropdowns, and some are date popups. Right now they are all displayed in the same column. Could this be causing my date popup issue? If so what alternatives do I have?
    Screenshot of my form here: http://johnniebillings.googlepages.com/outlook.jpg
    Hope that clears up the issue I am having.
    -- Johnnie

Maybe you are looking for

  • Jsp maintenance problem

    Greetings... There are some vendors(appx. 10, which is expected to increase in future) doing branding of their websites for our application. As part of this integration we need to provide them with header & footer html assets (html, javascript, css a

  • I am unable to sign in to apple tv.

    I am unable to sign in to apple tv. I am using the correct ID and password for sure because it's the same one that I needed to register for this forum as well as to access iTunes. All which of which I have been allowed to do. So why does my Apple TV

  • Illustrator files will open on originating computer, but not on networked computers

    I have a small creative dept who uses Illustrator CS5.1 v15.1.0. Each system has its own registered version of software. Computer one will create a file, save it and can open it fine. However, computer 2 and computer 3 can not open the file. We can s

  • Resetting MacBook Air to factory settings

    Hi, I wish to reset my MacBook Air to its original factory settings as I cannot get rid of this Java 3.16 update virus that stops me from streaming videos online.  I have already copied all my files to an external hard drive, so am not worried about

  • Looking for...

    Going on vacation soon and I will take the iPhone to take pictures, I'm looking for an app either with MobileMe, or anything else to upload pictures (full quality) for safe keep. Any ideas?