Blocking one time vendor

All SAP Gurus,
I want to block one time vendor,
for that I have used MK05
Will blocking from MK05 is sufficient for blocking it completely, means no further invoices should be posted for this vendor.
Regards,
rajan

You can block the vendor by MK05 in following way
01) Lock purchase order
02) Block request and purchase order
03) Block quot.req., order and goods receipt
04) Block source determination
99) Total block
Its means only above mentioned function is possible as per your selection choice. It means PO can not be created. Once PO is not there then Logistics Invoice verification can not be done through MIRO with reference to PO.
But you can create Invoice for that vendor by selected "Vendor" as base instead of PO.
In nut shell vendor is blocked for above mentioned activity, not for Invoice. so you can do Invoice verification
Reward it suitably

Similar Messages

  • Block one time vendors for PO but allow for RFQ

    Hi Gurus,
    I want to use One time vendor records only for RFQ creation;but it should not be possible to create PO using those one time vendors.
    In case of regular vendors for RM/PM, quality info records in purchasing is active. But this is not the case of indirect purchases.
    Please help.
    Regards,
    krishna

    Hi,
    In XK05 transaction u have the option to block vendor for different application.
    U can block for Purchase order.
    Check in XK05 and block appropriately and check running the scenarios.

  • Block One-time Vendor Account Group

    Hello,
    I would like to block an One-time Vendor Account, but at the transaccion OMSG there is just the option to eliminate.
    Deleting the account group is the only choice or there is another way to make it?
    If I delete a one-time vendor account group, I would like to know what are the risks and advices to tell may customer.
    thanks,
    Kathia Tsuboi

    Hello,
    There is no blocking of option to one time vendor. It is used for a single time and no further use of this one time vendor account. When you create one time vendor, just an vendor account number gets created and when prepare transaction data like invoice, the one time vendor address gets filled in.
    I would NOT recommend to delete the one time vendor account group, they may result in invalidate your master data. Therefore, not to delete the vendor account group, but you should create alternative one time vendor account group, if the requirement insists.
    Regards,
    Ravi

  • Block Purchaisng screen for one time vendor acount group

    Hi Experts,
    Hope everyone is doing good.
    How can we block purchasing screen for one time Vendor account group.
    User requirement:
    He wanted to maintain only Accounting data for one time vendor but not purchasing data.Though I have suppressed all the Purchasing related fields in Screen layout for Vendor account group but still at the time of creation of one time vendor "create Vendor:purchasing screen is coming"
    Is there any option to suppress/Skip  this screen "Create Vendor:Purchasing Data" ?
    Regards,
    Uzair

    - Account group is just one of the four factors influencing the field status. (If all the fields are suppressed in a screen the screen will not appear during the creation of the VMR).
    - Company Code, Transaction Used and Purchasing Organization are otehr influencing factors.
    - Since the field status depend on several influencing factors, Link rules are necessary which determine the instance of the field status if different influencing factors have different effects.
    - Hide has priority 1, Display 2, Mandatory 3, Optional entry 4
    - Say for e.g. you want a field to be suppresses due to account group but a mandatory entry due to purchasing organization. Instance hide has the highest priority. If a field was suppresses by account group what was specified by purchasing organization becomes irrelevant.
    - Display overrides Required & Optional Entry
    - Required entry overrides Optional entry

  • One-Time vendors

    We'll soon be implementing the one-time vendor process but I have a potential audit issue.
    When the AP clerk enters the bank details of the one-time vendor via MIRO does anybody have a verification process to check that the bank details are correct.  As when we set up a normal vendor there is the confirmation process which is handled by a differnt user than the master data clerk.
    Many Thanks in advance

    I do not know of a standard SAP check on bank details for one-time vendors like there is for 'normal' vendors.
    What I probably would try is to automatically set a payment block on every invoice for the one-time vendor.
    I would try if this would work via a vendor specific tolerance (IMG: Materials Management / Logistics Invoice Verification / Incoming Invoice / Configure Vendor-Specific Tolerances) where the limits are checked, but the tolerance is 0.
    If this fails, you could try a BADI which sets a payment block on the invoice (IMG: Materials Management / Logistics Invoice Verification / Maintain Customer Exits and Business Add-Ins / Maintain Business Add-Ins for Invoice Verification) like BADI MRM_PAYMENT_TERMS.
    Regards,
    Andre

  • One Time Vendor

    Hi All,
    I am trying to work out whether there is any standard functionality in SAP that will aid the control of one time vendor usage for the following areas.
    1. During posting of an invoice against one time vendor account we would like to block the invoice automatically with a specific payment block so that the vendor details can have a second verifcvation.
    2. A standard reprot to show usage of one time vendors to identify if the same details are being repeatedly used as a one time vendor.
    Any assistance would be great.
    Thanks
    Chris

    Hi,
    there is no std block functionality avl for your senario. you can use the SAP std user exit and get this one done.
    Thanks,
    Suresh

  • Purchasing report for one time vendor

    Hi,
    I am using ECC 6.0
    What standard report is available to display purchase order, GR and invoice belonging to one time vendor (CPD account group) ?
    Thanks for your help.
    Kind regards,
    Yann

    Special GL transactions (like down payments) are not allowed for one-time vendors.  Please refer to the following SAP Note.
    https://service.sap.com/sap/support/notes/19638

  • Error message in case of One time vendor in MIR7 and MIR4.

    Hi,
    We have a requirement where we need to give a warning message when an invoice document is parked in case if it is a One time vendor and bank details are missing. It should be an error message if user is trying to save it as completed or posting the document. We have already found a BADI INVOICE_UPDATE method CHANGE_AT_SAVE for giving error / warning message but we also want the same to be appeared in the popup coming when we press Messages button in MIR4 screen same way as standard messages are shown. I know that there is a table T_ERRPROT which need to be populated in order to show the messages in the popup window but could not find any appropriate user exit or badi to populate this table. Any suggestion or solutions are welcomed.
    Thanks and Regards,
    Jaideep,

    Hi,
    in badi HEADERDATA_CHECK you have available as input parameter I_RBKPV.
    do something like:
    * If there is any error do not allow posting
        DATA: gt_errtab    TYPE TABLE OF mrm_errprot,
              gs_errtab    TYPE mrm_errprot.
        CONSTANTS:     c_errprot(23)   TYPE c VALUE '(SAPLMRMF)TAB_ERRPROT[]'.
        FIELD-SYMBOLS: <fs_errprotj_dt> TYPE table.
        ASSIGN (c_errprot) TO <fs_errprotj_dt>.
        REFRESH gt_errtab[].
        gt_errtab[] = <fs_errprotj_dt>[].
        DATA: c_okqx(17)   TYPE c VALUE '(SAPLMR1M)OK-CODE'.
        FIELD-SYMBOLS: <fs_okqx> TYPE ANY.
        ASSIGN (c_okqx) TO <fs_okqx>.
        IF NOT gt_errtab[] IS INITIAL.
          READ TABLE gt_errtab INTO gs_errtab WITH KEY msgty = 'E'.
          IF sy-subrc = 0.
            CASE <fs_okqx>.
              WHEN 'BU'. "POST
    * This is optional: you can either search for a particular message or
    * do not allow any error message
    * Here search for the message triggered in badi INVOICE UPDATE
                READ TABLE gt_errtab INTO gs_errtab WITH KEY msgty = 'E'
                msgid = 'ZXX' msgno = '030'.
                IF sy-subrc = 0.
                  CLEAR <fs_okqx>.
                  MESSAGE s030(zxx). "While errors exist document will not be posted
                ENDIF.
            ENDCASE.
          ENDIF.
      ELSE. "THIS IS THE NEW PART
       IF i_rbkpv-YOURBANKFIELD IS INITIAL. "This is the New part
            CASE <fs_okqx>.
              WHEN 'BU'. "POST
                  CLEAR <fs_okqx>.
                  MESSAGE s031(zxx). "Please fill in bank details
            ENDCASE.
       ENDIF.
      ENDIF.
    Best regards.
    Edited by: Pablo Casamayor on Jun 2, 2009 6:39 PM

  • FI doc post (IDoc FIDCCP02 - One Time Vendor entry)

    I am posting an FI document and entering a one time vendor. In segment E1FISEG, field HKONT I enter 'ONETIME' (one time vendor). In segment E1FISEC, I enter the one time vendor info. When I create the IDoc, I get error 'No account specified in item 0000000001'. Any idea where this account comes from? It works fine when I create an FI doc with a one time vendor using trans FB01 manually.

    Hi Ray,
    what's about struc. E1FINBU
    and field E1FINBU-LIFNR ?
    i think you do'nt fill E1FISEG-HKONT for vendor-line!
    regards Andreas

  • One Time Vendor Master

    Hi
    In one time vendor master data
    1. Can we get party-wise payment report at a later date without party code by just giving name of the party? If yes, party codes for one time payments are not required. 
    2.whether any payments are made to the party three years back. Can we check without party code?
    3.Service Tax department also regarding payments made to a certain party for the past 3 yeas. 
    Thanks
    Samson

    1. Can we get party-wise payment report at a later date without party code by just giving name of the party? If yes, party codes for one time payments are not required.
    You need to use the one time vendor party, there is no functionality getting reports with giving the name of the party.
    2.whether any payments are made to the party three years back. Can we check without party code?
    Refer answer for point 1. If you do not archieve the line items, then you can go back to any number of years to view the payment history.
    3.Service Tax department also regarding payments made to a certain party for the past 3 yeas.
    F.12
    S_ALR_87009909 Annual Tax Return (Belgium) >
    S_ALR_87009914 Annual Tax Return
    S_ALR_87009916 Annual Tax Return
    S_ALR_87009917 Annual Tax Return: Customers/Vendors
    S_ALR_87009918 Annual Tax Return: Customers/Vendors
    S_ALR_87012371 Annual Tax Return (Belgium) >
    S_ALR_87012376 Annual Tax Return
    S_ALR_87012378 Annual Tax Return
    S_ALR_87012379 Annual Tax Return: Customers/Vendors
    S_ALR_87012380 Annual Tax Return: Customers/Vendors
    Regards,
    Ravi

  • Duplicate one-time vendor check

    Hello Guys
    It's necessary to activate a check whether one-time vendor already exists in the system as usual vendor.
    I think such check can be performed either during PO creation while entering vendor address, or during invoice posting while entering bank details, tax code etc.
    So please advise if you have any ideas.
    P.S. VAT Reg No is not used in our country, instead we use Tax Number 1.
    Great thanks.

    Hello,
    For normal vendor you can maintain duplicate check in OBA5
    Application Area F2
    Message No.144 for Vendor and 145 for customer, making it as information.
    I really doubt there is such control for One time Vendor in the system.
    Regards,
    Ravi

  • Advance Payment to One Time Vendor

    Hi All,
    I want to make advance payment to One Time Vendor. But system generates massage that :Special G/L for such account is not defined".
    Awaiting for your reply.
    Thanx in advance

    The transaction other than A/P and A/R is called the special g/l transaction for ex: Bills of exchange, Interest payable , aqusition ,
    that needs to defined
    for example if we give any Advances ( either secured/unsecured/sundry deposits etc)
    A - Emp-Tour-Advance
    B - Emp-medical-Advance
    C-Unsec-Advances-Marketing Parties
    D-unsec-Advances-Govt Depts
    etc
    madhaw
    Assign points if it help

  • Report on one-time vendor

    Hello Experts,
    Is there a standard report or a way to get the payment information with address details on a one-time vendor account? As the addresses keep changing for this vendor account every time a check is printed for them, it is important to track the details. Any input is appreciated and rewarded.
    UV

    Hi UV
    In the payment proprosal and payment run you will see the details.
    Whe you run S_ALR_87012103 - List of Vendor Line Items  with option one time vendor you see the Name adresses, This is the information you fill in the posting!
    Paul

  • Vendor down payments for one time vendor

    Hi There,
    I am not sure why this is happening, but when we try and post a down payment to a one time vendor, it comes up with the error F5 265.
    When we do this for a normal Vendor it is OK.
    Has anyone come across this?
    Is there some special config required to activate one time vendors for Down payments?

    Special GL transactions (like down payments) are not allowed for one-time vendors.  Please refer to the following SAP Note.
    https://service.sap.com/sap/support/notes/19638

  • Print out of RFQ with One Time Vendor

    My customer wants print out of RFQs with one time vendor.
    As per my understandings as like other vendors this one time vendor data is not stored in any table.This data is in table ADRC. And for one time vendor no master data is there.I can see this one time address in particular RFQ.
    Now, my customer wants this one time vendor address to be printed in all RFQs.
    Is any body come across this scenario ever ?Please guide my it is urgent.
    With Best Regards,
    Rajesh

    Hi,
    The vedor(OTV or Regular vendor) will be decided after the price comparision only.
    Once the OTV (account group:CPD/CPDL) is finalised as the final vendor for procurement create a new vendor master record (With A/c group:0001) and maintain Inforecord and source list and create PO.
    Maintain all the conditions in the Inforecord from the quotations (you have the update info option from price comparision itself)
    regards,
    Kannaiah Naidu

