Portal - Maximum file name size

Anybody knows how to find the maximum file name size allowed for file item on the Portal. I am on Portal version 10.1.4.0.0.
Database version is 10.1.0.5.0.
Thank you,
Yonas

Hi Lokesh,
I am using    g_file_name    TYPE file_name,
I am using the Following code to insert where g_file_name I get from
     CALL FUNCTION 'FILE_GET_NAME'
        EXPORTING
          logical_filename = c_log_file
          eleminate_blanks = space
          parameter_1      = g_par
        IMPORTING
          file_name        = g_file_name
        EXCEPTIONS
          file_not_found   = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
        g_retcode = sy-subrc.
      ENDIF.
    ENDIF.
G_par is calculated based on Inv_num_postdate_VAtnum_Custname.
      OPEN DATASET g_file_name FOR OUTPUT IN BINARY MODE.
      IF sy-subrc = 0.
        LOOP AT i_tlines INTO wa_tlines_line.
          TRANSFER wa_tlines_line TO g_file_name.
        ENDLOOP.
        CLOSE DATASET g_file_name.
      ENDIF.
But it truncates the file name like this
9126000019_20120110_IT00879330033_OFFICINE GRAFICHE NOVARA 1901 SPA.p
it shud be
9126000019_20120110_IT00879330033_OFFICINE GRAFICHE NOVARA 1901 SPA.pdf
Thanks

