Mass changes to information in column

Hello,
I have about 11,000 entries in my iTunes library. How can I mass change the values in the Genre column to something more meaningful? An example: I want to change about 400 tunes listed under Rock to Classic Rock without having to change each one individually, but would like to grab all 400 and make one change to the value in the column. Is this possible, because it is a real bear to change each line individually. I have about 10 such changes, example, some songs are from 60's, 70's, 80's, etc., and I'd like the genres to reflect this.
Thanks in advance,
Mike Vetrano.

Dave,
Thank you. That will do the trick. I have been trying to perform this operation as is done in Excel where you select the column and do a change one item to another, but have been banging my head against the wall trying to do so.
Again, thank you,
Mike.

Similar Messages

  • Mass change the ownership of the documents ! Thoughts?

    Fellas,
    I am looking for some information on how mass change of ownership can happen to following documents in Sourcing:
    RFx
    MA
    Ex: Buyer A is the owner of the documents and he/she is no more with the organization. We would like to mass change the ownership of these documents.
    My thoughts:
    1. Create a report to pull the documents
    2. Script to update the owner
    3. Schedule a job, so the script can run and update all the documents.
    Thanks
    Gummadi

    Hi Gummadi,
    We had same requirement , change  the ownership of Master Agreements.
    1. Create a report to pull the list  for Agreements to be changed with below columns:
    DISPLAY_NAME , CALC_METHOD, UNIQUE_DOC_NAME, DOC_TYPE,
    STATUS, CURRENCY, VENDOR, CONTACT, LOCATION,
    2.  Create workbook for Master Agreements, above fields are mandatory  for any Mass Change on MA's.
          add DOC_OWNER_USER column to the work book 
    3. Import this work book to CLM/E-Souring.
    Hope  this will help you.
    Thanks
    - Sai

  • Mass change of Vendor Line Items Payment Terms

    Hi all
    We are trying to make a mass change of payment terms for vendor line items.  We have implemented the change required as per SAP note 640908. However when we try to do this not all payment terms are changed.
    The log gives us the following error - 'Field BSEG-ZTERM. does not exist in the screen SAPMF05L 1302'.
    Please how can we solve this error.
    Many thanks
    PRG

    Hi,
    According to note 640908:
    " Notes on error handling:
        If the mass change does not occur as required even though you
        changed and activated all program parts, note that the error log
        for the mass change (Environment -> Mass change -> Error log of
        line item list) may contain useful information for error
        handling."
    " Note: SAP cannot guarantee that the modified mass change will work
      correctly even if you carry out all of the steps as described in the
      manual tasks."
    It is not planned to enter the payment terms by using of
    the field payment term ZTERM but by using of the fields ZBD1T/ZBD1P and
    ZBD2T/ZBD2P and ZBD3T.
    With Best Regards,
    Gladys Xing

  • Mass change of account assignment group in sales order

    Dear All.
    We have created a new Account assigement group and assigned revenue accounts to it.When the orders are registered this data will flow from the master data automatically.Where as in the open orders i need to make the changes manually.Is there a provision in std SAP to Mass change a filed in  sales order .Like we do in MM17 or XD99 .Kindly let me know.
    Thanks in advance .
    regards,
    K.Vivek

    Hi,
    Go to XD99,
    1. Select the table ie KNVV in the tables tab, select the fields tab and select the fields u would like to change for eg Acct assignment group
    2. Execute the report
    3. U will come to the screen where u can restrict the entries.
    Enter the criterion say
    Cust: Test 1
    Sales Org 8000
    Dist 08
    Div 08
    4. Again press execute
    5. Enter the new values you would like to have
    6. Now select columns of the new values and press carry out mass maintainence button in the new values area
    7. Press Save
    8. u will then receive a success message
    Best regards
    Mahesh

  • Copying and Mass Changing of Legal Controls on Material Masters

    I have just set up in our DEV system, the Legal controls on the Material Master . . . The Legal Regulation, the Export control class and the Grouping.  We do not have Foreign Trade turned on, but we wanted a place to store this information . . . to help when documents are generated.   My question(s) now are, when our users create Material Masters in most cases they create in reference to another material.  I tried this with what I set up, and it will not copy those fields . . . is there a way it can copy . . .something in configuration that will allow this?  And, also our users require a large amount of data to be changed sometimes and these fields possibly fall into that requirement, and I was looking for a way to Mass Change, but I am not able find those fields on the available Mass Change tables . . . I believe I need MAEX . . . Is there a way to Mass Change?

    Hello Diane,
    There are two things, which have to be done :
    -The first thing of course is, that for the fields involved the field :    
    "Propose Field Content from the Reference" must be set in transaction OMSR.
    - The second is, that the user have to enter this screen, because if she/he don't display this screen, then it is technically not possible to copy the reference values.                                                                               
    Hope this can help !!!                                                    
    Regards,
    Mauro

  • How to make a mass change for incoterms of a scheduling agreement at item level.

    Hi SAP Guru,
    There are many wrongly assigned incoterms in the scheduling agreement at item level by a user exit which was implemented recently in production. May i know if there is any way that we can revert those changes back to the original incoterms via mass change? I've tried to search over the internet and it seems like there is no posting about this issue before. Please help urgently. Thanks in advance.
    Regards,
    Shawn

    You can use the following sample to develop your usecase.
    Here, we would show menu items only for the nodes at level 3.
    You can also download the entire sample based on POJO at
    http://adfsampleapplications.googlecode.com/svn/trunk/TreeSampleApplication.zip
    The code is self explanatory.
    Let know, if you have any specific questions.
    <af:form id="f1">
    <af:treeTable value="#{bindings.continents.treeModel}" var="node"
    selectionListener="#{bindings.continents.treeModel.makeCurrent}"
    rowSelection="single" id="tt1" columnStretching="last">
    <f:facet name="nodeStamp">
    <af:column id="c1">
    <af:outputText value="#{node}" id="ot2"/>
    </af:column>
    </f:facet>
    <f:facet name="pathStamp">
    <af:outputText value="#{node}" id="ot1"/>
    </f:facet>
    *<f:facet name="contextMenu">*
    *<af:popup id="p1" contentDelivery="lazyUncached">*
    *<af:setPropertyListener from="#{bindings.continents.treeModel.depth}"*
    *to="#{pageFlowScope.CurrentDepth}"*
    *type="popupFetch"/>*
    *<af:menu text="menu 1" id="m2">*
    *<af:commandMenuItem text="View Districts" id="cmi1"*
    *visible="#{pageFlowScope.CurrentDepth == 2 ? true : false}"/>*
    *<af:commandMenuItem text="View Attractions" id="cmi2"*
    *visible="#{pageFlowScope.CurrentDepth == 2 ? true : false}"/>*
    *</af:menu>*
    *</af:popup>*
    *</f:facet>*
    </af:treeTable>
    </af:form>
    Thanks,
    Navaneeth

  • How to mass change posting date of parked logistics invoice verifications

    I was wondering if someone can help...
    We are looking if there is a standard SAP program available to mass change the posting date (to a new date in a new period) for a number of parked logistics invoice verification documents.
    Example: Invoices are parked in e.g. April 2010; relevant information is not available before month end; so invoices will probably be posted somewhere in May or June or ...; users now have to individually change the posting date on each parked invoice to the new open month.
    Is there any proces/program that could automate this task.
    Thanks in advance for all your advice, feedback and comments.
    Best Regards,
       Luc Vernieuwe.

    Hi,
    There is no standard tcode , i used Tx Shuttle tool to do this in past for one of my client. ( excel based sap transaction tool)
    Thanks,
    sudhakar

  • Mass change of certain fields thru list of equipments IE

    Hi,
    Instead of writing LSMW, i am looking for mass change option for list of equipments available thru IE05 under Go To----> Carry out a mass change.
    Its giving me a error message :
    Objekt PM_MASS_TECH_OBJECTS is not maintained
    Message no. BL010
    Diagnosis
    An application log entry is to be made for object PM_MASS_TECH_OBJECTS. This object is, however, not maintained as an application log object.
    Objects and subobjects of the application log are created using transaction SLG0.
    System Response
    The program had to be cancelled.
    Procedure
    Inform the system administrator.
    I went thru the forum link: Mass Change of Functional Locations - error message "Objekt PM_MASS..... and read the note 1166820.
    Please tel me the steps to do in order to include Object    : PM_MASS_TECH_OBJECTS
    Object Text: Mass Change of Equipments and Functional locations
    in table as per the note...
    Please provide some detailed steps..
    Authorization is no issue as i have profile: SAP_ALL
    Thanks
    Murad..

    Hi All,
    i'm trying to change a filed value as null. i.e. a value is maintained in pp work centre field for functional location.  i want to delete this value to keep this field as blank. By using this mass change functionality i'm not able to do so. can any body hep me out to this problem.
    Raj

  • Organizer File Name Mass Change - Manual Rearrange Capability?

    I used to use Bridge 6 to mass change file names. I could drag files into desired rearranged locations and then rename the batch in any order I wanted. Elements Organizer does not seem to have that capability. Am I missing a simple trick or did this program go backwards in capability? I bought Photoshop Element 12 ONLY for the Organizer!!!!

    I'll be short. The Organizer is not for you. Or you are not for the organizer. It's a pity you did not use the trial version to check this before buying the software.
    Now for some of your practical questions:
    meteorman69 wrote:
    I do prefer to rename my files and move them to folders of my choice such as Family Photos 2013, Family Photos 2014, Work Photos, Comic Book Related Images etc... I don't manipulate the images themselves, just filenames.
    Nothing wrong with that, but that's possible in the organizer, even if it's best done with a browser like Bridge.
    I can't stand generic filenames given by cameras or applications so I give them meaningful names like a date sequence and location like 20140504ZooVisit001 or some such name.
    Did you consider using captions instead ? They are much more flexible, readable and searchable in a database system.
    If I have 50 sequentially, generically named photos in a folder and I have opened the folder with Organizer (Bridge) and I want to re arrange let's say Image1, image 2, image 3, image 4, etc... to change the sequence of photos or groups of photos to image3, image 4, image2, image 1.
    In Bridge I could drag photos about within Bridge to my desired sequence THEN I could highlight the group and rename them sequentially with a totally new name for permanent file storage. It's really a simple desire.
    In the organizer, you can select the photos in a subfolder, or from any kind of complex multicriteria request, and group them in an 'album'. It's just like a 'playlist'. You can order them manually. You can select them and assign a common starting name with an order number suffix. Very basic.
    You asked about 'compatibility'. With the above features, the organizer can move, rename, delete files or folders. It can 'write metadata to files', which is not only to keep the keywords, ratings, captions, notes in its database, but also to write them in the files themselves, so that Bridge, or explorer or finder can read them. It can hold many other information like stacks, albums or version sets. But Bridge and the explorer/finder are not compatible to receive such advanced information.

  • Can you programmatically change the width of columns in a table control\indicator

    Is it possible to programmatically change the width of columns in a table control\indicator ie to fit to width of the data or in my case the header information.

    Create a property node (or reference) and use the 'Active Cell' property to select which column you want to change and then use the 'Cell size'--> 'Width' property to change the size.
    "There is a God shaped vacuum in the heart of every man which cannot be filled by any created thing, but only by God, the Creator, made known through Jesus." - Blaise Pascal
    Attachments:
    table.vi ‏33 KB

  • 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.

  • Copy Project and Mass Change

    hi experts,
    When I copy a project from another operative project with list of material (external), the plant (in the material component) tab is also copied over to the new project. Is there any way that I could change this plant assignment for each material - it is greyed out in my system.
    Additional information:
    1. All of these material are Non-Stock (so Plant is irrelevant)
    2. Procurement type = third party procurement (PFS)
    Thanks, Tony

    Hi
    It is not possible to change the plant while copying or with mass change function.
    Alternatively you can copy all the WBS elements and activities without materials. Set a subsitiution rule to change the Plant at network level.
    Regards
    Srikrishna

  • Mass change requisitioner in PR line items

    Hi, is it possible to do a mass change in PR line items? (specifically the Requisitioner column) One PR has like 50 line items.  How do we change the Requisitioner column easier and faster? thanks!

    Hi,
    Use T.Code MEMASSRQ
    Maruthi Reddy

  • Mass change in FBL1N

    Hi,
    I display a line item in transaction FBL1N , and atfer that I try to change a field "payment block"  (BSEG-ZLSPR) with icon Mass change. I give a new value in this field and I execute change.
    After that I have a Information "Unable to change every document"  and in error log is a Information (error reason)
    "No batch input data for screen SAPMF05L 0302" ????
    What does mean?  Why I get this message? what do you do with it?
    I will be grateful for any tips
    In OSS I not found any similar case.
    With regards
    MGasior

    Hi  Konard,
    Have you done a search on the actual message number.
    OK - if you cant change the payment block it could be due to a number of reasons.
    Document in a payment run
    Payment block does not allow for manual change
    Item is a special GL or noted item
    Item does not have a payment block
    Please review data again against the list above and search OSS for message NUMBER

  • Add fields to Sales Order Mass Change  selection screen

    Hi,
    Li & Fung customer customer needs to include following fields in the selection screen (Header Level)  and the display output in Sales Order Mass Change (/AFS/MDC).
    -     VBKD-BSTKD_E
    -     VBKD-KDGRP     
    According to the SAP documentation we have done the configuration (Add details of custom fields) and implemented the BADI u2018/AFS/MDC_SELECT_CUSTOM_FIELDSu2019 with following methods.
    -     /AFS/IF_EX_MDC_SEL_CUSTOM_FLDS~SELECT_HEADER
    -     /AFS/IF_EX_MDC_SEL_CUSTOM_FLDS~SELECT_CUSTOM_DATA
    Data selection part works perfectly, but if we do not enter any values in any custom field in  the selection screen, then the BADI is not working. The output displays the columns without any value for the custom field. However, for VBKD-KDGRP is added as a custom field in the selection, but it already exists in the output display by standard, and it does display the value.
    The system should display all custom fields values even if we did not input them as part of the selection screen
    I would like to know if we have missed something, or is it the expected behavior of this enhancement, which seems to be inconsistent. Also please advise if there are any other methods available to solve this issue.
    thanks very Much.
    Nilmini

    Hi Nilmini,
    In My case, I have added custom fields to MDC change screen by using /AFS/MDC_CHANGE_CUSTOM_FIELDS but its not appearing in Grid list display. Would like to appreciate if you can Help me to achieve this.
    Regards,
    Jelli

Maybe you are looking for

  • Where is the firmware update for my ipod touch

    I recall that there was a firmware update for my 1st Gen Ipod Touch. I did not do it at the time, but would like to do the update now to the most current firmware available for my touch. I am now on version 2.2.1 (5H11) Can anyone tell me where I can

  • Using JBoss to distribute Java App

    Hello... How can I distribute my JAVA application which has been developed using EJB in JBoss ? What CLASSES should I attached with the JAVA application ? I believe in Weblogic we should do the same thing, right ? Please Help. Thank you.

  • Problem getting scan of pix from printer/scanner/fax machine

    Long used P E to get pix scanned by printer/scanner/fax.  Then I bought a slide scanner and installed, and PE brought in slides scanned by separate machine.  Disconnected slide scanner.  Now whenI try to get pix scanned by printer/scanner/fax, it say

  • Could´nt find a camera profile for the M9.

    I have just bought a Leica M9 but I could not find a camera profile for the M9. In the folder "application support/adobe/camera raw/" there is only a profile for the M8. Do I simply not see the profile or is there none. I am using Lightroom 4.4. and

  • Microsoft Publisher web page into a Muse web page?

    Any suggestions on the easiest quickest way to turn a Microsoft Publisher web page into a Muse web page?