Changing the "Assigned To" field on test cases

Hi,
We are in the process of migrating from VS 2010 to VS 2013 and am tasked with removing and replacing the "Assigned To" field in our test cases in Test Manager to reflect CURRENT employees. Right now we have the majority of our of "Assigned
To" fields populated by two employees no longer with the company. I need to remove them and add current employees. I have over 1000 test cases to fix. Please tell me there is an easy way to accomplish this!
Thanks,
KathleenBP

Hi KathleenBP,
As far as I know, there isn’t that feature to modify many test cases together in MTM.
For this requirement, I suggest that you could accomplish that through excel (replace and publish).
More information, please refer to:
# Bulk add or modify work items with Excel
https://msdn.microsoft.com/en-us/library/dd286627.aspx
Another way is that you could create an application with TFS API to accomplish that.
Regards
Starain
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Change the Accounting document fields cost center and profit center

    Dear Experts,
    User has posted document with wrong profit center
    For that we subjected that he can go to the profit center actual posting T.Code 9ke0 but with that he can only change the Profit center document with that there is no accounting side updating
    I have tried with Document Change Rules, Line Item for fields cost center and profit center  in that while configuring I did not get any error message,
    But in the document I am unable to changing the same fields cost center and profit center  
    Can any body please guide me to resolve the issue?
    Essentially I want to change the Accounting document fields cost center and profit center   
    Thanks in Advance,
    Wiswanath

    Hello,
    Once the documents are posted in FI module, the system doesn't allow anybody to change the cost objects (cost center, profit center, internal order). The only fields you can change through FB02 transaction are the Line item text (BSEG-SGTXT) and the assignment (BSEG-ZUONR).
    If you want to get a change to the cost object to be reflected from FI to CO, you should reverse the FI documents with wrong cost objects and post new documents with correct cost center, profit center.
    Hope it helps you.
    Cheers,
    Daniel.

  • ICal: Changing the assigned calendar of an event sends out a new invite to all participants

    iCal version 5.0.3:
    I have multiple accounts set up (iCloud, shared, Exchange) in iCal.
    I've noticed that when I receive an invite that is assigned to the wrong calendar (e.g. to my icloud calendar) and I then change the assigned calendar to the Exchange calendar, iCal actually sends an invite to all the attendees with me as the organizer of the event!
    Instead of just changing the assigned calendar in my iCal, it creates a new invite on the new calendar from me to all the invitees.
    This seems to be new behaviour (bug) in version 5, as I can't remember this happening in earlier versions. It stopped being funny when it just did this with a company-wide HR event to all employees
    My default calendar is set to the Exchange account, but iCal seems to ignore that ever so often when adding new invites
    Any ideas on how to prevent this, or do i have to wait for an update to iCal?

    Hi Chris,
    Welcome to Apple Discussions.
    I often do the same thing (ie create an event in the wrong calendar). Are you aware that the assigned calendar appears in the info pane. You could simply select the correct calendar there, even reassign events.
    I understand the desire to do this with Quickeys, though I suspect very few people here use Quickeys. So if you don't get an answer here I'd suggest you consider the Quickeys forum: http://forum.cesoft.com/

  • How can I rearrange the pages in a PDF without changing the assigned paged numbers.

    How can I rearrange the pages in a PDF without changing the assigned paged numbers? These correspond to the original document folio numbers.

    In theory it would be possible to 'record and play back' the page numbers using a folder-level script, but it's far from trivial. You would have to use the doc.movePage() function - presumably driven by a dialog box - to do the page shuffling so there was a way to track what was being done, then swap the page 'labels' of the two affected pages. That's where it gets messy.
    We have functions in the JSAPI which can read and write the page label, but they don't do things in a logical way. The 'getPageLabel()' function simply returns a string, but the 'setPageLabel()' method expects to be told the numbering scheme, prefix, etc. You'd have to parse the string and work out what scheme it was implementing.

  • How can i used pai in screen 1000 to change the select-options field?

    hi,all.
    I want used pai to change the select-options field,but it can't works.
    the mainly code is:
    REPORT  ZTEST99.
    TABLES :MARA,MAKT,MARC.
    SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TITLE0 .
    select-options:s_matnr for mara-matnr,
                   s_werks for marc-werks MODIF ID ID1.
    SELECTION-SCREEN END OF BLOCK B0.
    parameters:p_flag as checkbox.
    at selection-screen OUTPUT.
       LOOP AT SCREEN.
       IF P_FLAG = 'X' .
       IF screen-group1 = 'ID1'.
             screen-input = '0'.
        ELSE.
          screen-input = '1'.
        ENDIF.
        MODIFY SCREEN.
    ENDIF.
        ENDLOOP.
    START-OF-SELECTION.
    CALL SCREEN 1000.
    when i click p_flag,then i want to change s_werks from OBLIGATORY to no OBLIGATORY.
    how can i realized?
    Thanks for all.
    Sun

    Hi ,
    change your code like this.
    Change in your code:
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    SELECT-OPTIONS : s_matnr for mara-matnr,
    s_werks for marc-werks MODIF ID ID1.
    SELECTION-SCREEN END OF SCREEN 100 .
    At selection-screen.
    if sy-dynnr = '100'.
    IF P_FLAG = 'X' .
    LOOP AT SCREEN.
    IF screen-group1 = 'ID1'.
    screen-required = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    else.
    LOOP AT SCREEN.
    IF screen-group1 = 'ID1'.
    screen-required = 1.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    my code :
    REPORT  Z50871_SELECTOPS_DYNAMIC.
    PARAMETERS : CH_EBELN AS CHECKBOX,
                 CH_VBELN AS CHECKBOX.
    DATA: V_EBELN TYPE EKKO-EBELN,
          V_VBELN TYPE VBAK-VBELN.
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    SELECT-OPTIONS : EBELN FOR V_EBELN MODIF ID G1,
                     VBELN FOR V_VBELN MODIF ID G2.
    SELECTION-SCREEN END OF SCREEN 100 .
    AT SELECTION-SCREEN OUTPUT.
      IF SY-DYNNR = 100.
        IF CH_EBELN = 'X' AND
           CH_VBELN = ''.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G1'.
              SCREEN-ACTIVE = '1'.
            ELSE.
              SCREEN-ACTIVE = '0'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ELSEIF CH_VBELN = 'X' AND
           CH_EBELN = '' .
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G2'.
              SCREEN-ACTIVE = '1'.
            ELSE.
              SCREEN-ACTIVE = '0'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ELSEIF CH_EBELN = 'X' AND CH_VBELN = 'X'.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G1'
               OR SCREEN-GROUP1 EQ 'G2' .
              SCREEN-ACTIVE = '1'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ENDIF.
      ENDIF.
    AT SELECTION-SCREEN.
    IF SY-DYNNR = 1000.
      IF CH_EBELN = 'X' OR CH_VBELN = 'X'.
        CALL SELECTION-SCREEN 100.
      ELSE.
        MESSAGE I000(Z50871MSG) WITH 'Please select atleast one checkbox'.
      ENDIF.
    ENDIF.
    regards
    Sandeep Reddy

  • Change the customer master fields

    Hi all,
    I am looking for a BAPI or USER-EXIT to change the customer master fields KNA1-STCD3, BRAN1, BRAN2, BRAN3, BRAN4, BRAN5. If anybody knows please share.
    Thanks in advance,
    Pranav

    Hi Pranav,
    If you want to change these fields while saving the trasaction XD02, use user exit: Enhancement- SAPMF02D and exit: EXIT_SAPMF02D_001 or BADI: CUSTOMER_ADD_DATA.
    Reddy

  • Changing the Event View Field Display Order on a Calendar

    We'd like to change the display of a calendar event to show the Title on top and the time below. This is how it currently looks below. Is there a way to change it?
    Orange County District Attorney

    Hi,
    According to your post, my understanding is that you wanted to change the Event View Field display order on a Calendar.
    You need to insert the code below into a Content Editor Web Part.
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script type="text/javascript">
    function changeCalendarOrder() {
    $(".ms-acal-sdiv").each(function () {
    var arr = $(this).find('div').toArray();
    var temp;
    temp = arr[0];
    arr[0] = arr[2];
    arr[2] = temp;
    $(this).html(arr);
    //alert($(this).html());
    _spBodyOnLoadFunctionNames.push('calendarEventLinkIntercept');
    // hook into the existing SharePoint calendar load function
    function calendarEventLinkIntercept() {
    var OldCalendarNotify4a = SP.UI.ApplicationPages.CalendarNotify.$4b;
    SP.UI.ApplicationPages.CalendarNotify.$4b = function () {
    OldCalendarNotify4a();
    changeCalendarOrder();
    </script>
    The result is as below:
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Change the name of field "product attribute1" in Sales Org 2

    Hi,
    We require to change the name of field "product attribute1" in Sales Org 2  in Material Master. Is there any provision in SPRO or it has to be done only with the help of Abapper.
    Please advise.
    Regards,
    Pratap

    Dear pratap
    its basically an enhancement but process is very simple you can also do it however if its your first time kindly follow the steps below mentioned
    1.First you need to get the Date Element Name of the field you want to change the description.
    2.To get that go to Material Master and to that field. Press F1.
    3.Press "Technical Information" button.
    4.You can see a field named "Data Element". Copy the value of that field for your field.
    4.Now to change the description, Go to Tx; CMOD.
    5.Select below Menu option. Go to / Text Enhancements / Keywords / Change
    6.Enter copiedr Data Element there and press Enter.
    Now you should be able to see field descriptions appear. You can change those as your wish
    Once done, Save.
    gud luck

  • How can we change the assigned Family Organizer?

    How can we change the assigned Family Organizer?

    Hi J. Stephen G.,
    Great question! It is not possible to change the family organizer, however you can disband the group and restart it under a new organizer. For information on doing so, check out these resources:
    Leave Family Sharing - Apple Support
    http://support.apple.com/HT201081
    Family Sharing - Apple Support
    http://support.apple.com/HT201060
    - Matt M.

  • Exit/bAdI for changing the item level field in VA02.

    Dear Guruss...
    I am facing a problem while trying toi change the account assignment group in VA02. The field is present at the iteem level in the tab BILLING.
    When I change the field by choosing one of the values provided in the search help and enter, the value is again reset to its initial value. However if I change the value and SAVE (without pressing enter) then the value is saved.
    The technical field name is VBAP-KTGRM, I have checked in the include:MV45AFZZ by putting break-points at all the forms but unfortunately none of them is getting triggered when I press enter.
    During the debugging I found tha the values of the structure VBAP are overwritten by those of XVBAP everytime I press enter.
    I also checked for the bAdI but can not get any help.
    Is there any bAdI or exit that can help me for this????
    Thanks in Advance......
    Abhi.....

    Hi Digvijay
       these are some of the enhancements/badi's which is related to t-code va02. just check it out
    Transaction Code -               VA02          Change Sales Order
         Enhancement/ Business Add-in               Description     
         Enhancement                    
         V60F0001               SD Billing plan (customer enhancement) diff. to billing plan     
         V46H0001               SD Customer functions for resource-related billing     
         V45W0001               SD Service Management: Forward Contract Data to Item     
         V45S0004               Effectivity type in sales order     
         V45S0003               MRP-relevance for incomplete configuration     
         V45S0001               Update sales document from configuration     
         V45P0001               SD customer function for cross-company code sales     
         V45L0001               SD component supplier processing (customer enhancements)     
         V45E0002               Data transfer in procurement elements (PRreq., assembly)     
         V45E0001               Update the purchase order from the sales order     
         V45A0004               Copy packing proposal     
         V45A0003               Collector for customer function modulpool MV45A     
         V45A0002               Predefine sold-to party in sales document     
         V45A0001               Determine alternative materials for product selection     
         SDTRM001               Reschedule schedule lines without a new ATP check     
         SDAPO001               Activating Sourcing Subitem Quantity Propagation     
          Business Add-in                    
         BADI_SD_SCH_GETWAGFZ               Scheduling Agreement: Read WAGFZ from S073     
         BADI_SD_V46H0001               SD Customer functions for resource-related billing
      Regards
    Zulfikhar ali
    Edited by: Zulfikhar Ali Bhutto.N on Sep 23, 2011 11:15 AM

  • Outbound Plain HTML Adapter how to change the html-header field "host"?

    Hello,
    I'm using XI 3.0 SP11 and want to transmit a message to a business partner using the Plain HTML Adapter.
    My problem is now that I need to change the default Html-Header field "host" because it seems that the adapter engine is converting it to lower case and is attaching the port-number which is causing trouble with the loadbalancer/applicationserver of our business partner.
    I tried to set the appropriate http-header value in the communication channel configuration, but the adapter engine is ignoring this value.
    Thanks in advance for any ideas.
    Sascha Fuchs
    Message was edited by: Sascha Fuchs

    Hi Sascha,
    unfortunately the Plain HTTP adapter is not running in the J2EE, therefore you cannot extend the functionality with an adapter module.
    I am not sure to understand the problem right. Why do you need to change the HTTP header? What is in it in your case and what should be?
    Regards
    Stefan

  • Re:How to change the RBKP-BKTXT field after MIRO invoice is saved

    Hi ALL
    i forgot to fill doc header text for several invoices. Is there any way to edit RBKP-BKTXT field.
    Thanks
    Steve

    Daer Anup,
    Check the below link where you can capture the current transaction in MIRO.
    http://forums.sdn.sap.com/thread.jspa?threadID=1416227&tstart=0
    CONSTANTS: c_vorgang(23) TYPE c VALUE '(SAPLMR1M)RM08M-VORGANG'.
      FIELD-SYMBOLS: <fs_vorgang> TYPE ANY.
      ASSIGN (c_vorgang) TO <fs_vorgang>.
    CASE <fs_vorgang>.
      WHEN '1'.
      WHEN '3'.
      WHEN OTHERS.
    ENDCASE.
    Based on the value of field symbol you can differentiate.
    Thanks to Pablo who has given this solution in the above mentioned thread.
    The BADI you can use is INVOICE_UPDATE and method AT SAVE .
    Regards,
    Deepak.

  • Assign logical components to Test Case Management

    Hi ,
    I have my scenario where I had uploaded the test cases in SOLAR02. And created the rest of the Test plans, packages and so on.
    My logical components are:
    100 DEV
    130 Single Test
    200 QAS (Integral Test)
    300 PRD
    I need to know which is the way to execute the Plan and Package test (Single and Integral ), using the logical component descripted before.
    Regards,
    Ignacio

    Hello Ignacio,
    When you create a test plan, then you can assign the role where the test should be executed.  You need to go to the plan STWB_2, then modify the ATTRIBUTES of the test plan, you have the General Data TAB, and then you can select whaterver role you want to use for the testing.  You can also go to modify the plan itself, go to the Menu Test Plan, dropdown, select System Role and again the role you need.  Save it and it is ready.
    Regards/Saludos
    Esteban Hartzstein

  • When we change the non-mandatory field in the form, it doesn't get updated

    Hi... I have one question here..
    If I have non-mandatory fields in a custom form, and when I query the form and change the value in the non-mandatory field and click on save, then it doesn't save. It says 'No Changes to Save'. But, it's not the same for non-mandatory fields.
    Can you please suggest me?
    -vrdida

    VRdida,
    If I understand correctly, you have a non-Required item in your form that has an LOV assigned. While this item is Required=No, it works correctly. When you change the Required property of the item to 'Yes' then it fails. When this occurs, do you get an error message? Are you able to select a value from the LOV?
    It sounds like the Required=Yes property might be preventing you f rom opening the LOV. Try setting the Module property: Defer Required Enforcement = Yes. This is the typical setting in an EBS form. This is what allows you to navigate out of a Required field if the value is NULL, but will give you a Required message when you attempt to save the record if the value is still NULL.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.
    Edited by: CraigB on Apr 6, 2011 11:43 AM

  • Changing the Assignment of production order in sales order in MTO scenario.

    Hello all!
    I have following problem:
    After the MRP a production order was created for a sales order. Because of the production in another plant
    the production order which was created automatically had to be technically completed and a new one
    created.
    If you want to check now the availability, the sales order finds nothing, because it's linked to the one,
    which was technically completed. Now is the question how can I change the production order for this
    sales order. (In the production order the correct sales order is connected!)
    As I found out it's connected to the field AUFNR in the table VBEP. But how can I change this
    field within a transaction and not in the database?!?

    No replies

Maybe you are looking for