Vendor as customer ( clearing with customer field)

Hi
Iam customer number in control view of vendor master
i think nest i have to check the clearing with customer indicator, but iam not finding this field. help me out with the navigation for this field
chris

hi
If a vendor is a customer then you need to
i) First create a master for the customer
ii) Mention the name of the created customer in the master data of the vendor in the control view under Account Control in the Customer Field (LFA1-KUNNR)The customer number is used by the payment and dunning programs for clearing open items. For line item display, the link to the customer line items is established using this number.
If you require clearing between the customer and vendor, the following requirements must be met:
$ The customer number must have been entered in the corresponding vendor master record.
$ The vendor number must have been entered in the corresponding customer master record.
$ The fields "Clrg with vend." or "Clrg with cust." must have been selected in both master records.
Kindly let me know if it is useful
regards
kunal

Similar Messages

  • No customer found with customer number

    hello experts,
    In R/3 e-commerece when we try to create a order, we are not able to create the order, we get a message as
    No customer found with customer number
    Even the images are displayed.
    Please Help...................
    Thanks & Regards
    namitha

    hello Deborah Corsi,
    Thanks for immediate reply, Our backend system version is in kernel 700, we have not upgraded 701.
    could you let us know what is  Ehp4.
    Warm Regards
    Namitha

  • SAP ECO 5.0 B2B: No customer found with customer number

    Hello all,
    we´re using SAP E-Commerce for ERP 5.0 (SP9) with backend SAP ECC 6.0 EHP4.
    We have changed from SU05 to SU01 user concept. All existing SU05 users have been migrated to SU01. In SU01 (under references) for each SAP E-Commerce user the mapping (user <=> sold-to-party) has been set up as described in the online documentation.
    For example: SU01-User u2018500070u2019: Tx SU01 under 'references':   Obj.type u2018KNA1u2019 with key u2018500070u2019. A corresponding customer master record u2018500070u2019 can be found in the ERP system using transaction VD03.
    In the shopping basket maintenance the following error message occurs: u2018No customer found with customer numberu2019.
    In our testing system (SAP E-Commerce for ERP 5.0 (SP12) with SAP ECC 6.0 EHP0) everything is working fine. The problem only occurs in the customer ERP system (SAP ECC 6.0 EHP4).
    Thanks for your help in advance.
    Regards,
    AEV

    At the code there are some checks for the backend system. A normal ECC 6.0 gives there a version "700" back. If you have an ECC 6.0 with EHP4, that will give an other number back from backend system. I think "701".
    At the Source-Code of ecommerce, there is no check for 701... Add that to the sourcecodes and it will work.
    Example:
    if (r3Release.equals(RFCConstants.REL46C) ||
                        r3Release.equals(RFCConstants.REL620) ||
                            r3Release.equals(RFCConstants.REL640) ||
                                 r3Release.equals("701"))
    Im not 100% sure about this because i had the same problem in ISA 4.0, not ecommerce 5.0.

  • Clearing with customer & Vendor

    I have customer who is vendor and vendor who is customer.I have assigned customer no in vendor master and vice versa. I forgot to click the indication Clearing with cust/vend. I have posted the TRansactions now i Have ticked the Clearing with cust/ Vend.
    How to i Set off line item with cust and vendor .
    One more thing is in f-32 clear customer we can clear clearing doc. or we can clear open item also and sett off customer and vendor.
    As per my knowledge if u do partial payment then my orginal Invoice wil show as open item and one more line item wil b generated with clearing document M I right? Is there any setting in ECC 6. through which partial payment will directly get cleared.
    plz need some input regardin clearing doucment
    I have tried but unable to come to conclusion
    thanks thanks a lot
    Regards
    Anamika

    Anamika
    The whole logic of having a partial item is that the open item will remain open until the whole amount is paid. There is no meaning in clearing it completely when there is a partial clearing. For the customer clearing, you select other accounts, select the vendor account and the account type K and clear the open items. Let me know if it helped.
    Karthik

  • Import procurment +custom clearance with custom clearance agents comparing

    hello SAP Guru
    can you please tell me how can I compair the custom clearance Vendor (or) agent  according to their price and how can i choose the best Custom clearance Agent for Import Procurement.
    if the Custom clearance actvity is a external service work,how can i complete the cycle with out service entry sheet.
    Any pls help out
    Thank you
    Sammeta

    HI,
    For comparing the vendor rates u can use the Quotation process by selecting item category K in quotation.
    But generally the imports scenario in India has 7 standard  conditions which are all Planned delivery cost.Where u do the MIRO
    first & MIGO next.Because u pay the customs & clearing agent first and then receive the material.So it is better to follow the
    standard SAP procedure.For this SAP notes are available how to create the standard conditions.
    murugan

  • General Ledger Account Custom Clearing - Implement Custom Algorithm

    Hi,
    We have a situation where we have a lot of entries that fall into a clearing account within the balance sheet.  These entries are currently being cleared manually, because to the best of my knowledge the Automatic Clearing Program F.13, cannot cater for the logic performed by the users manually clearing the account.
    The Entries in the clearing account do not simply conform to the criteria as defined in OB74.  I was wondering if anyone else has got any ideas no how we can implement a custom clearing routine with far more complex logic than F.13.  Will this likely be a custom ABAP program that i will need to write?
    Thanks,
    Steve

    ps has different tables and have different calculations done on them to extract the data, your best bet is to search help.sap for oco_om_nwa_1, nwa_2 extractor and go through the list on which extractor is brining in what. then create a cube or multiprivder to satisfy your need.

  • Using Custom Converters with Custom Components?

    Hi,
    I have written a Custom component. I wanted to attach Custom Converters and Custom Validators to this component.
    <custom:comp1 id="test" rendered="true" size="20" value="#{bean1.val}"/>
    I have written the following code in Custom Component class
    public class CustomComponent1 extends UIInput{
    public CustomComponent1(){
    super();
    setConverter(new CustomConverter());
    Converter converter = getConverter();
    if(converter == null){
    addValidator(new CustomValidator());
    @Override
    public String getFamily(){
    return "CCFamily";
    The Validator is working fine, but the converter is not. Please suggest.

    I have tried like this as well as we do for a standard component.
    <<faces-config.xml>>
    <converter>
    <description>
    Converter for credit card
    numbers that normalizes
    the input to a standard format
    </description>
    <converter-id>LongConverter</converter-id>
    <converter-class>
    com.wellpoint.converter.CustomConverter
    </converter-class>
    </converter>
    <custom:comp1 id="test" rendered="true" size="20" value="#{bean1.val}">
    <f:converter converterId="LongConverter"/>
    </custom:comp>
    But, this also did not work for me. Please suggest.

  • Customer Clearing with additional open line item

    Dear All,
    Pl. consider the following scenario:
    A customer open line item is created wilth Billing Document/outgoing invoice. Alongwith this one more open line item is generated. Eg Accrued Sales Commission. Now, we need to clear this line item (with Accrued Sales Commission) alongwith the customer whenever the payment is received. We tried to look for enhancement/user exit, but  could not fine one.
    Can you pl. suggest the solution in SAP for the above scenario?
    Thanks & Regards,
    Raja

    Hi,
    If you manually clear customer open items then:
    1) Execute t-code F-32;
    2) Enter customer account, company code and other required fields;
    3) Press "process open items" button;
    4) Press "Res. items" tab;
    5) Select line items that you want to clear;
    6) Simulate it;
    7) Post the document;
    Residual payment  means it clears the  invoce amount for incoming payment.and ceate  line time for remaing outstanding amount.
    If you select "Part payment" tab then the payments that can be posted to an account without open items being cleared.orginal open items (credit invoice amount)and partly payment remains in open item category.
    Cheers!
    Martins

  • Writing a custom component with multiple fields.

    Does anyone have some pointers on writing a custom component that properly handles multiple input fields?
    An example usage might be as follows:
    Assume the following java classes:
    public interface Address {
        //... getters/setters for Address.
    public class Company{
        Address getAddress(){...};
    }The tag usage might be something like the following:
    <custom:address value="#{myCompanyBean.address}" />
    Extending UIComponentBase I can easily render the output and create all the needed input elements. I'm also able to properly retrieve the submitted values in the decode method. But I'm unsure how to handle the "UpdateModelValues" step. Do I simply over-ride processUpdates, or is there more housekeeping to be done?
    Thanks.

    I'm guessing that doing addChild inside createChildren causes an infinite loop.
    Why aren't you just doing this with MXML?  it would be a lot simpler.

  • Custom ItemRenderer with dynamic field associations?

    Hi All,
    I'm trying to create a custom itemrender control that isn't tied to a specific type of data input. I'm creating a thumbnail itemrenderer to be used with the Sparks List control:
    <?xml version="1.0" encoding="utf-8"?>
    <s:ItemRenderer
    xmlns:fx="
    http://ns.adobe.com/mxml/2009" xmlns:s="
    library://ns.adobe.com/flex/spark" xmlns:mx="
    library://ns.adobe.com/flex/mx" autoDrawBackground="
    true"
    >
    <s:layout>
    <s:BasicLayout/>
    </s:layout>
    <mx:Image left="
    5" right="
    5" bottom="
    25" top="
    5" id="
    img_thumbnail"source="
    {data.image}"
    />
    <s:Label
    left="
    5" right="
    5" bottom="
    5" verticalAlign="
    middle" textAlign="
    center" id="
    lbl_label" fontWeight="
    bold" fontSize="
    10"text="
    {data.label}"
    /></s:ItemRenderer>
    However, as you can see, the image source and label text properties are tied to specific fields in the data collection (image and label). I would like to provide a way to figure out what the label and icon fields are set to in the parent control, and set them accordingly in the itemrenderer. This should allow me to use the same itemrenderer with different objects, as long as they have a text and image property.
    Any ideas? Thanks

    After doing some research, I found my answer:
    1) The data object is the current item which the List component is populated with. You can access any properties of the object using it. (Not what I'm looking for here.)
    2) You can access the label property set by the labelField or labelFunction properties of the list control in the item renderer simply using this.label. This is exactly what I was looking for.

  • How do I make a Custom DataTip with Custom ItemRenderer

    I can't seem to find any documentation or examples of
    displaying a dataTip (similar to those used with charting) with my
    custom itemRenderer (mxml component). This is for use in a
    dataGridColumn. I Could someone give me an example? The closest
    I've been able to find is
    http://www.mail-archive.com/[email protected]/msg61624.html,
    which doesn't say how to do it.
    Thanks!

    http://blog.bigfatstogie.com/?p=42
    run the example towards the end of the page

  • JTree custom DefaultTreeCellRenderer with custom DefaultMutableTreeNode

    Is there a way to create my own version of DefaultTreeCellRenderer that does not use DefaultMutableTreeNode? I tried copying an example of a custom DefaultTreeCellRenderer but I can’t cast the "value" in getTreeCellRendererComponent() to my own version of DefaultMutableTreeNode.
    From the looks of the documentation below shouldn't I be able to do that?
    Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus)

    oops,
    I found out why. I created my custom DefaultTreeCellRenderer before I populated the root node with my DefaultMutableTreeNode. So I guess, java went with the default. When I created my custom DefaultTreeCellRenderer after I populated the root node, everything worked.

  • Create custom folders with custom icons like created by Vibe

    I would like to create a custom folder and sub folder in the GW folder list to link to an outside feature. Ideally, it would display in a custom pane on the right like the email list, forum plugin or calendar view.

    You might want to have a look at Russ Ward's WS Utilities: http://weststreetconsulting.com/WSC_Utils.htm
    ImpGraph by the late Bruce Foster also did most of this, but is no longer available.
    Steve Kubis' AutoText may also provide part of the solution (custom sized Anchored Frames): see: http://www.siliconprairiesoftware.com/Products.html
    You can also create custom anchored frames on your Reference pages and then copy & paste from there. Automatically scaling an imported file to properly fit would require a custom FrameScript or plug-in - FM's auto-scaling on import may distort your graphic.

  • Create a Custom Component With Custom Shape

    Hi all,
             I want to create a Component that should have a CustomShape.
             I will explain this in detail ,Suppose now we have a Button, Button will be having some Rectangular Shape, But in my Case i dont want this    Rectangula Shape, I will be giving x and y positons Depending on that positon It has to form a Component.
             Any Help is Greatly Appreciated.

    Even if you use transparent images, you will still end up with a rectangular bounding box.
    You can use programmatic drawing and get a shape that does not involve a rectangle:
    http://livedocs.adobe.com/flex/3/html/help.html?content=skinning_6.html
    http://livedocs.adobe.com/flex/3/html/Drawing_Vector_Graphics_5.html
    http://livedocs.adobe.com/flex/3/html/help.html?content=Drawing_Vector_Graphics_4.html
    If this post answers your question or helps, please mark it as such.

  • Payment Run - Clearing between Customer and Vendor and Partner Bank Account

    Is there a way to have the bank details for the payment to be pulled from the vendor master if an outgoing payment is created or from the customer master if an incoming payment is created? Our requirement is to consider both vendor and customer items during payment processing.  In doing so, if the net of the clearing between the customer and vendor account results in an incoming payment, we want to use the bank details specified from the customer and if the net results in an outgoing payment, we want the bank details on the vendor master to be used.
    As such we tick the box on Vendor master to clear with customer and tick the box on Customer master to clear with Vendor.  We have defined 2 payment methods and entered both payment methods on both the customer and Vendor.  We have also entered the different bank accounts on the payment transactions tab of the vendor and customer masters. 
    It seems regardless of resulting payment method chosen, the bank details are getting pulled from the vendor master.

    Hi,
    It is possible without any doing any kind of config or master data changes
    While doing F-53, after entering all the required data in open item selection screen, after getting vendor open line items, go to menu item edit->select more.
    There enter account type as D and company code (customer account no's comp code) and click on process open items
    So you can choose the line items from the other company code's customer also.
    Thanks,
    Srinu

Maybe you are looking for

  • CAVS Integration error | The process was with ESB Routing services

    Hi All, We tried configuring the CAVS to integrate with simulator. When we execute the test case, we are getting the below error: Scenario is : 1. Created the Requester ABCS in ESB and it is been routing the message to EBS canonical. 2. Provider ABCS

  • Data error _ Beginner_flat file upload

    Hey there,   I am a beginner and am trying to upload a flat file. My Info objects are Material Id, Material Name , Price[keyfigure]. Material Id will have Material Name and Price as attributes and is With Text. For the Keyfigure, Price, I have select

  • WEB DYNPRO ALV GRID : CELL CONTENT - Initial Value

    I created a sort of 'Timesheet' in web dynpro... Unfortunatly, for all days of the month it displays '0.00' as initial value... Is it possible to not display this initial value or display space/empty ? In gui alv it is possible, I don't know if it co

  • Premiere Elements 4.0 stops working when adding a title

    Whenever I add a title, it quickly goes to "Adobe Premiere Elements.exe has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available" What to do? Thank you in ad

  • Discussion service unavailable

    I config oam with webcenter successfully. I wanna config discussion service connection at /em take the following url as reference. http://download.oracle.com/docs/cd/E12839_01/webcenter.1111/e12405/wcadm_services.htm#CHDGAICG I've checked all my step