Change the name in Automater, so it sticks in iTunes?

Hello everyone
I have this.. Well, minor problem. I have renamed an audiobook with Automater on my Mac in Finder, but when i import it into iTunes, it changes back to the original filename, "Track 01" and so on. I have manually changed the names in Finder, but it didn't stick in iTunes either.
How do i avoid changing all the files names in iTunes manually?

Hi,
Try this code this will convert the names first letter into capital and the remaining into small checking the space what you have asked for.. let the name be how big with the spaces.
even if the name is any kind of format that is if it is all capitals or all small or some capital some small.
Ex: raJa venKi rEddy or RAJA VENKI REDDY or raja venki reddy
it converts into Raja Venki Reddy.
DATA:  w_name TYPE char20,
       w_name1 TYPE char20,
        w_final TYPE char20,
       w_i TYPE i.
SELECT-OPTIONS: s_name FOR w_name LOWER CASE,
               w_final FOR w_name LOWER CASE NO-DISPLAY.
LOOP AT s_name.
  DO.
    SPLIT s_name-low AT space INTO w_name w_name1.
    IF w_name1 IS INITIAL AND w_name IS INITIAL.
      EXIT.
    ENDIF.
    IF w_name NE ' '.
      w_i = STRLEN( w_name ).
      TRANSLATE w_name+0(1) TO UPPER CASE.
      TRANSLATE w_name+1(w_i) TO LOWER CASE.
      IF sy-index EQ 1.
        CONCATENATE w_name ' ' INTO w_final-low.
      ELSE.
        CONCATENATE w_final-low w_name INTO w_final-low SEPARATED BY
space.
      ENDIF.
    ENDIF.
    MOVE w_name1 TO s_name-low.
  ENDDO.
  MODIFY s_name FROM w_final INDEX sy-tabix TRANSPORTING low.
ENDLOOP.
LOOP AT s_name.
  WRITE:/ s_name-low.
ENDLOOP.
Thanks&Regards
Sarves

