How to do advance payment against PO for this is there any T.code

Hello,
Lt's say for ex: Once Po is created how to pay the advance payment against PO to the vendor, for that is there any transaction code.
Once advance payment is made against PO, again system should not allow for ammendement
So like this to control the system what are the configuration settings need to be done please explain
Early action in this matter will be highly appreciated.

Hi,
Apply the user exit : EXIT_SAPMM06E_016
Following Logic can be use:
1. Validate the company code (BUKRS ) & Purchasing document type (BSTYP = F) from EKKO table for the Purchase order number (EBELN).
2. Check the entries for the Purchase order and the item number in the Purchase order history table ( EKBE) and also Validate if there is any down payment document exists (VGABE = 4)
3. If we find down payment doc in EKBE table then display the warning or error message as POP - UP by using functional module POPUP_TO_CONFIRM.
Step 1: Validate Company code and Purchasing Document type from EKKO table
Step 2: Check the Purchasing document history from EKBE table
Step 3: Check whether any down payment exists.
Step 4: Display popup message to user:
Use the function module u201CPOPUP_TO_CONFIRMu201D to display the below message u201CPo cannot be changed, Down payment already exists for this PO item u201D.
Edited by: redriver on Nov 27, 2011 10:06 AM

Similar Messages

  • Advance payment against Purchase order/Work Order: F-47

    Hi SAP Gurus,
    Our Client's requirement is as follows u2013
    Advance payment against Purchase order/Work Order:
    1. Advance should be PO/WO wise & not item wise.
    2. Advance should not exceed total PO/WO value.
    3. Advance against PO should include taxes & conditions maintained in PO/WO
    When I put the purchase order number along with the item number, it is taking into account the basic price for that specific item. This amount is excluding Tax.
    Actually the advance is given against the Purchase Order. So whether it is possible to
    1. Remove the mandatory filed of  Item number against the PO?
    2. Whether the amount of the advance should be inclusive of the Tax?
    Regards,
    Amit

    Amit kulkarni,
    For this requirement you have to do validation of the amount field for advance payment againest PO.
    i thiought this is only way to get your requirement
    May be this information is useful to you
    Regards
    Surya

  • How to configurel advance payment to vendor in  cash journal

    Hi,
    This is thiyagarajan,
    My client wants  to pay the advance to vendors through cash journal
    How to configure this one . its urgent please help me out..
    if u have any document pls send to my mail id   [email protected]
    Regards
    Thiyagarajan......
    91-9916082477

    Hi,
    Set up a new transaction for "Advance Payment to Vendor" in Cash Journal IMG.  The menu path in IMG is Financial Acct --> Bank Accounting --> Business transction --> Cash Journal --> Create, Change, Delete Business Transactions.  Transaction Code for this configuraiton activity is FBCJC2.
    Enter Company Code,  Business Transaction Type as "K" and Cash Journal Business Transaction as "Advance Payment to Vendor".  This will work if you are paying to Vendor from Petty Cash. 
    Check Receipt from Customer is supported if you take it in Cash Journal and then later deposit to Bank.  But check payment to Vendor should be handled trhough either automatic payment program or outgoing payment transaction.
    Pls reward points if you find this helpful.
    Regards,
    Chirag

  • How to configure advance payment process in sd and fi

    hi,
    sap gurus,
    how to configure advance payment process in sd an fi
    how it will trigger  from sd and fi.
    and the accounting entries is also needed
    plz help me on this
    regrds,
    balaji.t
    09990019711

    Hi
    As far as my knowledge goes, this has lot to do with FI configuration for Down payments.
    Regards
    Aravind
    Assign points if useful

  • Error Log -  Too many payment mediums created for this payment group

    Hi Experts,
    When I am doing payment to customers through T-code F110, I am able to clear the open item. But when we are executing the Payment medium - DME Administration, generate the Payment Advice and when we see the print preview of the Payment Advice in spool request, System is showing the following errors,
    "BFIBL02160               Too many payment mediums created for this payment group"
    "BFIBL02616               End of log for payment run 20120123 / NAA02 , NSD / 200"
    "This is line 1/column 45 on page 1"
    Message no. SP01R116
    Kindly help how to rectify the same
    Thanks in advance
    Regards,
    Nimish Agarwal

    Hi Nimish Agarwal,
    With reference to the error faced i.e. BFIBL02160 "too many payment
    mediums created for this payment group", please review the information
    provided in the long text of this error in detail.
    Please ensure that the orders are not carried out several times.
    Alternatively you can apply the optional usable message 166 (same
    class: BFIBL02), so that you can prevent creating duplicates in future.
    Please customize this message as an error so as to prevent the system
    from creating duplicate files. You can customize this message in OBA5.
    The message BFIBL02 160 always occurs, if you create more than one
    file for the same payment run, in order to warn you not to send the
    same file twice to the bank.
    The SAPFPAYM program does not create 2 files at once. But if you
    run this program more than once for the same payment run, more than
    one file is created. From the second run on you receive the error
    message BFIBL02 160. You can easily test it, by creating a new
    payment proposal and creating a new file with this proposal and
    SAPFPAYM. The first time you run this program you will not receive
    the message.
    Hope this clarifies.
    Kind Regards,
    Fernando Evangelista

  • How can I define an XML schema for this kind of XML

    Hi, There:
    I want to generate an XML file like:
    <customer>
    </customer>
    <transaction>
    </transaction>
    <customer>
    </customer>
    which have multiple customer elements and multiple transactions as well, and they can happen in mixed sequence. Can any one give me some idea about how can I create an XML schema for this kind of xml? (<xsd:complextype> <xsd:sequence> ) seems not work)
    Thanks in advance
    David

    Use a group then make it a choice, like this;
    <xs:element name="Parent">
    <xs:complexType>
    <xs:group ref="Group" minOccurs="1" maxOccurs="unbounded" />
    </xs:complexType>
    </xs:element>
    <xs:group name="Group">
    <xs:choice>
    <xs:element ref="OptionOne" type="xs:string" />
    <xs:element ref="OptionTwo" />
    </xs:choice>
    </xs:group>
    <xs:element name="OptionOne">
    <xs:complexType>
    <xs:attribute name="name" type="xs:string" />
    <xs:attribute name="Type" type="xs:string" />
    </xs:complexType>
    </xs:element>
    <xs:element name="OptionTwo">
    <xs:complexType>
    <xs:attribute name="name" type="xs:string" />
    <xs:attribute name="Type" type="xs:string" />
    </xs:complexType>
    </xs:element>
    This allows XML like this
    <Parent>
    <OptionTwo ........ />
    <OptionOne ........ />
    <OptionTwo ........ />
    <OptionOne ........ />
    <OptionOne ........ />
    </Parent>
    HH

  • DMEE error (Error Log -  Too many payment mediums created for this payment group)

    Hi Experts,
    Please see the below error while generating the DMEE file.
    Error Log -  Too many payment mediums created for this payment group
    Error is - Too many payment mediums created for this payment group
    Please explain how to resolve this error.Send detail documentation how to rectify this error
    Regards
    Sreedhar

    Hi Nimish Agarwal,
    With reference to the error faced i.e. BFIBL02160 "too many payment
    mediums created for this payment group", please review the information
    provided in the long text of this error in detail.
    Please ensure that the orders are not carried out several times.
    Alternatively you can apply the optional usable message 166 (same
    class: BFIBL02), so that you can prevent creating duplicates in future.
    Please customize this message as an error so as to prevent the system
    from creating duplicate files. You can customize this message in OBA5.
    The message BFIBL02 160 always occurs, if you create more than one
    file for the same payment run, in order to warn you not to send the
    same file twice to the bank.
    The SAPFPAYM program does not create 2 files at once. But if you
    run this program more than once for the same payment run, more than
    one file is created. From the second run on you receive the error
    message BFIBL02 160. You can easily test it, by creating a new
    payment proposal and creating a new file with this proposal and
    SAPFPAYM. The first time you run this program you will not receive
    the message.
    Hope this clarifies.
    Kind Regards,
    Fernando Evangelista

  • HT1766 When I setup my new iPhone 5c I inadvertently entered wrong email address for apple id.  I cannot verify the email sent.  I have a new apple id, but can neither use nor delete the iCloud account.  How do I get an iCloud account for this phone?

    When I set up my new iPhone 5c I inadvertently used wrong email for setting up my apple id.  I have since setup an id with correct email, but cannot verify the first account.  I cannot delete it either.  How can I get an iCloud account for this phone?

    You said "have since setup an id with correct email, but cannot verify the first account.  I cannot delete it either. ".
    Why can't you verify it?
    Do you not receive the verification email address?
    If problem contact iTunes by:
    http://www.apple.com/support/itunes/contact/

  • The bookmarks toolbar is there but has no item buttons on it. How do I get the items back for this toolbar? Also would like to know if the toolbars can be put on the same line to make more room on the page (drag & drop) ??

    The bookmarks toolbar is there but has no item buttons on it. How do I get the items back for this toolbar?
    Also would like to know if the toolbar can be put on the same line to make more room on the page (drag & drop) ?? Like the menu & bookmarks toolbar could/should fit on same line. This would add more page view...
    Floyd Perry
    Thanks

    Check that you still have the "Bookmarks Toolbar items" placed on the Bookmarks Toolbar
    * Make sure that you have the "Bookmarks Toolbar" visible: "View > Toolbars"
    * Check in "View > Toolbars > Customize" that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    * If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the Customize window onto the Bookmarks Toolbar
    * If you do not see the "Bookmarks Toolbar items" then click the "Restore Default Set" button
    You can only move the content from a toolbar onto other toolbars if all toolbars support that feature. You need to check that in the options of each toolbar.

  • How do i get a list of all Roles defubed under a particular OrganizationalUnit? How can i use LDAPConnection.search method for this?

     

    Sorry for the typographical mistake.
    Please read the question as:"How do i get a list of all Roles defined under a particular OrganizationalUnit? How can i use LDAPConnection.search method for this?"

  • When I try to sync my ipad using itunes I get the following message. This iPad cannot be synced. You do not have enough access privileges for this operation. Any ideas how this can be resolved?

    When I try to sync my ipad using itunes I get the following message. This iPad cannot be synced. You do not have enough access privileges for this operation. Any ideas how this can be resolved?

    See if the user tip helps: https://discussions.apple.com/docs/DOC-6562

  • I lost my serial number for photoshop elements11 and premiere elements 11 combo.  how can I obtain a serial number for this program?

    I lost my serial number for photoshop elements11 and premiere elements 11 combo.  how can I obtain a serial number for this program?

    If you registered the software you should be able to find the serial number thru your Adobe account online.
    To locate the serial number:
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • F110 -Too many payment mediums created for this payment group

    Hello Gurus,
    Am getting below error after executing payment run F110.
    BFIBL02160               Too many payment mediums created for this payment group
    BFIBL02616               End of log for payment run 20140409 / DPA04 , PE1 / 500
    We are not able to see the Payment advice note in the spool request.
    Can you please share your ideas to resolve the issue
    Thanks in advacne

    HI,
    Please let us know for account like vendor , customer  you running the payment advice.
    check if the customer ,vendor document  is posted or not.
    which customer, vendor number you had maintained in the f110 .
    check that before you run it.
    else.. create new document  and start run the payment.
    for single document fi you try  more than once it will give the above error.
    and also the check the program and variant as well.
    let me know any corrections.
    thanks.

  • I want to block a number from calling and message me but how do i do this is there any app avalible for this

    I want to block a number from calling and message me but how do i do this is there any app avalible for this

    Sadly, as Call Bliss uses the built in Do Not Disturb feature, it requires that your screen be locked in order to function.
    I'm hoping (and have submitted feedback) that Apple will beef up DND to work even when the screen isn't locked.

  • How much do you get paid annually for this job User Interface Designer?

    how much do you get paid annually for this job User Interface Designer?

    Apple probably will not discuss salaries even for specific jobs other than with applicants. If you wish to discuss salaries, you'll most likely have to apply for a specific position and then get beyond the initial screening.
    This issue has nothing to do with Apple Remote Desktop, the topic of this forum, by the way.
    Regards.

Maybe you are looking for