first date filtering

I have the table called EMP
id     join_date     descpn
101     24/01/2010     ABC
101     31/01/2010     ABC
102     07/02/2010     ABC
102     14/02/2010     ABC
103     31/01/2010     XYZ
101     07/02/2010     XYZ
104     14/02/2010     XYZ
can you pls help me to filter the first join_date for each descpn

the reqd. o/p
24/01/2010     ABC
31/01/2010     XYZ
Thanks in advance

Something like this maybe?

SELECT  DESCPN
,       MIN(JOIN_DATE) AS JOIN_DATE
FROM    EMP
GROUP BY DESCPN
ORDER BY 1

Tags: Database

Similar Questions

  • First Date of General Avaialability of Oracle WebCenter Portal version 12 c

    Hi all

    My client is asking me to check the first date that the 12 c of the WebCenter Portal version was announced the general availability (release date?).

    I did a search on the website of Oracle, but wasn't able to find an ad. But I was able to find the date of WebLogic 12 c. I don't know if the first version number has been 12.0 or any other number.

    Can anyone help?

    Thanks in advance.

    Toan

    Hello

    Yes, the first version of the webcenter 12 c Portal is 12.2.1 before this version is 11.1.1.9

    Thank you

    Amey

  • How to add two lines when the second row is not visible, but also gets the first data line too?

    Mr President

    Jdev worm is 12.2.1

    How to add two lines when the second row is not visible, but also gets the first data line too?

    I want to add two lines like below picture, but want the second to remain invisible.

    tworows.png

    I asked this question but my way of asking was wrong, that's why for me once again.

    Concerning

    Try to follow these steps:

    1. in the database table to add the new column "JOIN_COLUMN" and add the new sequence "JOIN_SEQ".

    2. Add this new column in the entity object. (You can add this in entity object by right clicking on the entity object and then select "Synchronize with database" then the new column and press on sync)

    3. in your bookmark create button to create only one line NOT 2 rows.

    4 - Open the object entity--> java--> java class--> on the entity object class generate and Tick tick on the accessors and methods of data manipulation

    5 - Open the generated class to EntityImpl and go to the doDML method and write this code

      protected void doDML(int operation, TransactionEvent e)
      {
        if(operation == DML_INSERT)
        {
          SequenceImpl seq = new SequenceImpl("JOIN_SEQ", getDBTransaction());
          oracle.jbo.domain.Number seqValue = seq.getSequenceNumber();
          setJoinColumn(seqValue);
          insertSecondRowInDatabase(getAttribute1(), getAttribute2(), getAttribute3(), getJoinColumn());
        }
    
        if(operation == DML_UPDATE)
        {
          updateSecondRowInDatabase(getAttribute1(), getAttribute2(), getAttribute3(), getJoinColumn());
        }
    
        super.doDML(operation, e);
      }
    
      private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object joinColumn)
      {
        PreparedStatement stat = null;
        try
        {
          String sql = "Insert into table_name (COLUMN_1,COLUMN_2,COLUMN_3,JOIN_COLUMN, HIDDEN_COLUMN) values ('" + value1 + "','" + value2 + "','" + value3 + "','" + joinColumn + "', 1)";
          stat = getDBTransaction().createPreparedStatement(sql, 1);
          stat.executeUpdate();
        }
        catch (Exception e)
        {
          e.printStackTrace();
        }
        finally
        {
          try
          {
            stat.close();
          }
          catch (Exception e)
          {
            e.printStackTrace();
          }
        }
      }
    
      private void updateSecondRowInDatabase(Object value1, Object value2, Object value3, Object joinColumn)
      {
        PreparedStatement stat = null;
        try
        {
          String sql = "update table_name set column_1='" + value1 + "', column_2='" + value2 + "', column_3='" + value3 + "' where JOIN_COLUMN='" + joinColumn + "'";
          stat = getDBTransaction().createPreparedStatement(sql, 1);
          stat.executeUpdate();
        }
        catch (Exception e)
        {
          e.printStackTrace();
        }
        finally
        {
          try
          {
            stat.close();
          }
          catch (Exception e)
          {
            e.printStackTrace();
          }
        }
      }
    
  • How can I select the first date (at least) and the corresponding date of two different tables source?

    I have 2 tables, INVOICE and INVOICE_REFNUM similar to below. I'm writing a query that withdrawing the first date (less) for a single record remaining the two tables. Each table records the receipt of invoices, but according to the source of the received invoice some may reside in INVOICE_REFNUM and others the INVOICE table. I also use DECODE on the topic of INVOICE_SOURCE, when the date less is taken from the INVOICE table that contains that field, so if the date is in the field INVOICE_REFNUM DECODE is not necessary. Example:

    INVOICE (table)

    INVOICE_GID INVOICE_SOURCE INSERT_DATE

    ABC. AVRT123 I HAVE 11/03/2012-15:49:32

    ABC. CNWY234 G 12/03/2012 14:07:30

    ABC. UPGF678 M 15/03/2012 20:21:54

    INVOICE_REFNUM (table)

    INVOICE_GID INVOICE_REFNUM_QUAL INVOICE_REFNUM_VALUE INSERT_DATE

    ABC. AVRT123 SOURCE ACS 11/03/2012 14:49:32

    ABC. CNWY234 SOURCE CSA 12/03/2012 13:07:30

    ABC. UPGF678 SOURCE ACS 15/03/2012 21:21:54

    My decode statement is: DECODE ("INVOICE_SOURCE, 'I', 'IDE', 'G', ' Auto-Pay", ', 'Manual')

    If I were to write a query on these two tables, the output will resemble the following:

    INVOICE_GID INVOICE_SOURCE INSERT_DATE

    ABC. AVRT123 ACS 11/03/2012 14:49:32

    ABC. CNWY234 ACS 12/03/2012 13:07:30

    ABC. UPGF678 Manual 15/03/2012 20:21:54

    I worked on it for 2 days, and I was able to pull a date by using the following SQL code, but cannot determine how to extract the corresponding source:

    SELECT THE LEAST (GLOGOWNER. INVOICE_REFNUM. INSERT_DATE, GLOGOWNER. THE INVOICE. INSERT_DATE) AS 'DATE OF THE INVOICE.

    GLOGOWNER. THE INVOICE. INVOICE_GID,

    DECODE (GLOGOWNER. THE INVOICE. INVOICE_SOURCE, 'I', 'IDE', 'G', 'Auto-Pay', ', 'Manual').

    GLOGOWNER. INVOICE_REFNUM. INVOICE_REFNUM_VALUE

    OF GLOGOWNER. INVOICE

    LEFT JOIN GLOGOWNER. INVOICE_REFNUM

    ON GLOGOWNER. THE INVOICE. INVOICE_GID = GLOGOWNER. INVOICE_REFNUM. INVOICE_GID

    WHERE GLOGOWNER. INVOICE_REFNUM. INVOICE_REFNUM_VALUE = "ACS."

    AND GLOGOWNER. INVOICE_REFNUM. INVOICE_REFNUM_QUAL_GID = 'SOURCE '.

    AND GLOGOWNER. THE INVOICE. INVOICE_TYPE = 'I '.

    ORDER OF GLOGOWNER. THE INVOICE. INVOICE_GID

    Any help is greatly appreciated!

    Best regards

    -Adam

    Hello

    Is that what you want?

    SELECT i.invoice_gid

    CASE

    WHEN ir.insert_date<= i.insert_date ="" then ="">

    WHEN i.invoice_souce = 'I' and THEN 'EDI '.

    WHEN i.invoice_souce = 'G' THEN 'debit '.

    WHEN i.invoice_souce = am' THEN 'manual '.

    END AS invoice_source

    , The LEAST (i.insert_date, ir.insert_date) AS insert_date

    I have the Bill OF

    JOIN invoice_refnum ON i.invoice_gid = ir.invoice_gid ir

    WHERE ir.invoice_refnum_value = 'ACS '.

    AND ir.invoice_refnum_qual_gid = 'SOURCE '.

    AND i.invoice_type = 'I '.

    ORDER BY i.invoice_gid

    ;

    There is no reason to do an outer join if you only want the lines with specific values anyway.

    What happens if the 2 tables have exactly the same invoice_date?  The query above takes the invoice_source of invoice_refnum in this case, but that can easily be changed.

    Or the other of the insert_dates can be NULL?

    I hope that answers your question.

    Otherwise, thank you post a small example data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and also after the results you want from these data (otherwise what you have already posted).

    Explain, using specific examples, how you get these results from these data.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum: https://forums.oracle.com/message/9362002#9362002

  • Need help with select this range of months with flexible first date

    Hi all

    I am creating a selection range months (will be in a WITH clause), for a report view monthly data. But the first months start date may be any date. (Not necessarily the first date of the month)
    Examples:

    Report of input parameters:

    Start date: 10/08/12
    End of month: December 2012

    I tried to build a SELECT that will list
    Month_Start, Month_End
    10/08/12, 10/31/12
    11/01/12, 11/30/12
    12/01/12, 31/12/12

    OR
    Month_Start, Next_Month
    10/08/12, 11/01/12
    11/01/12, 12/01/12
    12/01/12, 01/01/13


    End of the month being optional, if no select value lists only
    10/08/12, 11/01/12


    Details of database is Oracle
    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    PL/SQL Release 11.1.0.7.0 - Production

    My code is far
    VARIABLE  P50_START_DATE  VARCHAR2 (10)
    VARIABLE  P50_END_MONTH    VARCHAR2 (10)
     
    EXEC  :P50_START_DATE  := '10/10/2012';
    EXEC  :P50_END_MONTH   := '31/12/2012';
      
     
      SELECT  to_char(:P50_START_DATE) AS start_date
            ,  ADD_MONTHS( TRUNC(to_date(:P50_START_DATE,'DD/MM/YYYY'),'MONTH'), 1) AS next_month
      FROM dual
      union
    
       SELECT to_char(ADD_MONTHS( TRUNC(to_date(:P50_START_DATE,'DD/MM/YYYY'),'MONTH'), ROWNUM-1)) AS start_date
       ,      ADD_MONTHS( TRUNC(to_date(:P50_START_DATE,'DD/MM/YYYY'),'MONTH'), ROWNUM) AS next_month
       --, rownum
       from all_objects
       where
       rownum <= months_between(to_date(NVL(:P50_END_MONTH, :P50_START_DATE),'DD/MM/YYYY'), add_months(to_date(:P50_START_DATE,'DD/MM/YYYY'), -1))
       and rownum > 1
    If I put the comment - on the line and rownum > 1, as
    -- and rownum > 1
    The result I get is
    START_DATE                     NEXT_MONTH                
    
    01/10/12                       01/10/12                  
    01/11/12                       01/11/12                  
    01/12/12                       01/01/13                  
    10/10/2012                     01/11/12    
    But when I try to remove the double off period (the first month) by restricting rownum, it do not return all the lines for the second selection at all. The result I get is:
    START_DATE                     NEXT_MONTH                
    
    10/10/2012                     01/11/12    
    Can anyone tell what is wrong with the statement select?

    Thank you very much in advance,
    Ann

    Queries line use:

    SQL> VARIABLE  P50_START_DATE  VARCHAR2 (10)
    SQL> VARIABLE  P50_END_MONTH    VARCHAR2 (10)
    SQL>
    SQL> EXEC  :P50_START_DATE  := '10/10/2012';
    
    PL/SQL procedure successfully completed.
    
    SQL> EXEC  :P50_END_MONTH   := '31/12/2012';
    
    PL/SQL procedure successfully completed.
    
    SQL> SELECT  CASE LEVEL
      2            WHEN 1 THEN TO_DATE(:P50_START_DATE,'DD/MM/YYYY')
      3            ELSE TRUNC(ADD_MONTHS(TO_DATE(:P50_START_DATE,'DD/MM/YYYY'),LEVEL - 1),'MM')
      4          END MONTH_START,
      5          LAST_DAY(ADD_MONTHS(TO_DATE(:P50_START_DATE,'DD/MM/YYYY'),LEVEL - 1)) MONTH_END
      6    FROM  DUAL
      7    CONNECT BY ADD_MONTHS(TO_DATE(:P50_START_DATE,'DD/MM/YYYY'),LEVEL - 1) <= TO_DATE(:P50_END_MONTH,'DD/MM/YYYY')
      8  /
    
    MONTH_STA MONTH_END
    --------- ---------
    10-OCT-12 31-OCT-12
    01-NOV-12 30-NOV-12
    01-DEC-12 31-DEC-12
    
    SQL> 
    

    SY.

  • Data filtering

    Hello

    can anyone help on this below requirment? the requirment is, there are a many (2) replication (oracle for oracle only), the particular source of tables in database with all the data of 2 regions (United Kingdom and New Zealand), replication must come from a source of first target with only the datas UK and NDDN target will be with the NZ data. simple method how we can use to achieve this, the table has the column "region_name". but when I use under the control of filter caps letter No filtering as the name of the region, only its filtering as we mentioned in the filter condition, how to filter if region name the two caps (UK) are in small letters (uk)?

    TABLE CBC. ACCOUNTS, FILTER (@STRFIND (rated, 'uk') > 0);

    the same tried with where clause and the filter also, clause but is not region name of replication like UK (caps), only replication of data with "uk".

    advice where to mention the terms of filter extracted also aside or replicate for better performance?

    Thanks in advance.

    Could you try with one of the following?

    TABLE CBC. ACCOUNTS, FILTER (@STRFIND (@STRUP (rated), 'UK') > 0);
    or
    TABLE CBC. ACCOUNTS, FILTER (@STRFIND (UPPER (rated), 'UK') > 0);

    The best way to do it is to use an extract that extracts all the data. Use then the two excerpts from datapump, which filters UK data and one that filters data NZ.

  • trip data filtering

    Hello, dear comrades! I am facing a problem like a novice in data acquisition: there is a test bench which consists, apart from all the rest, two displacement sensors, acquiring data from the displacement of the rotor over time. the data that I get is loud, so I had to filter it. I'm using butterworth topology of a filter and a default break break high-frequency and low startup parameters. It's a bandstop filter because I checked the signal in the frequency domain and found the noise bandwidth. a few words on the subject: there is a metallic cyllinder, I use to test the sensors. so, when I don't move the object, the sensor shows a straight line, which means that the signal that I need a frequency 0. This means that any change in the frequency domain would indicate the frequency of the noise. I discovered that it is between 4000 and 4250 apprx. but no matter how, I tried the signal would not be filtered. the fact is when I send no dynamic data (lol-orange line) to the waveform on the filter it shows ok but the signal does not change over real time. so, I built a waveform taking into account features such as t0, dt of a form of initial wave, but after that I got an even more noisy data. It might be ive been trying to solve the problem for too long, I stuck to some obvious point, but I don't have any ideas, any help would be appreciated. Thank you very much!

    Here we go...

  • Detection of changes in PCI-6509 missing first data entry

    Hello

    I have two 6509 cards in separate computers, connected to each other. I use six lines, with one channel for each line, to send signals between the two boxes.

    I used the driver NOR-DAQmx 8.0.2 on SUSE Linux, coded in C.

    Starting by examples of digital I/o that I did a card pass in four lines and the other card received the signal, using the detection of change on the falling edge only, with the lines reversed.

    To send a signal it took the value 1 on this line, using digital lines of writing and then set it to 0 using the same function.

    If I send 4 signals, apartment of 100 ms, 1 on each line. The recipient will detect all four edges of falls, but the function of reading digital lines (in the recall of events highlights registed) returns zero for the first detection. I read only one sample of each line. Once that happens all seems fine.

    I read that more than a sample for the first digital reading for function call?

    What I have to do my signal longer, for the moment it comes to 150us? I can do this with an expectation in the code. I can afford it to streatch for about 1 ms, but it's always with this kind of treatment.

    Is there some call the initialization to get the driver to initialize the internal memory or something? (Maybe it's my wrt slow code, but I don't see how, there is almost nothing.)

    Thank you

    I think we arrived at the conclusion that this card cannot detect as close as 450ns interruptions. The API does not quickly that detect enough them between the interruption and the call to read data lines.

    It seems that we should have brought a card counting rather than a map of interruption.

  • Please Help blackBerry smartphones! First data from tmobile phone Blackberry on curve 8520!

    Hi all!

    How are you all? As you can see I am new to the Blackberry community.

    I have the Tmobile monthly plan $ 50 (prepaid) conversation/text/data unlimited, up to the first speed of 4 g of 100 MB.

    Now I see the bottom of tmobile there blackberry user supplementary pay $ 10 per month. (Quoted below from t - mobile.com)

    "Includes access to BlackBerry, BlackBerry Messenger and BlackBerry App World messaging for your BlackBerry device.

    Anyone know if the internet will work and be able to access the foregoing without paying the extra $ 10

    If, then, what is the way around him? : Winkiss

    Hi and welcome to the forums Kreyol!

    A few places to visit: Blackberry 101     tips & tricks

    You want to contact your provider (T-mobile) and make sure that you have THE Blackberry data plan.

    Happy to welcome you!

  • View of XMLType of relational data - filtering at the beginning

    Database version:
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Solaris: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    First of all, I want to apologize for my lack of knowledge in Oracle XML DB space. :)

    I have a relationship master detail, stored in relational tables. I created XMLType view based on an XSD that relationship master detail. The problem, in that I am running is that this point of view is just a simple join of two tables. In real life I need to return a subset of these two relational tables based on filtering conditions on the master and detail tables. I know that I can use functions such as XMLExist to filter the dataset according to the needs, but the problem is that Oracle built the entirety of an instance of XMLType first (hundreds of thousands of records) and make the filter after the fact.

    Is there anyway to exploit an XMLType view, but effectively filter useless records in relational tables?

    I'm afraid, is not possible.
    With XMLExists, it's going to be all or nothing. We cannot push a filter predicate in a group together like that.

    The only solution I can think of is to extract the necessary parts using XQuery, but this way we need to rebuild things parents every time, thus negating the purpose of the view.

    I think you need a "set view" to do this, but this is perhaps not an option?

  • Application roles data filters did not work

    I put filters data for the role of BIConsumer by default, but it did not work.

    Hello

    Default administrator can access all tables/columns presentation. In other words, only users not in the administrator group can be restricted permission for this configuration. That is why the weblogic user is able to see the object limits. Try to create a new user without privilege BIAdministrator and find the table of 'Time', your setting will work for sure.

    Rgds,
    DpKa

  • I NEED A FIRST DATA 5 RANKS

    HI EXPORTS.


    MY QURY IS

    SELECT TOT. HTNO, TOT. RESULT_NAME, TOT. TOTALMARKS, TOT. TOTALRANK,
    TOT. RESEXAMSLNO, TOT. RESACADEMICSLNO, TOT. RESGROUPSLNO,
    TOT. RESCORPCOLLSLNO, TOT. DISTRICTSLNO
    OF RESULT_STUDENTMARKS_TOTALS TOT
    WHERE TOT. RESEXAMSLNO = 1
    AND TOT. RESGROUPSLNO = 1
    AND TOT. RESACADEMICSLNO = 9
    AND TOT. RESCORPCOLLSLNO (99)
    AND TOT. DISTRICTSLNO (4)
    AND ROWNUM < 5
    ORDER BY TOT. HTNO


    I WANT THE FIRST 4 LINES OF DATA BASED ON ORDER CRESCENT CAN U DISPLAY IS QURY OR

    IN VIEW OF ALL EXAMPLE OF FIRST 4 LINES OF DATA ORDER BY ONLY A FIELD IN THE TABLE


    THANKS and GREETINGS
    ASHOK

    Published by: Ashok April 28, 2011 23:01

    See

    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:62364503028143

    and

    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:2853107469873

    You must filter the ROWNUM after ORDER BY.

    so:

    select * from
    (
    SELECT TOT.HTNO, TOT.RESULT_NAME, TOT.TOTALMARKS, TOT.TOTALRANK,
    TOT.RESEXAMSLNO, TOT.RESACADEMICSLNO, TOT.RESGROUPSLNO,
    TOT.RESCORPCOLLSLNO, TOT.DISTRICTSLNO
    FROM RESULT_STUDENTMARKS_TOTALS TOT
    WHERE TOT.RESEXAMSLNO = 1
    AND TOT.RESGROUPSLNO = 1
    AND TOT.RESACADEMICSLNO = 9
    AND TOT.RESCORPCOLLSLNO IN (99)
    AND TOT.DISTRICTSLNO IN (4)
    ORDER BY TOT.HTNO
    )
    where rownum < 6
    order by 1
    

    Hemant K Collette

    Published by: Hemant K grapple on April 29, 2011 14:28
    Change 'rownum '.< 5"="" to="" "rownum="">< 6"="" to="" get="" 5="">

  • ArrayCollection collection do not fill after calling first Data Services

    I am filling a collection ArrayCollection using a call for data by the following code:

    [
    Bindable]
    
    public var srv:RemoteObject;
    
    var acCountries:ArrayCollection; 
    
    if
    
    
     (srv == null){srv = 
    new RemoteObject();srv.destination = 
    
    "trip"; }
    acCountries = srv.getAllCountries.lastResult;
    srv.getAllCountries();
    
    
    
    

    ArrayList is not populted during the first call.  The java backend data service method is called, but the ArrayCollection collection is not populated until the time of the second (or third) the code is executed.

    I tried to walk through the debugger, but it is unclear what I does not initialize correctly.

    Hello

    Try to use the below approach instead of the adopted approach.

    [

    Bindable]

    public var srv:RemoteObject;

    private function getAllCountries():void

    {

    var acCountries:ArrayCollection;

    if (srv is Nothing)

    {

    SRV =

    new RemoteObject;

    SRV.destination =

    'journey';

    }

    srv.addEventListener (ResultEvent.RESULT, countriesResultHandler);

    srv.addEventListener (FaultEvent.FAULT

    countriesfaultHandler);

    srv.getAllCountries ();

    }

    private function countriesResultHandler(result:ResultEvent)

    {

    Check here the result by debugging object and replace the threshold accordingly

    acCountries = result.countries;

    }

    private function countriesfaultHandler(fault:FaultEvent)

    {

    Alert.Show)

    "Error: ' + fault.message);

    }

    In the approach you used you bind the data to the ArrayCollection collection by making use of the lastResult object.

    But you use the below line and send the result at the same time...

    acCountries = srv.getAllCountries.lastResult;

    srv.getAllCountries ();

    Here you don't know when the acCountries arraycollection collection will be linked to the lastResult object. Given that it is an asynchronous operation for the first time that you control the acCountries arraycollection collection you have all the data. Her approach always better and good use of event handlers in response as the way I used so that you will know exactly when took place the answer/result and if no fault or so.

    If this post answers your question or assistance, please mark it as such.

    Hope this will make things clear...

    Thank you

    Jean Claude Chari

  • Data filtering of the subsidiary ledger which are loaded into the tables of BAW of EBS

    Hi all

    Thank you for taking the time to read this post.

    Environment

    Applications of Oracle's BI 7.9.6 (financial and analytical project)
    Oracle E-Business Suite 11.5.10

    Question

    I would like to be able to filter the source EBS 11.5.10 (mainly by the operational unit) that are loaded in the BAW. I've implemented financial analytics and project analytics and to the departure I intended according to the instructions described in the documentation of Oracle Oracle BI Configuration Guide Applications for Informatica PowerCenter section 5.2.2.4 users how to specify the great book or series of books for which GL Data is extracted, but then realized that it wasn't relevant to the General Ledger and would not impact the subsidiary ledgers.

    I want to filter a (large) special operational unit (org_id) whose business do not want to include in their BI reporting at this stage.

    Is it possible to do easily thanks to the configuration? I don't really want to be change all workflow or deletion at the .rpd level.

    I can implement security OU_ORG to limit the data that end users have visibility to display, but my goal is not to fill the BAW tables withthis data in the first place (mainly as a result of the quality of the data volumes and data) which are perform my execution Plans.

    Kind regards
    Gary.

    Gary, this can be done by a simple configuration. For the moment, this done as a customization. Basically, you need to add a filter to the mappings of extract (SDE) that you want to limit the data.

  • First date 13 limit after opening.

    Whenever it opens, the answer is "an unexpected problem occurred and the program must be closed. Installation has no problem, "successful Installation". HP computer with all hardware and software (Windows 8.2) checked to exceed the minimum requirements. Adobe Photoshop 13 loaded and works without a problem. I tried Windows trouble shoot, first opened, imported a video clip, and then in a few minutes, same problem, the program gives same message and closed.

    I think I found a problem. Using Norton security. Norton said that adobe first 13 is a trust file. To make sure that I went to the icon on the desktop, click the right button icon, click Norton File Insight. Marks the file as a file of user confidence. Premiere Elements is now fully functional, open, close, import a file, sequence, save, etc. Problem was Norton, but no program indicated what the problem was. Also, note there is no problem to use Photoshop, without any additional intervention with Norton.

