Avdanced Table Views Not Filtering

I have an issue with an advanced table's views. The filters defined for the views are not applied to the data when the view is applied.
I can save the views fine but when I open the view all the available data is listed instead of just the data that should be shown based upon the view that was saved.
I'm thinking that either the view did not save the criteria that was entered and run prior to choosing to save the view or that the view isn't applying the criteria to the VO.
Any ideas would be helpful.
Also, when choosing to create the view the shuttle for including or excluding table columns does not show up. Any thoughts as to why this is the case?
Thanks,
Jason

This will let you choose:
Not perfect, but it gets it done :)
    select owner       "Owner",
          table_name  "Table_Name",
          column_name "Column_Name",
          initcap(data_type) ||
             decode(data_type, 
                    'CHAR',      '('|| char_length ||')',
                    'VARCHAR',   '('|| char_length ||')',
                    'VARCHAR2',  '('|| char_length ||')',
                    'NCHAR',     '('|| char_length ||')',        
                    'NVARCHAR',  '('|| char_length ||')', 
                    'NVARCHAR2', '('|| char_length ||')',
                    'NUMBER',    '('||
                     nvl(data_precision,data_length)||
                         decode(data_scale,null,null,
                                ','||data_scale)||')',
                       null) "Type",
          nullable "Nullable",
          owner       sdev_link_owner,
          table_name  sdev_link_name,
          'TABLE'     sdev_link_type
     from sys.all_tab_columns
    where nvl( :OWNER, user) = owner
      and (:TABLE_NAME is null or
           DECODE(:FUZZY_SEARCH, 'Y', instr(upper(table_name),upper(:TABLE_NAME)), - 1)  > 0
           OR upper(table_name) = upper(:TABLE_NAME)
      and (:COLUMN_NAME is null or
           DECODE(:FUZZY_SEARCH, 'Y', instr(upper(column_name),upper(:COLUMN_NAME)), -1) > 0
           OR upper(column_name) = upper(:COLUMN_NAME)
      and substr(table_name,1,4) != 'BIN$'
      and substr(table_name,1,3) != 'DR$'
    order by owner, table_name, column_id

Similar Messages

  • Loaded dump from 12.5.4 to 15.7, Error 622 & Tables/Views not found

    Hi all,
    I am getting desperate trying to fix that issue. I had to import a dump from an ASE 12.5.4 into a new database on an ASE 15.7. I therefore enabled the compatibility mode server-wide and then proceeded to the load which seems to have performed correctly. The database seems well imported, and I can access most of the tables/views/procedures (from my C# application), but a procedure is giving me troubles.
    I am getting this error while executing a given procedure :
    Error: 622, Severity: 20, State: 1
    Opentable was passed a varno of 52. Object 'temp worktable' in database 'tempdb' already has that session descriptor in use. This occured while opening object id -1245236 in database id 2.
    I realised this was caused by a view which is used in this procedure but which is weird is that the error is not thrown when running the SQL code itself, out of the procedure context.
    I am using Toad for Sybase as a client, and realised I cannot access the data tab of the concerned view, Toad gives me the same error. So I cannot execute this view while it performs without any trouble on  the original server (production server which runs ASE 12.5.4).
    I also realised, when trying to execute some pieces of the query individually that I get warnings about unfound tables (and that I should use sp_help to fix the problem). Although, the tables actually exists and I can access their data.
    I have tried so many things and still cannot fix this problem. I've used 'upgrade_object', 'sp_recompile' on all tables, 'dbcc reindex' on all tables.
    Would you have any idea where the problem could come from? Thank you very much

    Thank you for your reply.
    Good to know that enabling compatibility mode before or after loading the load doesn't have any effect.
    I didn't drop/recreate all the SP and views but I can tell you I recreated a similar view and it causes the same issue.
    I had a look at your link yes. I have run 'dbcc upgrade_object' several times already, on the view and the procedures calling the view, and it won't solve anything.
    I've seen a similar post about the problem I have when executing the code itself of the view in a "normal" adhoc query (errors saying the tables are not found) : SAP Sybase Forums - ASE - Backup and Recovery - PRoblem after restore - Object does not exist.
    Could it be the same problem for me?
    Although I've tried splitting the SQL query and executing the parts individually and it works without any trouble. Problem is when the 2 parts of the view are put together. It may be something that was possible with ASE 12.5.4 but not with 15.7 and that compatiblity mode doesn't solve. My view consists of an union a two selects where both have left joins, case when then else, not in and a final group by (adding an order by doesn't help, as I tried).
    PS : I don't have access to the production server where the dump is actually from (but I could if it is really necessary)

  • CMR JDEV9032 TABLE VIEW NOT FOUND

    Hello,
    I'm breaking my head on the following:
    I created two entity beans (A and B). Both are CMP EJB's.
    In EJB terms : A has the field (id, name), B also.
    In the deployment descriptor I set a CMR relationship from A to many B's. This is just like the example of the EMP DEPT. The only difference is that there are no tables mappped yet of the EJB's A and B. They are to be generated at deployment time by the oc4j instance.
    This goes correctly. The tables are created (no intermediate tables are created), direct foreign keys (I'm using oc4j 904 pre to do this).
    So the idea is to work from EJB's and not to worry about the database.
    Since I'm using a CMR (so local interfaces are used), I created a Session Facade, so that I can try to create entity (read records) through a sample client (generated by JDeveloper 9032).
    I can create individual ejbs (==records), I see them in the database. But the moment I try to relate the objects (either by doing a B.setA(LocalA) on the B-entity or by adding to the collection A.getBees().add(LocalB)) it goes wrong.
    None of these work. I get a table or view not found exception. This is strange, since I can see at deployment that two tables are generated, exaclty like I expected. But setting the relationship is very hard !!!!!!
    My question is: who can help me on this ? I found some examples on otn.oracle.com, but they NEVER described the situation where you want to set the relationship.
    Now I'm working for a customer and the deadline is reaching. JDeveloper 9032 is the developerplatform. The embedded OC4J shipped with JDeveloper has a bug (Datasource not closed), that's why I'm using the OC4J 904 pre, since the bug is fixed in this release. Of course a Oracle 9i database is used.
    Hope to hear from you soon.

    Dear Debu,
    The only things I set in the orion-ejb-jar.xml is that datasource name and the table name. I can create instances of the A and B EJB's. Setting the relation between A and B seems to result in the message "Table or View not found".
    Furthermore If I try to do:
    (on Entity A).
    (This code is declared in a SessionFacade EJB which is used to set the relation();
    public void connect( Long idA, Long idB){
    LocalA a = LocalAHome.findByPrimaryKey(new Long(idA));
    LocalB b = LocalBHome.findByPrimaryKey(new Long(idB));
    // now b is filled.
    a.getBees().add(b); // Exception is thrown.
    The Exception is an Illegal State Exception.
    My Question is Why ?
    Regards,
    Rokesh Jankie

  • Employee selection table view not opening in MSS while selecting process

    Hello Everyone,
      In MSS, Team->Start Process for Employee Employee selection table view is not visible, so without selecting employee if i click Select Process button its telling employee is not selected.. How make that Employee selection view visible in MSS..

    This may be structural authorization issue. Execute RHBAUS00 for the user then check what happens.
    Sandip

  • Import problem of tables/views not installed

    Hello,
    need urgent advice to the below error encountered whiel trying to import database using imp. receive tables/views does not exist/not installed. grateful for advice/solution.
    Thanks
    >>
    Username: sys
    Password:
    Connected to: Oracle8 Enterprise Edition Release 8.0.4.0.0 - Production
    PL/SQL Release 8.0.4.0.0 - Production
    IMP-00003: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    IMP-00021: operating system error - error code (dec 2, hex 0x2)
    IMP-00023: Import views not installed, please notify your DBA
    IMP-00000: Import terminated unsuccessfully
    $ exit
    script done on Fri Aug 10 08:07:37 2001
    null

    import utility script may not be existing in full or the version of import utility that is needed to import from that perticular export not exists at all.
    In other words you should check which version of export file you are trying to import ?
    for example if you are trying an import on oracle version 7.3.4. you need to have same version of oracle to import. If not you should run relevant catexp.sql files before you import.
    if still confused contact in this forum again.

  • DB Connection Tables & Views not shown in 9.0.3 for 3rd Pty JDBC

    I am running JDeveloper 9.0.3 under Windows 2000.
    I have configured the 3rd party JDBC libraries under jdev.conf.
    Under connections, database connection, I am able to connect to the database and it does show me the three schema owner names in that database. I am signed on as one of those schema names.
    However, when I attempt to drill-down to the tables and views under those schemas, nothing is shown.
    Under 9.0.2, I was only able to see the schema of the userid I used to sign-on to the database, but I was able to drill-down to the tables and views and use them in generating UML diagrams and such.
    Any help would be appreciated.

    Robert,
    We changed the handling of schemas and catalogs between 9.0.2 and 9.0.3. The purpose of the change was to correct some problems with specific JDBC drivers where the old way was not working. While we tried to test with as many drivers as possible, it seems likely that we inadvertantly introduced an incompatability with your driver. If you can provide me with a few more details, I can try to isolate the problem and hopefully find a resolution.
    First of all, when you created the connection, did you use uppercase, or lowercase. And does the case you use match the case we display in the navigator?
    Second, if you run the code I've enclosed at the bottom of this message (replacing the values in <> with the appropriate values), do you get tables back? What is the value that is printed out for the catalog. If you are seeing a difference in case between the connection definition and the schema node in the navigator, can you try both cases?
    The enclosed code is basically the query we use to get the list of tables. However, we are doing some work internally with the catalog and schema, and see what the raw query returns should point me in the correct direction.
    - John McGinnis
    Oracle JDeveloper Team
    package mypackage1;
    import java.sql.*;
    public class Class1
    public static void main( String[] args )
    try
    DriverManager.registerDriver( ( Driver ) Class.forName( "<your driver>" ).newInstance() );
    Connection conn = DriverManager.getConnection( "<your url>", "<user>", "<password>" );
    DatabaseMetaData dmd = conn.getMetaData();
    String catalog = conn.getCatalog();
    System.out.println( "Catalog = " + catalog );
    ResultSet rs = dmd.getTables( catalog, "<user>", "%", new String[] { "TABLE" } );
    int i = 0;
    while ( rs.next() )
    System.out.println( "Table " + i++ + ": " + rs.getString( 3 ) );
    catch ( SQLException ex )
    System.err.println( ex.getLocalizedMessage() );
    catch ( Exception ex )
    ex.printStackTrace();
    }

  • Filter View Not Filtering

    I have an InfoPath Forms Library in which I need to filter some views. The first one being Client Status, which is a drop down box with the choices of Open, Suspended, Warrant, and In Custody.
    I created a view that I want to only show the Open items.  First I used the Filter to say show only the items that Client Status is equal to Open.  This brought back zero results.  I did a copy & paste so I know Open is correct & no
    hidden spaces, etc.
    Then I tried to do the opposite and filtered if Client Status is NOT equal to Suspended, Warrant, and In Custody using the AND as well as th OR options. This filter brought back everything, filtering nothing.
    Can someone please help?  Thanks, Jeannie

    Hello Jeannie,
    Where you are putting filter (in infopath form or in form library view)? If you are setting filter in form library then what is value of that column. I mean could you tell us the form library columns name and their values.
    I suspect that there is mismatch in column value that's why filter is not working.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Selection in a table view not getting cleared.

    Hi BSPians,
    I am using a tableview with multiedit.Now when i select a row and delete it using a button then the row gets deleted but the selection  still remains.Can u tell me how to clear the selection once the row is deleted.
    thanks and regard,
    ashish.
    PROMPT ANSWERS GET AWARDED PROMPTLY.

    Hi,
    This is simple...
    On the click of the delete button, in the end put this code....
              cl_htmlb_manager=>check_tableview_all_rows( rowcount = 20
                            request = request
                            id = 'your_table_view_id_here'
                            check = 'X' ).
    Hope this helps.
    <b><i>Do reward each useful answer..!</i></b>
    Thanks,
    Tatvagna.

  • Named Criteria for Table Not Filtering on Page Load

    Hi Guys and Gals,
    I'm tying to create a filtered table using named view criteria (http://docs.oracle.com/cd/E24382_01/web.1112/e16182/web_search_bc.htm#BABBCHIH).
    I create the Named Criteria; I drag from the Named Criteria from the Data Control onto the page; I select ADF Read-Only Filtered Table option. I run the page and much to my chagrin, the table is not filtered. A table with all results, plus a filter box with a value "S" (my named criteria filter value), is displayed.
    Shouldn't the results already be filtered upon page load?
    The filter works correctly when I run tests in my AppModule.
    Using JDev 11.1.2.1.0.
    Will

    I've found a workaround.
    I drag and drop the VO (unfiltered) from the Data Control and select read-only table. In my pageDef, I select the table's binding and check the "Enable Filtering" box. I then select the attribute to filter on and the applicable filter text.
    The table then displays filtered results on page load.
    However, I only see this working for very simple filtering (i.e. one column with simple filter requirements). It should be nice to know why dragging and dropping Named View Criteria onto the page does not automatically filter table results on page load.
    Will

  • Power View Cross-Filtering

    In Power View, if you have a bar/column/map visualization with a hierarchy (such as category, sub-category) along with other charts of any kind. 
    If you double click on a column to drill from category to sub-category, no cross-filtering happens. This is confusing because the column chart is drilled into the "bikes" category for example, but all the other charts/tables are not filtered by the
    same category.
    This bug is present in "Microsoft Connect"
    with this title : Power View Cross-Filtering
    I added there also my own comment: In my opinion people "always" expect drilling down also cross-filter other visualizations.
    Anyway it will be a good solution to have a "button" to activate or deactivate the cross-filter drill down on the canvas.
    It  will be solved or not?

    Hi Mario,
    Thanks for your posting.
    On the Power View Cross-Filtering issue, I would suggest you submitting a wish at
    https://connect.microsoft.com/sql or voting others’ feedback. Connect site is a connection point between you and Microsoft, and ultimately the larger community. Your feedback enables Microsoft to make software
    and services the best that they can be, and you can learn about and contribute to exciting projects. When more and more customers have this requirement, product group will consider to add the function in the future.
    Appreciate your understanding.
    Regards,
    Heidi Duan
    If you have any feedback on our support, please click
    here.
    Heidi Duan
    TechNet Community Support

  • Not showing tables, views, ... in vs2010

    Hi,
    I installed ODP.net + ODT (11i) for use with vs2010 & oracle 10.02.0010 (to be upgraded to oracle 11).
    The product installed just fine, I can connect to the database using ODP and ODBC.
    However, when connecting with ODP in vs2010 I can't see any tables, views or stored procedures (can't see anything really). When using ODBC, everything works: I see all the tables, views etc that are in the database, and I can query them.
    I also tried to execute a query using the ODP.net, and it gave me: ORA-00942: table or view does not exist.
    I did a search on the forums, but none of the solutions provided, changed anything for me.
    Does anyone have any ideas?
    Edited by: user13493229 on 18-mei-2011 11:05

    Hi,
    First of all, make sure you see "ODP.NET" in the connection dialog on Server Explorer.
    Next, check the "Filters" tab of the connection dialog. By default we block public synonyms and schema objects that you do not own.
    If you still can't see objects, then most likely your DBA has not given you enough privileges to use these tools.
    Try looking at the advice I gave in the following thread explaining how to turn on ODP.NET tracing. First look to see the SQL involved in the ORA-942.
    Then look at the other SQL we issue and see why you are not able to get any rows from it.
    vs2010 ORA-00942 table or view does not exist

  • Table views/sprocs not showing in Data Source Explorer

    i have a database connection and is in good health.  the tree node for the database lists all of the folders expected, but only the Tables folder is populated with actual tables in the database.  the views and stored procedures are not showing even witht the filters disabled.  on the database i granted dbo rights to the user i am connecting with.  using flex builder 3, flex 3 and sql server 2000.

    Hi Himanshu
    Few fields does not work from particular table. you need to try different table for those fields. those fields could be arranged differently.
    This is neither configuration nor application issue.
    Also check your fields are from transparent table or not...

  • How to Export from table view to Excel (not BI query)?

    There is a 'How to' document explaining how to export from an iView using a BI query:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/47fe4fef-0d01-0010-6f87-ed8ecb479123
    However:
    This 'How-To' document is using an example of a BEx query. I am not using a BEx query, therefore I do not have an "Info port". How can I download to Excel from a table view that is not an iView of a BI query? (It is just a internal table coming from a BAPI).

    keenneth,
    i am using the query from SQL server, i am having the same problem of not having info port. so did you find a work around for exporting to excel with filters for non sap queries ?
    any body who had come across this situation , plz guide me.
    thanks in advance
    ravi

  • Af:table is not showing records until doing refresh of the view object iter

    Hi Experts,
    I am using JDeveloper 11.1.1.4 and i have a page whhich shows records of a particular read only view object as an af:table. When i run the page at first it is not showing any data at all . But there are 2 records when i run the query of that read only view object.In my page there is a link called "Refresh" which calls the "Execute" operation of the view iterator of my view object. When i click this link the table shows two records.Why the table does not show records once wehn the page is rendered?
    Please help me.

    The following is the code that shows the panel collection in my page.
    <af:panelCollection id="pc1" featuresOff="freeze, wrap"styleClass="NewStyle">
    <f:facet name="secondaryToolbar">
    <af:toolbar id="t1" styleClass="Secondary">
    *<af:query id="qryId1" headerText="Search" disclosed="false"*
    *value="#{bindings.salesInvoiceAuthorisationCriteriaWaitOnlyQuery.queryDescriptor}"*
    *model="#{bindings.salesInvoiceAuthorisationCriteriaWaitOnlyQuery.queryModel}"*
    *queryListener="#{criteria.processQueryForSalesInvoice}"*
    *queryOperationListener="#{bindings.salesInvoiceAuthorisationCriteriaWaitOnlyQuery.processQueryOperation}"*
    *displayMode="compact"*
    *saveQueryMode="readOnly" maxColumns="2"*
    *modeChangeVisible="false" styleClass="Minimal"*
    *conjunctionReadOnly="true"*
    *resultComponentId="::t2"/>*
    </af:toolbar>
    </f:facet>
    <af:table value="#{bindings.salesInvoiceAuthorisation1.collectionModel}"
    var="row"
    rows="#{bindings.salesInvoiceAuthorisation1.rangeSize}"
    emptyText="#{bindings.salesInvoiceAuthorisation1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.salesInvoiceAuthorisation1.rangeSize}"
    rowBandingInterval="0"
    filterModel="#{bindings.salesInvoiceAuthorisation1Query.queryDescriptor}"
    queryListener="#{bindings.salesInvoiceAuthorisation1Query.processQuery}"
    filterVisible="true" varStatus="vs"
    selectedRowKeys="#{bindings.salesInvoiceAuthorisation1.collectionModel.selectedRow}"
    selectionListener="#{bindings.salesInvoiceAuthorisation1.collectionModel.makeCurrent}"
    rowSelection="none" id="t2"
    columnStretching="column:accountNameColumn"
    binding="#{processDocuments.invoiceTable}"
    contentDelivery="immediate"
    partialTriggers="::c111 selectToPost ::qryId1"
    styleClass="newTableStyle" autoHeightRows="9">
    <af:column filterable="false" sortable="false"
    headerText="#{bindings.DocumentAuthorisationView1.hints.ToPost.label}"
    id="c18" align="center"
    styleClass="#{row.bindings.ToPost.inputValue ? 'RowSelected' : ''}"
    width="103">
    <af:selectBooleanCheckbox id="selectToPost"
    value="#{row.bindings.ToPost.inputValue}"
    autoSubmit="true"/>
    </af:column>
    <af:column sortProperty="DocumentName" filterable="true"
    sortable="true"
    headerText="#{bindings.salesInvoiceAuthorisation1.hints.DocumentName.label}"
    id="c11"
    styleClass="#{row.bindings.ToPost.inputValue ? 'RowSelected' : ''}"
    width="107" filterFeatures="caseInsensitive">
    <af:outputText value="#{row.DocumentName}" id="ot1"/>
    </af:column>
    <af:column sortProperty="ExternalReference" filterable="true"
    sortable="true"
    headerText="#{bindings.salesInvoiceAuthorisation1.hints.ExternalReference.label}"
    id="c10"
    styleClass="#{row.bindings.ToPost.inputValue ? 'RowSelected' : ''}"
    width="105" filterFeatures="caseInsensitive">
    <af:outputText value="#{row.ExternalReference}" id="ot8"/>
    </af:column>
    <af:column sortProperty="DocumentCategory" filterable="true"
    sortable="true"
    headerText="#{bindings.salesInvoiceAuthorisation1.hints.DocumentCategory.label}"
    id="c9"
    styleClass="#{row.bindings.ToPost.inputValue ? 'RowSelected' : ''}"
    width="105" filterFeatures="caseInsensitive">
    <af:outputText value="#{row.DocumentCategory}" id="ot11"/>
    </af:column>
    <af:column sortProperty="CrDr" filterable="true"
    sortable="true"
    headerText="#{bindings.salesInvoiceAuthorisation1.hints.CrDr.label}"
    id="c4"
    styleClass="#{row.bindings.ToPost.inputValue ? 'RowSelected' : ''}"
    width="52" align="right">
    <af:outputText value="#{row.CrDr}" id="ot9">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.salesInvoiceAuthorisation1.hints.CrDr.format}"/>
    </af:outputText>
    </af:column>
    <af:column sortProperty="BaseDate" filterable="true"
    sortable="true"
    headerText="#{bindings.salesInvoiceAuthorisation1.hints.BaseDate.label}"
    id="c8"
    styleClass="#{row.bindings.ToPost.inputValue ? 'RowSelected' : ''}">
    <f:facet name="filter">
    <af:inputDate value="#{vs.filterCriteria.BaseDate}"
    id="id1" contentStyle="text-transform:uppercase;">
    <af:convertDateTime pattern="#{bindings.salesInvoiceAuthorisation1.hints.BaseDate.format}"/>
    </af:inputDate>
    </f:facet>
    <af:inputDate value="#{row.BaseDate}" id="ot6" contentStyle="text-transform:uppercase;">
    <af:convertDateTime pattern="#{bindings.salesInvoiceAuthorisation1.hints.BaseDate.format}"/>
    </af:inputDate>
    </af:column>
    <af:column sortProperty="ExternalAccountCode"
    filterable="true" sortable="true"
    headerText="#{bindings.salesInvoiceAuthorisation1.hints.ExternalAccountCode.label}"
    id="c6"
    styleClass="#{row.bindings.ToPost.inputValue ? 'RowSelected' : ''}"
    filterFeatures="caseInsensitive" visible="false">
    <af:outputText value="#{row.ExternalAccountCode}" id="ot3"/>
    </af:column>
    <af:column sortProperty="AccountName" filterable="true"
    sortable="true"
    headerText="#{bindings.salesInvoiceAuthorisation1.hints.AccountName.label}"
    id="accountNameColumn"
    styleClass="#{row.bindings.ToPost.inputValue ? 'RowSelected' : ''}"
    filterFeatures="caseInsensitive">
    <af:outputText value="#{row.AccountName}" id="ot4"/>
    </af:column>
    </af:table>
    </af:panelCollection>
    Edited by: Priya on Nov 22, 2011 12:22 AM

  • Tables, views, packages, etc. not showing for most users

    11.1.0.7
    trying sqldeveloper 2.1.1 & 3.0.02 (64 bit)
    jre 1.6
    Started getting blanks this morning when expanding the nodes of most of my local users (cleared filters). Seeing no tables, views, packages. However, if I login sqlplus as that user and select * from tabs, I CAN see all tables are there.
    I can use sqldeveloper to view all the SYSTEM user objects and one recent user that I imported (impdp) from a 10g database. However, every other user appears empty in sqldeveloper.
    I grant connect, resource to all users since this is just a development database. Also tried granting CREATE SESSION and even ALL PRIVILEGES, no luck. All tried restarting.

    self is also facing the same issue. workstation is install WINDOWS 7 Pro and 10g client is not available as of now for Windows 7 Pro so oracle client 11.2.0.1.0 installed. Database pertains to one datacenter is serving as desired but databases lying with remote data center, none of objects are shown even not as SYS also where as sqlplus is showing all objects. tried with TNS option and without TNS as well but objects not listed. don't understand the behavior of SQLDeveloper 2.1.1.64 Build-Main 64.45. for information all DBs are of 10.2.0.4 with mix flavour of non windows o/s.
    Edited by: 824691 on Dec 30, 2010 10:33 PM

Maybe you are looking for

  • After Effects CC crashes on startup. 12.2

    Everytime I open up After Effects CC it repeatedly crashes and I have uninstalled and installed this program twice already. I repeatedly get this error message... After Effects warning: Could not rename the file '/Users/Haydo/Library/Preferences/Adob

  • Photoshop Elements 11 compatibility with Window 8 (64bit)

    The program has been installed three times using various settings including simplified mode.  Windows font size is too small to read to use the software.  Windows compatibility settings were used several times but no change.  Please advise.

  • Anyone know how to alias a jsp in JRun 3.1?

    I can't find a simple way to alias a jsp in JRun 3.1. I'm just using the default-app at the moment while I convert everything from 2.3.3. The documentation gives no help for aliasing jsps. In the old version there was a simple alias section in the ad

  • Won't boot up after attempted security download?

    I have a G4 and was attempting to download the most recent security update. I got an error after the download and it went into my trash. I thought I would delete it and try to download again. I emptied my trash and the computer got froze getting the

  • Old FCP file unexpectedly quitting when trying to reconnect offline media

    An old project that I transfered from one computer to my new mac pro is not working. When I open the FCP file it asks me to choose a scaling quality. Either: Normal, Fastest, or best. I have tried all three (with the same result.) Next it says 152 me