Message no. F2042 - Vendor blocked

SAP Gurus
While changing the vendor ( XK02), getting the error massage - Message no. F2042 - that the vendor has been blocked by the user " 49EFD47882F86D26E100000022E2E108"
This is not a user number still searched for an entry in table BUT000.
something may be wrong on partner function side or business partner side.
please help !
sachin

SAP Gurus
While changing the vendor ( XK02), getting the error massage - Message no. F2042 - that the vendor has been blocked by the user " 49EFD47882F86D26E100000022E2E108"
This is not a user number still searched for an entry in table BUT000.
I can not see a lock on this record in SM12, the user (49EFD47882F86D26E100000022E2E108) in the message is not a user that is found in SU01D.
I do not see a lock on the vendor too 
Something may be wrong on partner function side or business partner side.
please help !
sachin

Similar Messages

  • Vendor blocked (Help required)

    Hi Friends,
    I want to change one vendor master record. When I go to XK02 to change. It is giving error message Account 123456(Vendor number) is currently blocked by user ABCD(user id)(Message no. F2042). I logged out of the system and again trying the same. No screens are open for that vendor.
    Can anybody quickly help me?
    Thanks,
    Bhairav

    hi
    pls go to t.code sm12 and delete lock entries and try to do the same
    Thanks
    phaneendra

  • Vendor block on goods receipt

    When trying to do a goods receipt, i get a vednor block error message. I have checked the vendor master.. there are no blocks and i also checked the MP02 to see if there were any QI blocks... none. I am thinking this is the  QI inf record...
    Where else colud I check for a vendor block.
    Thanks in advance

    thanks for the response.
    But here is the solution i found out. The po's were created on the MPN part numbers and the vendor in tcode MP02 for this part number was different from the vendor on the PO.
    I was checking the blocks on the vendor on the PO, it was the vendor on the MPN number that need to be blocked

  • Vendor Blocked for Local Purchase Organization

    Hi,
    I have checked the vendor details in SRM and ECC. The vendor is not locked in SRM & ECC, still the User is getting the Error message that Vendor Blocked for Local Purchase Organization.
    Please suggest.
    Regards,
    Lovkesh

    Hello,
    To prevent a shopping cart being created with blocked vendors, you shall
    make an implementation in BBP_DOC_CHECK_BADI. This badi is called for
    each refresh of ITS screen. Here
    Call FM BBP_ITEM_GETDETAIL by supplying IV_DOC_GUID
    The FM will return among others a table E_PARTNER.
    select  the corresponding partner related to E_PARTNER from table BUT000
    Check weather the BUT000-XBLCK and E_PARTNER are matching
    If yes, Fill ET_MESSAGES with an error message.
    I hope this information help.
    Thanks and regards,
    Gaurav

  • Vendor Blocks in SRM

    Hi Guru's.
    Please can someone explain what system changes we need to make so that a errror message is displayed during Cart creation to tell user that a Vendor is Blocked. The message only appears on the PO screen and it is our requirement to make the user aware during the Cart creation process.
    Our vendor blocks are maintained in R/3 and sync'ed across to SRM 5.0
    Please advise.
    Thank you.
    Viju

    Hi Viju,
    You can check the table BUT000. Here if the field XBLCK is set then that indicates that the vendor is blocked.
    Now use the BAdI BBP_DOC_CHECK_BADI to generate the error message when you are trying to create the Cart.
    Do the coding under the object type BUS2121.
    Thanks,
    Pradeep

  • Vendors block list

    hi
    i need logic to develop vendors block list

    Hi,
      use the below code for vendor block list.
    REPORT ZMMUVEND NO STANDARD PAGE HEADING LINE-SIZE 70
    MESSAGE-ID ZM.
    **--  DATA DECLARATIONS
    DATA: V_PATH LIKE RLGRAP-FILENAME,
          V_MODE VALUE 'N'.
    **- INTERNAL TABLE DECLARATIONS
    DATA: BEGIN OF IT_DATA OCCURS 0,
          LIFNR(10),
          END OF IT_DATA.
    DATA: BEGIN OF BDCDATA OCCURS 0.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF BDCDATA.
    DATA: BEGIN OF IT_OUTPUT OCCURS 0,
          LIFNR(10),
          V_TEXT(70),
          END OF IT_OUTPUT.
    **-- SELECTION-SCREEN
      SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
      PARAMETERS: P_PATH LIKE IBIPPARMS-PATH OBLIGATORY.
      SELECTION-SCREEN: END OF BLOCK B1.
      PARAMETERS: P_CHECK AS CHECKBOX.
    AT SELECTION-SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_PATH.
      CALL FUNCTION 'F4_FILENAME'
           EXPORTING
                PROGRAM_NAME  = SYST-REPID
                DYNPRO_NUMBER = SYST-DYNNR
                FIELD_NAME    = 'P_PATH '
           IMPORTING
                FILE_NAME     = P_PATH.
    **-- START-OF-SELECTION.
    START-OF-SELECTION.
    **- Authorization Check
    AUTHORITY-CHECK OBJECT 'ZMMUVEND'
                ID 'ACTVT' FIELD '16'.
    IF SY-SUBRC NE 0 .
    MESSAGE E398(00) WITH TEXT-012.
    ENDIF.
    **- Read File
      PERFORM READ_DATA.
    IF P_CHECK IS INITIAL.
    **- Update the data
      PERFORM UPDATE_DATA.
    ENDIF.
    **-- TOP-OF-PAGE
    PERFORM WRITE_HEADER.
    **-- END-OF-SELECTION
    END-OF-SELECTION.
    IF  P_CHECK IS INITIAL.
    PERFORM WRITE_OUTPUT.
    ELSE.
    FORMAT COLOR COL_NORMAL ON.
    LOOP AT IT_DATA.
    WRITE:/1 '|',
           2 IT_DATA-LIFNR,
          14 '|',
          70 '|'.
    ENDLOOP.
    ULINE.
    ENDIF.
    *&      Form  READ_DATA
    FORM READ_DATA.
      CLEAR: V_PATH.
      MOVE P_PATH TO V_PATH.
      CALL FUNCTION 'WS_UPLOAD'
           EXPORTING
                FILENAME = V_PATH
                FILETYPE = 'DAT'
           TABLES
                DATA_TAB = IT_DATA.
      IF SY-SUBRC <> 0.
        MESSAGE E001 WITH TEXT-002.
      ENDIF.
    ENDFORM.
    *&      Form  UPDATE_DATA
    FORM UPDATE_DATA.
    LOOP AT IT_DATA.
    CLEAR: BDCDATA. REFRESH: BDCDATA.
    **- Block Vendors
    perform bdc_dynpro      using 'SAPMF02K' '0500'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-LIFNR'.
    perform bdc_field       using 'RF02K-LIFNR'
                                  IT_DATA-LIFNR.
    perform bdc_dynpro      using 'SAPMF02K' '0510'.
    perform bdc_field       using 'BDC_OKCODE'
                                  'UPDA'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-SPERM'.
    perform bdc_field       using 'LFA1-SPERR'
                                  'X'.
    perform bdc_field       using 'LFA1-SPERM'
                                  'X'.
    CALL TRANSACTION 'XK05' USING BDCDATA MODE V_MODE.
    CLEAR: IT_OUTPUT.
    IF SY-SUBRC = 0.
    MOVE IT_DATA-LIFNR TO IT_OUTPUT-LIFNR.
    MOVE TEXT-005 TO IT_OUTPUT-V_TEXT.
    ELSE.
    MOVE IT_DATA-LIFNR TO IT_OUTPUT-LIFNR.
    MOVE TEXT-006 TO IT_OUTPUT-V_TEXT.
    ENDIF.
    **- Vendor -  Mark for deletion
    CLEAR: BDCDATA. REFRESH: BDCDATA.
    perform bdc_dynpro      using 'SAPMF02K' '0500'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-LIFNR'.
    perform bdc_field       using 'RF02K-LIFNR'
                                IT_DATA-LIFNR.
    perform bdc_dynpro      using 'SAPMF02K' '0520'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-LOEVM'.
    perform bdc_field       using 'LFA1-LOEVM'
                                  'X'.
    perform bdc_dynpro      using 'SAPMF02K' '0520'.
    perform bdc_field       using 'BDC_OKCODE'
                                  'UPDA'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-LIFNR'.
    CALL TRANSACTION 'XK06' USING BDCDATA MODE V_MODE.
    IF SY-SUBRC = 0.
    CONCATENATE  IT_OUTPUT-V_TEXT TEXT-007 INTO IT_OUTPUT-V_TEXT.
    ELSE.
    CONCATENATE IT_OUTPUT-V_TEXT TEXT-008 INTO IT_OUTPUT-V_TEXT.
    ENDIF.
    APPEND IT_OUTPUT.
    ENDLOOP.
    ENDFORM.                    " UPDATE_DATA
    FORM BDC_DYNPRO USING PROGRAM DYNPRO.
      CLEAR BDCDATA.
      BDCDATA-PROGRAM  = PROGRAM.
      BDCDATA-DYNPRO   = DYNPRO.
      BDCDATA-DYNBEGIN = 'X'.
      APPEND BDCDATA.
    ENDFORM.
    FORM BDC_FIELD USING FNAM FVAL.
      CLEAR BDCDATA.
      BDCDATA-FNAM = FNAM.
      BDCDATA-FVAL = FVAL.
      APPEND BDCDATA.
    ENDFORM.
    *&      Form  WRITE_OUTPUT
    FORM WRITE_OUTPUT.
    FORMAT COLOR COL_NORMAL ON.
    LOOP AT IT_OUTPUT.
    WRITE:/1 '|',
           2 IT_OUTPUT-LIFNR,
          14 '|',
          15 IT_OUTPUT-V_TEXT,
          70 '|'.
    ENDLOOP.
    ULINE.
    FORMAT COLOR OFF.
    ENDFORM.                    " WRITE_OUTPUT
    *&      Form  WRITE_HEADER
    FORM WRITE_HEADER.
    FORMAT COLOR COL_TOTAL ON.
    WRITE:/2 TEXT-009.
    FORMAT COLOR OFF.
    FORMAT COLOR COL_HEADING ON.
    ULINE.
    WRITE:/1 '|',
           2 TEXT-010,
          14 '|',
          15 TEXT-011,
          70 '|'.
    ULINE.
    ENDFORM.                    " WRITE_HEADER
    if this code is useful to u please reward points.
    Regards,
    Koti

  • Information message for duplicate vendor check( message 144)

    Hello everyone, i am trying to configure information warning message in vendors. The configuration for this is SPRO-IMG-FA-AR/AP-vendor accounts-master data-preprations for creating vendor master data-change message control for vendor master data.
    I need to configure
    message: 144
    message text: vendors with the same address:check
    online:  I information message
    When i enter the new entry, i can see MsgNo 144 under the MsgNo but under "online" i need to use I: informational message but i dont see that option under there. I think i need to configure that message ( I: information message) under "online". Does why one know how to configure that? Any suggestions will be appreciated.
    Regards

    Hi there ,
    By default it will show Information message only.
    Why there is any need of changing anything?

  • Vendor block code for release order creation but no purchase order creation

    The client has a vendor block code which when applied to a vendor through vendor block screen should allow release order creations against existing contracts and ARC but it should not allow purchase order creation. However, it is allowing purchase order creation also. Can anyone tell how to achieve this selective treatment that allows RO creation against existing contracts and ARCs' but no PO creation.
    Are there any settings or configurations that have to be made in SPRO and other areas to achieve this.I would appreiate if anyone could give in a detailed and step wise solution.

    Hi
    Take out all the blocks on company code and purchasing organization in XK05.
    Only put block function as 01 (purchase order). It will not allow you to create purchase order but you can create contracts and release orders against contracts.
    Thanks
    Edited by: Praveen Raghavendra on Jan 8, 2009 2:30 PM

  • System message:Procurement of material&blocked for quality reasons(0006 883

    Hi Greetings!
    I have the following issue.
    I need to make the message "Procurement of material & blocked for quality reasons" as Error message . Message number - 00 06 883.
    This will not allow to create PO , if the "Blocking Function" - 02 "Block Request and Purchase order " is set in the QM info record.
    Even though i ahve set this message as "Error" in the configuration ( Materials Management --> Purchasing --> Define Attributes of System Messages), i am getting only warning message during PO creation.
    Can you please let me know if am missing any setting.
    Gobinathan G

    Dear sir,
    GO to material master of that item go to .. PURCHASING VIEW there is a Plant specific material status chk if that is 01- blocked for production 02- blocked for BOM chk and change it then system will allow you to purchase the parts.
    Kaustubh

  • Getting Error Message in Catch ALL block

    I want to get the error message in the CatchALL block
    Can anybody tell me the way how to catch the exception details in CatchALL block.
    Some of the exceptions are not caught by CatchALL.Can anybody tell me what are the limitations on CatchALL blcok.
    Regards
    V Kumar

    I have set an Set id and the issue has been sloved .. Thank you

  • Systems messages for park vendor invoice

    Dear Friends:
    We have systems messages for checking vendor reference document no in vendor invoice in development server and quality server. They are working fine.The error messages are display when the user tries to enter reference document no twice.
    However the same settings are not working in production client?
    Please advise how to reslove the issue?
    Regards
    MSReddy

    just move transport(s) to prod

  • Vendor block in SRM

    Dear experts,
    I currently do not have a system available, therefore I need an answer to a basic question:
    Which vendor blocks (Company code, Purchasing or both) do affect the visibility of the vendor in SRM in SRM 7.0 classic scenario?
    Appreciate your help.
    Cheers, T.

    Hello Toppika,
    Only vendor purchasing blocks (for all purchasing organizations or only selected purchasing organization) are relevant in SRM.
    No relation exist in SRM between supplier and company code (R/3 Posting block).
    Regards.
    Laurent.

  • HT4061 When I try to sync my Iphone to my computer , when I click on Icloud I get a message that acess is blocked from displaying content with security certificate errors.

    When I bring up Explorer and click on Icloud i get a message that access is blocked from displaying content with security errors

    The new iTunes has a somewhat different look from the previous version.  You can get the old look back if you prefer it by doing View > Show Sidebar in iTunes.  Or you can adapt to the new look.

  • Vendor blocking scenario in QIR-EWM Integration

    Hi ,
    We have the following scenario with QM and EWM Integration , So could you pleas let me know for any suggestions
    1. Create two materials for ex. 259 and 581 with same vendor with control key Z100
    2. Create a purchase order for both the materials 259 and 581  and create the inbound delivery for the same so that It passes to EWM…mean while the vendor loses license for one material i.e. 259
    3. Go to QI02 (T Code) change info record for 259 material and make it as total block
    4. Now the EWM shouldn’t post the document and it should give the error for quality
    5. Second material 581 should get posted without quality reasons
    Thanks
    Bala

    Sorry.. to the best of my knowledge, standard SAP checks on the vendor block ends at the PO creation and release.  You'll have to identify a user exit to check on the vendor block at GR in EWM.
    Craig

  • Messages saying firefox has blocked a site click to allow -

    When I purchase postage on line, at the time of payment I get a message saying Firefox has blocked this site and I click to allow but the message keeps coming back and then the payment for my order fails and I cannot print my postage. Is there something I can do to prevent this . I hae allowed pop upos on this site but it makes no difference.

    See:
    *Firefox/Tools > Options > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"
    The setting in "Tools > Options > Advanced > General" is meant as an accessibility feature, as you can see by the label of that section, so that people with disabilities or people who use screen readers do not get confused and is not meant as a safety protection to stop redirecting.
    See also:
    *https://support.mozilla.org/kb/Options+window+-+Advanced+panel#General_tab
    *http://kb.mozillazine.org/accessibility.blockautorefresh
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

Maybe you are looking for