Getting error when attempting to import jpegs into Premiere Elements

When attempting to import still images (jpegs) into a video project I am able to import some, but on others get the error "importer reported a generic error," and I can't figure out why some photos load and others don't. Can anyone help?

1st, Pictures that are "overly" large may cause video editing problems
Photo Scaling for Video http://forums.adobe.com/thread/450798
-HiRes Pictures to DVD http://forums.adobe.com/thread/1187937?tstart=0
-PrEl Crash http://forums.adobe.com/thread/973935
2nd, what is the source of the picture? (ie... which camera)
SOME pictures may be created with "malformed" file header information... the solution is generally to open in Photoshop and resave to fix the file header
3rd, Pictures must be RGB not CMYK (CYMK?) http://forums.adobe.com/thread/1081681

Similar Messages

  • Get 'Generic Error' when attempting to import .mov files with transparency?

    I get the 'Generic Error' when attempting to import .mov files with transparency? I'm trying to use mattes with an alpha channel but I cannot import them. I have had this same issue since cs6, now I have it with cc 2014? Any clues would be most appreciated.
    I have uninstalled the DVCPro Codec, but it didn't help.
    I have tried converting the .mov file (which is now automatic in Yosemite) and this creates a ProRes4444 Codec, Again no luck with import.
    I've seen this issue on the web, but never a solution? Anyone?

    Hi Terence,
    I tried iPhoto Library Manager but it could not solve my problem. Opening the iPhoto library I can see that the reference to the pictures are pointing to my old location not to the new one. I considered running a script that would change all pointers since this is basically what is needed (in my case from /Volumes/RAID1/Fotos/XXX to /Volumes/Fotos/XXX). Instead I inserted a soft unix link to make to connection but that did not work. It is referring to the airport disk by the airport name rather than the mounted disk name. Very strange indeed. The problem is maybe not in iPhoto but in OSX? Anyway, maybe the only way out is to take some hours and manually run through all linked photos... cumbersome and annoying!
    Regards,
    Søren

  • Error when attempting to import object C1

    Hi,
    We are doing an ECC 6.0 Upgrade from 4.6C version.
    While executing Payroll Simulation, we are getting short dump error stating “Error when attempting to import structure C1”.
    This error occurs in the Payroll driver RPCALCX0.
    Requests for your inputs.
    Regards,
    Ravi.

    'The data type is "N" in the dataset, but "C" in the program.'
    Rob

  • Error when attempting to IMPORT object TLINE

    Hi Experts,
    I am trying to read a standard text in my webdynpro abap application using FM READ_TEXT but I keep getting this error Error when attempting to IMPORT object "TLINE". It was working fine before we recently migrated to a unicode enviornment.
    This is where its crashing
    FORM read_textlines
    if rt_header-tdtexttype is initial.              "SAPscript format
      import tline to rt_lines   
    from database stxl(tx)
    Thanks in advance.

    Found my answer. I had a data type conflict when  using FM read_text.

  • CAT2 problem: Error when attempting to IMPORT object "C1

    Hello Friends,
    We are upgraded from SAP 4.6C to ECC6.0
    I am getting problem for CAT2 Transaction. CAT2 is working fine for most of the personnel numbers but for few persons, it is giving an ABAP dump.
    Runtime Errors         CONNE_IMPORT_WRONG_COMP_TYPE
    Except.                CX_SY_IMPORT_MISMATCH_ERROR
    Short text:     Error when attempting to IMPORT object "C1".
    We are not able to distinguish what is the cause for CAT2 giving dump for few employees.  We are getting this dump in the initial screen when we enter the timesheet profile and personnel number.
    I have also done the comparision betn the employess for which CAT2 is working and for which it is giving dump. but dont got any clue.
    Request you to suggest me
    Madhu

    Hi,
    This is a really old thread. Please open a thread for your specific issue.
    -Paul
    Moderator

  • Error when attempting to IMPORT object "TS_CHECK".

    When using in BI SAP NetWeaver 2004s (700 - SP 15) the transaction ST04old -> Detail analysis menu -> Summary report
    The following short dump occurs:
    Runtime Errors         CONNE_IMPORT_WRONG_COMP_TYPE
    Except.                CX_SY_IMPORT_MISMATCH_ERROR
    Date and Time          19.11.2008 15:14:08
    Short text
    Error when attempting to IMPORT object "TS_CHECK".
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLSTD4" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
    not caught in
    procedure "DB02_ORA_FILL_TS_CHECK__CRITOB" "(FUNCTION)", nor was it propagated
    by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    When importing the object "TS_CHECK", the component no. 4 in the
    dataset has a different type from the corresponding component
    of the target object in the program "SAPLSTD4".
    The data type is "I" in the dataset, but "N" in the program.
    Missing RAISING Clause in Interface
    Program                                 SAPLSTD4
    Include                                 LSTD4U03
    Row                                     1
    Module type                             (FUNCTION)
    Module Name                             DB02_ORA_FILL_TS_CHECK__CRITOB
    Trigger Location of Exception
    Program                                 SAPLSTD4
    Include                                 LSTD4U03
    Row                                     51
    Module type                             (FUNCTION)
    Module Name                             DB02_ORA_FILL_TS_CHECK__CRITOB
    Source Code Extract
    Line
    SourceCde
    21
    DATA: BEGIN OF TD110.
    22
    INCLUDE STRUCTURE TD110_STRU.
    23
    DATA: END OF TD110.
    24
    25
    CURR_TIME = SY-UZEIT.
    26
    CURR_DATE = SY-DATUM.
    27
    28
    CALL FUNCTION 'GET_DB_ORA_RELEASE'
    29
    IMPORTING
    30
    ORACLE_RELEASE = ORA_REL.
    31
    32
    IF FLAG_REFRESH = 'y'.  FLAG_REFRESH = 'Y'. ENDIF.
    33
    flag_refresh = 'Y': Es soll in jedem Fall auf die DB zugegriffen werd.
    34
    35
    CLEAR TS_CHECK. REFRESH TS_CHECK.
    36
    CLEAR CRITOBJ. REFRESH CRITOBJ.
    37
    CLEAR NR_CRIT_OBJ.
    38
    39
    IF FLAG_REFRESH <> 'Y'.
    40
    41
    Suche zunächst im Arbeitsspeicher !
    42
    CLEAR TS_CHECK_CACHE. READ TABLE TS_CHECK_CACHE.
    43
    IF NOT ( TS_CHECK_CACHE IS INITIAL ) .
    44
    TS_CHECK[] = TS_CHECK_CACHE[].
    45
    CRITOBJ[] = CRITOBJ_CACHE[].
    46
    OK_1 = 'Y'.
    47
    48
    Suche danach in 'MONI' !
    49
    ELSE.
    50
    PERFORM PREPARE_MONIKEY USING 2.
    >>>>>
    IMPORT TS_CHECK CRITOBJ FROM DATABASE MONI(DB) ID MONIKEY.
    52
    53
    IF SY-SUBRC = 0.
    54
    OK_1 = 'Y'.
    55
    TS_CHECK_CACHE[] = TS_CHECK[].
    56
    CRITOBJ_CACHE[] = CRITOBJ[].
    57
    ENDIF.
    58
    ENDIF.
    59
    60
    'Same procedure' für datetime:
    61
    IF NOT ( TD110_CACHE IS INITIAL ).
    62
    DATETIME-MONI_DATE = TD110_CACHE-DATUM.
    63
    DATETIME-MONI_TIME = TD110_CACHE-UZEIT.
    64
    ELSE.
    65
    PERFORM PREPARE_MONIKEY USING 3.
    66
    IMPORT TD110 FROM DATABASE MONI(DB) ID MONIKEY.
    67
    IF SY-SUBRC = 0.
    68
    DATETIME-MONI_DATE = TD110-DATUM.
    69
    DATETIME-MONI_TIME = TD110-UZEIT.
    70
    TD110_CACHE = TD110.
    Only related SDN post is following, but solved by changing permissions for saposcol.
    Only related SAP Note is SAP Note Number 597743 "DB02: Poor entries for critical objects list", but not applicable for current SAP version.
    For me strange is that this issue occurs on the development system, but not on the acceptance and production system.
    Thanks in advance for any assistance.
    KR
    Gidion

    Received the solution from SAP Active Global Support:
    This error occurs due a corruption in the table MONI.
    For solving this issue you need to clean the records of this table via the following path :
    1. Call transaction ST03
    2. With GOTO -> Performance database -> Content of database
    3. Push button Delete data group
    4. Enter ID DB
    5. Continue
    6. Confirm the delete
    If you wish to backup the data before deleting the entry please follow the steps in the note 1000275 "DB02: history data backup procedure".
    Regards,
    Gidion

  • Error when attempting to IMPORT object "HIST2"

    hi everyone could you please solve this problem for me, i have a short dumb saying in the short text - Error when attempting to IMPORT object "HIST2", can anyone pls slove this for me . Thanks in advance.

    hi ark,
             what the error analysis says is :-
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_IMPORT_MISMATCH_ERROR', was
    not caught in
    procedure "AKT_DAY_HIST2" "(FORM)", nor was it propagated by a RAISING clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    When importing the object "HIST2", the component no. 8 in the
    dataset has a different type from the corresponding component
    of the target object in the program "RSORAT4M".
    The data type is "I" in the dataset, but "P" in the program.

  • SUBRC= 2 Error when attempting to IMPORT object MC12VC0ITM_

    Hi,
    I've added an addtional field to 2lis_12_vcitm datasource and transported to QA system. Now, i need to make delta init w/o data. when i try this i got the following message,
    SUBRC= 2 Error when attempting to IMPORT object MC12VC0ITM_
    no succsessful delta init takes place..
    please help
    regrards
    S

    Hi,
    You need to delete the set up tables and delta qeueue in the target system for the data source which you are changing... before doing the transports.
    Also clear LUW in SMQ1in t-code.
    If the transports were succesful in the QA system.
    Did you followed the correct procedure??
    Do the change and dop the transports again.
    Here is the OSS note which tells what needs to be done before doing the data source transports.
    Take a look.
    762951,328181
    Thanks
    Ajeet

  • Airport error when attempting to import photos across wireless network

    Hi,
    I'm using the latest version of iPhoto '09 on a MacBook that's connected to my home wireless network through an Airport Extreme. Also on the same network is a brand new Mac Mini. When I attempt to import photos into iPhoto '09 on my MacBook from the Mac Mini, I get an Airport connection error that I dismiss by clicking OK. Immediately after clicking ok, I then get a "Can't find the original photo..." error and I hit cancel. I do this three times and presto the photo imports itself. This occurs every time I attempt to do an import.
    My network is not dropping. My Internet connection is not dropping. My MacBook and the Mac Mini stay connected continuously so I'm not sure why I get these errors.
    Any thoughts?
    Thanks,
    Mark

    It has nothing to do with the Airport connection.
    This sometimes occurs if you’re importing a file into iPhoto and there’s already a file there with the same name. Digital cameras can produce many, many files with the same name over their lifetime, so it’s not uncommon to have several files called IMG_00543.JPG, for instance. Now you want to import one also called this.
    What happens is that iPhoto compares the two files to check for duplicates. However, if iPhoto cannot find the file already in the database for comparison, then you get this message. It suggests that your database is damaged because iPhoto has lost track of this (or these) similarly named files.
    A simple test is to rename the file you are importing - just add a character - IMG_00543a.JPG for instance. If this then imports with no issue then you might consider rebuilding your library:
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • ABAP Dump: Error when attempting to IMPORT object "MC02M_0ITM_TAB".

    Hi All,
    We Enhanced the Data Source 2LIS_02_ITM by adding 2 Fields and then Migrated to Prod. Initially Transports are moved by mistake by Migration without clearing the outbound queue (LBWQ). So V3 Jobs started failing. For this we deleted all the LUW in LBWQ and then executed V3 and it went fine with out any error. And its been 4days that we dont have any failure with V3 Updates.
    Now we have one more issue with V1 Update.
    We are getting Dump when user is trying to update or create the records.
    This is the dump error message.
    " An exception occurred that is explained in detail below.
    This exception cannot be caught in the context of the current statement.
    The reason for the exception is:
    When importing the object "MC02M_0ITM_TAB", the component no. 100 in the
    dataset has a different type from the corresponding component
    of the target object in the program "SAPLMCEX".
    The data type is "P" in the dataset, but "C" in the program."
    Have anyone of you faced this issue. Please give me the solution what to do. I got SAP Note for this 328181
    Please help me with above issue.
    Regards
    RK

    Forgot to add this Info in my previous thread.
    Information on where terminated
        Termination occurred in the ABAP program "SAPLMCEX" - in "MCEX_UPDATE_02_V1".
        The main program was "RSM13000 ".
        In the source code you have the termination point in line 1
        of the (Include) program "LMCEXU55".
        The program "SAPLMCEX" was started in the update system.

  • Getting Error when convert the plan order into production order

    Hi Experts,
    When i converting the planorder into production order i am getting this error
    could you please suggest me hoew can i resolve this issue.
    Message no. CK466
    Diagnosis
    The system could not calculate a price for the internal activity with activity type 20000 of cost
    center 110TUP002 because none of the valuation strategies in valuation variant 006 was successful.
    System Response
    If the system issues a warning message or an information message, the costing item will be
    used in costing with a value of zero.
    If the system issues an error message, it sets the status "KF" (costed with errors).
    If the system issues a termination message, the cost estimate cannot be processed.
    Procedure
    1. Check the master data for activity type 20000 of cost center 110TUP002.
    2. If you have authorization for Customizing, check the valuation strategy for internal activities
    in valuation variant 006.
    Thanks&regards.
    Sateesh.C

    Hi,
    For the orders for which you get the error, note the dates, then check in KSBT, whether there is price maintained for that period.
    Eg: If the order has a start - 2nd Aug, 2010 & end 10th Aug, 2010, then check if price exists for period - 08, year - 2010
    Regards,
    Vivek
    Added
    If the values are maintained, then check the costing variants specified for the order type in OPL8 for plant - order type combination in cost accounting tab. Then in OPL1, check the details specified for the variants. If you're not sure on this, take help from your FI-Co colleague.

  • Getting error when attempting to install CS5.5 on Windows 7 64 bit

    Hi, I'm receiving the errors below when attempting to install Adobe CS5.5, but only for Adobe Acrobat and some other components of the suite.  I am now trying to install just Acrobat Pro through the Suite and it fails.  The error log is below.  Please let me know what the issue is.
    Thanks
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 3 error(s), 3 warning(s)
    WARNING: DS013: Payload {D8D2B468-8342-411A-8760-BCC362C3408F} CS5.5 Master Collection 5.5.0.0 is already installed and the session payload {D57FC112-312E-4D70-860F-2DB8FB6858F0} CS5.5 Master Collection 5.5.0.0 has no upgrade/conflict relationship with it.
    ERROR: DS013: Verifying payload integrity : Failed with code 1
    WARNING: DW066: OS requirements not met for {AC76BA86-1033-F400-7760-000000000005}
    WARNING: DW066: OS requirements not met for {3EE734CB-F7AD-4691-9712-066E9FEC3E62}
    ERROR: DW020: Found payload conflicts and errors:
    ERROR: DW020:  - Adobe Flash CS5.5 depends on Adobe Flash Player 10 Plugin to be installed.
    FATAL: DW020: Conflicts were found in the selected payloads. Halting installation.

    Run the cleaner tool and try again. Also uninstall any existing, more modern versions of Flash Palyer and Acrobat/ Adobe Reader on the system.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Mylenium

  • Why do I see in the preview panel black edge on sides of imported jpegs into premiere CS5

    We sized a jpeg in photoshop to 720 x 524 to import into premiere project frame size 720 x 480.  Proportions all look good, but there is a black edge on each side of the jpeg in the preview panel.  Will this show up when viewed on a tv screen once we create the dvd?  On my preview tv screen, it looks like it will not show up, but I do not want to do this whole project that includes 50 jpegs and then have a problem?  any good answers or things I should change.
    Thank you

    > I would have thought 540 myself to get a square pixel equivalent of 4:3 aspect ratio using 720 horizontal lines.
    720x540 was the square-pixel equivalent before the correction that considers the difference between clean aperture and production aperture. In CS4 and later, it's 720x534.
    There's a table of the square-pixel equivalents here. There are also presets in Photoshop that match this.

  • Getting error no disk on dell pre installed premiere elements 13:  there is no disk in drive. please insert a disk into drive\Device\Harddisk2\DR2  : can i fix this^

    like the title says...
    cannot get service or support on phone...  I paid for this software... i though adobe was a good company....  darn
    Can anyone help me...
    Need this to work now  not in a week...

    Sorry you think Adobe is a bad company.  Phone service for most common consumer software disappeared shortly after they invented the internet.  This is a user forum where there are people that like Adobe products well enough that they freely share their experiences.
    If you type "insert disk" in the "Ask it" box you will get answers that suggest there is an anomaly on some computers where you need to remove a file.  Below is a cut and paste from one of those threads that was offered by Adobe Staff.
    ".... try removing the Old Film effect from the installed location of Premiere Elements 13 and then try to launch the app? The exact file to be removed is (assuming you have installed it in the default location)
    Program Files\Adobe\Adobe Premiere Elements 13\Plug-Ins\Common\NewBlue\OldFilm.AEX"
    The other solution might be to get the update that was released only yesterday via download from Adobe.   Premier Elements 13 is now 13.1.
    Good luck!
    Bill

  • Error when trying to import users into Unity

    I keep getting this message when I try to bulk import the users into Unity.
    Has someone seen this, and do you have a fix.
    Could not insert new row - duplicate value in a UNIQUE INDEX column

    could you add more details likeunity vesion,
    how you doing bulk import?
    however you can try adding the user from the Import section for the
    voicemail

