File name limit/character case

Good morning to all! Is there truly a 25 character FILE name
limit for RH? I've been advised by Adobe that there is...but this
is truly news to me after 10 years of working with RH. Its very
painful to fit names into that limit when you have over 1000 topics
in a project! But I renamed everything...carefully using
MixedCharacterCase to try to establish order. Saving often! But
then when I had to reimport files after rebuilding the .cpd file
the MixedCharacterCase had turned to mixedcharactercase for many
files. Ugh! Truly unreadable!
So...is 25 characters truly a requirement? And...how to you
force RH to remember the MixedCharacterCase for the File name?
Help!...and THANK YOU!!!!

Hi Peter. Yes you did. But since I called Adobe and asked for
help and they SWORE that the 25 character limit was in fact law...I
decided I needed to try it to make sure it was not the solution I
was seeking. If I say No to their suggestions...I'm concerned that
they will tell me that they can't help me...and I absolutely,
positively need help with this project. 4-8 minutes to save a
single image name, 5+ minutes to import a simply HTML
file...ugh...life is miserable. So...I gave this a try.
But when I rebuilt the .cpd file using the .hhk file and it
lost 90% of the project even with those cute unreadable short file
names I knew I was in trouble. So I decided to ask this group
formally if 25 was really the limit, get the concensus and then
respectfully ask Adobe to rethink this 'solution'. I'm in the 24
response time window with them now. This is just no longer much fun
for this project and its business critical. You know it well...
I was not doubting your first answer...I was grasping at
straws and now I need to be able to quote this group that they have
an error in their Technical documentation.
What Fun - not!!!