Maybe you are looking for

  • Tecra A8 - Touchpad problem

    Hello Forum, I use a Tecra A8 model, 2 GB memory, XP SP2. Since a few weeks I have the following problem: (1) if I move my finger across the touchpad (fast or slow), the cursor remains on the position, if--if I'm not touching the touchpad. After 1-2

  • Updated BIOS for Satellite A665 - virus: Win32/Chir.B@mm

    New update of the BIOS 2.10 for one model A665 a virus named: win32/chris@mmhttp://Support1.toshiba-tro.de/Tedd-files2/0/BIOS-20110909104312.zip

  • Replacement motherboard for tuner problems

    The model is a KDL-40EX400 and simply works great with the exception of the over-the-air (Off The Air). We recently replaced DirecTv with an external antenna. The antenna works very well because I plugged the cable into another Sony TV and the pictur

  • the Home icon shortcuts

    I have a z2 nd he just two shortcuts to applications when you tap and hold the icon of the House... one is 'Google' nd the other is 'what's new '... I am not able to change these shortcuts... can someone tell me how can I change them?

  • BB 10 Service integration, sample invocation

    I created somes apps and games for BB10 using AIR and want to have qualified for B4B apps. The most important requirement for B4B "BlackBerry 10 Service intégration", has everyone, example code for the integration of BB10 services? I guess that same