Regarding onetime vendor creation

Hi,
I want to know what is called one time vendor in SAP. Also if i create one time vendor, will system not allow to create other PO for that vendor? how to create one time vendor??
Regards,
Kalpesh

Hi,
suppose you order goods from a vendor with whom you usually do not place orders, because your main vendor was not able to supply the required items. In this case, you would use a "one-time vendor" master record.
In contrast to other master records, a "one-time vendor" master record is used for several vendors. The purpose of this is to avoid the unnecessary creation of an excessive number of individual vendor master records. For this reason, you may not store any vendor-specific data in a "one-time vendor" master record.
When creating a "one-time vendor" master record, you must assign a one-time account group. This account group determines that the vendor-specific fields are suppressed. You donu2019t need to enter this data until the time a purchasing document (e.g. a PO) is created.
When you create a purchasing document with a one-time vendor, you will be asked to enter the vendor address. Enter the vendoru2019s name and address.
Like all other master records, you can display, block, or delete one-time vendor master records.
Regards,
Prabu

Similar Messages

  • Error in Vendor Creation

    Hi,
    In Vendor creation , while  selecting  the Country as United States ( US) in Vendor address the following error message is displayed
    "Communication error with the external tax system (VERTEX_MS0018)
    Message no. TAX_TXJCD864 "
    How to solve this issue?????
    Regards,

    Hi,
    Check the following entries.
    OBCO   : Check the schema TAXUSX  (VERTEX Standard Jurisdiction Code)
    OBCP   :  Select the costing sheet TAXUSX, check the tax jurisdiction codes
    IMG>Financial accounting new > Financial accounting Global settings > Tax on sales/puchases >basic settings > External tax calculation.
    Take FI consultant help make necessary settings.
    Regards,
    Chandra

  • Vendor Creation ,Partner role OA not allowed for Vendor of a/c group ZLOV

    Dear Freinds,
    I am facing problem of  Vendor creation , i am getting message  PARTNER ROLE OA NOT ALLOWED FOR VENDOR OF ACCOUNT  GROUP ZLOV.
    While creation of  Vendor in Partner function  i  could not  enter  partner number, system is not accepting any data, message is getting as above.due to which i could not create any vendor.
    Presently I am in process/ setting of  ERS functionality in MM,
    now all my Vendor creation is stuck up ,
    please help me how to solve the problem
    Regards
    Dilip

    Hi Dilip,
    Check first have you Define Permissible Partner Roles per Account Group..
    Check the path:
    SPRO-Materials Management-Purchasing-Partner Determination-Define Permissible Partner Roles per Account Group
    Here check whether OA is assigned with ZLOV or not...If no then click on new entries and enter partner function as OA and Vendor account group ZLOV...Save nd come out...
    Now proceed...Hope it helps..
    Utsav

  • Bank details for onetime vendor

    Cant we maintain bank details for one time vendor any where?I want to make payment to one time vendors thru APP.
    Please help

    Hi,
    We cannot maintain Bankdetails for onetime vendor, since that is a control for onetime vendor.
    Thats why we will select different Account group for one time vendor.
    Since it is a one time vendor system dont want to keep data in Database.
    Thats why we will give bank details while making payment.
    Regards,
    Hemanth.

  • Function module for offline  vendor creation.

    Hi Xperts,
    I have searched all threads but i didn't find it, plz help me its urgent,
    Is there a Function Module or BAPI for vendor creation. The BAPI_VENDOR_CREATE works online. I am looking out for an offline. This is for avoiding the use of BDC that we are currently using.
    thanx in advance
    Regards,
    Naresh.

    Hey whats up xperts............

  • Need Sample Code for Vendor creation using JAVA API

    Hi,
    I have a scenario like Vendor creation using <b>Java API</b>.
    1.I have Vendors (Main) Table.
    2.I have <b>look up</b> tables like Account Group.
    3.Also <b>Qualifier table</b>(Phone numbers) too.
    Could you please give me the sample code which helps me to create Vendor records using Java API?
    <b>I need Code samples which should cover all of the above scenario.</b>
    <b>Marks will be given for the relevent answers.</b>
    Best Regards
    PK Devaraj

    Hi Devraj,
    I hope the below code might solve all your problem:-
    //Adding Qualified field
    //Creating empty record in Qualifed table 
    //Adding No Qualifiers
    Record qualified_record = RecordFactory.createEmptyRecord(new TableId(<TableId>));
    try {
    qualified_record.setFieldValue(new FieldId(<fieldId of NoQualifier), new StringValue(<StringValue>));//Adding No Qualifier
    catch (IllegalArgumentException e2) {
    // TODO Auto-generated catch block
    e2.printStackTrace();
    catch (MdmValueTypeException e2) {
    // TODO Auto-generated catch block
    e2.printStackTrace();
    //Creating Record in Qualified table
    CreateRecordCommand create_command = new CreateRecordCommand(connections);
    create_command.setSession(sessionId);
    create_command.setRecord(qualified_record);
    try
    create_command.execute();
    catch(Exception e)
    System.out.println(e.toString());
    RecordId record_id = create_command.getRecord().getId();
    //Adding the new record to Qualifed Lookup value and setting the Yes Qualifiers
    QualifiedLookupValue lookup_value = new QualifiedLookupValue();
    int link = lookup_value.createQualifiedLink(new QualifiedLinkValue(record_id));
    //Adding Yes Qualifiers
    lookup_value.setQualifierFieldValue(0 , new FieldId(<FieldID of Yes Qualifier>) , new StringValue(<StringValue>));
    //Now adding LookUP values
    //Fetch the RecordID of the value selected by user using the following function
    public RecordId getRecordID(ConnectionPool connections , String sessionID , String value , String Fieldid , String tableid)
    ResultDefinition rsd = new ResultDefinition(new TableId(tableid));
    rsd.addSelectField(new FieldId(Fieldid));
    StringValue [] val = new StringValue[1];
    val[0] = new StringValue(value);
    RetrieveRecordsByValueCommand val_command = new RetrieveRecordsByValueCommand(connections);
    val_command.setSession(sessionID);
    val_command.setResultDefinition(rsd);
    val_command.setFieldId(new FieldId(Fieldid));
    val_command.setFieldValues(val);
    try
         val_command.execute();
    catch(Exception e)
    RecordResultSet result_set = val_command.getRecords();
    RecordId id = null;
    if(result_set.getCount()>0)
         for(int i = 0 ; i < result_set.getCount() ; i++)
         id = result_set.getRecord(i).getId();     
    return id;
    //Finally creating the record in Main table
    com.sap.mdm.data.Record empty_record = RecordFactory.createEmptyRecord(new TableId("T1"));
    try {
         empty_record.setFieldValue(new FieldId(<FieldId of text field in Main table>),new StringValue(<StringValue>));
         empty_record.setFieldValue(new FieldId(<FieldId of lookup field in Main table>), new LookupValue(<RecordID of the value retrieved using the above getRecordID function>));
    empty_record.setFieldValue(new FieldId(<FieldId of Qualified field in Main table>), new QualifiedLookupValue(<lookup_value>));//QualifiedLookUp  value Retrieved above
    } catch (IllegalArgumentException e1) {
    // TODO Auto-generated catch block
         e1.printStackTrace();
    } catch (MdmValueTypeException e1) {
         // TODO Auto-generated catch block
         e1.printStackTrace();
    //Actually creating the record in Main table
    CreateRecordCommand create_main_command = new CreateRecordCommand(connections);
    create_main_command.setSession(sessionId);
    create_main_command.setRecord(empty_record);
    try
         create_main_command.execute();
    catch(Exception e)
         System.out.println(e.toString());
    Thanks
    Namrata

  • Hi, regarding fixed vendor

    hi all,
      This is krishna, i have a problem regarding FIXED vendor , i need to fetch the fixed vendor from the EBAN table based on the purchase requistion no and purchase requistion item no, from the VBEP table,before saving of the sales order creation in VA01. i want the first item purchase requisition no and purchase requisition item no.but i'm getting the last item purchase order no in the structure EBAN,will there is any internal table like EBAN which hold the All the item purchase order no's and purchase requisition no,the user_exit which i'm using are save_document and save_document_prepare in include programme MV45AFZZ.

    Hi,
    u can check EKPO Table for getting PO No. and purchase requition line item
    Thanks

  • Vendor creation using bapi

    Hi experts,
    I am new to bapi concept I done vendor creation by using bdc and lsmw and now I want to create by using bapi can anyone send program code for creating so that I can go through it.
    thanks in advance,
    points will be rewarded,
    Srinivas.D

    hi
    I gone to the bapi function module for bapi_vendor_create etc but the problem their is no input parameters or tables so I am little bit of confused if any body has the code plz send me.
    Regards,
    SrinivasD

  • Vendor creation for different cities and different address in same city its

    hi all
                please go through my requirement bellow.
                    Problem of single Vendor with his presence in multiple cities. For e.g. a vendor ABC has office in Bangalore, Hyderabad and Chennai.
         Vendor is having multiple offices in a same city. For e.g. ABC may have 2-3 diff offices in Bangalore itself. Each of these offices may or may not be functionally similar
    Regards
    Ravi.

    yes i asked the same last week
    i got partner functions option,ok fine but for main vendor which partner roles i have to maitain in partner roles screen of vendor master
    ex:suppose my main vendor is 20000 and for my bangalore location i created one more vendor say20001,now in 20000 ,20001partner screens of vendor creation which functions i have to mention.
    Regards
    Ravi.

  • Reg. Vendor creation CIN details

    Dear All
    Even If I create new user the CIN details do not come in XK01 Vendor creation. Please help what setting to be done in user creation SU01
    Thanks
    Rajj

    Hii,
    Goto
    SPRO -> Logistics General -> Tax on Goods movement -> India -> Master Data -> Assign Users to Material Master Screen Sequence for Excise Duty
    1. Double-click User Screen Reference.
    2. Assign all users who need to see the excise duty information to the screen reference in the Vendor Master.
    In the creation mode or change mode you can find the CIN Details icon in the header screen
    Hope this clarifies
    Regards,
    Kumar

  • Onetime vendor - address is not copied into the purchase order ME21N

    Dear all,
    I have a issue about using onetime vendors, if I have entered a dummy address on the onetime vendor, this address is not copied into the prucase order when I create a PO for this vendor type.
    My problem is that we want to use the ME59 to create PO automatically for these onetime vendors but I get the message 06035 - Enter a address on the PO.
    So my question is if anybody can propose a solution for this.
    Best regards, LB

    >
    Lars Birk wrote:
    > Dear all,
    >
    > I have a issue about using onetime vendors, if I have entered a dummy address on the onetime vendor, this address is not copied into the prucase order when I create a PO for this vendor type.
    > My problem is that we want to use the ME59 to create PO automatically for these onetime vendors but I get the message 06035 - Enter a address on the PO.
    > So my question is if anybody can propose a solution for this.
    >
    >
    > Best regards, LB
    One time vendor can never hold vendor specific details i.e. vendor details and bank details. You cannot use a one time vendor for ME59, use regular vendor account instead for your requirement or enter the address manually at time of conversion as per the message.
    Edited by: Afshad Irani on Jul 13, 2010 1:34 PM

  • Vendor creation types

    hi guys can anyone tell me how many types of vendor creation?and tcodes

    Hi,
    The types of vendor  depends on customer business process and involved process. You can vendor types as Domestic Vendor,Import Vendor,Capex Vendor,Employees Vendor & One Time Vendor. Each type must have different vendor account group so as to also definitely different number ranges.
    You can create vendor in t.code: XK01 ( centrally). Also vendor can be created in t.codes: MK01(purchasing) & FK01( finance)
    For more check link for XK01:
    http://baylor-help.bcm.tmc.edu/content/create_vendor_master_-_xk01/qr_step/html/index.htm
    Regards,
    Biju K

  • Vendor creation using LSMW

    Hi All,
    I m  trying to do vendor creation in LSMW method using RFBIKR00 program,please any one guide me I strucked in 2 Maintain Source Structures after this cursor not moving to next radio button even though I done for next steps final it is not reading the data,pls help me out..
    Thanks n regds,
    sree.

    Hi
    Check these links..might prove useful
    [http://www.sapdb.info/wp-content/uploads/2008/08/lsmw.pdf|http://www.sapdb.info/wp-content/uploads/2008/08/lsmw.pdf]
    Regards
    Raj

  • How to setting in the onetime vendor and customer in AP/AR

    Hi
    how to create onetime vendor /customer in AP/AR .which t code can be used in posting and where the  vendor master level data filling and address and vendor name
    yps

    Mr Balaji,
    I am very much aware of It that F-53 will post against existing open item,
    My question is if a one time vendor say XYZ has submitted bill for Vehicle Hire Charges then
    what T-code i shall use to make entry.
    Please not that this is one time vendor.
    Regards,
    Alok Parida

  • Enterprise Service for Vendor Creation

    I would like to know whether there is any Enterprise Service for Vendor Creation in SAP. I have found out an Enterprise Service for the same -- SupplierERPCreateRequest_In. However this is an Asynchronous Enterprise Service.
    I need to know wheter we can create Vendor in SAP through any Synchronous Enterprise Service ?
    Thanks & Regards,
    Ashwinni S. Kadam.

    Hi Ashwinni
    I don't think there exist a synchronous enterprise service for the creation of vendors. Do you know if there is an enterprise service to do an update on a vendor? If an application is responsible for creating the vendors (like SAP MDM in a CMDM scenario) then the application of course can send updates on a vendor. Or is the scenario thought to be that you only create the inital vendor in MDM and then maintain it in for example SAP ECC?
    Br
    Göran
    Edited by: Göran Westin on May 24, 2011 2:30 PM

Maybe you are looking for

  • IPhone keyboard stops appearing

    I have an issue with the keyboard not responding. Use a UINavigationViewcontroller and have your drill-down page contain a UIScrollView with a UITextView as the subview. If you drill down and click to get the keyboard, you'll never be able to drill d

  • Help please, im having big problems enabling wifi sync

    Hi everyone, Im having problems enabling wifi-sync between my Windows PC (Windows 7 - iTunes 11.0.4) and my iPhone 4S (Running iOS 6.1.3) iTunes lets me check the box "Sync This Phone over WiFi" and when i click Apply - Then Sync the box stays checke

  • SQLplus in Oracle Client

    Hi, I tried to install an 11g oracle client in linux. As I've compared the files with the files when you install using the oracle instant client, I can see that they are almost similar. Now I've setup and tried to run sqlplus and it is working. I've

  • Some example to create an static page from WCM using templates

    Hi, I am new to Oracle WCM. I want to create a simple page with header, footer, side navigation and page content. Please can you provide me some examples from end-to-end creation of page? Thanks Neetu

  • How to uninstall Photoshop from my dead computer?

    Hello I have the CS3 license, that i can install on 3computers 1st : installed it on my home computer 2nd : i installed it on my laptop, but then my laptop died 3rd : so i installed it on another laptop. but this one died too so now i want to install