Export command does not create output file (PDF/WORD etc format)  file

I am using Crystal Report 8.5 and studio .net 2002.  I have crystal report 8.5 as well as Crystal report XI
installed on machine.
I have used Crystal Report Engine 9.1.3300 as reference in asp.net application.
Some of the crystal reports get exported to file (PDF/WORD etc) properly in the virtual directory.
However, for some reports export file (any format) PDF file does not get created.
Please help urgently.
regards,
Anita

Anita please download Service Pack 1 for CR 9.1 and see if that resolves the issue. SP 1 is here:
https://smpdl.sap-ag.de/~sapidp/012002523100009301312009E/crnet11win_en.zip
Ludek

Similar Messages

  • SQLJ Translation does not create profile file

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

  • Payment Wizard Does not create the File

    Hi I am trying to run the payment wizard and in the final step it says it ran successful and create the outgoing payments but it does not create the payment file for the bank.
    Step 1
                Start a new Payment run
    Step 2
               payment type : out going
               payment method : bank transfer
               File Path : Go to Desktop and file name is test
    Step3
              Select the business partner
    Step 4
             Select the date range
    Step 5
            Select the payment method
    Step 6
            Select the Invoices
    Step 7
            Execute
    It says successfully Executed the payment and create outgoing payment for the business partner.
    But it does not create the payment file (test in the Desktop)
    Please help me!!!
    Thanks
    Sanjaya

    Hi Sanjaya,
    Check the link
    Payment Wizard
    Payment Wizard Run does not create Payment/Check
    Payment Wizard/Engine - creation of Bank File
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • BCP does not leave output file handle

    We are executing BCP utility to bulk load files into tables. The utility is spawned from dll (C# code) with following parameters
    Complete_Table_Name + " IN " + Input_File_Name + " -S" + Server_Name + " -U" + Username + " -P" + Dec_Password + " -c -C RAW -e " + Error_File + " -o " +
    Output_File + " -h TABLOCK "
    Note that the output file is created on a network location.
    The utility is spawned with the following code
                Process BCP_Process;
                BCP_Process = Process.Start(BCP_Path, BCP_Parameters);
                BCP_Process.WaitForExit();
    After the bcp process completes we open the log file as below
                StreamReader sr = File.OpenText(Output_File);
    This piece code randomly fails with the below exception
    System.IO.IOException: The process cannot access the file '<network-path-to-the-output-file>' because it is being used by another process.
    It seems that the BCP utility does not release the handle to the output file and hence we get the exception. I understand that opening the file can be opened by using another FileStream constructor in READWRITE fileShare mode, but I wanted to understand why
    does bcp hold the output file handle or is there something incorrect in what we are doing?
    We monitored the network location for file creations, modifications and deletes. I saw that the log file was created, modified and deleted multiple times during a single bcp invocation.
    What could be the reason that the output file is created, modified and deleted multiple times during a bcp execution?
    Thanks.
    Technet Forum Issue

    I have absolutely zero time to research this now, but if you run BCP synchronously and wait for it to complete, it can not be holding any locks on the file. It must be something else, for instance an anti-virus scan.
    Why the output file opened and deleted multiple times during execution, I don't know.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Version 10 "File Open" command does not list older file versions

    When using the "file open" command in Illustrator 10, I noticed that the file list that appears in the window does not show older versions of illustrator files even though the File Type drop down box indicates "All formats". If I go to the file directory through Windows and then double-click the old version file (say Illustrator version8), the file automatically opens in Illustrator 10 without any problems.
    Is there a setting in Illustrator 10 that allows all files to show up in the "File Open" command?

    While I don't doubt you're experiencing this problem, I am at a loss as to how it can happen.
    Short of parsing every file in a folder, Illustrator cannot possibly "know" the versions. I could be wrong, but the only criterion for appearing in the file | open dialog is the file extension -- that is, when you select 'All Formats,' Illustrator shows all files that can be opened on the basis of file extension (.ai, .eps, .pdf, etc.).
    I tried playing around with the Read-Only and Hidden file attributes, but that made no difference. If you have things set up to show Hidden files in Explorer, they'll show up in AI 10's File | Open dialog.
    This is baffling.

  • Installer does not create directories/files in APPDATA directory

    I have an installer that installs the application into the Program Files directory, and additionally, is supposed to create application files and a directory structure in the Public App Data (%APPDATA%) directory of the Windows installation. In the LV Build Specification, I have created the appropriate destinations, moved the project specific files to those destinations in the Source File section, and tried combinations of the source file properties. When I run the installer, the application installs into Program Files correctly, however, nothing is created in %APPDATA%. I have even marked these files as vital to the installation, in order to stop, if there's a problem. No problem was indicated during the installation.
    Thanks for the help.

    Hi Jlgeris,
    I build a little istaller and told the installer to put something in the appdata directory as you can see in the attached files. After  installing it, I found the file in the right directory.
    Did you do this in the same way?
    regards
    Tobias
    Attachments:
    Destinations.png ‏89 KB
    Source_Files.png ‏93 KB
    Appdata.png ‏95 KB

  • Batch Actions - Export to PNG does not create PNG files

    I am testing Illustator CS4 to see if my department will upgrade to CS4 from CS2.  We do a lot of batch conversion of .eps graphics and have never had a problem in previous versions of Illustrator including CS2.
    I have created a new Set and Action to Export all .eps files  to .png files from a specific folder.  All the settings appear to be correct and match the settings from CS2.  However, when I run a the bacth on CS4, it appears to go through the motions, the .eps files show the current modified date, but no PNG files are created.  I think this may be a bug, and if this doesn't work, do I try CS3? or stay on CS2 which we rather not do?

    I think you will be happier with CS4 and have a suggestion use Fireworks to batch your files to png.

  • Acrobat 8 installation does not create a "Adobe PDF" printer device on Vista

    On a new Windows Vista Premium system I installed a new (not upgrade) Adobe CS3 Design Suite. Everything installed properly (it did before on a Windows XP SP2 system) but the Adobe PDF Printer doesn't appear at all!
    What???????????????????
    There is an Adobe Acrobat for Windows knowledge base article covering it: Error "Warning 20225..." or no Adobe PDF printer appears (Acrobat 8.0 and Acrobat 3D 8.0 on Windows) (333221)
    20225: Adobe Acrobat 8 Setup was unable to create a new item: Adobe PDF Converter. The Adobe PDF Printer may be unavailable. GetLastError: The specified module could not be found." When you click OK, the installer... (6/8/07)
    The symptoms and possible workarounds didn't seem to apply and a couple of the suggestions (disabling certain services) didn't look right. But throughout the KB article it indicating doing a reinstall of Acrobat using the Help menu to do a Repair.
    So, I selected the Repair command on the Help menu WITHOUT doing any of their recommendations and lo-n-behold, the Adobe PDF driver appeared! What am I missing??? It does work but I am suspicious.
    thank you,
    Ken
    Seattle, WA

    you need to update to 8.1

  • Netbeans does not create lib file in dist anymore?

    Hi,
    I am using Netbeans 6.5 and for some reason, the project libraries are not included in the dist anymore? Does anyone know why? I can't find an option in Netbeans.
    Thanks,
    J.

    corlettk wrote:
    masijade. wrote:
    georgemc wrote:
    masijade. wrote:
    You can modify it yourself, but, IMHO, that is kind of like attaching a rope to your steering rods and using that to steer rather than the steering wheel. ;-)Not sure I agree with that. Preparing a distribution is something that's different for different people, different projects and different organisations. It's not out of the question that you'll need more than one dist anyway. Your IDE makes a good stab at guessing what you want? Good-oh. You'd probably use Ant anyway (if you haven't embraced Maven!) to do this, and there's no "standard" to thatYes, if you want multiple distributions or partial distributions, of course, edit your build.xml, but then, IMHO, you should be using ant (or maven) manually and externally (which would also mean an external build.xml) and not the "compile" button on the IDE, as that is (again, IMO) not meant for either of those.We don't have a problem doing both. That is: developers built with the build button, but the official builds are scripted with ant.
    The build script starts by blowing away the project directory, getting everything (source, and all config) from the repository, and running an ant. It's not hard to maintain the official build.xml from diffs on the developers build.xml (which is checked in seperately).
    Cheers. Keith.So do we. But that is, as I've said, keeping the manual modification of build.xml and the manual execution of ant with that separate from the "build" button in the IDE, as it should be, IMO.

  • Maxl on error write to does not create error file

    The following MaxL statement functions except the creation of the dimbuild.err file. I have tried numerous combinations of syntax, server, folders without success.
    I am running this from the MaxL editor on the eas web server.
    import database XYAFIN.Finance dimensions
    from server text data_file "XYAFINPS_11P3.201102240507.txt"
    using server rules_file "DimNew"
    preserve all data on error write to "D:\\Hyperion\dimbuild.err";
    Results:
    Statement executed with warnings.
    Object [Finance] is locked by user
    Building Dimension elapsed time: [3.594] seconds
    There wer errors, look in D:\\Hyperion\dimbuild.err
    I appreciate your help!

    spool stderr on to "D:/Hyperion/StdErr.log";
    spool stdout on to "D:/Hyperion/StdOut.log";
    import database XYAFIN.Finance dimensions
    from server text data_file "XYAFINPS_11P3.201102240507.txt"
    using server rules_file "DimNew"
    preserve all data
    on error write to "D:/Hyperion/dimbuild.err";
    if D:\Hyperion\dimbuild.err already exists then change the last line to:
    error append to "D:/Hyperion/dimbuild.err";
    See how that works.
    Robb Salzmann

  • Acrobat X does not install the Adobe PDF printer

    When I try to install the Acrobat X on a Vista SP2 machine, the installation completed successfully but it does not create the Adobe PDF icon in the printers section.
    This was not a problem earlier, but there were some microsoft patches and GPO updates which happened which may be causing this issue. I am not sure what change has caused this problem.
    Any ideas on where to start the investigation would help.

    you need to update to 8.1

  • Save as does not Create PDF Compatible File even when the creare pdf compatible files is on, Illustrator CC 2014

    save as does not Create PDF Compatible File even when the creare pdf compatible files is on, Illustrator CC 2014

    When I open is adobe acrobat I get this message.
    "This is an Adobe® Illustrator® File that was
    saved without PDF Content.
    To Place or open this  le in other
    applications, it should be re-saved from
    Adobe Illustrator with the "Create PDF
    Compatible File" option turned on. This
    option is in the Illustrator Native Format
    Options dialog box, which appears when
    saving an Adobe Illustrator  le using the
    Save As command."

  • XML PO Output for Communication does not show barcode on PDF

    Hi,
    I am attempting to add a barcode to the PO Output for Communication XSL style sheet. I am doing this by calling 2 RENDERX XSL style sheets, the second containing an SVG template.
    I have successfully accomplished this locally on my personal computer using FOP to generate the PDF (barcode appears perfectly). When I transfer the files to Oracle (the new custom PO XSL-FO style sheet in a template, along with 2 new templates for the 2 RenderX XSL stylesheets. The RenderX style sheets appear to be imported at runtime using calls similar to: <xsl:import href="xdo://PO.ALKS_CODE128_BARCODE.en.US/"/>
    The PO Output for Communication report runs successfully with no errors or warnings, and all of the output appears EXCEPT for the barcode (remember this is SVG). Same thing happens when I View Document from the PO form.
    Why does my SVG barcode not appear on the PO Output for Communication within Oracle, yet the same code runs perectly on my PC. I've looked into the Adobe SVG Viewer plug-in, but I do not have that on my local machine yet the barcode appears fine in the PDF. It seems the PDF should be able to show any image anyway.
    Any suggestions would be greatly appreciated.
    Thanks,
    Suzanne

    Hi,
    I am not using a barcode font. I am using RenderX's XSL stylesheets to generate the barcode. As I said, the barcode generate's fine in the PDF on my computer but does not appear in the PDF when the code is moved to Oracle.
    Thanks,
    Suzanne

  • Error When creating Broadcastings "Portal theme does not fit output format"

    Hi All,
    When i create a Broadcasting Settings i am getting an Error saying "Portal theme does not fit output format", and below is the detailed that we are getting,
    "Diagnosis
    You used separate portal themes to generate PDF or print formats (PS or PCL). The output format that you selected is not appropriate for the portal theme currently set.
    System Response
    The broadcast setting is not consistent and you cannot save or execute it.
    Procedure
    Change the output format or the portal theme correspondingly. (The portal theme is set to the first valid value for the current output format when you display the corresponding tab page).
    Procedure for System Administration
      Notification Number RSRD 640"
    Can anyone help how to resolve this issue?
    Regards,
    Muruganand.K

    Would you have chance to provide me the sollution...
    We are facing the exactly the same error message
    Thanks a lot in advance
    Regards
    Ivan

  • Adobe After Effects CC 2014 Multi-machine rendering does not create RCF after Collect-File

    This was working in the previous release.  After going through all of the steps to perform a multi-machine render, not only does it say it is limiting it to 5 machines instead of the usual 99 (and I have over 100 cores on the render farm) but "Collect Files" (File/Dependencies/Collect Files) does not create the Render Control File (RCF) that kicks off the process on the other machines, like it did before and is supposed to do.
    This release was supposed to fix the 32 core limitation on render nodes (my server has 48), but now does nothing at all.
    Anyway, I assume there is a check box somewhere that says "do something" that hasn't been checked and another that says "Maybe my machine has more than 5 cores", and I would appreciate being steered in the direction of these new mis-features.
    Just as background, the 48 core server does show the little TV screen that monitors the watch folder, and I know for a fact that process looks for the "RCF" file.  Looking at the directory specified for "collect files", I can see that no RCF file is created, only 1 file, a report.txt file which contains this information is produced:
    Report created:
      7/9/2014 1:54:12 AM
    Project name: highup.aep
    Source files collected to:
      P:\temp\highup folder
    Source files collected: All
    Collected comps: 
      Thomas Falke - High Again High On Emotion)
    Number of collected files:  1
    Size of collected files:  63.4 MB
    Collected source files:
      C:\Users\Jeff K\Videos\Down\2014-2015\Thomas Falke - High Again High On Emotion).mp4
    Rendering plug-ins:
      Classic 3D
    Effects used:  1
    Effect:  Detail-preserving Upscale

    The dialog box has been slightly refactored.  You must click "Allow watch folder rendering" and then all is good.  Hope this helps anyone else.  Thanks to Rafil at customer support chat for this.

Maybe you are looking for

  • Won't charge on computer or in the wall

    I have a 2nd gen shuffle, brand new (about a month old) Recently the battery ran out while I was on holiday. When I got home, I plugged it in and it won't charge. I get three flashing amber lights then nothing. All software is updated and I have trie

  • Re: Photoshop Elements 5.0

    After undating bitdefender when I try to edit in PE 5.0 I am prompted with Attempt to access invalid address followed by unable to connect to editor applications.  How can this be fixed?

  • How do you accept a itunes gift on my ipad mini?

    please get back to me asap

  • Change "Sent From" Address on Sent Mail

    Is there a way to change the "Sent From" Signature on outgoing mail. I use Yahoo for push email but want my outgoing mail address to read as my corporate email address. I don't want to send email to my clients showing a yahoo address. Any help would

  • OS 7 battery life not good!

    After I upgraded, my iPad is using battery faster. What can I do? I've turned off a motion control in Accessability.