Maybe you are looking for

  • My iPhone stuck on activation AFTER UPADATING AND FORCED RESTORE. and it say my apple id is not working to activate my phone, but i can access my apple id.

    My apple id says cannt activate my phone after trying so many times. And i tried to login my icloud account then it say my apple ID is valid but not an icloud account. Its sounds weird for me. How come my apple id is not vaild for an icloud? Im new i

  • SO_OBJECT_SEND Function Module

    Hello All, I am using this function module to send mails to the users. When i run the program that uses the function module its working fine and when i run the program in bacground its giving me a short dump saying The termination occurred in the ABA

  • Cost alocation and or distribution

    Hello Gurus, ive got a requirement to settle the spcific % of costs from one cost center and cost element into another cost element. These steps are done to calculate the primal cost of the workers months load. i.e. if we planned 1000 working hours,

  • Accepting Exchange 2010 Appointments with Outlook

    Accepting outlook appointment shows as accepted in outlook, but if iphone and ipad connect to the same exchange account it doesn't show up as accepted on the iphone. It does show as accepted on the iPad. If only the iphone is connected to the same ex

  • BugID:4845728 to be fixed

    BugID:4845728 Turning on Jar Caching causes a DownloadException Since this bug reported by F.R.Bank, the detail infos had not been disclosed by security reason. Therefore, fixing this bug into 1.4.2_08 is ceased for the moment without any other serio