When i add CMR between 2 CMP, it show ORA-00904

i create 2 "CMP from table" without foreign key. i can create both instance by home.create() . after i add CMR between both. i can create master but can't create detail. when i create the detail, it show ORA-00904.
anyone can help me?
master table is
CREATE TABLE KAY_TMP_1 (
ID VARCHAR2 (2) NOT NULL,
KAY_NUM NUMBER (9,2),
KAY_NAME VARCHAR2 (10),
KAY_DATE DATE,
PRIMARY KEY ( ID ) ) ;
detail table is
CREATE TABLE KAY_TMP_2 (
ID2 VARCHAR2 (2) NOT NULL,
SUB_ID2 VARCHAR2 (2) NOT NULL,
KAY_NAME2 VARCHAR2 (10),
PRIMARY KEY ( ID2, SUB_ID2 ) ) ;
ejb-jar.xml
<?xml version = '1.0' encoding = 'GBK'?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
<ejb-jar>
<enterprise-beans>
<entity>
<description>Entity Bean ( CMP )</description>
<display-name>Kay_tmp_2</display-name>
<ejb-name>Kay_tmp_2</ejb-name>
<home>fehd.web.util.Kay_tmp_2Home</home>
<remote>fehd.web.util.Kay_tmp_2</remote>
<local-home>fehd.web.util.Kay_tmp_2LocalHome</local-home>
<local>fehd.web.util.Kay_tmp_2Local</local>
<ejb-class>fehd.web.util.impl.Kay_tmp_2Bean</ejb-class>
<persistence-type>Container</persistence-type>
<prim-key-class>fehd.web.util.Kay_tmp_2PK</prim-key-class>
<reentrant>False</reentrant>
<cmp-version>2.x</cmp-version>
<abstract-schema-name>Kay_tmp_2</abstract-schema-name>
<cmp-field>
<field-name>id2</field-name>
</cmp-field>
<cmp-field>
<field-name>sub_id2</field-name>
</cmp-field>
<cmp-field>
<field-name>kay_name2</field-name>
</cmp-field>
</entity>
<entity>
<description>Entity Bean ( CMP )</description>
<display-name>Kay_tmp_1</display-name>
<ejb-name>Kay_tmp_1</ejb-name>
<home>fehd.web.util.Kay_tmp_1Home</home>
<remote>fehd.web.util.Kay_tmp_1</remote>
<local-home>fehd.web.util.Kay_tmp_1LocalHome</local-home>
<local>fehd.web.util.Kay_tmp_1Local</local>
<ejb-class>kaytmp.Kay_tmp_1Bean</ejb-class>
<persistence-type>Container</persistence-type>
<prim-key-class>java.lang.String</prim-key-class>
<reentrant>False</reentrant>
<cmp-version>2.x</cmp-version>
<abstract-schema-name>Kay_tmp_1</abstract-schema-name>
<cmp-field>
<field-name>id</field-name>
</cmp-field>
<cmp-field>
<field-name>kay_num</field-name>
</cmp-field>
<cmp-field>
<field-name>kay_name</field-name>
</cmp-field>
<cmp-field>
<field-name>kay_date</field-name>
</cmp-field>
<primkey-field>id</primkey-field>
</entity>
<relationships>
<ejb-relation>
<ejb-relation-name>kayTmp1_kayTmp2</ejb-relation-name>
<ejb-relationship-role>
<ejb-relationship-role-name>kayTmp1-have-many-KayTmp2</ejb-relationship-role-name>
<multiplicity>One</multiplicity>
<cascade-delete/>
<relationship-role-source>
<ejb-name>Kay_tmp_1</ejb-name>
</relationship-role-source>
<cmr-field>
<cmr-field-name>kayTmp2</cmr-field-name>
<cmr-field-type>java.util.Collection</cmr-field-type>
</cmr-field>
</ejb-relationship-role>
<ejb-relationship-role>
<multiplicity>Many</multiplicity>
<relationship-role-source>
<ejb-name>Kay_tmp_2</ejb-name>
</relationship-role-source>
</ejb-relationship-role>
</ejb-relation>
</relationships>
</ejb-jar>
orion-ejb-jar.xml
<?xml version = '1.0' encoding = 'GBK'?>
<!DOCTYPE orion-ejb-jar PUBLIC "-//Evermind//DTD Enterprise JavaBeans 1.1 runtime//EN" "http://xmlns.oracle.com/ias/dtds/orion-ejb-jar.dtd">
<orion-ejb-jar>
<enterprise-beans>
<entity-deployment name="Kay_tmp_1" copy-by-value="false" data-source="jdbc/iasdbDS" exclusive-write-access="false" table="KAY_TMP_1">
<primkey-mapping>
<cmp-field-mapping name="id" persistence-name="ID" persistence-type="VARCHAR2(2)"/>
</primkey-mapping>
<cmp-field-mapping name="id" persistence-name="ID" persistence-type="VARCHAR2(2)"/>
<cmp-field-mapping name="kay_num" persistence-name="KAY_NUM" persistence-type="NUMBER(9,2)"/>
<cmp-field-mapping name="kay_name" persistence-name="KAY_NAME" persistence-type="VARCHAR2(10)"/>
<cmp-field-mapping name="kay_date" persistence-name="KAY_DATE" persistence-type="DATE"/>
</entity-deployment>
<entity-deployment name="Kay_tmp_2" copy-by-value="false" data-source="jdbc/iasdbDS" exclusive-write-access="false" table="KAY_TMP_2">
<primkey-mapping>
<cmp-field-mapping>
<fields>
<cmp-field-mapping name="id2" persistence-name="ID2" persistence-type="VARCHAR2(2)"/>
<cmp-field-mapping name="sub_id2" persistence-name="SUB_ID2" persistence-type="VARCHAR2(2)"/>
</fields>
</cmp-field-mapping>
</primkey-mapping>
<cmp-field-mapping name="id2" persistence-name="ID2" persistence-type="VARCHAR2(2)"/>
<cmp-field-mapping name="sub_id2" persistence-name="SUB_ID2" persistence-type="VARCHAR2(2)"/>
<cmp-field-mapping name="kay_name2" persistence-name="KAY_NAME2" persistence-type="VARCHAR2(10)"/>
</entity-deployment>
</enterprise-beans>
<assembly-descriptor>
<default-method-access>
<security-role-mapping impliesAll="true" name="&lt;default-ejb-caller-role>"/>
</default-method-access>
</assembly-descriptor>
</orion-ejb-jar>

