More as 10 Files in one Collaboration Directory, view structure

Hallo Together,
they are ca. 40 files in one Directory in the Documents and Links Section of the Collaboration Room.
After 10 files the Portal open a new row. Now we has 4 rows with 10 Files.
The last two rows are only visible when the user use the scrollbars. A lot of people don't see the scrollbars and by this, they don't see the Files. Is it possible, that the portal makes the next row under the last row, not on the right side?
Thanks for your help and regards
Sebastian

Hi,
I did what you said:
1. Exported an active sequence to FCP XML
2. Parsed it in order to get the information on the segments
3. I set the in/out points of the sequence in a loop (let's assume I have 2 segments)
4. Send the adjusted sequence to the render
But there is an issue - all files are got rendered with the timing of the last segment.
The problem is that the segments are sent to MediaEncoder only after the script finishes, which means if I run a loop all my adjustments are overridden by the last setting.
How to overcome the problem?

Similar Messages

  • How do I combine more than 12 files into one PDF file?

    How do I combine more than 12 files into a single PDF? That's why I upgraded to Adobe XI Pro.

    Hi Marshall32,
    If you have Acrobat Pro, you can combine more than 12 files by choosing File > Create > Combine Files into a Single PDF. The 12 file limitation is only imposed by Adobe PDF Pack online service. Acrobat itself doesn't have such a limit.
    (If you haven't already, you can download Acrobat from here: https://cloud.acrobat.com/acrobat.)
    Best,
    Sara

  • How can I write more than 32k file in oracle directory

    Hi experts,
    I am struggling while I write more than 32k file size in oracle directory, and throws an error ‘ORA-06502: PL/SQL: numeric or value error, like this.
    This is my procedure
    declare
    l_s_filename   UTL_FILE.file_type;
    begin
       l_s_filename := UTL_FILE.fopen ('INFO_MIGRATION', 'finfinne.txt', 'W');
    FOR rec
          IN ( SELECT SQL_REDO
                  FROM V$LOGMNR_CONTENTS
                 WHERE seg_owner <> 'SYS' AND username = 'GENTEST'
                 AND TABLE_NAME NOT LIKE '%_TEMP'
                       AND OPERATION IN ('UPDATE','INSERT','DELETE')
              ORDER BY TIMESTAMP)
       LOOP
          UTL_FILE.put_line (l_s_filename, rec.SQL_REDO);
       END LOOP;
       UTL_FILE.fclose (l_s_filename);
    end;can any please help me how can I overcome this problem
    Thanks,
    Arun

    You can write by breaking it into small chunks. Also you can try to use DBMS_XSLPROCESSOR.CLOB2FILE. For UTL_FILE the code snippets may looks like
    -- Read chunks of the CLOB and write them to the file
    -- until complete.
       WHILE l_pos < l_blob_len
       LOOP
          DBMS_LOB.READ (rec.l_clob, l_amount, l_pos, l_buffer);
          UTL_FILE.put_line (l_file, l_buffer, FALSE);
          l_pos := l_pos + l_amount;
       END LOOP;

  • Can anyone help? Need to collect 4 or more pdf-files into one file

    Hi,
    I regurarly need to mail pdf-files. I'm searching an app or program that can collect 4 or more different pdf-files into one file. So I don't need to send them all apart.
    Can anyone help me out?
    Thanx!
    Theo

    Open Preview, open the PDFs you want to combine, select View/Show Thumbnail, drag the PDFs, you want to combine to the first PDF, then Export as PDF.
    Preview Help

  • Transfer files from one directory to another using HTTPS message protocol

    My client has an requirement where the source files are in different directory and they need to be placed in a target directory with the same filename..it looked simple so far... but the actual complexity is that the source files are on a Novell server where my XI box doesn't have visibility ( Novel client cannot be installed on OS win 2003 64 bit)  so File adapter cannot be used to read/write files, i need to design a solution to overcome this. My plan is to write a script or web service in Novel server and use that in the Sender HTTP adapter and also write another Web service to listen to Receiver HTTP adapter, i am not sure how HTTP adapter can be used for transfering files but my client insists on HTTPS as it is more secure. Can any one throw some light... if they had similar requirement before.
    Thanks,
    Ravi

    Hi,
    Sounds ok but... just to understand.. is the target also not accessible from the File Adapter? Otherwise why would you not use the file adapter on the receiver side?
    Secondly HTTP is ok but you realise that for monitoring the HTTP adapter is not part of the Adapter engine and hence if you have issues you could not simply goto the Comm Channel Monitoring to investigate?
    Maybe an approach using SOAP may be better assuming the mssages are not huge.
    Lastly you ask why would you use XI if you can just develop a separate servlet to do the job... well you can mention the following:
    Central Place for Monitoring all message flow and maintenance
    If you are using CCMS then it is very easy to integrate the errors there
    Consistency in overall design to be aligned with other interfaces
    these kind of things are good to bring up... remember that way after the project has completed someone will have to monitor and maintain all of this so it is nice to have a central point of reference to see exactly what interfaces you company has.

  • How to get all files in one directory

    Hi there,
    is there any way to get all the files in one directory?
    e.g. a method
    File[] getAllFiles(String directory){
    Thank you

    Just out of interest, which part of the File API was confusing?
    http://java.sun.com/j2se/1.5.0/docs/api/index.html
    If you look down the left-hand side, you'll see a frame listing "All File". If you select "File" from that list, it opens up the API in the right-hand frame. Quite near the top you'll find "listFiles".
    I only ask as this (and other questions easily answered by looking at the API) are frequently asked. Did you overlook it when you read the API or did you just not read it?
    I really want to know. I think there is scope to cater for that behaviour within this site. A nice API finder would be good; something more intelligent than the search function (which people use less frequently even than the API docs).

  • How to load files up one step from local working directory

    Good afternoon,
    I have a project assigned to me that has some Ni TestStand code written to read files from a fixed directory and I would like to change this directory to be the directory where the TestStand seqeunce file is located.
    Furthermore, I would like to be able to step back one directories and forward into a different directory. Is this possible? I know in linux his is done with ..\ preceeding the directory location
    I want ot do this for variables in TestStand and also for pats in LabView.
    Cna somebody provide me with the correct syntax, for example if
    my seq file is C:\User\Test\myseq.seq
    and I want to open an ini file located in
    C:\Config\config.ini
    Should I save the path for the variable as
    ..\..\Config\config.ini ?? 
    Thanks,
    -D

    1) If you want to use a relative path that is resolved the same way as a module path (i.e. using the teststand search directories where looking in the same directory as the sequence file is one of the default possibilities) you can do something like the following:
    FindFile("..\\Config\\Config.ini", True, Locals.absolutePath)
    2) RunState.SequenceFile.Path actually includes the sequence file's name, so if you want to build a path from that you would need to do something like the following to parse out the part of the path you care about (though maybe an extra ".." instead of doing this parsing works to get past the file name too, I've never tried that. Perhaps either way is fine.):
    Locals.absolutePath = Left(RunState.SequenceFile.Path, Find(RunState.SequenceFile.Path, "\\", 0, False, True) + 1) + "..\\Config\\Config.ini"
    3) Whether or not you need to build an absolute path or can use a relative path depends on what you are doing with the path, if you provide more details on what you are doing with the path we can let you know. In general, you should not use a relative path when calling a win32 API.  See the remarks section of the following where it says, "Multithreaded applications and shared library code should not use the GetCurrentDirectory function and should avoid using relative path names.":
    http://msdn.microsoft.com/en-us/library/windows/de​sktop/aa364934%28v=vs.85%29.aspx
    Though if you are calling a TestStand API then a relative path might be ok, depending on the API call, because some teststand APIs can use the TestStand search directory algorithm to resolve the path (basically the equivalent of 1 above).
    Hope this helps,
    -Doug

  • Java Program to copy file from one directory to another failing

    Hello All,
    Oracle Applications 12.1.3
    RDBMS: 11.2.0.30
    SQL*Plus: 10.1.0.5.0
    Java beginner here so help is much appreciated.  I'm have some java code that I'm using to copy a file from one directory to another in an Oracle Applications Server.  I notice that when moving to a new instnace I started to get file not found errors.  I think it's because of the directory.  My question is, does the directory in which I trying to pick up the file have to be a DBA_DIRECTORY, or a UTL_FILE directory in order for the java to find the file and move it?
    Here is my code...
    CREATE OR REPLACE AND COMPILE JAVA SOURCE NAMED "COPY_FILE_JVS" AS
    import java.io.*;
    public class COPY_FILE_JVC{
      public static void copy(String SourceFile, String DestDir) {
        File source = new File(SourceFile);
        File dest = new File(DestDir);
        File cpDestFile = null;
        try {
          if (dest.isDirectory()) {
              if(source.isFile()) {
                System.out.println("File name = " + source.getName());
                System.out.println("File name dest = " + dest.getPath() );
                System.out.println("File name cpDestFile = " + dest.getPath() + File.separator + source.getName());
                cpDestFile = new File(dest.getPath() + File.separator + source.getName());
              else {
                System.out.println("Directory or File Not Found");
                return;
          BufferedInputStream  br = new BufferedInputStream (new FileInputStream (source));
          BufferedOutputStream  bw = new BufferedOutputStream (new FileOutputStream (cpDestFile));
          int read = 0;
          while((read = br.read()) != -1) {
            //System.out.println((char)read);
            bw.write(read);
          br.close();
          bw.close();
        catch (FileNotFoundException e) {
        e.printStackTrace();
        catch (IOException e) {
        e.printStackTrace();

    I get these messages when calling the java from SQL Plus as follows...
    serveroutput on size 100000;
    dbms_java.set_output(1000000);
    MY_PKG.CopyFile('/home/my_user/set_env.sh','/interface/home'); (this is call to oracle pl/sql package which calls the java.)
    PL/SQL procedure successfully completed.
    Directory or File Not Found
    PL/SQL procedure successfully completed.
    If I change the directory from /home/my_user/ to any directory that is defined in DBA_DIRECTORIES or is a UTL_FILE directory to program works.  Is it perhaps because the java is in a PL/SQL package as seen below?  The PL/SQL program runs as the APPS user and I have issued the following the command grant JAVASYSPRIV to APPS.
    Here is the PL/SQL Package....
    CREATE OR REPLACE PACKAGE BOLINF.MY_PKG AUTHID CURRENT_USER AS
    CopyFile(p_SourceFile IN VARCHAR2, p_DestDir IN VARCHAR2);
    +++++++++++++++++++++++++++++
    CREATE OR REPLACE PACKAGE BODY BOLINF.MY_PKG  is
    CopyFile(p_SourceFile IN VARCHAR2, p_DestDir IN VARCHAR2)
    AS LANGUAGE JAVA NAME 'COPY_FILE_JVC.copy(java.lang.String, java.lang.String)';

  • HELP! Second time...Some attributes of one or more of the files.

    I allready post this question in the morning, but got no answer.
    I want to know if someone have had this problem before.
    Maibe I didn't explain myself well, please let me know if you understand what is the problem I am having. I really need to sove this, I have more than 60 hours of material allready captured and I can't start editing until I solve this problem. I am working with two G5s and I have the same error in both of them.
    Here is the question again with some corrections to see if you guys undestand me:
    I am batch capturing a HUGE project that I logged on FCP 4.5, I am now working with FCP5. I have captured arround 70 hours of material. In some cases I captured the clips but it shows the clip as if it was offline. When I try to reconect the media the following mesage shows up:
    "Some attributes of one or more of the files you hace chosen do not match the attributes of the original. This may cause problems within the sequence that are dependent on them. The attributes that differed are the follows:
    - Media start and end
    Would you like to try to connect them again?"
    What does this mean?
    I do not have any sequence yet, am I going to have future problems with the sequence in the project?
    PLEASE HELP!!!!!
    Thanks a lot in advance.
    Jorge

    I haven't found an answer to this yet and wish I could give advice.
    However, I'm looking for it. And if you find anything - we'd love to know.
    I've got a very large progect - all the media was manually copied over (via the finder) to external lacie FW drives which were brought here to another satellite editing room. I recieve updated projects from the primary edit and relink the media - The audio files have tended to 'mismatch' when I reconnect the updates. And it appears this is increasing in frequency each time! (I relink to each new version of the project which is sent).
    At this point it seems all the audio files bring up the same "File Attribute Mismatch" window. Only in certain sections of the sequence is the audio out of sync (to a variable degree +/- 5 to 7 frames).
    This occours when I replicate the workflow on another machine.
    This does NOT happen when I've sent the projects back to the original edit suite - which has the original media. The reconnection is fine.
    So it appears this might be due to the media itself - and possibly when it was copied over.
    But I can't yet figure out why this problem appears to be increasing, occouring with more audio files.
    If anyone has any ideas to this - which sounds very similar to the original issue on this thread - we'd be obliged to reciprocate the help!
    Cheers
    G5 dual 2.3GHz power PC   Mac OS X (10.4.6)   FCP 5.0.4 / QT 7.1
    12 G4 PowerBook (1Ghz)   Mac OS X (10.4.1)  

  • How can I link more HTML files to one menubuilder file

    Hi,
    I have the following problem which hopefully one of you can
    help me solve.
    With menubuilder I just made a menu to run on a stand alone
    CD. This menu contains links to 5 individual training modules that
    are movies in HTML format.
    After some searching in this forum I found out that I should
    use the save file with project option to keep the links when moving
    the entire project to a separate CD.
    No my problem. To make this CD work I need to copy all files
    into the main directory. But each individual training modules has,
    except from the title, the same under laying files. Copying them to
    one main directory overwrite all and leaves me with one module that
    is started from 5 different links.
    Hopefully I explained my problem clearly and is there
    somebody that can help me with this.
    Kind regards
    Erik

    Hi Erik
    For starters, Captivate does not create movies in HTML
    format. It always creates them in .SWF format. Are you possibly
    noticing the fact you can create an additional HTML page used to
    display your .SWF movie and assuming the movie is in HTML format?
    Is this Captivate 1 or Captivate 2? I ask because you are
    talking about "the same underlying files".
    One suggestion I would make is to totally forego MenuBuilder
    in favor of Jesse Warden's Captivate Player.
    Developer
    Center Article
    Player
    Update Page
    Cheers... Rick

  • How do i move a file from one directory to another?

    Can anyone help me in moving a file from one directory to another?
    The following code just does not work!!
    File source_file = new File(source_file);
    if(source_file.exists())
    File dest_file = new File(destination_file);
    if(!dest_file.exists())
    boolean moved = source_file.renameTo(dest_file);
    System.out.println("moved.."+moved);
    The varirable moved is always false.
    Can anyone tell me whts wrong in this code?

    The problem in your code is you used file object as argument when you create a new File. I changed a little bit codes and it should be fine now.
    String source_file1="test111.txt";
    String destination_file1="test222.txt";
    try{
         File source_file = new File(source_file1);
         if(source_file.exists())
              File dest_file = new File(destination_file1);
              if(!dest_file.exists())
                   boolean moved = source_file.renameTo(dest_file);
                   System.out.println("moved.."+moved);
    catch(Exception e){
               e.printStackTrace();
    }

  • To Move Multiple Files from one directory to another.

    Hi,
    I need to move multiple files from one directory in UNIX (application server ) to another. I need something like an FM 'STRALAN_COPY_FILES' which is also valid in ECC 6.0.
    Thanks in advance.

    Hello Sachin
    Below you see a copy of how to use EPS_FTP_PUT using transaction SE37.
    Import parameters               Value             
    RFC_DESTINATION =                 NONE              
    LOCAL_FILE             =         filename          
    LOCAL_DIRECTORY   =              /dir1/dir2        
    REMOTE_FILE             =        filename          
    REMOTE_DIRECTORY   =             /dir1             
    OVERWRITE_MODE        =          F        " force -> overwrite existing file                 
    TEXT_MODE                    =   B               " binary
    TRANSMISSION_MONITOR            X       " display transmission monitor            
    *RECORDS_PER_TRANSFER            10                
    *REQUESTED_FILE_SIZE             0                 
    *MONITOR_TITLE                                     
    *MONITOR_TEXT1                                     
    *MONITOR_TEXT2                                     
    *PROGRESS_TEXT                                     
    *OBJECT_NAME  
    Regards,
      Uwe

  • More than one struts-config.xml files in one project

    Hi all
    Can we have more than one struts-config.xml files in one project developed using struts.
    If so what is purpose and how to do this.
    Anybody please explain on this topic.
    Thanks
    Parvathy

    Hi all
    Can we have more than one struts-config.xml files in
    one project developed using struts.
    yes it is possible
    If so what is purpose and how to do this.
    it is use for odular application so developer won't share a single configureation file.. as you know struts-config.xml is defined on the web.xml
    like this:
    <servlet>
    <servlet-name>mybank</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet
    </servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>config/module1</param-name>
    <param-value>
    /WEB-INF/struts-module1-config.xml
    </param-value>
    </init-param>
    </servlet>

  • How to get file names for one oracle directory object.

    Hi all ,
    I defined one oracle directory object . Now I want to know how many files stored under this object in physical directory and their names ? anyone know how to do it by pl/sql ?
    Thanks,
    George

    Chris Poole has an [XUTIL_FINDFILES package|http://www.chrispoole.co.uk/apps/xutlff.htm] which can do this in pure SQL. It does require, though, that your DBA install code in the SYS schema and that you rely on the behavior of an undocumented X$ table. That may not be possible in certain environments.
    I personally prefer a small Java stored procedure along the lines of [this one from Tom Kyte|http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:439619916584]. It isn't a pure PL/SQL solution, but it tends to fit relatively cleanly in any environment. Most DBAs will be willing to grant the privileges this sort of approach requires where they would be hesitant to grant the access necessary for XUTIL_FINDFILES.
    Justin

  • Moving the files from one directory to another.

    It seems that this would be simple but I am not able to do it easily. I just want to move files from one directory to another directory. I tried the file class renameTo as in the following...
    File fFrom = new File("C:\\uhin\\batch\\outgoing");
    File fTo = new File("C:\\uhin\\batch\\outgoing\\back");
    fFrom.renameTo(fTo);
    but this doesn't seem to work. I have tried deleting the directory and then recreating it but this doesn't seem to work as in.
    fTo.delete();
    fTo.mkdir();
    any ideas ?
    thanks
    kris.

    That code you have there tries to rename the directory from C:\uhin\batch\outgoing to C:\uhin\batch\outgoing\back. I'm not sure if you can rename directories in general, but even if you can that particular renaming wouldn't work.
    However you didn't want to rename the directory in any case. You need to use a File method called listFiles (if I recall correctly... check the API documentation) which returns an array of File objects, representing all the files in that directory. Then loop through that array, and for each File in it, (1) create a new File object with the new name, and (2) call renameTo() to rename the file.

Maybe you are looking for

  • OPEN JSP IN 2007 Excel

    I am trying to open JSP file in excel and I get the following message: excel cannot open the file because the file format or file extension is not valid.Verify that the file has not been corrupted and that the file extension matches the format of the

  • Edit the default  install "Opencart Website and Template" in dreamweaver

    Hi guys, im new to dreamweaver and diving in the deep end obviously. I guess the idea of doing this on my localhost is all about practicing locally before tackling a real world scenario on a production web-server in the near future. I have just insta

  • [Solved] Eye of Gnome awful (broken?) interface after upgrade

    Just today I've upgraded from eog 3.14.3 to eog 3.16.1 and am incredibly disappointed in the new interface I'm seeing, to the point where I expect something isn't working as it should.  (I've downgraded to 3.14 as a temporary solution). Normally (3.1

  • JDBC & MS Access

    The following code is from "Java 2 for Dummies": import java.sql.*; public class CreateTable public static void main(String args []) throws SQLException, ClassNotFoundException Connection connection;      Statement statement;      Class.forName ("sun

  • In a multi-conditional formula node it keeps returning same thing

    I am trying to execute a multi-conditional if else loop. From this website it says version 6.0 (which I have) can use C language so it should be something like: if (x=0) y= 1000; else if (x=1) y= 60000; else if (x=2) y= 90000; else y=0; etc what I am