Similar Messages

  • How to convert a file name to title case

    hi,
      I have document library where name is displayed for the file that is uploaded. How do I convert the name to a calculated column =PROPER([name])? I've tried creating a new column, which is a calculated field =PROPER([name]) but it doesn't recognized
    the field. There is the title column which I can do a =PROPER([title]), but the title field isn't necessarily the same as the file name. Ideally, I want to convert to title case for any file uploaded. so the Name column is in the PROPER case. Thanks.

    "Title" is a field on the entity in the database. "Name" is what uniquely identifies the SPFile underlying the document.
    So you can think of Title as pretty arbitrary; you can change it just like you would change any other property (description, etc.) but if you change the Name, it is akin to moving the file. Names must be unique in folders/webs.

  • File Name from Character through hard return. Almost there.

    Hi all! I have a script that is naming my files by the characters in two text frames.
    It works... to a point.
    For some reason it is duplicating the name.
    This is the final result. > test-2-wealth-file-stuff,2-wealth-file-+-stuff.jpg
    when it should be this. > test-2-wealth-file-stuff.jpg
    for some reason it is adding > ,2-wealth-file-+-stuff
    any idea why? Thanks in advance.
    main ();
    function main() {
    var curDoc = app.activeDocument;
    // loop through all pages
    for ( var i = 0; i < curDoc.pages.length; i++ ) {
        // the current page
        var curPage = curDoc.pages[i];
        var pName = curPage.name;
        // controls the loop
        var controller = true;
        // all paragraphs on the current page
      var allPages = (curPage.textFrames.everyItem().paragraphs[0]); {
    pageName=allPages.characters.itemByRange(0,allPages.contents.toString().indexOf("^p") -1);
      var paraName = "" + pageName.contents;
    var paraString = "-" + paraName.replace( /\s+$/ , "" ).replace( /\s+/g , "-" ).toLowerCase().replace('+', '');
    var folderPath = "~/-client/" ;
            var appendix = paraString;
        var filePath = folderPath + "/" + curDoc.name.replace(/\.indd$/,"") + appendix + ".jpg";
        var myFile = File( filePath );
        with ( app.jpegExportPreferences) {
            jpegQuality = JPEGOptionsQuality.MAXIMUM; // low medium high maximum
            exportResolution = 72;
            jpegExportRange = ExportRangeOrAllPages.exportRange;
            pageString = pName;
        curDoc.exportFile( ExportFormat.jpg, myFile, false );
      } // end for > pages
    } // end for > main

    Hello cathykka,
    sorry, if I misunderstood your post.
    Quick & dirty
    You could replace these lines:
    // all paragraphs on the current page
    var allPages = (curPage.textFrames.everyItem().paragraphs[0]); {
        pageName=allPages.characters.itemByRange(0,allPages.contents.toString().indexOf("^p") -1);
        var paraName = "" + pageName.contents;
    with this:
    // all paragraphs on the current page
    var allPages = (curPage.textFrames[0].lines[0]); {
        var paraName = allPages.contents;
    There are some other things to do, but at first this should help.
    If not, please upload an example idml.
    Have fun

  • Error SP2-0333: Illegal Spool File Name: (bad character: ' ')

    Below is my spool file logic just to test outputting to a spool file with a date in the spool file. The date part works fine. I can see the date coming out in the error message. It doesn't like the spaces, but I am not in control of the folder names. Any ideas? I have tried putting single and double quotes around it to no avail. I also tried using the concatenation operator || to separate the path from the filename and that didn't work, either.
    col sdate new_value sysdt
    select to_char(sysdate,'YYYY-MM-DD') sdate from dual;
    SPOOL \\Nsgnvl_files\rco\Linecost Audit\General NA Info\CLLI_Code_Discrepancy_Reports\&sysdt.SendToLCAnotInRepository.txt
    SELECT TO_CHAR(sysdate) from dual;
    spool off

    Example :
    SQL> set escape |
    SQL> spool "c:\test| dir\foo"
    SQL> select sysdate from dual;
    SYSDATE
    2007-09-27 16:31:30
    SQL> spool off
    SQL> exit
    Disconnected from Oracle Database 10g Express Edition Release 10.2.0.1.0 - Prod
    ction
    C:\>cd test dir
    C:\test dir>type foo.lst
    SQL> select sysdate from dual;
    SYSDATE
    2007-09-27 16:31:30
    SQL> spool off
    C:\test dir>Message was edited by:
    Paul M.
    but I am not in control of the folder namesSorry, I didn't read carefully.....

  • Strip file name until character

    Hi all,
    i have a bunch of files (>> 100) which i would like to batch rename.
    Every file starts with a random sequence followed by the character "-", filename.jpg
    e.g.
    45sdfm4rf-holiday01.jpg
    dfgfdlfkssdfqwe-garden01.jpg
    the result should be
    holiday01.jpg
    garden01.jpg
    any ideas? i tried a loop with sed but i couldn't get it managed to rename the files probably.
    thanks in advance!

    broken pipe wrote:
    thank you guys!
    for file in *; do mv $file ${file#*-}; done
    did the trick! so much easier than i thought! :>
    Just a note, # will match and remove the shortest match (eg asfadsf-text-file.txt -> text-file.txt) if you want the longest, use ## (dfsaf-adsf-textfile.txt -> textfile.txt).
    I used to forget that stuff all the time. The/A bash guide is well worth a peruse, even if it's just to get an idea that these things are in it.
    Incidentally, I'd save that as a commented script file for future use (if you feel energetic, you could do stuff like add in the delimiter as a parameter, etc.). I'd make WorMzy's caveat prominent in it, too.
    Oh and, please mark the thread as solved.

  • Case Sensitive File Names

    Hi...
    I've been trying out the trial version of RH8, before
    upgrading from RH7. One of the problems I have noticed is the
    option to "Use Lowercase File Names (Recommended for UNIX)" in the
    Single Source Layouts setting, only works for actual pages in the
    project. As i have a number of PDF's as baggage files (that now get
    indexed), when they are returned in the search results, I just get
    a "Not Found" error. This is because it is not correctly putting
    the folder names or file names in lower case.
    Does anyone know a solution or workaround for this? (aside
    from renaming all files/folders!). Or know where I can submit this
    as a bug?
    Thanks...

    Bug/Feature requests can be filed
    here..
    As a workaround, you could try renaming your baggage files - for
    example File.pdf to file1.pdf and then to file.pdf. You'd need ot
    delete and add the baggage file references though. An alternative
    is to exclude the baggage file type from the search. You can find
    out how to do this from the latest post on my blog.

  • Case-Insensitive File Name Search on Unix

    Hello,
    I have a program which runs on a Unix OS and it looks for some files like file.csv, and then reads these files. Basically I know the file name and I look for that file name in a particular directory.
    Now, I want to make my program case-insensitive so that if the file name is file.csv or File.csv or FILE.csv, it should still locate that file and read it.
    Any advice....
    Thanks.

    Thanks.
    Probably I have to get all the file names in that
    directory and then try to match against the file name
    (using ignore case or toUpperCase() maybe), which I
    am looking for.
    Is there a way, where I don't have to get all the
    file names in that directory and can just go and get
    the FileReader Object etc for the file which I am
    looking for.No
    /Kaj

  • Is it possible to call a report whith Ñ character in it's file name

    Hi,
    We have a customer which is having problem when calling a report when the file name has Ñ character, for example: reportedeañonuevo.rdf
    when invoking the report it gets the following error:
    REP-110: File reportede¿. cannot be opened
    REP-1070: An error occurred while opening or saving a document
    REP-0110: File reportede¿. cannot be opened
    The customer has reports 11g 11.1.1.6 64bits
    Regards
    Carlos

    calling a report with Ñ character in it's file name is not possible ?I didn't say that. I just said: try B-) I have no environment to try it myself right now.
    Furthermore: how are you calling your report? Directly via URL, or via Forms run_report_object?
    It is a very usual situation that you have to escape special characters in a URL. So yes, that is normal.

  • Finder no longer showing full file name of mp3

    How do i get finder to show me the full and complete file name (in my case, artist-title-label) for these mp3s? i can see the full name in the path at the bottom but i want to see it when i search it. My workflow with Ableton and creating text tracklists for music mix sets depends on it. I need the two file names to match rather than the mp3 just showing the info less the artists name.
    thank you.

    http://www.digitaldjtips.com/2011/02/dj-music-files-formats/
    Hey there, I don't know if you knew that already. If you did - Welp I gave it a shot. If you don't want to convert files maybe you should look at metabliss.com to help lighten the load. I would definitely make a copy and try it on PC to see if the same issue occurs.

  • File name in file adapter

    Hello Guys,
    I need to get a message from RFC, map it in a way that I wouldn't need to do any file conversions in file adapter and send it to FTP. How could I set the file name in this case?
    PS: the file name cannot be included in payload, while I don't want to do any conversations of that payload...
    Many thanks for your answers,
    Milan

    Hi Milan,
    Is your query related to  sending the file name from the source xml document to the reciever file adapter. If so this can be achieved.
    Pls. do the following.
    1.  in the mapping program that you are using populate the filename coming from the source into the target in any of the fileds.
    2.Sender adapters can write adapter-specific attributes to the message header; these can then be evaluated at configuration time
    3. To change the adapter-specific attributes of the message header by using message mappings, you access the required classes of the mapping API by using a mapping runtime constant.
    To access the classes DynamicConfiguration and DynamicConfigurationKey by using the mapping runtime constant DYNAMIC_CONFIGURATION, use the method getTransformationParameters() of the container object.
    Create an simple user defined function in the mapping and use the following code.
    Imports: com.sap.aii.mapping.api.*;
    Parameter: String filename
    Paramter: String filename;
    filename = fileName + ".DAT";
    DynamicConfiguration conf = (DynamicConfiguration) container
           .getTransformationParameters()
           .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    conf.put(key, filename);
    return filename;
    You donot need to hard code the value of the filename in the file adapter for your interface.
    In SXMB_MONI, when you see the pipeline services you would see that the value of the filename is populated in the message payload.
    Thanks
    Indranil

  • RoboHelp changes file name to lowercase

    I am using RH X5.0.2 (running on Win XP SP2) to import HTML files as topics. The primary layout is Microsoft HTML Help.
    The original HTML file names are mixed case, but when the files are imported into RoboHelp, the file names are changed to all lowercase. For example, GL_Audit.htm is changed to gl_audit.htm. This is an issue because the topic title reflects the file name, and I need the topic title to retain the mixed case of the original files.
    After I import the file, I have to manually change the topic title. However, RoboHelp does not like it when the title has an underscore. If I change gl_audit to GL_Audit and click OK, the change is not saved. But if I change gl_audit to GLAudit and click Apply, and then change it to GL_Audit, the change is saved.
    I am using an existing project that was created by someone else a long time ago. Here are the steps that I am following:
    1. Right-click the destination folder, and then click Import.
    2. At the Import File screen, select the desired file, for example, GL_Audit.htm, and click Open. The file is imported as a topic.
    3. Right-click the topic, and click Properties. Note that the Topic Tile is gl_audit, and the file name is gl_audit.htm.
    4. In the Topic Title field, type GL_Audit, and click OK. Note that the Topic title is still gl_audit, and not GL_Audit.
    5. Open the Topic Properties screen again.
    6. In the Topic Title field, type GLAudit, and click Apply.
    7. In the Topic Title field, enter an underscore between the L and the A so that the topic title is GL_Audit.
    8. Click OK. Not that the topic title is saved as it was typed -- in mixed case.
    If I can get RH to import the files without changing the original case, it will not matter that it takes two steps to change the topic title name.
    Any suggestions would be greatly appreciated.
    Ashley

    Hi again
    Ashley, how are these HTML pages being created? I ask because I performed a small test. While the import process did indeed convert the file name to all lower case, it ignored the Topic Title. However, if I didn't have a Topic Title defined, it did create one that was all lower case.
    I'm thinking that whatever tool that was used to create the topics you are importing didn't properly configure a proper Title Tag.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Changing a deployment's file name

    I'm trying to debug a large application and I'm having a problem with the Windows File name limit.
    I have a project called GenericClientCalculationEngine, which creates GenericClientCalculationEngineWebApp.war. Is there a way in JDeveloper to set what filename should be used to during debug/run in JDeveloper? I'd like to shorten the name down enough to not hit these limits.
    Change I just change the deploy name or do I need to rename my project?

    My last reply i was mentioning about the changing the deployment profile name.
    You should be able to change the deployment file name as mentioned by Shay above.
    Did you check that you don't have multiple deployment profiles and you are using the wrong one (just checking) ?

  • I cannot derive a file name that will let me export my Keynote file as a PDF.  I understand the 31 character limit, but what other secret niceties must I observe?

    Hmmmm . . . . I used to be good at this, back in the day . . . OK:  I take a KN file and attempt to export as pdf for later upload to SlideShare servers, which can't take straight KN submissions anymore.  I keep my file names under 31 characters, as prompted.  But . . . I keep getting a NoNo that reads along these lines:
    "Cannot export "table of contents" as 'table of contents'".
    I've tried various fiddly things with file names but without success.  I feel like the mosquito looking for the tiny tear in the screen she just knows is there somewhere!  (I was three semesters into an entymology major before I got the word that my fascination with word derivations was doomed to be frustrated.)
    Am I Maverick bitten or just way too old to be messing around with stuff like this?
    SirRuncibleSpoon

    Hi,
    According to your description, you might want to retrieve the string “2014_05” from the file name.
    I would suggest you create a SharePoint Designer workflow and implement your logic of handling the filename.
    In SharePoint Designer 2010, there are already some useful utility workflow actions which can enable users to deal with the various requirements come from the business scenarios.
    For the string handling, you can consider to use the
    Utility Actions:
    http://msdn.microsoft.com/en-us/library/office/jj164026(v=office.15).aspx
    Another two links about creating SharePoint Designer workflow for your reference:
    http://office.microsoft.com/en-001/sharepoint-designer-help/introduction-to-designing-and-customizing-workflows-HA101859249.aspx
    http://www.codeproject.com/Tips/415107/Create-a-Workflow-using-SharePoint-Designer
    Thanks
    Patrick Liang
    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]
    Patrick Liang
    TechNet Community Support

  • OSX sometimes places 31 character limit on file names. How can I get this error to stop?

    This error notice doesn't make sense, since many of my file names exceed 31 char. This error message pops up when saving documents, esp. web pages. As a consequence, OSX will refuse to let me save the file, until I shorten the name and so remove informative identifying features of the file name. But most of the time, OSX is perfectly happy to save files with names longer than 31 char. How can I get this error notice and block to turn off?

    I have also seen this issue it occurs regularly when transferring word documents files from my Macbook Pro running OSX 10.5.8 to my iMac running 10.9.4.
    My iMac HD should be formatted to factory standards as well since I have not mucked around with it since I bought it.

  • How can we change the file name character limit on PSE 7?

    When I save for web I need more than 26 characters in the file name. Can you please tell me how to turn this Mac compatibility option off? Thanks.

    Save the file with a short name and rename afterward.
    Juergen

Maybe you are looking for