Maybe you are looking for

  • Creative Cloud Desktop ist uninstallierbar

    Am 19, August hab ich mir ein Creative Cloud Abo zum Geburtstag geschenkt. Seitdem hab ich etwa 20 mal versucht das Hauptelement, den CC-Desktop auf meinem ziemlich neuen Protzer VAIO, downgedradet auf Win7Pro, zu installieren. Aber immer sagt es "ge

  • Delete Multiple records in Table?

    Hi .. I need to perform delete operation in my table with multiple selection. My coding is.. for(int i=wdContext.nodeDetails2().size()-1;i>=0;i--) if(wdContext.nodeDetails2().isMultiSelected(i) || wdContext.nodeDetails2().getLeadSelection()==i) wdCon

  • How to relate java and Oracle

    i have to tried to make programs using java and oracle. if i give the values in the 'insert' statement it is getting updated in the original table in oracle but how to take the values from the text fields of java and insert into the tables in oracle.

  • My sister logged onto my Apple ID when she got her iphone and now her phone number is connected to the account. I want mine on the account

    My sister logged onto my Apple ID when she got her iphone and now her phone number is connected to the account. I want mine on the account

  • Dreamweaver crashes with ASP

    I am unable to edit any ASP files in Dreamweaver (CS3 and 8). Whenever I select anything, code or objects, the program hangs. This does not only happen on my computer but on other people's computers as well. If the file extension is changed to .aspx