Have a look at the orion-ejb-jar.xml which is generated by oc4j in the application-deployments dir.
Oc4j takes your orion-ejb-jar.xml and generates its own basing on your version.
In the generated file you should be able to see the select statements which will be executed.

Similar Messages

  • IPhoto is not showing photos stored in albums in the last week, and when I add recent photos, they don't show, or show as black.

    iPhoto is not showing photos stored in albums in the last week, and when I add recent photos, they don't show, or show as black. What's happening ?  I show an incompatible upgrade available for OSX Maveriks, which I have not yet installed.

    What version of iPhoto are you using?  Apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • I recently downloaded the latest version of iTunes.  Since then when I add a cd it does not show in my music library.  I have signed out then back in without any change.  Suggestions?

    Help!

    Hi Edward,
    You should still be able to manually manage the music on your iPhone within iTunes. Make sure that when your iPhone is plugged in, look in the Summary tab to see if “Manually manage music and videos” is enabled and you can even you turn off Automatically Sync when this iPhone is connected. Take a look at the first article below to give more information on that. As far as your other questions about calling someone, I have provided two options for you. If it is for feedback on iTunes, you can use the second link to give detailed feedback on what is going on. If you want to actually talk to someone, the last link has a list of numbers for you to call for any support or service that you may need.  
    Manage content manually on your iPhone, iPad, and iPod
    http://support.apple.com/en-us/HT201593
    Product Feedback
    http://www.apple.com/feedback/
    Contact Apple for support and service
    http://support.apple.com/en-us/HT201232
    Take it easy,
    -Norm G. 

  • Facing Master Pages, how do I make them reassign themselves to left or right when I add an odd # of pages?

    I've been designing a travel journal & photo book series, and my process is that I have Master Pages A-D, facing. I'll put in all the text (Masters B, Left and Right), then I go back through and insert the photo pages between the correct dates. This generally works fine when I'm adding an even amount of photo pages, but if there happens to be an odd amount of photos for a specific date, then in shifts all the following pages so that instead of the two facing pages layouts being LEFT/RIGHT, it shifts to RIGHT/LEFT:
    This is how it should look (LEFT/RIGHT):
    But then if I add a right-oriented photo page, like this:
    it them shifts everything following it (RIGHT/LEFT), like this:
    At first, I thought it was just the text pages, because the design requires every text box on a LEFThand page to be centered, but the RIGHThand ones to be left of center, but If I add a LEFThand photo page inbetween the two incorrectly oriented pages in the previous photo, the photo page does the same thing:
    While doing this fixes the pages following it (because it's now an even amount of pages that have been inserted), I don't understand why inserting a RIGHThand layout into a RIGHThand slot doesn't correct it. If I drag the Master Page INTO the page (as opposed to adding a page), I get this dialog box:
    (note: this does NOT happen if the orientation of the facing pages is the correct one) I looked at every page's size and page setting (via page tool), and they're all the same:
    MY TWO QUESTIONS:
    1. Why does this happen and can I fix it/keep it from doing that?
    2. Is there a way to select an option or something that shifts everything so that if a text page starts as a LEFThand page, but then gets shifted over one, it'll change to a RIGHThand page? (I'm using CS6 for Mac Snow Leopard)
    Thank you so much!

    Why does one page have a different orientation than the others? If it is printed, you should keep all same size and orientations, exceptions only for pages which have different final sizes!
    You should set up you margins on the master page according where the text frames should be. But your frames are somehow laying on your pages without any relation to the margins borders.
    When you add an odd number of pages—it doesn't matter how—, it will shuffle succeeding left pages to the right, right pages to the left. That is how it is, except if you keep spread together or you don't allow to shuffle pages.
    If you want to adjust the content from a left page to a right page layout and vice versa you have to use either Layout Adjustment (correct margins are VERY important) or the new Liquid Layout Concept, good descriptions to learn this complex thematic are in the manual and in linked tutorial movies.
    If you insert a page based on a master it will use on the left side of a spread the left side of the master's spread and on the right side of a spread the right master's spread, if you grab the left or right side has no influence.
    Another influence comes from your text styles, used in keep options in paragraph styles. There you can determine that the paragraph style forces a headline to the left or to the right. Important with headlines in longer layouts.
    You should give your master more identifying names, not A-Master, B-Master, but like TIT-Titel, STA-Standard, but this is not the main problem here.

  • Remote console crashes when I move workstations between PGs

    Hello,
    I have an SCDPM 2012 R2 UR2 server (4.2.1235.0). I manage it remotely using DPM console installed at my workstation. We use client protection to protect files from some of users workstations. When I move a client between two client protection groups, my
    remote console crashes and I see an errors in Application log:
    Log Name: Application
    Source: MSDPM
    Date: 25.07.2014 14:12:07
    Event ID: 999
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: WORKSTATION.example.com
    Description:
    An unexpected error caused a failure for process 'mmc'. Restart the DPM process 'mmc'.
    Problem Details:
    <FatalServiceError><__System><ID>19</ID><Seq>0</Seq><TimeCreated>25.07.2014 10:12:07</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>ArgumentException</ExceptionType><ExceptionMessage>Cannot add or insert the item 'PCNAME' in more than one place. You must first remove it from its current location or clone it.
    Parameter name: item</ExceptionMessage><ExceptionDetails>System.ArgumentException: Cannot add or insert the item 'PCNAME' in more than one place. You must first remove it from its current location or clone it.
    Parameter name: item
    at System.Windows.Forms.ListView.InsertItems(Int32 displayIndex, ListViewItem[] items, Boolean checkHosting)
    at System.Windows.Forms.ListView.ListViewNativeItemCollection.AddRange(ListViewItem[] values)
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.ClientsSelectionPage.UpdateAvailableMachines(ROPreDiscoveryServers preDiscoveryServers)
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.InstallAgentsWizard.DiscoverServersHelper.SyncProductionServers(Object sender, PreDiscoveryServersInitedEventArgs e)
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.Utils.ThreadMarshaller.Raise(Object state)</ExceptionDetails></FatalServiceError>
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="MSDPM" />
    <EventID Qualifiers="0">999</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2014-07-25T10:12:07.000000000Z" />
    <EventRecordID>18681</EventRecordID>
    <Channel>Application</Channel>
    <Computer>WORKSTATION.example.com</Computer>
    <Security />
    </System>
    <EventData>
    <Data>An unexpected error caused a failure for process 'mmc'. Restart the DPM process 'mmc'.
    Problem Details:
    &lt;FatalServiceError&gt;&lt;__System&gt;&lt;ID&gt;19&lt;/ID&gt;&lt;Seq&gt;0&lt;/Seq&gt;&lt;TimeCreated&gt;25.07.2014 10:12:07&lt;/TimeCreated&gt;&lt;Source&gt;DpmThreadPool.cs&lt;/Source&gt;&lt;Line&gt;163&lt;/Line&gt;&lt;HasError&gt;True&lt;/HasError&gt;&lt;/__System&gt;&lt;ExceptionType&gt;ArgumentException&lt;/ExceptionType&gt;&lt;ExceptionMessage&gt;Cannot add or insert the item 'PCNAME' in more than one place. You must first remove it from its current location or clone it.
    Parameter name: item&lt;/ExceptionMessage&gt;&lt;ExceptionDetails&gt;System.ArgumentException: Cannot add or insert the item 'PCNAME' in more than one place. You must first remove it from its current location or clone it.
    Parameter name: item
    at System.Windows.Forms.ListView.InsertItems(Int32 displayIndex, ListViewItem[] items, Boolean checkHosting)
    at System.Windows.Forms.ListView.ListViewNativeItemCollection.AddRange(ListViewItem[] values)
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.ClientsSelectionPage.UpdateAvailableMachines(ROPreDiscoveryServers preDiscoveryServers)
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.InstallAgentsWizard.DiscoverServersHelper.SyncProductionServers(Object sender, PreDiscoveryServersInitedEventArgs e)
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.Utils.ThreadMarshaller.Raise(Object state)&lt;/ExceptionDetails&gt;&lt;/FatalServiceError&gt;
    </Data>
    </EventData>
    </Event>
    Log Name: Application
    Source: MSDPM
    Date: 25.07.2014 14:14:44
    Event ID: 999
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: WORKSTATION.example.com
    Description:
    An unexpected error caused a failure for process 'mmc'. Restart the DPM process 'mmc'.
    Problem Details:
    <FatalServiceError><__System><ID>19</ID><Seq>1</Seq><TimeCreated>25.07.2014 10:14:44</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>NullReferenceException</ExceptionType><ExceptionMessage>Object reference not set to an instance of an object.</ExceptionMessage><ExceptionDetails>System.NullReferenceException: Object reference not set to an instance of an object.
    at System.Windows.Forms.ListView.ListViewNativeItemCollection.get_Item(Int32 displayIndex)
    at System.Windows.Forms.ListView.ListViewItemCollection.get_Item(Int32 index)
    at System.Windows.Forms.ListView.ListViewNativeItemCollection.Clear()
    at System.Windows.Forms.ListView.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at System.Windows.Forms.Control.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at System.Windows.Forms.Control.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at System.Windows.Forms.Control.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at System.Windows.Forms.Control.Dispose(Boolean disposing)
    at System.Windows.Forms.ContainerControl.Dispose(Boolean disposing)
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.ClientsSelectionPage.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.PageCache.Dispose()
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.DataProtectionWizard.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Finalize()</ExceptionDetails></FatalServiceError>
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="MSDPM" />
    <EventID Qualifiers="0">999</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2014-07-25T10:14:44.000000000Z" />
    <EventRecordID>18684</EventRecordID>
    <Channel>Application</Channel>
    <Computer>WORKSTATION.example.com</Computer>
    <Security />
    </System>
    <EventData>
    <Data>An unexpected error caused a failure for process 'mmc'. Restart the DPM process 'mmc'.
    Problem Details:
    &lt;FatalServiceError&gt;&lt;__System&gt;&lt;ID&gt;19&lt;/ID&gt;&lt;Seq&gt;1&lt;/Seq&gt;&lt;TimeCreated&gt;25.07.2014 10:14:44&lt;/TimeCreated&gt;&lt;Source&gt;DpmThreadPool.cs&lt;/Source&gt;&lt;Line&gt;163&lt;/Line&gt;&lt;HasError&gt;True&lt;/HasError&gt;&lt;/__System&gt;&lt;ExceptionType&gt;NullReferenceException&lt;/ExceptionType&gt;&lt;ExceptionMessage&gt;Object reference not set to an instance of an object.&lt;/ExceptionMessage&gt;&lt;ExceptionDetails&gt;System.NullReferenceException: Object reference not set to an instance of an object.
    at System.Windows.Forms.ListView.ListViewNativeItemCollection.get_Item(Int32 displayIndex)
    at System.Windows.Forms.ListView.ListViewItemCollection.get_Item(Int32 index)
    at System.Windows.Forms.ListView.ListViewNativeItemCollection.Clear()
    at System.Windows.Forms.ListView.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at System.Windows.Forms.Control.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at System.Windows.Forms.Control.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at System.Windows.Forms.Control.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at System.Windows.Forms.Control.Dispose(Boolean disposing)
    at System.Windows.Forms.ContainerControl.Dispose(Boolean disposing)
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.ClientsSelectionPage.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Dispose()
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.PageCache.Dispose()
    at Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.DataProtectionWizard.Dispose(Boolean disposing)
    at System.ComponentModel.Component.Finalize()&lt;/ExceptionDetails&gt;&lt;/FatalServiceError&gt;
    </Data>
    </EventData>
    </Event>
    Where "PCNAME" is a name of workstation I moved between PGs BEFORE current move. i.e. I moved "PCNAME" then I'm moving "PCNAME2" and receive console crash with "PCNAME" in logs.
    You can find Crash-file of DPMUI0Curr.errlog here: http://pastebin.com/jwtbTyFp
    http://about.me/exchange12rocks

    What operating system are you using? What processor does your computer have, how much RAM do you have and how much free, clean space is on your hard drive? When did you last run Disk Cleanup and Disk Defragmenter?
    Have you ensured that you have the latest version of Quicktime from Apple.com?
    What model of camcorder is your video coming from and what format and resolution is it?
    When you add the video to your timeline in Expert view, is there a yellow orange line along the top of the timeline, above your clips? This would indicate a mismatch between the program's project settings and your video specs?

  • How to center menu and add spacing between buttons?

    Here is my site: http://lauraportfolio.hostoi.com/index.html (If you are using Google Chrome you can right click and select "view page source" to see the html of the page)
    See how the menu button are justified the left of the light pink menu bar? How can I put them in the center?
    I would like to know how to center the menu, and then add spacing between the buttons.
    At one point I added spacing between the buttons using CSS padding, but when I did that the last menu button, "Graphics" ran off the pink menu bar and became invisible and all kinds of crazy ugly stuff!
    Below is what I beleive to be all of the CSS styling for the menu:
    #menubar
              width: 900px;
              height: 72px;
              padding: 0;
              background-color: transparent;
              background-image: url(transparentpink.png);
              background-repeat: repeat;
    ul#menu, ul#menu li
    { float: left;
      margin: 0;
      padding: 0;}
    ul#menu li
              list-style: none;
              padding-right: 0px;
              padding-left: 0px;
              margin-right: auto;
              margin-left: auto;
    ul#menu li a
              letter-spacing: 0.1em;
              display: block;
              float: left;
              height: 37px;
              text-align: center;
              color: #f0dbca;
              text-transform: none;
              text-decoration: none;
              background: transparent;
              font-family: bonvenoCF, verdana, Geneva, sans-serif;
              font-size: 150%;
              font-style: normal;
              font-weight: normal;
              font-variant: normal;
              padding-top: 29px;
              padding-right: 26px;
              padding-bottom: 6px;
              padding-left: 26px;
    ul#menu li a:hover, ul#menu li.selected a, ul#menu li.selected a:hover
              color: #F0DBCA;
              background-color: #F1836A;

    PART 1
    So as long as the width of the buttons plus the padding doesn't go over 900px it won't run off the page?
    Right.   The "box model" in CSS works like this:
    width + padding + border = actual visible/rendered width of box
    height + padding + border = actual visible/rendered height of box.
    PART 2
    And do you know how I can center the whole thin instead of it being left-aligned on the menu bar?
    You can't center floated menu items.  The best you can do is make your menu fit the entire width of the container (or as close as you can) as described in PART 1 above. 
    To center your #menu container, use margin:0 auto;
    To center text, use text-align:center on the #menu li a.
    Nancy O.

  • Premiere element 12 crashes when I move clips between video 1 and 2

    here are the problem details, has anyone else experienced this problem and is there a solution. I've logged off and rebooted many times today, to no avail. I've removed the clips where it crashed and this has made no difference either.
    Problem signature:
      Problem Event Name:          APPCRASH
      Application Name:          Adobe Premiere Elements.exe
      Application Version:          12.0.0.0
      Application Timestamp:          52251824
      Fault Module Name:          VideoFrame.dll
      Fault Module Version:          6.0.0.0
      Fault Module Timestamp:          52250bed
      Exception Code:          c0000005
      Exception Offset:          0000000000034d4e
      OS Version:          6.1.7601.2.1.0.256.48
      Locale ID:          2057
      Additional Information 1:          c345
      Additional Information 2:          c34502d913f9405b032cbdce49bceb98
      Additional Information 3:          357d
      Additional Information 4:          357dac850a21271f9dea47546ae70357

    What operating system are you using? What processor does your computer have, how much RAM do you have and how much free, clean space is on your hard drive? When did you last run Disk Cleanup and Disk Defragmenter?
    Have you ensured that you have the latest version of Quicktime from Apple.com?
    What model of camcorder is your video coming from and what format and resolution is it?
    When you add the video to your timeline in Expert view, is there a yellow orange line along the top of the timeline, above your clips? This would indicate a mismatch between the program's project settings and your video specs?

  • I can't add transitions between clips, but between generated media?!

    I can't add transitions between clips, but between generated media?! Any ideas?

    I am assumming you are working with "connected clips" which are either above or below the main storyline "track" (the one you put your first project clip onto when you started the project). You can only add transitions to clips that are on either the primary storyline or on a created storyline.  Select the clips you are working with then choose the Clip menu and the Create Storyline selection. Make sure snap is set to assure your clips are really butted up against each other.  Then apply the transitions.

  • When i add an invoice number on 'overview' sheet want it to automatically add the same data to client's individual transaction sheet?

    Hi,
    Im fairly new to numbers and have had limited experience to spredsheet based programs, so bare with me and i already appreciate your time to help!
    Apologise on the question description but, im attempting fairly indepth equations for my business and once all set up and learnt it will help a great deal!
    So, I have an overview sheet including all sent invoices to all clients. I am having to link each cell one at a time between the overview sheet and the clients individual sheet so the data is viewable on both sheets. I want numbers to transfer the data from my overview sheet to the corresponding clients individual sheet based on the invoice number i input. eg. invoice numbers system is 101 for my first invoice 102 is my second invoice . I then add a client number eg. 101 is client 1. 102 is client 2 so my invoice numbering system would be 101 - 101 or 101 - 102 (invoice number first then client number). when i add a clients number i want numbers to add that line of data (sales amount and dates) to the clients sheet.
    Is that possible?
    Thanks so much for taking the time to look and hope it's not to confusing!
    Ian

    Hi Ian,
    As I read your description:
    You have a Main table ("Overview") on which you record ALL invoices.
    You want, for each client, a table on which only the data for invoices issued to that client will appear.
    Each client will be identified by a client number, and that client number will form part of the invoice number.
    Certainly possible, but I'd suggest a few changes to whaty you're starting with.
    Place the client number and the invoice serial number into separate columns (or split off the customer number into a separate column, You want to transfer/copy every record for a specific customer into that customer's individual sheet. Here's a short example:
    I have entered the invoice numbers as you described them in column B of Main.
    Column E extractsthe three digit client number using this formula:
    E2, and Filled Down: =IF(LEN(B)>6,RIGHT(B,3),"")
    Column F creates a client index by copying the cient number from column C, then counting the number of occurrences of that number are found from the top of column C to the current row, and appends that number to the end of the customer number.
    F2, and filled down: =C2&COUNTIF($C$1:C2,C2)
    These two columns should be added to the right of the existing table, and may be hidden.
    On the individual table, Haydn 101, there is one formula, filled to all cells.
    The basic formula is:
    =OFFSET(Main :: $A$1,MATCH($A$1&ROW()-1,Main :: $F,0)-1,COLUMN()-1)
    which returns the results for as many ,ines as there are transactions to transfer, and produces error messages after that.
    To avoid the error messages, and produce 'empty' cells, add the following error trap, using the IFERROR function (bold added to show addition):
    =IFERROR(OFFSET(Main :: $A$1,MATCH($A$1&ROW()-1,Main :: $F,0)-1,COLUMN()-1),"")
    Fill the formula down column A, then Fill right for as many columns as are needed.
    The individual tables, Ives 102 and Scarlatti 103 are duplicates of Haydn 101. Only the Client Number, in cell A1(and the name of the table) are changed.
    Regards,
    Barry

  • I have several folders setup in my Safari.  However, when I try to add a website to them, it never appears.  When I add a folder and add a website to it, the website appears.  Help?

    I have several folders setup in my Safari.  However, when I try to add a website to them, it never appears.  When I add a folder and add a website to it, the website appears.  Help?

    I thank you for the response.  Apple does some assinine things sometimes and this is one of them.  Ask the planet the difference between a movie and a home video and with the exception of Apple, you'd get 100% consenus on the what difference is.  A home video is something that I shoot, like my kids birthday party.  A movie is something I urchased either via download or a DVD that I ripped.  Unbelievable!   The fact that Apple has chosen not to distinguish based upon which folder I tell it is Movies and which folder is Home Videos is really hard to fathom - sounds like something Windows would do. I find it funny that in my iTunes movies sub-section of the movies section, the movie icons have a cloud icon in upper right corner to distinguish it as bought from Apple iTunes versus no cloud icon for movies that I have ripped - so the distintion was already made and clearly visible.  Now - everything just defaults to "home videos" if I try to import a new ripped DVD - why even bother to have this distinction on the iTunes bar?  WOW!
    As for your direction, I do not understand what you are telling me - what Media Kind and what Options tab are you referring to?  I see no Options tab in iTunes.  Right licking on the movie icon does not yield media kind or options as well.  Gping to the source file does not yield these options either.
    Thanks again for your help.
    Clay

  • Firefox Sync does not update automatically when I add a new bookmark.

    I use one desktop and one notebook at the same time. Firefox Sync does not update bookmarks between my desktop and notebook when I add a new bookmark from one device or the other. Firefox Sync only updates when I manually sync my data from each device. When I used Google Chrome, the Sync feature updated my bookmarks almost instantly. Is there any way I can make Firefox automatically sync whenever I update my bookmark?

    Your imported bookmarks from IE should all be in one folder named "From Internet Explorer". The imported Bookmarks are kept separate for easier identification by the user. You can move them to other folders outside of that folder if you wish; you can also delete any duplicates that you may have placed into Firefox Bookmarks/folders before the import.
    *See --> [https://support.mozilla.com/en-US/kb/Importing%20favorites%20and%20other%20data%20from%20Internet%20Explorer Importing favorites and other data from Internet Explorer]
    For other Bookmarks info and links:
    *See --> [https://support.mozilla.com/en-US/kb/how-do-i-use-bookmarks How do I use bookmarks?]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • My Camcorder shoots 24fps and I set my iMovie project at 24fps.  But when I add the clip, it's saying that the clip is at 30fps?  Am I doing something wrong?

    But when I add the clip, it's saying that the clip is at 30fps?  Am I doing something wrong?

    Let me tell you this: don't worry about it.
    No one is able to tell very easily if the video is in 24 or 30 fps. You can only see the difference between, like, 14 and 24 fps. Just dismiss it and move on. It's all fine.
    (the only time that I personally need to make sure my camera is shooting at it's highest fps, is when I will be putting the vidoe into slow motion.)

  • When I add a new song to an existing playlist, will it automatically sync to my iPod once connected to my computer?

    When I add a song to an existing playlist on iTunes, will it sync to my iPod once connected?
    I'd rather not have to remember each specific playlist I add songs too to sync it to my iPod.
    I do have automatic sync set up, starting today because I got tired of constantly manually adding music.
    ALSO, if I deleted songs in iTunes, will it delete them in my iPod as well once connected to my computer?

    PsychedelicWonders wrote:
    When I add a new contact to my actual phone, will it sync, back up and make a file for the new contact in outlook?
    iPhoneUser guide, page 8:
    "Contacts and calendars are synced
    both ways between your computer and iPhone. New entries or changes you make
    on iPhone are synced to your computer, and vice versa."
    So basically, do they keep each other updated automatically?
    Yes, your data will be updated every time you sync.
    Or do I have to enable something?
    iPhone User guide, page 9:
    "The Info pane lets you configure the sync settings for your contacts, calendars, email
    accounts, and web browser"
    http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • TS3999 When I add events to my calendar on my mac, they do not show up on my iPhone, however; when I add events on my iPhone, they do show up on my mac... why do they not go both ways?

    When I add events on my iphone calendar, they show up on my mac, but when I add events to my claendar on my mac, they do not show up on my iphone, why not?

    Is this calendar labelled On My Mac or iCloud in the sidebar?

  • When I add new music to iTunes, it doesn't appear under artists or anywhere else in library.

    The other night, I tried adding a bunch of music that I had sitting on my Seagate external hard drive to my iTunes library, which is also located on my external. I attempted to add around 1,500 songs at once. It was giving me problems at first and only added some of the music so I tried again. Now I have a problem.
    When I add new music, iTunes only recognizes that I added it after I close iTunes are restart it. But then, the music doesn't show up under artists or anything. The new music shows up under the Recently Added smart playlist, the folder is located in the iTunes library, and when you search for the music it says its there, but it's not under artists or in the song list or anything.
    Example:
    1. Added music from Abandon All Ships! (who I didn't have before), but they don't show up under artists despite the fact that iTunes says the music is there.
    2. Added music from Whitechapel (who I had before), but the album doesn't show up with the rest.
    Hopefully this makes sense the way I explained it. It's all rather frustrating.

    Hello transcend94,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Where are my iTunes files located?
    http://support.apple.com/kb/ht1391
    iTunes: Understanding iTunes Media Organization
    http://support.apple.com/kb/ht3847
    Avoid using different versions of iTunes, or you may be unable to locate content, or may import or transfer content to the wrong location.
    Best of luck,
    Mario

Maybe you are looking for

  • Feature requests(s)

    I see that occasionally someone from Verizon actually reads these fora and responds.  Since it is next to impossible to get anybody to discuss matters with via the Verizon phone help lines (endless automated menus that send you to further endless aut

  • Display link item using SPEL

    Hi, I have an issue I am displaying a column say empno as item type link in a multi row table. I want to be able to control on whether employee number actually is a link which shows employee details or if it shows just the plain employee number (it's

  • Goods Receipt before the delivery date

    Hi I have requirement that Goods Receipt should not happen before the specifed delivery date mentioned in the Purcahse Order. Is there any customization for the same? Regards

  • Issue with Adobe reader on the Z10

    Every time i try to open a pdf on my z10 i get an error message saying "Unrecognised error 6 trying to view ... .pdf." also, the Adobe reader icon on my home screen is blank. Thought I'd reinstall to resolve this but can't seem to figure out how. Sin

  • Integrating webcenter content with soa webservice

    Hi All, We have been working on Oracle Content Server for the past one year. Currently we have a requirement that we need to integrate webcent content workflows with oracle BPM worklist using webservice Definition Language(WSDL) url. (i.e.) whenever