Vendor Master- Mass change to set block function 02 for selected PurchOrg

Hello,
We are using SAP 4.7.
We want to do Vendor Master- Mass change to set block function 02 (T code- MK05 in block for quality reasons) for selected Purchasing Organizations to approximately 2000 number of vendors. I tried this using mass maintenance (T code XK99), but in this case block function of all purchasing organisations gets changed. We want it for certain purchasing organisations only. Kindly suggest the solution.
In case I have to go for a development can you please suggest any functional module/ BAPI?
Can I achieve this using mass maintenance functionality (XK99)?
Waiting for your expert openion,
Regards,
Milind Dumbre

Using the block function in XK05 will block the vendor for all purchasing organizations (as mentioned in the documentation of the field). What you can do is to use purchasing block for the selected purchasing organization.
The field is LFM1-SPERM, and this can be done via mass maintenance using XK99.
Hope this helps.
Regards,
Aroop

Similar Messages

  • Vendor Master Mass Change using E-catt

    Dear Gurus,
    We have almost 5000 Vendor Master records, now we need correct all FAX NUMBER field for all vendor, using E-catt functionally, can you please help, i havent explore to Ecatt.
    Thanks in Advance
    Regards
    RS

    Hi RS,
             Sure !!! you can change the FAX no of the respective 5000 Vendors by running ECATT variant Files in your system.
    First of all select out the variant file,which is maintaing the Vendor Master of your company.
    Out of the same,select the appropriate field FAX_NUMBER for maintaining the fax no & change all the nos & re-run the ECATT File in the system.
    JP

  • Vendor Master mass change

    Hello,
    I am changing the vendor master data in MASS / XK99 transactions. I am unable to find Street2 (STR_SUPPL1) field. Can you please advise in which way I can edit the field?
    Thanks

    Hello,
    The reason for this is OBD3, this field has been suppressed in field status.
    Go to OBD3
    Double click on Vendor Group on which your list of vendor fall under.
    Double click on General Data on Field Status
    Double click on Addres on Select Group
    Change the radio button from Supress to Optional Entry.
    Now try with LSMW.
    Hope this will help you.
    Regards,
    Ravi

  • Vendor Master Mass Upload or change T code

    Hi What is the Tcode for Vendor Master Mass Upload or change .
    Thanks
    Lekhram

    You can use T_code XK99 for mass maintainence ( changes) for Vendor mater data.

  • Vendor master data change confirmation -Report Y_CD1_39000398

    Hello All,
    In report  Y_CD1_39000398 we can see the confirmation pending for the Vendor master data changs. There are some entries which are pending since last 5 years becasue the chagnes are rejected. Is there is any possibility to remove this so that in this report we can get only relevant entries
    Thanks  & regards,
    Prashant

    Hi,
    I dont think it is the standard report. I think its a developed one as it is starting with Y. If so, then co-ordinate with your abaper and do the necessary changes to get the right result.

  • Vendor master data changes

    Hi all,
    Please help me with some useful information regarding the history of master data creationa and changes. I need to create a query for creation and changes of vendor master data. Data for creation of the vendor master data are saved in LFA1 but for changes I cannot find table.
    Thank you,
    Desimira

    Hi,
    You can use the standard report for Vendor master data changes, S_ALR_87012089 - Display Changes to Vendors.
    Regards,
    SAPFICO

  • FK02 :: vendor master data change

    FK02 :: vendor master data change
    I want to change payment terms to a particular vendor but i am getting a error message
    <b>changes for vendor not yet confirmed.</b>
    I tried FK08 to confirm earlier changes but i could only confirm company code changes and
    not the general data.
    How do i confirm earlier changes and also assign new payment terms.
    Help appreciated
    Prashanth

    Hi,
    It is correct, user who made the changes to Vendor Master (sensitive fields) cannot confirm the changes. SAP Help states:
    <i>Only those accounts are displayed for which you have authorization to confirm changes. As a result of dual control, the system also checks whether you were involved in the sensitive changes.</i>
    You can ask any other User who has authorization to transaction code FD09 to confirm the changes. Logically, if the user who is making the changes also confirms the changes, it defeats the very purpose for which this process is defined. Hence, I think SAP would have put a validation to check the user who made the change and whether the same user is approving the changes.
    Thanks
    Murali.

  • Cretit control area field - Customer master - mass change

    Hi Gurus:
    I want to use the customer master mass change program (T.code XD99) to assign a default credit control area for all the customers. However when i try to save the mass changes it does not update the credit control area, and shows an information message "0000500004 : No batch input data for screen SAPMF02D 0900" . Did anybody come across such situation ? and how to resolve this ?
    Thanks in advance.

    Refer to note 552066, The system is attempting to maintain some ETM data that may not be relevant. May be this applies to you.
    Symptom
    During the start of the mass maintenance with Transaction XD99, the system generates batch input sessions for the import of the data in the background. In the process the system also tries to supply fields RF02D-D0900 and RF02D-D0910 on screen SAPMF02D 101 with data, although these fields do not exist on the screen. Then the batch input processing terminates.
    Solution
    The correction of the source code for the generation of the batch input data is described in the corresponding correction instruction. A solution that allows also the mass maintenance of ETM data with Transaction XD99 is in preparation.

  • Is there a call block function for the iPhone 4S?

    Is there a call block function for the iPhone 4S?  If not, will it be offered in the future?  what else can I do to the phishing calls?

    No.
    Apple has not said.
    Don't answer your phone.

  • How to set background color for selected days in DateChooser

    How to set background color for selected days. I created
    checkbox for each day [Son,Mon,Tue,Wed,Thu,Fri,Sat] and a
    DateChooser, I want to change the background color for the selected
    day when i click on a button after selecting the desired checkboxs
    [ monthly wise/yearly wise]
    Thanks in advance

    There is no button involved in the following code, but it may
    be of use to you:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()">
    <mx:Script>
    <![CDATA[
    private var origColor:uint;
    private function init():void {
    origColor = dc.getStyle("selectionColor");
    public function setBackGrdColors(newColor:uint):void {
    dc.setStyle("selectionColor", origColor);
    if(dc.selectedDate){
    var dayOfWeek:Number = dc.selectedDate.day;
    else{
    return;
    switch(dayOfWeek) {
    case 0:
    if(sun.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 1:
    if(mon.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 2:
    if(tue.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 3:
    if(wed.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 4:
    if(thu.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 5:
    if(fri.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    case 6:
    if(sat.selected)
    dc.setStyle("selectionColor", newColor);
    break;
    default:
    break;
    ]]>
    </mx:Script>
    <mx:VBox horizontalAlign="center" verticalGap="20">
    <mx:DateChooser id="dc" textAlign="left"
    change="setBackGrdColors(cellColor.selectedColor)"/>
    <mx:HBox width="100%" horizontalAlign="center">
    <mx:CheckBox id="sun" label="Sun"/>
    <mx:CheckBox id="mon" label="Mon"/>
    <mx:CheckBox id="tue" label="Tue"/>
    <mx:CheckBox id="wed" label="Wed"/>
    </mx:HBox>
    <mx:HBox width="100%" horizontalAlign="center">
    <mx:CheckBox id="thu" label="Thu"/>
    <mx:CheckBox id="fri" label="Fri"/>
    <mx:CheckBox id="sat" label="Sat"/>
    </mx:HBox>
    <mx:HBox width="300" horizontalAlign="center">
    <mx:Label text="Background Color" />
    <mx:ColorPicker id="cellColor"
    selectedColor="#FF00FF"/>
    </mx:HBox>
    </mx:VBox>
    </mx:Application>

  • Functionality for Select and Save layout in a report output

    Hi,
    I had developed a report program containing several fields in the output and requires the Functionality for Select layout and Save layout in a report output.
    Please suggest.
    Thanks,
    Shariq.

    While calling the FM for List Display ( "REUSE_ALV_LIST_DISPLAY" or "REUSE_ALV_GRID_DISPLAY" ) set the Parameter I_SAVE for Setting the Layout and Selecting a different Layouts.
    The possible values for I_SAVE are "A", "U", "X" or others. Depending on the requiement you can set different values for the Parameter I_SAVE.
    ' ' = display variants cannot be saved
    Defined display variants (e.g. delivered display variants) can be selected for presentation independently of this flag.
    Changes can not be saved.
    'X' = standard save
    Display variants can be saved as standard display variants.
    User-specific saving is not possible.
    'U' = only user-specific saving
    The user can only save display variants user-specifically
    'A' = standard and user-specific saving
    The user can save a display variant user-specifically and
    as standard display variant. The user chooses in the display variant
    save popup.
    Reward points if helpful.

  • Standard function for SELECT???

    I need to do a dynamic select, because i only know table name dynamically.
    I found DB_UPDATE_TABLE for update operations, but i need a similar function for select??
    Any ideas???

    Hi,
    check this code...
    For dynamic table name....
    REPORT demo_select_dynamic_database .
    DATA wa TYPE scarr.
    DATA name(10) TYPE c VALUE 'SCARR'.
    SELECT *
    INTO wa
    FROM (name) CLIENT SPECIFIED
    WHERE mandt = '000'.
    WRITE: / wa-carrid, wa-carrname.
    ENDSELECT.
    <b>For dynamic field list</b>
    REPORT demo_select_dynamic_columns .
    DATA: itab TYPE STANDARD TABLE OF spfli,
                wa LIKE LINE OF itab.
    DATA: line(72) TYPE c,
    list LIKE TABLE OF line(72).
    line = ' CITYFROM CITYTO '.
    APPEND line TO list.
    SELECT DISTINCT (list)
    INTO CORRESPONDING FIELDS OF TABLE itab
    FROM spfli.
    IF sy-subrc EQ 0.
    LOOP AT itab INTO wa.
    WRITE: / wa-cityfrom, wa-cityto.
    ENDLOOP.
    ENDIF.
    Regards
    Sudheer

  • Anyway to selectivily enable/disable bluetooth function for selected apps like papago in iphone.

    Hi,
    Anyway to selectively enable/disable bluetooth function for selected apps like papago navigator in iphone.
    I want to maintain bluetooth connectivity to car headset for handsfree driving while papago navigator on ky iphone continuously guide me on the road using the  iphone speaker. So when someone called me on the phone, it will use the car headset. is there such as apps?
    Rgds,
    Kpk

    Hi,
    In pageflow definition, "Train Stop-->Skip" property controls the enable/disable state.
    If Skip value is true (it can be controlled with EL expression) than related link and button in train components are disabled.
    They are enabled other If Skip value is false (It is default).

  • Vendor Master - Restrict Change of fields

    Hi Guys,
    Is it possible to grey out certain fields in vendor master so that they cannot be changed?
    While using FK02 or XK02, I want certain fields to be greyed out so users cannot change.
    And is it possible to develop a new transaction code using which the greyed out fields can be changed by a select set of users.
    Thanks
    Srik.

    Hi,
    Srikanth,
    SPRO-FI A/C -AR & AP -Vendor a/cs -Master data - Preparations for  Creating master data- Define 
    screen layout  per activity (vendors),
    there u can select field status(per activity create/change/display) as  per ur /client requirement.
    hope this is useful
    if u have any doubts plz revert

  • MM42 data (Article master) Mass change BAPI????????

    Hi All,
    Is there any BAPI exist which can be used to change MM42 data (Article master).
    Like requirement is to do mass change in article, but the MM42 BDC is taking too long to change in all Articles.
    Any help for BAPI name will be appreciated.
    Regards

    use this function MATERIAL_MAINTAIN_DARK_RETAIL

Maybe you are looking for

  • Problem in Import ..........

    hi I am use oracle imp utlity to import a dump file imp system/manager FULL=N ignore=Y constraints=Y buffer=100000 fromuser=system touser=bdtest file=c:\expdat.dmp log=abc.log But Some Error Come .............. Some One give me Solution pls Connected

  • CVI7 initial partial order is created with status SY but it is not distrib.

    hi, In CVI7 initial partial order is created with status SY but it is not distributed to recepient list attached with documnet which required to be sent, Please any one can let me know the process flow for this,

  • Adobe Flash Notes

       User has a USB thumb drive that he got from a conference.  The thumb drive has a Acrobat document on it that uses Adobe Flash player to see the document.  Flash player also allows him to take notes and enter those notes onto the document. The note

  • Issue with upper case in cyrillic characters - error with SID generation

    Hi all, I have a problem loading a cyrillic string into a characteristic in a DSO. I get an error message when trying to activate the data in the DSO. The characteristic is a CHAR18 with the "lowercase letters" unmarked and there is an abap routine t

  • Lost contacts & photos after update to 4.2.1

    Did the update to my iPhone tonight. Went through the usual procedure through iTunes. Afterward I saw first that many of my photos were gone. Then saw that many of my Contacts were gone. It looks as though it lost contacts and photos that were added