Similar Messages

  • How do I change the name of a podcast once submitted to itunes??

    how do I change the name of a podcast once submitted to itunes??
    anyone know? I submitted my first podcast, then changed the name in feedburner. The new name is appearing once you are in the podcast window of my itunes, but not in the itunes store catalog. how do I fix?

    Here's what iTunes Podcaster help says:
    http://www.apple.com/itunes/store/podcaststechspecs.html
    Troubleshooting Your Feed
    iTunes should update your listing at least once every 24 hours. If you made changes more than 24 hours ago that are not yet reflected in your iTunes listing, there is a good chance that your feed has broken. When iTunes encounters a broken feed, it ignores the feed and continues to display the old data.
    Here is a set of recommended steps to fix your feed:
    Ping your feed to make sure iTunes has attempted to update your feed recently.
    Review the technical spec, particularly the example feed, to ensure that every detail of your podcast’s feed is supported by iTunes.
    Use a feed validation service like www.feedvalidator.org to check for particular problems. This may be helpful in determining a specific problem with syntax.
    If you used a software- or online-based feed creation service, check to ensure your settings there are correct and iTunes-compliant.
    Subscribe to the feed in iTunes to see if it works. Open iTunes, go to the Advanced menu, choose "Subscribe to podcast..." and enter your feed’s URL.
    Hope this helps - Podcaster's discussion board might have more answers:
    http://discussions.apple.com/forum.jspa?forumID=1107

  • How do i change the name of my ipod without going on itunes?

    How do i change the name of my ipod without having to go on itunes and change it. i dont have a computer so i cant change it throught my itunes.

    Without a computer to run iTunes, you are basically hosed when it comes to doing anything with your iPod.
    Allan

  • How can I change the name currently assigned to my IPhone in ITunes?

    My device name for my IPhone 4 in ITunes on my PC OS7 system is my husband name and not my own name. How do I change it>

    On the device, Settings > General > About > Name and edit it, or click on the name when connected to iTunes.
    tt2

  • How do I change the name on a second hand iPad in iTunes

    I bought a used iPad 2 and on my iTunes it has the original owners name. I would like to grange it to mine.

    If you mean the name that appears under Devices in iTunes:
    Click on the name field in the sidebar then press RETURN to activate it. Change to the name you prefer, then press RETURN again.

  • Change the name of custom tab in me51n / me52n / me53n

    Hi,
    I have to add a few custom fields in PR item of  transactions me51n / me52n / me53n. I have used the enhancement MEREQ001 for adding the custom fields. The sytem automatically creates a custom tab with the name Customer Tab for the additional fields that I have added using the enhancement MEREQ001 while displaying in me51n / me52n / me53n.
    Now I have a requirement to change the name of the custom tab created for transactions me51n / me52n / me53n from Customer Data to Others.
    Can anyone suggest me how to go about doing this???
    Thanks in advance.
    Abhisek.
    P.S.:- Points will be be duly awarded 4 helpfull answers.

    Hi,
    I tried doing whatever you had suggested but it seems that it is not working.
    Could you suggest some other way to do this?
    Thanks and regards.
    Abhisek.

  • Existing cross Reference: how to change the name of the file it refers to?

    Hi everybody,
    I am a professional translator.
    One client of mine sent me a complete FrameMaker 9 book file for translation.
    I translated the content via a CAT-Tool and now am in the process of checking if cross references and markers are ok directly into the file.
    I noticed that many cross references are linked to another file of the book. But in the process of translating each file separately, I gave them a slightly different name (I added the language at the end) so as to be able to recognise them eventually.
    Now I have this problem: I cannot find in the cross reference interface where to change the name of the file into the new one the cross reference is supposed to refer to.
    Am I right in wanting to change the file reference? If so, how do I do that?
    Or is it better to avoid this task and rename the translated file into their original names ? Would it work then?
    Thanks for your help.

    ... book file ...
    ...  each file separately, I gave  them a slightly different name (I added the language at the end) ...
    I'm guessing that you renamed the component files by means other than using the Edit > Rename File from the Book menu.
    If so, do over. Rename from the Book menu. It automatically revises all the cross-references in all the component files.
    In a Book, the only thing that's safe to rename with the file manager is the .book file itself.

  • Not able to change the name of the attribute of the Table operator.

    We are trying to create OMB scripts to automate certain tasks. As a part of this, there is a requirement to change the attribute name of table operators (which by default gets the name of the column). It is possible to change the attribute name from the GUI. But I was not able to do the same using OMB Scripting. Here is the script I used.
    OMBALTER MAPPING 'TEST' \
    MODIFY ATTRIBUTE 'GEOGRAPHY_ID' OF GROUP 'INOUTGRP1' OF OPERATOR 'TEST' \
    SET PROPERTIES(BUSINESS_NAME,PRECISION,DESCRIPTION) \
    VALUES('MEMBER_ID',2,'MEMBER')
    This script was to change the name of the attribute - GEOGRAPHY_ID of the table operator TEST.
    From what I can make out from the Scripting reference, changing BUSINESS_NAME of the attribute should do the trick but it is not happening. The syntax looks correct as the precision of the column changes.
    Am I missing something? Or is it a limitation or a bug?
    I use OWB client 10.2.0.1.25 and OWB repository 10.2.0.1.0.

    Hi!
    I'm using successfully
    OMBALTER MAPPING '$mapName' MODIFY ATTRIBUTE '$attrName' OF GROUP '$groupName' OF OPERATOR '$joinName' RENAME TO '$newName'
    Regards,
    Carsten.

  • How do i change the name of my ipad?

    how do i change the name on my ipad

    Connect your iPad to your computer with the sync cable and start iTunes if it doesn't automatically start. In the left column of iTunes you'll see your iPad's name. If your iPad is syncing, wait for it to complete or cancel the sync. Once the sync is complete, double-click on your iPad's name and the name will become editable. (The device name cannot be changed while a sync is in progress.)

  • Changing the name of time machine

    Okay this is a preemptive, I have an external with three partitions, 1 is for bulk files that won't fit on my Laptop, 1 is for a backup of my PS3, 1 is for my Time Machine. I was wondering if I could change the name of my Time Machine drive as the one I have is not clear and I don't want my girlfriend to mess things up. I suspect that just changing it will mess the whole Time Machine process up so is there either a work around to confuse it that the old saves were indeed on the drive with the new name? I know the sparsebundle file is finicky, of course cause its a backup.
    I wanted to ask before I did anything.
    I have read this but not sure if I need to go down a similar route http://www.hardmac.com/blog/2008/05/29/how-i-saved-my-corrupted-time-machine-spa rsebundle-image
    Thanks in advance

    Mad-elph wrote:
    Okay this is a preemptive, I have an external with three partitions, 1 is for bulk files that won't fit on my Laptop, 1 is for a backup of my PS3, 1 is for my Time Machine. I was wondering if I could change the name of my Time Machine drive as the one I have is not clear and I don't want my girlfriend to mess things up. I suspect that just changing it will mess the whole Time Machine process up so is there either a work around to confuse it that the old saves were indeed on the drive with the new name? I know the sparsebundle file is finicky, of course cause its a backup.
    If you're backing-up to a directly-attached, partitioned HD, all you have to do is change the name of the TM partition (not the drive itself).
    Open a Finder window. If the partition doesn't show in it's sidebar, click Finder > Preferences > Sidebar in the menubar, then check the box to make external drives appear.
    Back to the Finder window, control-click (right-click) the partition name and select the Rename option. This is one of the very few things you can rename that will not confuse TM. The new name will appear automatically in TM Preferences, for example, and backups will continue in the normal fashion.

  • Recently I noticed that when I change the name of a photo (correcting a mistake) it always goes back to the previous name, keeping the mistake I'm trying to correct. A spelling mistake, for example. As I keep my photos organized by name and not by date, t

    Recently I noticed that when I change the name of a photo (correcting a mistake) it always goes back to the previous name, keeping the mistake I'm trying to correct. A spelling mistake, for example. As I keep my photos organized by name and not by date, this is very annoying.
    And today it won't even read my camera's sd card, and I try with 2 different ones. If I restart the computer, leaving the memory card in, then it reads it; but if I pull it out and push it back in it doesn't see it. Whath am I doing wrong, if anything?
    Diane

    Where/how are you trying to change the name? If it is in Finder (after you've downloaded the pics to your desktop), highlight the pic icon and press Return. the name field will change and you can type in your new name. Hit Return again. That should make it "stick".  If you're trying to do it elsewhere, please post the steps that you've tried.
    As for your card: do you eject it properly? Either drag icon to trash or hit the eject symbol in the sidebar?

  • How do I change the name of my "User" name?

    I bought a used Macbook Pro. I hate my Home User name and can't figure out how to change it. Let me explain. When looking at the finder window at the botom it gives a path "Macintosh HD > Users > Abc123".
    How can I change "Abc123" to a name I like?
    Using Leopard 10.5.8

    I tried it and it sort of worked but didn't do what I needed. I am trying to change the name of the home folder but keep all its settings, desktop, etc. When I used the Advanced area and changed the path name and did a restart it gave me a fresh desktop like a new computer. All my settings were wrong, etc. I guess it did the same thing as if I had created a new account name but what I want to do is just change the path name. I guess if I do that it would screw up all my file paths since they probably would not automatically update to the new path name, huh?

  • I have the jetpack wifi and someone told me I need to change the name to FBI Surveillance Van so others would think twice before using it how do i do it?

    I have the jetpack wifi and someone told me I need to change the name of it to "FBI Surveillance Van so that people would not try to tap onto it. How do I accomplish this?

    Changing the SSID is a good idea, but I do not suggest changing it to something so troll enticing as "FBI Surveillance Van".  A SSID like that is only going to draw attention to you and your network and challenge malicious users to target you.  I advise not putting a target on your back and stick to a custom but not well known SSID.
    I normally suggest broadcasting an SSID of something a little less confrontational.  Something like combining your favorite color with your favorite sports team.
    All jetpacks are a little different but they should all have a way to sign in and complete configuration changes.  If you connect to your Jetpack and look up the IP Address of your Default Gateway you will know the IP of the Jetpack.  Plug in the IP Address of the Jetpack into a web browser and sign in with the admin password.  Review the security options that are available until you find a SSID or broadcast name or network name field.
    While you are at it you should also make sure you have a custom WiFi password configured with WPA2 security.  Custom WiFI passwords are going to be much more helpful than a creative SSID at keeping malicious users off your network.  Rule of thumb for WiFi passwords is the longer the better.
    A good tool to evaluate your WiFi password is here (shoot for at least a few years):
    www.howsecureismypassword.net
    Let us know if you want any other security best practices or tips.

  • Changed the name, it changed everything

    I hope I can describe this so that it makes sense...
    I'm pretty new to macs, I just got a new iMac about a month ago. So far everything has been perfect and I absolutely love it. Last night, I opened the Finder and noticed in the little pane on the left side (Applications, Desktop, etc.) that the little house icon had my computer name on it (snz48) and not my actual name. So I changed the name of it to my actual name and went about my business for about 15 minutes. I opened Firefox and it didn't go to my homepage and all my bookmarks were gone. The documents I had on my desktop disappeared, and all of my settings went back to default. This is because I changed the name of that folder, right?
    Inside of that newly changed name folder, another folder called "snz48" is in it with all my old stuff, like all my bookmarks, documents, everything. It seems like because I changed the name, the mac is just looking in the wrong place for all my things, because they are all still there, just not in the right place I guess.
    So my question: is there any way to get everything back to the way it was? I hope this all made sense ... thanks so much!

    So, how does one change the name without messing anything up. I haven't done this yet, but I have to say that I'm not fond of the fact that I like my full name identifiable when I'm surfing the web. I guess the machine automatically defaults to using your name? I don't remember an option to change that during set-up. Is this making any sense?

  • How do I change the name in Terminal

    When I try to access Terminal, and enter a sudo command, it asks for my password.  It has the name wrong of my computer, and then won't accept my password.  I can hit enter 3 times and it brings right back to my starting point.  How do I change the name of my computer and allow it to accept my password?

    First, make sure caps lock is not on.
    Another reason why the password might not be recognized is that the keyboard layout (input source) has been switched without your realizing it. You can select one of the available layouts by choosing from the flag menu in the upper right corner, if it's showing, or cycle through them by pressing the key combination command-space or command-option-space. See also this support article.
    If the user account is associated with an Apple ID, and you know the Apple ID password, then maybe the Apple ID can be used to reset your user account password. In OS X 10.10 and later, this option also works with FileVault, but only if you enabled it when you activated FileVault. It's not retroactive.
    Otherwise*, start up in Recovery mode. When the OS X Utilities window appears, select
              Utilities ▹ Terminal
    from the menu bar at the top of the screen—not from any of the items in the OS X Utilities window.
    In the window that opens, type this:
    resetp
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window opens. Close the Terminal window to get it out of the way.
    Select the startup volume ("Macintosh HD," unless you gave it a different name) if not already selected. You won't be able to do this if FileVault is active.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select
               ▹ Restart
    from the menu bar.
    You should now be able to log in with the new password, but the Keychain will be reset (empty.) If you've forgotten the Keychain password (which is ordinarily the same as the login password), there's no way to recover it.
    *Note: If you've activated FileVault, this procedure doesn't apply. Follow instead these instructions.

Maybe you are looking for

  • CUIC Report - Queue Status

    Dear Group I am recently been started working with UCCE platform, for one of our client who is using CTI Desktop Client (V8.5) required to have A field in the CTI screen about the number of calls currently queued or waiting in the queue A CUIC report

  • Problem in implementing Pub/Sub using Oracle AQ

    Hi, I am using 10.1.2.0.0 Process Manager I have created a publishing service which publishes a PAYLOAD as well as two header fields (Header holds the name of TARGET_SYSTEM and SOURCE_SYSTEM). In the receipients list I specified two names i.e. Bob an

  • Ffox4 downloaded to Save.How do I get it to install itself?

    I currently have firefox, but I wanted firefox4. I downloaded it and a box wanted me to save it. so i did. Now it just sits there in 'downloads' . How do i get it to install? Thanks!! Love FF!!

  • Help with email function on new iPhoto?

    When I email photos to pc users the words are garbled and the layouts and text don't load in the same format. Is this an issue for others? Solution? Is there any way to get the old function of sending photos via email where I could add unlimited text

  • HP Simple Save Problem

    I recently purchased the 1TB HP Simple save external hard drive to back up files on my HP PC.  It worked just fine out of the box, but I am not able to reboot my computer with the drive plugged in.  If I try to boot up, it just goes to a black screen