Similar Messages

  • How is it posible to get the File name, size and type from a File out the H

    How is it posible to get the File name, size and type from a File out the HttpServletRequest. I want to upload a File from a client and save it on a server with the client name. I want to conrole before saving the name, type and size of the file.How is it posible to get the File name, size and type from a File out the HttpServletRequest.
    form JSP
    <form name="form" method="post" action="procesuploading.jsp" ENCTYPE="multipart/form-data">
    File: <input type="file" name="filename"/
    Path: <input type="text" readonly="" name="path" value="c:"/
    Saveas: <input type="text" name="saveas"/>
    <input name="submit" type="submit" value="Upload" />
    </form>
    proces JSP
    <%@ page language="java" %>
    <%@ page import="java.util.*" %>
    <%@ page import="FileUploadBean" %>
    <jsp:useBean id="TheBean" scope="page" class="FileUploadBean" />
    <%
    TheBean.doUpload(request);
    %>
    BEAN
    import java.io.*;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletInputStream;
    public class FileUploadBean {
    public void doUpload(HttpServletRequest request) throws IOException
              String melding = "";
              String filename = request.getParameter("saveas");
              String path = request.getParameter("path");
              PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter("test.java")));
              ServletInputStream in = request.getInputStream();
              int i = in.read();
              System.out.println("filename:"+filename);
              System.out.println("path:"+path);
              while (i != -1)
                   pw.print((char) i);
                   i = in.read();
              pw.close();
    }

    Thanks it works great.
    Here an excample from my code
    import org.apache.commons.fileupload.*;
    public class FileUploadBean extends Object implements java.io.Serializable{
    String foutmelding = "geen";
    String path;
    String filename;
    public boolean doUpload(HttpServletRequest request) throws IOException
         try
         // Create a new file upload handler
         FileUpload upload = new FileUpload();
         // Set upload parameters
         upload.setSizeMax(100000);
         upload.setSizeThreshold(100000000);
         upload.setRepositoryPath("/");
         // Parse the request
         List items = upload.parseRequest(request);
         // Process the uploaded fields
         Iterator iter = items.iterator();
         while (iter.hasNext())
         FileItem item = (FileItem) iter.next();
              if (item.isFormField())
                   String stringitem = item.getString();
         else
              String filename = "";
                   int temp = item.getName().lastIndexOf("\\");
                   filename = item.getName().substring(temp,item.getName().length());
                   File bestand = new File(path+filename);
                   if(item.getSize() > SizeMax && SizeMax != -1){foutmelding = "bestand is te groot.";return false;}
                   if(bestand.exists()){foutmelding ="bestand bestaat al";return false;}
                   FileOutputStream fOut = new FileOutputStream(bestand);     
                   BufferedOutputStream bOut = new BufferedOutputStream(fOut);
                   int bytesRead =0;
                   byte[] data = item.get();
                   bOut.write(data, 0 , data.length);     
                   bOut.close();
         catch(Exception e)
              System.out.println("er is een foutontstaan bij het opslaan de een bestand "+e);
              foutmelding = "Bestand opsturen is fout gegaan";
         return true;
         }

  • Maximum File name length in a DIR in AL11

    Hello,
    what is the MAximum lenght of a File name in TCODE AL11.
    i have a program which upload data in AL11 in a Directory but some of the File name get truncated like mention below as I Am using the FM FILE_GET_NAME to get the File name.
    Also I am Converting them first to PDF format and uploading them in the directiry, but some file name gets trucated.
    12/09/2011 02:31:35 Administ         115,776  5804000041_20100510_IT00739320158_COATESLORILLEUXMüREKKEP.P
    12/12/2011 04:53:18 Administ         115,776  5804000041_IT00739320158_COATES LORILLEUX MüREKKEP.P
    12/12/2011 04:54:37 Administ         115,776  5804000042_20100510_IT00739320158_COATES LORILLEUX MüREKKEP.P
    And i need the extensionn .PDF as it is required. Kindly Help
    Thanks
    Solanki Ritesh

    Hi Lokesh,
    I am using    g_file_name    TYPE file_name,
    I am using the Following code to insert where g_file_name I get from
         CALL FUNCTION 'FILE_GET_NAME'
            EXPORTING
              logical_filename = c_log_file
              eleminate_blanks = space
              parameter_1      = g_par
            IMPORTING
              file_name        = g_file_name
            EXCEPTIONS
              file_not_found   = 1
              OTHERS           = 2.
          IF sy-subrc <> 0.
            g_retcode = sy-subrc.
          ENDIF.
        ENDIF.
    G_par is calculated based on Inv_num_postdate_VAtnum_Custname.
          OPEN DATASET g_file_name FOR OUTPUT IN BINARY MODE.
          IF sy-subrc = 0.
            LOOP AT i_tlines INTO wa_tlines_line.
              TRANSFER wa_tlines_line TO g_file_name.
            ENDLOOP.
            CLOSE DATASET g_file_name.
          ENDIF.
    But it truncates the file name like this
    9126000019_20120110_IT00879330033_OFFICINE GRAFICHE NOVARA 1901 SPA.p
    it shud be
    9126000019_20120110_IT00879330033_OFFICINE GRAFICHE NOVARA 1901 SPA.pdf
    Thanks

  • File name size

    What is the maximum number of characters a file name should have? I was copying files from another Mac to a ZIP disk to put on my new iMac when copying stopped and reported an error relating to the files names. Some names were more than 22 characters. I shorten all name to less than 20 characters and no more problem.

    In addition to Duane's advice, it may be the names of the files. Especially if the Zip disk is formatted for MS-DOS/Windows. If any of your files include any of the following characters, you'll have to change them to something else.
    ? [ ] / \ = + : ; " ,
    Otherwise, file name length depends on the application or OS. Mac OS 9 or earlier is limited to 31 characters or less. OS X applications can be up to 256 characters. But if it's an older application that was updated to run natively under OS X, it may still be limited to creating file names of 31 characters.
    MS-DOS is limited to an 8.3 name. Windows/Joliet file names can be 256 characters, but that includes the file name path. So a file on the C: drive with a path like c:\windows\system\ can be only as long as 256 minus the number of characters in the file path. In this case, 18 in the path leaves a usable file name of 238.

  • Mac & windows file name sizes

    I am using Dreamweaver 8 on the Mac for most all of my
    commercial web development. I have a G5 connected to a local
    network where I also run a Windows 2000 box as a web server to test
    with. in a new project which I took over from another company they
    have page names such as
    new-england-lodging-2-doubles-1-twin.html
    I downloaded the site and can see it all hunky-dorey on the
    Mac. however when I try & upload these files to my testing
    server, they won't go. I get the following error message:
    new-england-lodging-2-doubles-1-twin.html - error occurred -
    An error occurred - cannot put
    new-england-lodging-2-doubles-1-twin.html. The specified path does
    not exist.
    of course the path DOES in fact exist. in addition I can
    create a file with this name on the PC side with no difficulty.
    however when I do so the file name is displayed on the Mac side
    thus:
    NEW-EN~2.HTM
    obviously this is not at all useful!
    any thoughts or workarounds for this? use of these file names
    is a requirement on this site for SEO reasons. I would prefer not
    to have to do the development on the PC for a variety of reasons.
    thanks

    > of course the path DOES in fact exist. in addition I can
    create a file
    > with
    > this name on the PC side with no difficulty. however
    when I do so the file
    > name
    > is displayed on the Mac side thus:
    >
    > NEW-EN~2.HTM
    That typically occures when reading a windows formatted disk.
    How did you
    download the images to the Mac? Did you just grab then from
    the FTP server?
    If so, the file names SHOULD have come across OK.
    -Darrel

  • Maximum file/folder size for Copy Finder Items?

    As I mentioned in another recent post, I used Automator a while back to set up a workflow that would Get Finder Items and then Copy Finder Items. Set it up as a iCal plugin. Worked fine for a long time, but I just checked and saw that the largest of the three folders (1.8 GB) was not being completely copied. The other two folders, much smaller (20 MB or so) were fine, but several folders within that large 1.8 GB folder were being skipped. I opened the workflow, and ran it, and it came up with an error that just told me to check the workflow. Is there a maximum size on this type of workflow? Seemed to work fine before . . .

    The *Copy Finder Items* action will not make duplicate copies. If you want multiple copies of the same item, you will need to rename or duplicate the item before copying, since the copy action doesn't have an option to rename, and the duplicate action doesn't duplicate to a different location.

  • Can an Adobe search contain many file names to be retrieved in mass?

    In any Adobe product, is there a way to cut and paste a large list of file names, in one search, to be retrieved from a data base of 100,000+ searchable .pdf files?  What is the maximum file names allowed in one search?  Can you "mass" print (or save) the results of the search?
    We need a software product that can search for file names (entry numbers) within a huge searchable .pdf data base and retrieve the specific files listed on search to be printed or saved in mass.  Does anyone know if Adobe offers such a product?  I have read the specifics regarding Adobe search within the products, but I did not come away with the impression that Adobe could perform the type searches we are looking for?
    Please advise if you know of any software product that could mass extract specific files from data base into a print queue.
    Thank you so much!

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • File names are not being created correctly!!

    Problem I have, and it seems to be an issue with iTunes in Windows and not Mac or in Windows Media Player for that matter.
    Anyway, the problem is that the files are not being written as they are displayed in the Album Data in iTunes itself. It just appears as though iTunes will create any length of file name it wants and not the one that you create??
    The reason I have an issue with this, is because I am trying to create one large album directory on an external Hard Drive connected to my Router so that any machine I have on the network can access it from there as opposed to creating a directory on every single machine.
    I have a tone of discs that I am loading up and just felt that having one large directory on a networked drive would be the best route to take.
    The machines I will be using to access the files using iTunes is my Mac Mini and my Windows PC depending on what room I am in, and then probably a few other devices scattered around the house to make up a Media network.
    Anyway, the issue is with the file names.
    It just seems that Windows iTunes wants to create whatever file name size it pleases, where as Mac iTunes and Windows Media Player seem to create the files as listed in the Track List and Album File Data.
    It would seem that Windows iTunes has a serious bug in it's File Structure Handling which is a pain in the proverbial.
    Just to test this out, I created the same Album both in Windows and Mac and the Mac version had the full file name structure but the PC one doesn't, however, Windows Media Player created it exactly the same as Mac iTunes.
    It definitely appears as though there is an issue with iTunes in Windows, because it creates other albums without a problem. It just seems to pick and choose as it pleases.
    Anyone else get this or know if there is a way to fix it??

    Katrina S. wrote:
    I'm not sure what you mean. Perhaps if you gave a specific example?
    I put my CD's into iTunes so that they go in Album Format with the albums in seperate folders and the song names as they are retrieved from the internet, so that they are not songs all in one long Directory Listing. (Unless of course there is another way of using iTunes??)
    When using iTunes on Mac or the Windows Media Player, all the songs are loaded onto the computer as they are written in the descriptions downloaded from the web.
    Example in Directory format:
    Artist Album Song Name
    Queen - Innuendo - 08 These Are The Days Of Our Lives
    This works fine in Mac iTunes or Windows Media Player. However, if I'm using iTunes in Windows, it may give me the following,
    Artist Album Song Name
    Queen - Innuendo - 08 These Are The Days O
    Now, that is just an example and not a song that is affected, but it gives you an idea of what happens. It appears to happen on any Album and File Name combinations, and only appears to happen when using iTunes in Windows. The much longer filename and album names seem to be far more affected and I think this is to do with Windows Naming structure, but it doesn't explain why it's not happening in Windows Media Player??
    The problem with this, is that when trying to use the same File Directory stored on my external Networked HDD for both Apple and Windows iTunes, the Windows version is causing havoc by doing what it wants where as the Apple iTunes seems to work as intended.
    So when it comes to using either to rip a new CD to the library, I have to start using the Mac Mini each time because it seems to not be causing any issues when ripping discs.
    I'm still in the process of sorting out my Album Directory and having to load everything up on the iMac so that everything gets loaded properly, but this seems to be a really bad bug in iTunes.
    The reason I want to use this external NAS HDD is to keep my data in one area as opposed to having two large directories for both machine formats.
    I hope that is a little more clear on what is happening.
    P.S. Just to add to this. I prefer to use the PC for CD Ripping because the CD Drive is much faster than my Mac Mini and doesn't get anywhere near as hot when used constantly. I can rip 20 albums or more on my PC in the time it takes to sometimes rip just 5 to 10 on my Mac Mini, which is why I wanted this to work properly on the Windows version of iTunes.
    Message was edited by: Capeview

  • File Name Character Limited to 31 - New or something I've done?

    I have been using my MacBook Air with Mavericks for ~6 months and just started getting file name size limit of 31 character warnings a few days ago.  I have many files saved with much longer file names but now cannot go over the 31 character limit.  Have I inadvertantly changed a setting or is this something new in a recent update?
    Bottom line - how do I get back to using longer fle names?
    MacBook Air, OS X Mountain Lion (10.8.4), MBA 11" Loaded (1.7G / 8G / 512G)

    call Apple Care - 800-275-2273
    But I doubt that you will get FaceBook support from Apple - I'd suggest calling FB support
    LN

  • APEX 2.2 - File Browse item maximum file length?

    Hi all,
    There seems to be a maximum length for file name (not path - just the name) that can go into APEX through the File Browse item. I have a file name that is 206 characters long. Even if I put the file in the root directory, when I try to upload it to my APEX application, I get a 404.
    What is the maximum file name length?
    Not relatedly, IE6 balks when the file path length exceeds a certain amount. It doesn't attach the file to the file input HTML element. Does anyone happen to know what that length is?
    Thanks!

    Don - See Re: Upload File with filename greater 80 characters -> HTTP 404 File not fo for related info.
    Scott

  • Increase File attachement size/number of attachments

    Hello all,
    Is there any way to raise the MAXIMUM file attachment size limit in Service Manager? We have a need to have more than 10 attachments to a request and have those attachments be more than 10mbs each (the max in the GUI). Has anyone figured out how to
    increase this maximum in Service Manager 2012? 

    The restrictions for these settings are simply hard coded into the GUI. Why, I do not know. However, it is possible to over-ride, please see this blog from Marcel Zehner:
    http://marcelzehner.ch/2013/07/06/increase-the-number-of-max-incident-attachments-to-more-than-10/
    Rob Ford scsmnz.net
    Cireson www.cireson.com
    For a free SCSM 2012 Notify Analyst app click
    here

  • Maximum file size for CV in E-recruitment

    hi, my name is chandra. i would like to know ' how we can restrict maximum file size of CV' in the E-recruitment module?
    By the i am working on E-recruitment support project at the moment.
    can some one reply me quickly?
    thanks
    regards
    chandra

    Hi Phani,
    How r u doing ? thanks for the answer.
    can you tell me, how we can
    1. make the CV field mandatory for candidates? can we fix the system so that it display error message, if the candidate don't attach the CV.
    2. how we can set system to show display error message, if the CV size is more then the allotted?
    Thanks
    Regards
    chandra

  • Event ID: 4, Source: Microsoft-Windows-Kernel-EventTracing, maximum file size for session "ReadyBoot" has been reached.

    Hello,
    I upgraded my machine to Win7 x64 Pro about 3 weeks ago. My HW is an Asus mobo, Intel Q9450 w/8GB RAM. The boot drives are two Raptors configured as RAID01. All the drivers are the latest available from Intel, Asus and 3rd party vendors. My WEI is 5.9, limited by the disk transfer rates, otherwise 7.1 and 7.2 on the other indexes.
    I've been receiving these errors at boot;
    Log Name:      Microsoft-Windows-Kernel-EventTracing/Admin
    Source:        Microsoft-Windows-Kernel-EventTracing
    Date:          11/10/2009 7:51:03 AM
    Event ID:      4
    Task Category: Logging
    Level:         Warning
    Keywords:      Session
    User:          SYSTEM
    Computer:      herbt-PC
    Description:
    The maximum file size for session "ReadyBoot" has been reached. As a result, events might be lost (not logged) to file "C:\Windows\Prefetch\ReadyBoot\ReadyBoot.etl". The maximum files size is currently set to 20971520 bytes.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-Kernel-EventTracing" Guid="{B675EC37-BDB6-4648-BC92-F3FDC74D3CA2}" />
        <EventID>4</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>1</Task>
        <Opcode>10</Opcode>
        <Keywords>0x8000000000000010</Keywords>
        <TimeCreated SystemTime="2009-11-10T12:51:03.393985600Z" />
        <EventRecordID>28</EventRecordID>
        <Correlation />
        <Execution ProcessID="4" ThreadID="164" />
        <Channel>Microsoft-Windows-Kernel-EventTracing/Admin</Channel>
        <Computer>herbt-PC</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData>
        <Data Name="SessionName">ReadyBoot</Data>
        <Data Name="FileName">C:\Windows\Prefetch\ReadyBoot\ReadyBoot.etl</Data>
        <Data Name="ErrorCode">3221225864</Data>
        <Data Name="LoggingMode">0</Data>
        <Data Name="MaxFileSize">20971520</Data>
      </EventData>
    </Event>
    The image for PID 4 is listed as System.
    My searches have turned up similar events listed but no solutions.
    Any help would be appreciated.
    Cheers!

    Session "Circular Kernel Context Logger" failed to start with the following error: 0xC0000035
    As suggested above I assume this is a microsoft issue?  It has been discussed here and other forums for quite some time.  I never have seen a fix?  I wish when we received errors of this nature microsoft would tell us what they were.  How is this related to superfetch?  What is superfetch?  Why would superfetch have changed?
    BY THE WAY....  Superfetch is on(started) is on automatic and logs on as local system.  So this is not the cause of my issue.  Also what is readyboot?  Does the average computer really know what these programs/services or unique microsoft words/terms are?
    System
    Provider
    [ Name]
    Microsoft-Windows-Kernel-EventTracing
    [ Guid]
    {B675EC37-BDB6-4648-BC92-F3FDC74D3CA2}
    EventID
    2
    Version
    0
    Level
    2
    Task
    2
    Opcode
    12
    Keywords
    0x8000000000000010
    TimeCreated
    [ SystemTime]
    2010-04-11T14:35:49.829600000Z
    EventRecordID
    25
    Correlation
    Execution
    [ ProcessID]
    4
    [ ThreadID]
    48
    Channel
    Microsoft-Windows-Kernel-EventTracing/Admin
    Computer
    Daddy-PC
    Security
    [ UserID]
    S-1-5-18
    EventData
    SessionName
    Circular Kernel Context Logger
    FileName
    ErrorCode
    3221225525
    LoggingMode
    268436608
    Windows7, Windows, Win7

  • How can I auto export a PDF File using the "Smallest File Size" preset and set the Exported File Name based on information from an Imported PDF?

    Greetings all,
    I am trying to create a script to automate a PDF export process for my company for inDesign. I’m fairly new to inDesign itself and have no previous experience with javascript, although I did take C++ in high school and have found it helpful in putting this code together.
    We have an inDesign template file and then use the Multi-page PDF importer script to import PDF files. We then have to export two version of each file that we import, then delete the imported file and all of the pages to reset the template. This has to be done for nearly 1000 pdf files each month and is quite tedious. I’m working on automating the process as much as possible. I’ve managed to piece together code that will cleanup the file much quicker and am now trying to automate the PDF exports themselves.
    The files are sent to us as “TRUGLY#####_Client” and need to be exported as “POP#####_Client_Date-Range_North/South.pdf”
    For example, TRUGLY12345_Client needs to be exported as POP12345_Client_Mar01-Mar31_North and POP12345_Client_Mar01-Mar31_South.
    There are two templates built into the template file for the north and south file that are toggled easily via layer visibility switches. I need to get a code that can ideally read the #s from the imported Trugly file as well as the Client and input those into variables to use when exporting. The date range is found in the same place in the top right of each pdf file. I am not sure if this can be read somehow or if it will have to be input manually. I can put North or South into the file name based on which template layer is visible.
    I am not sure how to go about doing this. I did find the following code for exporting to PDF with preset but it requires me to select a preset and then type the full file name. How can I set it to automatically use the “Smallest File Size” preset without prompting me to choose and then automatically input some or preferably all of the file name automatically? (If the entire filename is possible then I don’t even want a prompt to appear so it will be fully automated!)
    PDF Export Code (Originally from here: Simple PDF Export with Preset selection | IndiSnip [InDesign® Snippets]):
    var myPresets = app.pdfExportPresets.everyItem().name;
    myPresets.unshift("- Select Preset -");
    var myWin = new Window('dialog', 'PDF Export Presets');
    myWin.orientation = 'row';
    with(myWin){
        myWin.sText = add('statictext', undefined, 'Select PDF Export preset:');
        myWin.myPDFExport = add('dropdownlist',undefined,undefined,{items:myPresets});
        myWin.myPDFExport.selection = 0;
        myWin.btnOK = add('button', undefined, 'OK');
    myWin.center();
    var myWindow = myWin.show();
    if(myWindow == true && myWin.myPDFExport.selection.index != 0){
        var myPreset = app.pdfExportPresets.item(String(myWin.myPDFExport.selection));
        myFile = File(File.saveDialog("Save file with preset: " + myPreset.name,"PDF files: *.pdf"));
        if(myFile != null){
            app.activeDocument.exportFile(ExportFormat.PDF_TYPE, myFile, false, myPreset);
        }else{
            alert("No File selected");
    }else{
        alert("No PDF Preset selected");
    So far my code does the following:
    1) Runs the Multi-Page PDF Import Script
    2) Runs PDF Export Script Above
    3) Toggles the Template
    4) Runs #2 Again
    5) Deletes the imported PDF and all pages and toggles template again.
    It’s close and much better than the original process which was almost 100% manual but I’d like to remove the Preset prompt from the PDF script and have it automatically select the “Smallest File Size” preset. and then if there’s a way to have it auto-fill in the file name so no user input is required at all other than selecting each file to import. (If there’s a way to setup a batch action for the multi-import script that would be even better!)
    Thanks in advance and if there’s anything else I can provide that would help please let me know! Even a nudge in the right direction will be a big help!

    If you hold down the option key, it will typically show the location. Or you can often hit option-return on the file and it will reveal the file in the Finder, instead of opening it.
    Final option is to open it, and just option-click the filename in the toolbar of Preview and it should show you the location.
    It's probably an attachment to an email you've received. If you have Mail set to cache emails and their attachments it'll be stashed in a subdirectory of ~/Library/Mail. Which is fine.

  • Packager fails with "Maximum file path name exceeded" on InCopy

    Attempting to build the full suite with CCP 1.5.0 Build 83, running on Window 8.1 update 64-bit.
    When building a 32-bit package it reaches InCopy it always stops and provides the so helpful "Maximum file path name exceeded error".  This appears to only happen when building the 32-bit package, building the 64-bit package caused no issues, and even in building the 32-bit package after the 64-bit package when everything is already downloaded the same error occurs.
    Tried it with:
    Cache path: C:\Users\iholmes\AppData\Local\Adobe\CCP\
    Destination path: F:\ISO\Adobe\Cloud\Working\CreativeCloud-06192014x86
    Also tried:
    Cache path: g:\Adobe\CCP
    Destination path: f:\cc\x86
    These are all local paths, not mapped network drives.

    Same here. From: C:\Users\<user>\AppData\Local\Temp\PDApp.log:
      <errorType>LongPathError</errorType>
      <filePath>C:\Users\<user>\AppData\Local\Temp\{839FDA1E-684B-4164-A8A0-AC83A4D37D3F}\AICY\ LS20\10.0\InCopy_10_LS20_Win32
    I can manually extract the zip file from:  C:\Users\<user>\AppData\Local\Adobe\CCP\AdobeCCPCache\AICY\LS20\InCopy_10_LS20_Win32.7z to the above path (which I think is what it's trying to do) with no error, so it seems to be something Adobe is going to have to fix.
    Someone else worked around it by creating a local user with a single character as the user name: Creative Cloud Packager Keeps Failing on InDesign: "Maximum File Path Name Exceeded"

Maybe you are looking for

  • Very slow report output in browser

    Hi, I have forms&reports 10gR2 with APS 10gR2, when I run report normal(with less data)report take atleast 2-3 minutes at first time although later on it takes only seconds to display but first time it takes too much time, I don't know what is wrong

  • Essbase 11.1.2.2 setup

    Hi Team, For an essbase setup ( EPM 11.1.2.2) can you let me know if this architecture will work. I have not include RDBMS here. I have not seen a setup where http server and app server(websphere) on different box. Will it be a problem during EPM con

  • Technical Abbreviations for System Status in stwb_2

    Hello Gurus, We have created a custom transaction with different user statuses. Not able to find, where & how these user statuses are aligned with system statuses. In service desk, we assign the user status. But when we look at the status report from

  • When I use the trial version of adobe elements why does it have adobe trial across my work?

    When I use the trial version of adobe elements why does it have adobe trial across my work?

  • Information message in the workflow

    Hi Experts, We are using an Information message ...message of type I inside a method in the leave request workflow. message i001(ztest1) with lv_pernr where ztest1 is teh message class. We are using this after a User Decision step....when the user cl