Weird problem when converting project for 23.976 to 25

We are doing this on a batch of episodes (Just changing the play speed no interpolation.) But basically when we do the conversion some times between the 3 and 4th minute it copies the first frame of the project and pastes it over a frame in the output. It's only like one or two frames. Any idea why this is. It's not a big problem it's just a weird ghost in the machine thing.

I am getting the same error !! Can someone help on this issue !!
I have converted/migrated my application from Weblogic Workshop 8.1.4 to 9.2 as per the documentation.
Failure occured in the execution of deployment request with ID '1168574404997' for task '2'.
Error is: 'weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references.
Unresolved application library references, defined in weblogic-application.xml:
[Extension-Name: beehive-controls-1.0, Specification-Version: 1, Implementation-Version: 1.0, exact-match: false],
[Extension-Name: weblogic-controls-1.0, Specification-Version: 1, Implementation-Version: 1.0, exact-match: false],
[Extension-Name: wls-commonslogging-bridge, Specification-Version: 1, Implementation-Version: 1.0, exact-match: false].'

Similar Messages

  • Hyperlink problem when converting Word to PDF

    Hi everyone.
    I am using Adobe Acrobat 7.0 Standard version 7.1.4 on a Windows 2000 environment.
    I am using Word XP/2002 SP3.
    I have a couple of problems when converting Word to PDF.
    When converting a long link which is in 2 lines, PDF just takes one line into account, not considering the whole link
    When I have hyperlinks that links to a web page, the link works fine in Word but in pdf, it gets the few words after the url address making the link not work.  For example.  I have a hyperlink that http://www.google.com/ and after this I have the words: "This is a sample text".  The hyperlink in pdf would then become http://www.google.comThisisasampletext
    Do you have any ideas how I can correct this?
    Thanks.

    To get the cross references, you have to use Convert to PDF (PDF Maker part of the Acrobat product). However, you first need to go to the print menu and set the printer to the Adobe PDF printer. Close the print menu and then do a reflow and link update of the document (ctrl-A, then F9 I think). This is needed to get the links correct since WORD reflows the document based on the printer (problem with them going to the wrong place).
    Printing to the Adobe PDF printer (the step of print to file is not needed, just print to the printer and the rest is automatic) does not include the links. PDF Maker is a PreProcessor for the Adobe PDF printer that adds PDF Marks to the PS file before it is sent to Distiller (OK, the printer when used normally creates a PS file and then invokes Distiller to complete the process - your steps did with the Adobe PDF printer is the same process done manually).
    Summary:
    1. Fix document after setting the printer to Adobe PDF.
    2. Use PDF Maker (create PDF button)

  • Problem when Creating Project (Composite Application Services) in NWDS

    I've seen a few posts regarding this but I don't feel as if any real solution was given.
    I just installed Netweaver Developer Studio (7.0.15) with the current JDK/JRE (1.6.0_07).  When trying to create a new Composite Application Services project within the Studio, using the new project wizard, I get an error: Problem when Creating Project.
    I get the EJB Module and Dictionary to create within my navigator with no problems, however, during the creation of the metadata, the error occurs.  I do have the metadata folder appear within the navigator, but nothing in it.  None of the other three items are created.
    I have tried the attempt at deleting the metadata folder within my workspace directory and trying again but the same exact result occurs.
    Is there any other solution out there for this problem besides attempting to find older versions of NWDS, etc. that are more "stable"?
    Thank you!

    Durga,
    Very simple but effective solution.
    I had tried uninstalling / re-installing NWDS with no effect but uninstalling / re-installing NWDS AND all java related products on my machine did work.
    Note: For anyone else with this issue in the future.  I installed the Java SDK / JRE 1.4.2_18 with NWDS 7.0.15 in case this is also a possible issue with versions.
    Thanks, Durga!

  • "Problem when creating project"

    Hi,
    I am trying to create a new Composite Application Services project using Netweaver studio 7.011. When it came to the final step of the Project creation wizard, an error message pop-up saying "Problem when creating project".
    I have tried the methods posted in the forums, but its doesn't work for me.
    "Problem when creating project"
    Problem creating a composite applications project
    Can advise on how to resolve this?
    I am currently using Java 1.4.10 and NW2004s SP11.
    Thanks a lot.
    Regards,
    aiwei

    Hi Chandan,
    I still encounter the error message and this time, it only create the ejbmodule folder. In mine previous creation, I have dictionary, ejbmodule, metadata and webdynpro.
    I realised that there is some different in the .plugin folder and the previous .plugin folder of the .metadata.
    Not sure whether is it affected by the .plugin folder. Is there a list of .plugin required?
    can advise?
    Thanks again.

  • Problem when querying OLAP for Value based hierarchy

    Hi I have problem when querying OLAP for value based hierarchy , for level based dimension it work fine
    the strange part is if I only put one value, it will work perfectly
    for example if I put only 1 value for that value base hierarchy like CF_HIER::426362, then it will get the correct value for that id 426362
    but if I put multiple value to the list
    CF_HIER::426362
    CF_HIER::424470
    CF_HIER::429073
    CF_HIER::424230
    then only some value will come out correctly, some of them will be 0, I wonder why because if I query using each value, then it show correct value
    for multiple value usually only the top in hirarchy give correct value, but the leaf will give 0, but if I query only the leaf, the leaf will give correct value
    this problem only happen for my value based hierarchy, for the level based hierarchy it work fine both for each value or multiple value in the list
    this is the code how I guery
    ////the "elementIdList" is where the value is (CF_HIER::426362,CF_HIER::424470,CF_HIER::429073,CF_HIER::424230), if I only put single value in this list the query work fine, but if I put multiple value then some value give correct result, some will give 0
    String[] elementIdArr = new String[elementIdList.size()];
              int i = 0;
              for (Long elementId: elementIdList) {
                   String elementIdStr ="";
                   if (hierarchy instanceof MdmLevelHierarchy)
                        elementIdStr = hierarchy.getName()+dimension.getValueSeparationString()+
                                            level.getName()+dimension.getValueSeparationString()+
                                            level.getName()+"_"+elementId;
                   else
                        elementIdStr = hierarchy.getName()+dimension.getValueSeparationString()+
                                            elementId;
                   elementIdArr[i++] = elementIdStr;
              Source myList = dp.createListSource(elementIdArr);
              result = hierarchy.getSource().selectValues(myList);
         Source joinedSource = measure.getSource();
              joinedSource = joinedSource.join(result );
    is there any suggestion where I'm doing wrong?or is it different between querying value based hier with level based hier?
    thanks

    Hi I have problem when querying OLAP for value based hierarchy , for level based dimension it work fine
    the strange part is if I only put one value, it will work perfectly
    for example if I put only 1 value for that value base hierarchy like CF_HIER::426362, then it will get the correct value for that id 426362
    but if I put multiple value to the list
    CF_HIER::426362
    CF_HIER::424470
    CF_HIER::429073
    CF_HIER::424230
    then only some value will come out correctly, some of them will be 0, I wonder why because if I query using each value, then it show correct value
    for multiple value usually only the top in hirarchy give correct value, but the leaf will give 0, but if I query only the leaf, the leaf will give correct value
    this problem only happen for my value based hierarchy, for the level based hierarchy it work fine both for each value or multiple value in the list
    this is the code how I guery
    ////the "elementIdList" is where the value is (CF_HIER::426362,CF_HIER::424470,CF_HIER::429073,CF_HIER::424230), if I only put single value in this list the query work fine, but if I put multiple value then some value give correct result, some will give 0
    String[] elementIdArr = new String[elementIdList.size()];
              int i = 0;
              for (Long elementId: elementIdList) {
                   String elementIdStr ="";
                   if (hierarchy instanceof MdmLevelHierarchy)
                        elementIdStr = hierarchy.getName()+dimension.getValueSeparationString()+
                                            level.getName()+dimension.getValueSeparationString()+
                                            level.getName()+"_"+elementId;
                   else
                        elementIdStr = hierarchy.getName()+dimension.getValueSeparationString()+
                                            elementId;
                   elementIdArr[i++] = elementIdStr;
              Source myList = dp.createListSource(elementIdArr);
              result = hierarchy.getSource().selectValues(myList);
         Source joinedSource = measure.getSource();
              joinedSource = joinedSource.join(result );
    is there any suggestion where I'm doing wrong?or is it different between querying value based hier with level based hier?
    thanks

  • Weird problem when executing an update statement

    Please help me out with this issue. This a very weird problem i'm facing while executing the following update statement.
    update tblo.S_TABLE c
    SET (ACCNT_NAME, ACCNT_LOC)
    =
    (select NAME, LOC from S_TABLE1 p
    where p.ROW_ID = c.ACCNT_ID)
    where ROW_ID = 'XXXXX'
    The statement executes perfectly fine in "SQL Plus" but when i try from my application or any SQL Tool that uses ODBC, it fails with the following error
    <eb1>ORA-00923: FROM keyword not found where expected
    State:S1000,Native:923,Origin:[Oracle][ODBC][Ora]</eb1>
    ODBC Driver Used: 9.2.0.2.0

    Yes this could most probably be resolved by upgrading the driver. I'hv tried MS Oracle ODBC driver but that is even more problematic!
    The applications works fine in another environment which uses a Merant ODBC driver. Thanks for your time and advice.

  • Weird problem when downloading the output to an excel sheet

    Hi to all,
          when i download the list, output by an alv grid, i observe a weird problem..in the excel sheet the last digit (10th digit) of the first col. which is delivery no., is getting truncated...0001802563 is getting downloaded as 000180256..couldn't understand why...when i use conversion_exit fm, the values are not getting truncated and downloading correctly...curious to know what's gone wrong in this funcationality? thanks all
    cheers,
    Shankar. M.

    actually the problem is in the field catalog.if u can send me the code, i shall bug fix it for u.

  • Link problem when converting MS Word to PDF with Acrobat Professional

    Hello all,
    I have the following problem:
    When I have a MS Word document with links to other files inside and I convert it to PDF the links are converted from relative paths to absolute paths.
    The problem is created by Acrobat as the links in the MS Word file are relative (I have checked this by moving the different docs to another directory and confirmed that the links still work after the move).
    How can I make the paths in the PDF relative again? I know there is a plugin from Evermap (and I can confirm this works) but I do not want to use this plugin (=read: spend another $190 dollars) as the license for the Acrobat Professional is expensive enough . Is there a way I can convert the paths within Adobe Acrobat easily? Or better: can I adjust the settings in Acrobat to a new standard when all converted documents contain relative paths?
    Backgroundinfo:
    - Adobe Acrobat 8 Professional
    - Windows XP (SP2)
    - MS Word 2002
    Thanks in advance!
    Bart

    Dear Steve,
    I have tried what u suggested: I put all the documents (word + linked documents) into the same folder on the local-drive (C). Then I recreated the links  in the word document to be sure they were matching. After that I converted the word document to an PDF and confirmed the links were still working in the PDF document.
    Then the biggest challenge: copying the pdf and linked documents to another drive&directory. As you can guess: Unfortunately the links did not work anymore.
    Any other suggestions?
    If I use the Evermap-tool (30 day-trial) I can look at the links and this is how it is 'coded' in the pdf.
    first link: ../../../../test/link_a.pdf
    second link: ../../../../test/link_b.pdf
    and yes this will work if you put the documents in the directory test in the root of the local-drive but not in a different subdirectory.
    Anyone ideas?
    Grtz,
    Bart

  • No Audio When Converting Videos For iPod

    whenever i convert video files for my ipod they do not have audio. i have tried several programs, and none work. i have read other discussions about this, and found that MPEG Streamclip worked for other people, however whenever i try to convert using this program, it says "Error: Can't Prepare The Movie" Can anyone tell my why i can't convert these videos? i cannot figure it out. thanks alot.

    I am not sure what you mean when you ask what the "compression formats" are.The compression formet refers the manner in which the media was encoded and, by extension, how the media must be decoded. I.e., it determines which codec (encoder/decoder or compressor/decompressor) is to be used with the media file.
    If you can tell me where to find those i could tell you what they are. I can, however, play the video in itunes, quicktime, and MPEG Streamclip.Simnce the files are playable in QT, the most common place to look for codec information is in the "Show Movie Info" window following the "Format:" entry. E.g., it might say:
    Format: MPEG2 muxed, 640 x 480orFormat: Apple MPEG4 Decompressor, 320 x 240, millions
    AAC, Stereo, 48,000 kHz
    i also am not sure if there is audio in the source file.Do you hear any audio when the original file is played? If not and there is no audio track (or "muxed") information, then there may not be any sound for you to convert in the first place.
    how do i find out if it is muxed?If it is "muxed," the format entry we say so. In this case blocks of audio data and blockes of video data are interspersed in a single data stream (track). This is the normal way MPEG-1 and MPEG-2 audio/video data is synchronized. In addition, these formats commonly lose their audio content when converted using QT Pro, iTunes, iMovie, FCE, FCP, or other QT based "frame-to-frame" synchronized workflow. (In the case of MPEG-2 in MPEG Streamclip or QT, the QT MPEG-2 component must also be installed in order to convert the video data alone.)
    most of my videos that won't convert for an ipod are downloaded from the internet. how can i find out if they are corrupted or incomplete?Internet files should always be considered suspect -- especially if they come from a peer-to-peer source. Messages that indicated QT cannot open an otherwise fully compatible QT format is often the best indication that there is a corruption problem or that the files were improperly closed at one point or another.
    most of my videos that won't convert for an ipod are downloaded from the internet. how can i find out if they are corrupted or incomplete?Normally ypu would post them to a web site or FTP storage area and post the URL. If files were downloadedd from a particular web site (e.g., a QT movie trailer), simply post the URL for the particular web page.

  • A Problem When Converting SmartForm (OTF) to MS Word

    Hi,
    i'm converting smartform to ms word file but design is spoiled.
    CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'ASCII'
          max_linewidth = 132
        IMPORTING
          bin_filesize          = gv_fsize
    *      bin_file              = l_pdf_xstring
        TABLES
          otf                   = itcoo
          lines                 = tline
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          err_bad_otf           = 4
          OTHERS                = 5.
    CALL FUNCTION 'CONVERT_TEXT'
    EXPORTING
       CODEPAGE               = '1133'
       DIRECTION              = 'EXPORT'
       FORMAT_TYPE            = 'RTF'
    *   FORMATWIDTH            = 72
    *   HEADER                 = ' '
    *   SSHEET                 = 'X'
    *   WITH_TAB               = 'X'
    *   WORD_LANGU             = SY-LANGU
       TABLETYPE              = 'BIN'
    *   TAB_SUBSTITUTE         = ' '
    *   LF_SUBSTITUTE          = ' '
    *   REPLACE_SYMBOLS        = 'X'
    *   REPLACE_SAPCHARS       = 'X'
    *   MASK_BRACKETS          = 'X'
    * IMPORTING
    *   NEWHEADER              =
    *   WITH_TAB_E             =
    *   FORMATWIDTH_E          =
      TABLES
        FOREIGN                = tline
        ITF_LINES              = tline
    *   LINKS_TO_CONVERT       =
    EXCEPTIONS
       NOT_SUPPORTED          = 1
       OTHERS                 = 2
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    * Transfer the 132-long strings to 255-long strings
      LOOP AT tline.
        TRANSLATE tline USING ' ~'.
        CONCATENATE gd_buffer tline INTO gd_buffer.
      ENDLOOP.
      TRANSLATE gd_buffer USING '~ '.
      DO.
        it_attach = gd_buffer.
        APPEND it_attach.
        SHIFT gd_buffer LEFT BY 255 PLACES.
        IF gd_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
    *      BIN_FILESIZE                    = gv_fsize
          FILENAME                        = l_pdf_string
          FILETYPE                        = 'BIN'
          APPEND                          = 'X'
    *     WRITE_FIELD_SEPARATOR           = ' '
    *     HEADER                          = '00'
    *     TRUNC_TRAILING_BLANKS           = ' '
    *     WRITE_LF                        = 'X'
    *     COL_SELECT                      = ' '
    *     COL_SELECT_MASK                 = ' '
    *     DAT_MODE                        = ' '
    *      CONFIRM_OVERWRITE               = 'X'
    *     NO_AUTH_CHECK                   = ' '
    *     CODEPAGE                        = ' '
    *     IGNORE_CERR                     = ABAP_TRUE
    *     REPLACEMENT                     = '#'
    *     WRITE_BOM                       = ' '
    *     TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *     WK1_N_FORMAT                    = ' '
    *     WK1_N_SIZE                      = ' '
    *     WK1_T_FORMAT                    = ' '
    *     WK1_T_SIZE                      = ' '
    *     WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
    *     SHOW_TRANSFER_STATUS            = ABAP_TRUE
    *   IMPORTING
    *     FILELENGTH                      =
        TABLES
          DATA_TAB                        = it_attach
    *     FIELDNAMES                      =
       EXCEPTIONS
         FILE_WRITE_ERROR                = 1
         NO_BATCH                        = 2
         GUI_REFUSE_FILETRANSFER         = 3
         INVALID_TYPE                    = 4
         NO_AUTHORITY                    = 5
         UNKNOWN_ERROR                   = 6
         HEADER_NOT_ALLOWED              = 7
         SEPARATOR_NOT_ALLOWED           = 8
         FILESIZE_NOT_ALLOWED            = 9
         HEADER_TOO_LONG                 = 10
         DP_ERROR_CREATE                 = 11
         DP_ERROR_SEND                   = 12
         DP_ERROR_WRITE                  = 13
         UNKNOWN_DP_ERROR                = 14
         ACCESS_DENIED                   = 15
         DP_OUT_OF_MEMORY                = 16
         DISK_FULL                       = 17
         DP_TIMEOUT                      = 18
         FILE_NOT_FOUND                  = 19
         DATAPROVIDER_EXCEPTION          = 20
         CONTROL_FLUSH_ERROR             = 21
         OTHERS                          = 22
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    when converting to pdf with parameter is 'PDF' in fm CONVERT_OTF, design is not spoiled. but in 'ASCII' format in fm CONVERT_OTF design is spoiled.
    how can i solve this problem?
    can somebody help me pls?
    Thanks.

    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    IMPORTING
    BIN_FILESIZE = FILE_LEN
    TABLES
    OTF = OTFDATA
    LINES = PDFDATA
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    OTHERS = 4.
    Hope there will be problems with word but i think you can use pdf for that
    If you do get the resolution please do let me know
    Cheers

  • Encounter Problem when upload Data for T-Code CJ92

    Dear All,
    I want to upload Standard WBS element through transaction code CJ92.  I am encountering a problem when I want to upload more than 13 Standard WBS for a project using recording (SHDB). 
    I have also tried to upload data through BAPI u201CBAPI_BUS2054_CREATE_MULTIu201D but this BAPI didnu2019t work for standard WBS.
    Please provide me a solution to upload Standard WBS (CJ92).

    Thanks Shyam,
    But this BAPI "BAPI_PROJECT_MAINTAIN" works only for operative WBS and I want to upload Standard WBS.  The T-Code to create Standard WBS is CJ92. The screen upload can't be possible due to screen limitations.
    Please provide me any solution to upload Standard WBS.
    regards,
    Saif

  • Problems when converting Office files into forms in Vista

    Hi,
    I recently purchased Adobe Acrobat X Pro but am having a problem when trying to convert office files (word and excel) into forms on  my laptop running Vista.
    I open Acrobat and select create or edit form and get the window to select the file which is fine.
    I then select to import a file from file system which is ok so I browse and select the appropriate file and select next and I get the below error.
    I have tried uninstalling and reinstalling as well as updating but it had no effect.
    I have uninstalled it and installed it on a computer running XP and it all works fine.
    PLEASE HELP!!!!

    Since you seem to be on a 64-bit system, be sure you have updated Acrobat and are not running AA 10.0.0. Can you run PDF Maker (the create PDF button) in WORD?

  • Column problem when converting files.

    When converting a pdf file to excel the columns are corrupted. Data from one column is now spread across two columns.

    The ability to convert back to Excel with columns in proper location depends on how the PDF was created. If done in a way to allow going back, the PDF would be tagged with the location information. An alterntative is to use the alt key while selecting a column of the spreadsheet and then copy and paste that to Excel. Repeat for each column. Takes a while, but might be faster than spliting the columns. You might try saving to a csv file and see if a comma or tab is present to differentiate the columns when opening in Excel -- not tried this, but might be worth a try.

  • Pdf problems when converting to lion

    Interactive Pdf documents scrunched when converted to Lion operating sytem. Just upgraded to lion, my children have interactive day planners which were saved on the desktop as PDF documents, the writing is now scrunched when viewing or printing. Any suggestions?

    If you are using Adobe Acrobat for PDF files read here >  Apple Safari 5.1 and Adobe Reader/Acrobat Advisory

  • "font" problems when converting InDesign file to negative

    the printing service we use for our college newsletter, which is done in InDesign CS3, says he is having "font problems" when he turns the file into a negative (the master used for printing paper copies of the newsletter). I use only a standard font, "Times," in various sizes.
    he did not have this problem with InDesign CS2, and he is as yet unable to explain exactly what the problems are but said there are 3 pieces of equipment involved that each contribute to the problem: old vs new operating systems (OS) in RIP unit and workstation to newest applications and older RIP unit. (I haven't a clue what any of this means...)
    he has asked we create an "outline" of the InDesign file before sending it and believes doing that may help. however, when I create an outline of the document, all of the font turns bright red-- is this what is supposed to happen or am I doing something wrong?
    can anyone help me figure out how to help the printer?
    FA NEWS editor
    (linda)

    The .sitx file extension is a Stuffit executable, a way of compressing files so that they take less time to transfer. This has nothing to do with your problem.
    What I'm recommending is that you Export PDF (File > Export > Adobe PDF). Choose the Press Quality preset and send the resulting PDF to your printer. Scott's suggestion will give you a PDF with outlined type, but before you go that route, try a Press Quality PDF, which will have live type and embedded fonts.
    The best reason for sending PDF to your printer is to avoid font problems.
    Ken

Maybe you are looking for