Probleme with butons Apply changes & Create

Hi all,
I have an interactive report with a link column which links to a regular form so the user can modify the information when he clicks on the column link.
This form is used to add new information too.
In the form, the buton create is conditionnal (Value of Primary key is NULL )
The buton Apply changes is conditionnal too, (Value of Promary key is NOT NULL )
I added some validations to control what people write, the problem is that when people write wrong things, the Item (the primary key) that I control is not null anymore, so the buton create desappear and the buton apply changes appear. So I cannot INSERT.
Any sugggestions ?
Thank you :)

Hi,
I have an interactive report with a link column which links to a regular form so the user can modify the information when he clicks on the column link.This form is used to add new information too.
In the form, the buton create is conditionnal (Value of Primary key is NULL )
The buton Apply changes is conditionnal too, (Value of Promary key is NOT NULL )
I added some validations to control what people write, the problem is that when people write wrong things,<b> the Item (the primary key) that I control is not null anymore</b>, so the buton create desappear and the buton apply changes appear. So I cannot INSERT.>
It cannot be becoming non null on its own, chances are you have a computation or process that changes this item.
Run the Page in Debug mode and see the Debug Report. It will show you which process is changing the value to not null.
Cheers,

Similar Messages

  • Problems with Firefox - unable to create a workset in the portal

    Problems with Firefox - unable to create a workset in the portal.

    Guys,
    I am running mozilla firefoz 5.0 and the only option that is coming to me is to create folder in CA.
    even though SAP recommands IE and allows portal from Mozilla, the later seems to have serious issues with Portal.
    I remember working with several versions of mozilla, sometimes you right click, all option will come but you will be unable to choose options coz when u bring cursor to them they will skid here and there..
    I hope no SAP note elobrates this as of now.
    Ankur

  • Problem with the agent console created in the ESSO-Logon Manager 64 bits

    Friends,
    When I use the installer that I created in the console ESSO-Logon Manager for 32-bit, this I install it on the client side and when I synchronize with the console-Logon Manager ESSO brings me and I can see the agent all the templates I configured.
    I have a problem with the agent console created in the Logon Manager ESSO-64bit.
    When I use this installer on the client stations and then by the agent does not envision the applications that I have configured in the console.
    This causes you can not do single sign on to applications that I have configured in the client stations
    To generate this installer use the source name: ESSO-LMx64.msi
    Can someone please help me with this problem, this only happens when I use the msi installer on 64-bit client stations.
    Thanks.

    Jackson_Bill wrote:
    What IDE are you using and what platform?Read first.
    Moh Bob wrote:
    I'm using J2ME platform SDK 3.0
    db

  • Problem with layout and changing content

    Hi, I`m new to Swing and I have a problem with layout.
    I want to make a menu using JButtons so that depending on which button you click you`ll get different content in the window. And first of all I don`t know how to center the buttons.
    I have a JFrame called GameWindow that has a JPanel field called content. My idea was to create a JPanel with buttons and then using ActionListeners change the JPanel held in 'content'.
    Here`s the code:
    public class GameWindow extends JFrame{     
         private static final long serialVersionUID = 1L;
         private JPanel content;
         private Player player;
         public GameWindow(){          
              super("Dawn Crystal");
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
              setSize((int)screenSize.getWidth(), (int)screenSize.getHeight());
              setExtendedState(MAXIMIZED_BOTH);
         public void mainMenu(){
              content = new MainMenu(this);
              Dimension dim = content.getSize();
              setLayout(null);                    
              Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
              int x = (int)((screen.getWidth() - dim.getWidth()) / 2);
              int y = (int)((screen.getHeight() - dim.getHeight()) / 2);
              int dimX = (int)dim.getWidth();
              int dimY = (int)dim.getHeight();          
              content.setBounds(x, y, 120, 120);          
              getContentPane().add(content);          
              setVisible(true);
         public void adventureScreen(){
              //so far empty
         public void createNewPlayer(){
              content.setVisible(false);
              content = new NewPlayerCreationWindow();
              getContentPane().add(content);          
              content.setVisible(true);
              //setVisible(true);
         public void setPlayer(Player p){ player=p; }
    public class MainMenu extends JPanel{     
         private static final long serialVersionUID = 1L;     
         private JPanel mainMenuButtons;
         private JButton newGame;
         private JButton loadGame;
         private JButton options;
         private JButton exit;
         public MainMenu(GameWindow par){
              mainMenuButtons = new JPanel();     
              //create buttons
              newGame = new JButton("NEW GAME");
              loadGame = new JButton("LOAD GAME");
              options = new JButton("OPTIONS");
              exit = new JButton("EXIT");
              //create action listeners
              newGame.addActionListener(new NewGameListener());
              exit.addActionListener(new ExitListener(par));     
              //add buttons to panel
              mainMenuButtons.setLayout( new GridLayout(4,1));
              mainMenuButtons.add(newGame);
              mainMenuButtons.add(loadGame);
              mainMenuButtons.add(options);
              mainMenuButtons.add(exit);     
              add(mainMenuButtons);          
    }When it displays the buttons are at the top of the frame rather than in the center - I thought that was how the default layout would behave. So that`s my first question - how to center it.
    Secondly I have NewPlayerCreationWindow written but when I call createNewPlayer() I get an empty frame - what am I doing wrong?
    Finally I`d like to ask how can I make the frame appear as maximized when the application is started? The setExtendedState(MAXIMIZED_BOTH); doesn`t help actually because the window`s height is too big and a part of window is hidden under the system bar. I want to have it maximized regardless of screen resolution.

    Use a [url http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]Card Layout.

  • Problem with FTP Adapter in creating a new Folder

    Hi all,
    I have a requirement in which a BPEL process shud create a folder named as sysdate dynamically and write a
    CSV file into that.(ex: PO/2010-03-09/PO_1.csv).I created a header variable for Oubound FTP adapter and
    passing the file directory as concat('PO/',xp20:current-date(),'/') to outbound header directory variable.Problem is FTP
    adapter is not creating the sysdate folder its says:1.check u have privileges 2.file name is too long....Blah....Blah.
    But i have all the privileges for that user.If i manually create the sysdate folder the FTP adapter is placing the CSV
    file.The same works fine with file adapter...but i need to use FTP since the FTP server can change in future.Seems to
    be a problem with FTP adapter....can some one help.
    Iam using SOA 10.1.3.4
    Regards,
    Edited by: 0racler on Mar 9, 2010 4:46 AM
    Edited by: 0racler on Mar 9, 2010 5:49 AM

    any thoughts????

  • Problems with Web Dynpro Tutorial "Creating an Email Client Using ..."

    Hello,
    I have a problem with the Web Dynpro Tutorial Number 6 ("Creating an Email Client using Web Dynpro and Web Services"):
    On page 20 of the PDF description of the Tutorial, Step 6 reads:
    "In the view layout, select the UI element EmailFormGroup and then choose the entry Apply Template in the context menu"
    Yet the context menu of the UI element EmailFormGroup does not show an entry "Apply Template".
    Do you have any hints?
    Kind regards,
    Franz-Josef Krämer

    Hello,
    the solution was: it should have said "in the outline view" and not "in the view layout".
    In the outline view, the context menu included "Apply Template".
    So no further responses are necessary.
    Kind regards,
    Franz-Josef Krämer

  • Problem with listener whe I create a new instance

    Hi
    I can not create two instances on my Oracle data base, the listener is not running or the service is not registred. This is my state:
    I´ve installed Database Oracle 11gR2 on OEL (Oracle Linux Enterprise) and I need two instance, I created my first instance and I had some problems with my environment variable
    but now it is fixed, when I execute: '*lsnrctl status*' it answers me:
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 13-DEC-2010 16:48:03
    Copyright (c) 1991, 2009, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=SPHYNX)(PORT=1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date                13-DEC-2010 15:09:39
    Uptime                    0 days 1 hr. 38 min. 23 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /home/oracle/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    Listener Log File         /home/oracle/app/oracle/diag/tnslsnr/SPHYNX/listener/alert/log.xml
    Listening Endpoints Summary...
    +(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=SPHYNX)(PORT=1521)))+
    The listener supports no services
    The command completed successfully
    where SPHYNX is the computer´s name, when I read the 'forums.oracle' I see that the line where it tells me:
    +'The listener supports no services'+
    it´s wrong but I don´t undertand the problem
    my Oracle´s enviroment variables are: env | grep ORA
    ORACLE_BASE=/home/oracle/app/oracle
    ORACLE_BIN=/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin
    ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_1
    and my listener is the created in the Oracle´s intallation, it is:
    +# listener.ora Network Configuration File: /home/oracle/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora+
    +# Generated by Oracle configuration tools.+
    LISTENER =
    +(DESCRIPTION_LIST =+
    +(DESCRIPTION =+
    +(ADDRESS = (PROTOCOL = TCP)(HOST = SPHYNX)(PORT = 1521))+
    +)+
    +)+
    ADR_BASE_LISTENER = /home/oracle/app/oracle
    my tnsmanes is:
    +# tnsnames.ora Network Configuration File: /home/oracle/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora+
    +# Generated by Oracle configuration tools.+
    INS1 =
    +(DESCRIPTION =+
    +(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))+
    +(CONNECT_DATA =+
    +(SERVER = DEDICATED)+
    +(SERVICE_NAME = INS1)+
    +)+
    +)+
    it´s created automatically when I delete my initial Instance orcl, created in the installation, and I create the instance INS1
    My user is a special user called 'oracle' and it is not sudoer.
    when I try to create the second instance the wizard tell me that the Enterprise Configuration is failed because the listener is not actived or the data base´s service is not registred in
    it. I do not write the exact output because it is in spanish and I write a translation.
    regards,
    Pablo

    I am sorry if there is any inconsistency but I am not the final user, I don´t know if the final user had some conection´s problem but I could access to the Enterprise Manager in the instance and I had to restart the computer many times after the first configuration, but the user never tell me anything about problems. I only access to the instance with the Enterprise Manager and it´s running
    I´m sorry but I normally have Oracle on Windows and this is my first contact with Oracle and Linux, on Windows I never had these problems because Oracle did everything automatically on Windows.
    The output that I receive with your commands is:
    +[oracle@SPHYNX ~]$ uname -a+
    Linux SPHYNX 2.6.18-194.el5xen #1 SMP Mon Mar 29 22:22:00 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    +[oracle@SPHYNX ~]$ uptime+
    +19:12:22 up 6:16, 1 user, load average: 0.27, 0.18, 0.17+
    +[oracle@SPHYNX ~]$ id+
    uid=501(oracle) gid=501(oracle) grupos=501(oracle)
    +[oracle@SPHYNX ~]$ ps -ef | grep -i pmon+
    oracle   25336 25300  0 19:12 pts/1    00:00:00 grep -i pmon
    +[oracle@SPHYNX ~]$ env | sort+
    _=/bin/env
    CVS_RSH=ssh
    G_BROKEN_FILENAMES=1
    HISTSIZE=1000
    HOME=/home/oracle
    HOSTNAME= SPHYNX
    INPUTRC=/etc/inputrc
    JAVA_HOME=/usr/java/jdk1.6.0_22/
    LANG=es_ES.UTF-8
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    LOGNAME=oracle
    LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.sh=01;32:*.csh=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:
    MAIL=/var/spool/mail/oracle
    ORACLE_BASE=/home/oracle/app/oracle
    ORACLE_BIN=/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin
    ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_1
    PATH=/home/oracle/app/oracle/product/11.2.0/dbhome_1/bin::/usr/java/jdk1.6.0_22/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin
    PWD=/home/oracle
    SHELL=/bin/bash
    SHLVL=1
    SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
    SSH_CLIENT=163.117.129.155 54971 22
    SSH_CONNECTION=163.117.129.155 54971 163.117.129.170 22
    SSH_TTY=/dev/pts/1
    TERM=vt100
    USER=oracle
    +[oracle@SPHYNX ~]$ cat /etc/hosts+
    +# Do not remove the following line, or various programs+
    +# that require network functionality will fail.+
    +127.0.0.1 SPHYNX localhost.localdomain localhost+
    +::1 localhost6.localdomain6 localhost6+
    +[oracle@SPHYNX ~]$ date+
    lun dic 13 19:12:31 CET 2010

  • Problem with Doc type change in ME51n

    During ME51N, when I change the document type of PR system keeps on Processing/busy mode, takes long time (almost 5min) to effect the doc type change in drop down.
    there is no processing time taken if i enter the  the other data in the transaction like quantity,Plant,Purchasing organisation.
    So my Problem is that system takes too much type only when I try to change the Doc Type of PR in ME51N.
    (Note: In debug mode I try to locate the pain point, I noticed that system stuck at module 'Even_pie_finished'...there it keeps on processing continuously.)
    Please input on problem. I am putting this on MM forum at times.

    Thanks for Reply,
    But the Problem is not on changing the Doc type rather Problem is with too much time taken by system when I try to change the doc Type of PR. Prerequisites related to changing the doc type are there in place.
    System goes in into processing mode for long time movement I change the Doc type.
    Jurgen sir, Dev & Prasoon please suggest some input.
    Just to correct in my question module name is 'event_pai_finished'
    There must some infinite loop is getting executed in programme i guess.

  • Problem with duplicate files being created

    I'm having a problem with PSE7 copying files from my camera card to my computer.
    It will copy over all new jpg files fine but once it gets to the NEF (RAW)  files it will not only copy the new files from today but recopy all  those NEF files from other days that are already downloaded so that I end up with files like this:
    DSC_2200.NEF
    DSC_2200-1.NEF
    DSC_2200-2.NEF and so on.  It's very annoying and I have to repeatedly  delete all the duplicate files and this takes up time. I do use the  global search function in Windows to delete them but would prefer they  don't do this in the first place. They do eat up a lot of space.
    I have the settings set to only copy over new files in PSE so why is it copying over older files? Does anyone have any clues?

    You can set up a scan when you create a new device in System Preferences:
    go to System Preferences --> FCSVR Pref pane --> Devices Pane and then choose create new device ("+" sign and the Device Assistant will appear. You choose the type and then you can set up a Full or Add only Scan here.)
    Other option is to set up a Scan via the Administration window in the Java Client:
    This is not as easy since there is no Device Assistant.
    go to Admin window in Java Client --> Response and then create a new 'Scan' response on the device you want to scan. 'Scan Productions' is something different, maybe you want that instead, I don't know. Depending on how you set it up, it can create a Production in FCSVR catalogue for each folder or subfolder and that media will be scanned and placed into that Production in FCSVR catalogue.
    Anyways, once you create the Scan Response, go to Admin pane --> Schedule. Create a new schedule and add the 'Scan' response you just created to the "Response List" section. Don't forget to check "Enabled"...can't tell you how many times I created the response but then forgot to enable it.
    Once you scan the assets, they are in the FCSVR catalogue with clip proxies, thumbnails and posterframes. If you have existing FCP projects that use this media, you will want to make sure the media in the FCP project is connected to that same media that was scanned. When you upload the FCP project, it will not dup the assets, just add the FCP project to it, unless you didn't set the EIP device correctly. If you look in Search All Jobs, the only thing that should be generated at this point it Edit Proxies (if you enabled them) and Elements.
    Now my question to you is the same as Chris' question here http://discussions.apple.com/thread.jspa?messageID=9147105#9147105. How did you set things up so far? What is your workflow? Where is your media?

  • Problem with premiere pro cs5 creating Arabic subtitle

    Hi All,
    I have problem with creating arabic subtitle in premire.
    I  have a the arabic text in my mail but when I copy and paste the text, all the text is swaped, it does't show the correct text.
    Any idea on that?
    Many thanks.

    Thank you

  • Problems with Idoc Artmas03 to create a variant

    Hi everyone, We had created a individual material through Idoc artmas03, we need to create a variant, we have problems with some segments E1BPE1VARKEY & E1BP1AUSPRT, our problem is how to create a variant & how to full this segments, is this correct from Idoc Armas03? or is it necesary another Idoc? Some have some examples, thank you very much
    Best Regards from Mexico,
    Atte Israel

    Guys,
    I am running mozilla firefoz 5.0 and the only option that is coming to me is to create folder in CA.
    even though SAP recommands IE and allows portal from Mozilla, the later seems to have serious issues with Portal.
    I remember working with several versions of mozilla, sometimes you right click, all option will come but you will be unable to choose options coz when u bring cursor to them they will skid here and there..
    I hope no SAP note elobrates this as of now.
    Ankur

  • Problems with Multi-Polygon and creating index on it

    I have a multipolygon that was created from a SDO_AGGR_UNION and I'm trying to create an index on the geometry. It is failing with...
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial index: index build failed
    ORA-13249: Error in spatial index: [mdrcrtxfergm]
    ORA-13249: Error in spatial index: [mdpridxtxfergm]
    ORA-13200: internal error [ROWID:AAAW8+AAxAAAWdqAAA] in spatial indexing.
    ORA-13206: internal error [] while creating the spatial index
    ORA-13033: Invalid data in the SDO_ELEM_INFO_ARRAY in SDO_GEOMETRY object
    ORA-06512: at "MDSYS
    I'm beginning to think it's an issue with Oracle 9.2.0.1 which is the version of database we are using. Just want to check to see if others have had problems with this.
    Here is the geometry of the object.
    mdsys.sdo_geometry(2007, 900001, NULL, mdsys.sdo_elem_info_array(1, 1003, 1, 125, 1003, 1, 489, 1003, 1, 739, 1003, 1, 825, 1003, 1, 941, 1003, 1, 1209, 1003, 1, 1237, 1003, 1, 1369, 1003, 1, 1511, 1003, 1, 1551, 1003, 1, 1727, 1003, 1, 2445, 1003, 1, 2547, 1003, 1, 3829, 1003, 1, 3937, 1003, 1, 4085, 1003, 1, 4095, 1003, 1, 4583, 1003, 1, 6149, 1003, 1, 6379, 1003, 1, 6433, 1003, 1, 6465, 1003, 1, 6485, 1003, 1, 6559, 1003, 1, 6577, 1003, 1, 6607, 1003, 1, 6773, 1003, 1, 6793, 1003, 1, 6807, 1003, 1, 6825, 1003, 1, 6833, 1003, 1, 6855, 1003, 1, 6885), mdsys.sdo_ordinate_array(235180.1, 1269688.5, 235179.9, 1269684.4, 235180.6, 1269680.3, 235182.1, 1269676.7, 235184.2, 1269673.3, 235187, 1269670.4, 235190.3, 1269668.1, 235194, 1269666.5, 235197.8, 1269665.6, 235200.8, 1269665.5, 235205.5, 1269666.8, 235230.8, 1269673.6, 235242.3, 1269676.5, 235261.8, 1269681.2, 235270.1, 1269683.2, 235281, 1269685.6, 235296.1, 1269689, 235335.7, 1269696.8, 235368.9, 1269702.5, 235372.8, 1269703.5, 235376.4, 1269705.4, 235379.5, 1269707.8, 235382.2, 1269710.9, 235384.1, 1269714.5, 235385.3, 1269718.3, 235385.7, 1269722.6, 235385.4, 1269726.3, 235384.2, 1269730.2, 235382.3, 1269733.7, 235379.9, 1269736.7, 235370.9, 1269745.9, 235357.1, 1269760.7, 235342.1, 1269778.7, 235332.3, 1269791.1, 235323.8, 1269802.8, 235320.4, 1269807.5, 235313.4, 1269818, 235309.4, 1269824, 235307.2, 1269827.6, 235304.5, 1269830.5, 235301.3, 1269832.8, 235297.7, 1269834.3, 235293.9, 1269835.2, 235289.8, 1269835.2, 235286.1, 1269834.4, 235282.4, 1269832.9, 235279.1, 1269830.6, 235278.1, 1269829.8, 235276.2, 1269825.5, 235274, 1269820.9))

    The elem_info_array for the multi-polygon is obviosuly wrong:
    mdsys.sdo_elem_info_array(1, 1003, 1, 125, 1003, 1, 489, 1003, 1, 739, 1003, 1, 825, 1003, 1, 941, 1003, 1, 1209, 1003, 1, 1237, 1003, 1, 1369, 1003, 1, 1511, 1003, 1, 1551, 1003, 1, 1727, 1003, 1, 2445, 1003, 1, 2547, 1003, 1, 3829, 1003, 1, 3937, 1003, 1, 4085, 1003, 1, 4095, 1003, 1, 4583, 1003, 1, 6149, 1003, 1, 6379, 1003, 1, 6433, 1003, 1, 6465, 1003, 1, 6485, 1003, 1, 6559, 1003, 1, 6577, 1003, 1, 6607, 1003, 1, 6773, 1003, 1, 6793, 1003, 1, 6807, 1003, 1, 6825, 1003, 1, 6833, 1003, 1, 6855, 1003, 1, 6885)
    The last entry should be something like: 6885,1003,1; instead it is just 6885.
    So the problem might be with sdo_aggr_union as it seems to be creating an invalid geometry.
    Can you post the data you used in generating this geometry with sdo_aggr_union ?
    siva

  • Problem with BOM Quant while creating Sales order with reference using BAPI

    Dear All,
    I am facing problem with creating a slaes order with reference to other sales order by using BAPI_SALESORDER_CREATEFROMDAT2 .
    Sales order is getting created but
    1. It exploding the BOM means the line items which are not there in the reference SO also coming in the new SO ( all BOM items are coming )
    2. Schedule line for BOM header item is getting copied to all sub items of BOM.
    Can any one help me out to prevent the above deviations in creating Sales order with reference by using BAPI_SALESORDER_CREATEFROMDAT2.
    Note: while passing the parameters to BAPI_SALESORDER_CREATEFROMDAT2
    all the data related to items is exactly the same as in the original Sales Order.
    Thanks in advnace.
    Regards,
    John

    Hi All,
    Can any one help me !!!!!!!!!!
    please

  • Problem with the audio when creating optimized media...

    I am having a problem with the quality of my audio after I transcode the clip to optimized media. It sounds fine originally, and I have listened to the clips when I first import them, and they sound fine, it's only after they're optimized that they sound bad. There is a clicking sound that is randomly distributed throughout the clip. I thought at first that maybe this would be fixed after I published the content, as the whole point of optimized media was to make it lesser quality to improve performance while editing, but even when published the clicks could be heard distinctly. I tried editing the content with out optimizing the mdeia, but the editing is too slow as I am working with high quality media.
    Has anyone had this problem? Anyone have an idea on how to I might be able to fix this?

    One way would be to make sure the Preferences window under the Import tab says not to use optimized media.  Then go to the timeline and Control Click the clip.  Choose Reveal in Event Browser.  This will select the clip in the event browser. The originally specified in and out points will be represented in the yellow border on the clip.  Then in the File menu choose the Import ... Files and specify the original media.  The clip in the event browser will be filled in again from the new import, and the timeline clip will also be replaced with the new material. In and out points will be honored and effects will still be in place on the timeline clip. 
    Now, I use this procedure to reconnect clips all the time ... I have not used it before to switch formats from optimized to original media so there is a little guessing here on my part.  The option, of course, is to simply reimport from a camera archive or the camera of the SD card into a new clip then replace everything ... Again, this would need to be done having turned off the preference item to use optimized media.  Hope this helps a little.  Best wishes.
    stephen

  • Problems with appointment that was created on one device had its content changed when sent to iCloud.

    I made a appointment on my iPhone with a list of items in the notes section of the appointment.  Approx. 30 minutes later went to view it on my MAC book pro and found the appointment but there was no information in the notes section.  I immediately went back to check my orriginal appointment on my iphone to confirm it had been saved with the information in the notes section.  When I opened it, the info was there but then dissapeared as if it had been updated to reflect the calendar on my MAC book pro.  I ended up with the appointment on both devices but without the esential details I needed in the notes section.

    That sounds like a nasty one, and could well be a bug.
    I've tried testing it between my iPhone, iCloud and MacBook... but it's all working.  How big was the note?  If we can reproduce it, then we can submit a bug report to Apple.
    Cheers,
    Rodney

Maybe you are looking for

  • Apple mail doesn't read imported mbox emails

    Hi I had a massive crash on my HD MacBook Pro. Technical support were not able to recover my data. Somehow with a friend's help I managed to copy apple mail's archive mbox file onto my Desktop. I was really happy with the possibility of having all my

  • DVD Burn - NTSC/PAL

    I've got an old video clip that I'm trying to burn to DVD. Whether I try Toast, or iMovie/iDVD, when I go to burn, it "defaults" to PAL. Even if I set it to burn NTSC, when I click "burn" it defaults back to PAL. Any suggestions? Thanks

  • Importing CS4 Keyboard Shortcuts to CS5

    I've  discovered that you can open your custom keyboard shortcuts xml file in a  text editor, and copy/paste shortcuts into your CS5 keyboard shortcuts  file. Anyone else tried this? Is there an easier way to import all of  your keyboard shortcuts fr

  • Virus Infected - Oracle 9i Solaris Download

    I downloaded the .gz files for disks 1, 2, 3. When I attewmpt to access these I am getting a message that they are infected with a virus. My virus software cannot determine the type or name of the virus. We're using McAfee VirusScan v4.5.0.534, Defin

  • Error in Transport Lane Determination (/APO/SDP94)

    Hi Guys,             Please can you help on the isuue : When I am entering a quantity for Planning Book in SDP94 for particular period(Week Format) and after pressing the enter key POP-UP for Transport Lane Determantion is coming and after adopting t