Data modeling (calculation between tables)

Dear All
I have two data tables:
Table 1.
week number
calendar day
01
02.01.2014
01
03.01.2014
01
04.01.2014
01
05.01.2014
02
06.01.2014
02
07.01.2014
02
08.01.2014
02
09.01.2014
02
10.01.2014
02
11.01.2014
02
12.01.2014
03
13.01.2014
Table 2.
Brand
Start period
End Period
Ad size (cm²)
A
02.01.2014
13.01.2014
24
B
05.01.2014
10.01.2014
41
What I need is to receive pivot table looking like this:
week number   
AVG (Ad size (cm²))
01
02
03
How to calculate average of Ad size (cm²) per week which would be weighted by days?
I have done this manualy:
week number
calendar day
Brand A
Ad size (cm²)
 Brand B
Ad size (cm²)
AVG (Ad size (cm²))
01
2014-01-02
24
01
2014-01-03
24
01
2014-01-04
24
01
2014-01-05
24
41
01
27,4
02
2014-01-06
24
41
02
2014-01-07
24
41
02
2014-01-08
24
41
02
2014-01-09
24
41
02
2014-01-10
24
41
02
2014-01-11
24
02
2014-01-12
24
02
31,1
03
2014-01-13
24
03
24
And received results like this:
week number
     AVG (Ad size              (cm²))
01
27,4
02
31,1
03
24,0
But it is not a solution. I need this to be done automaticly.
How to start? Write a maesure? or Add calculated column?
 How the syntax should look like?
Thanks for ideas
G.

Mike
Thank you very much.
The measure above works, but it is not optimize in this case.
My goal is to calculate measure separately for each week and year.
so I have added new columns to both Table 1. (YEAR and YEAR&WEEK) and Table 2 (YEAR)
Table 1.
week number
calendar day
YEAR
YEAR&WEEK
1
01.01.2012
2012
2012 1
2
02.01.2012
2012
2012 2
2
03.01.2012
2012
2012 2
2
04.01.2012
2012
2012 2
2
05.01.2012
2012
2012 2
2
06.01.2012
2012
2012 2
2
07.01.2012
2012
2012 2
2
08.01.2012
2012
2012 2
3
09.01.2012
2012
2012 3
3
10.01.2012
2012
2012 3
3
11.01.2012
2012
2012 3
3
12.01.2012
2012
2012 3
3
13.01.2012
2012
2012 3
3
14.01.2012
2012
2012 3
53
31.12.2014
2014
2014 53
Table 2.
Brand
Start period
End Period
Ad size (cm²)
YEAR
Acme
27.05.2013
01.06.2013
15
2013
Acme
16.09.2013
21.09.2013
18
2013
Acme
04.11.2013
09.11.2013
17
2013
Acme
02.09.2013
07.09.2013
37
2013
Acme
13.05.2013
18.05.2013
19
2013
Acme
06.01.2014
11.01.2014
19
2014
Adidas
25.04.2013
15.05.2013
36
2013
Adidas
25.04.2013
15.05.2013
37
2013
Adidas
25.04.2013
15.05.2013
37
2013
Adidas
25.04.2013
15.05.2013
37
2013
Akai
09.01.2013
15.01.2013
44
2013
Akg
16.10.2013
03.11.2013
54
2013
Asus
17.12.2012
31.12.2012
51
2012
Audiola
01.12.2013
31.12.2013
240
2013
Beats By Dr. Dre.
11.09.2013
24.09.2013
57
2013
Beats By Dr.   Dre.
11.09.2013
24.09.2013
57
2013
Beats By Dr. Dre.
04.12.2013
09.12.2013
31
2013
Beats By Dr.   Dre.
24.04.2013
15.05.2013
155
2013
Beats By Dr. Dre.
25.04.2013
15.05.2013
173
2013
Beats By Dr.   Dre.
25.04.2013
15.05.2013
54
2013
I tried to modify this measure :
=AVERAGEX(
            FILTER(
                     CROSSJOIN(Table1, Table2),
                     Table1[Calendar Day]>=Table2[Start Period]
                     Table1[Calendar Day]<=Table2[End Period]
                      Table1[YEAR]=Tabl2[YEAR]
           Table2[Ad size
(cm²)]
or:
=AVERAGEX(
            FILTER(
                     CROSSJOIN(Table1, Table2),
                     Table1[Calendar Day]>=Table2[Start Period]
                     Table1[Calendar Day]<=Table2[End Period]
VALUES(Table1[YEAR])=VALUES(Tabl2[YEAR])
           Table2[Ad size
(cm²)]
but in both cases the following error occured:
"the function averagex takes an argument that evaluates to numbers and dates and cannot work with values of type Boolean"
Data types of YEAR are in both tables formated as Whole Number. With Text format the error also occcurs. I cannot change Data types to Dates becouse get another error: "Data type conversion failed"
How the proper measure should look like?
What if I would like to add to this measure new Tables of a same structure as Table 2. Let us called it Table 2a and Table 2b. These tables will store data from other markets. How the measure will look like in this case?
The goal is to calculate this measure for all markes together and also for each one separately. For second option  I will create additional related table of markets.
G

Similar Messages

  • Data Modeler : Modifying the Table Report layout

    Hi ,
    I'm using SQL Data Modeler (DM) 4.0 EA .
    I used the File -> reports option to generate the reports on Table and in the report
    1) I couldn't see the column data type ? (Refer below table ) , Is there any options to bring on the Data Type in the Report ?
    No
    Column Name
    PK
    FK
    M
    Data Type
    DT
    kind
    Domain Name
    Formula
    (Default Value)
    Security
    Abbreviation
    1
    ID1
    P
    Y
    (10)
    LT
      2
    ID2
    F
    Y
    (10)
    LT
    3
    ID3
    Y
    (1)
    LT
    4
    ID4
    Y
    (10)
    LT
    5
    ID5
    F
    (20,4)
    LT
    2) In options to manage the Table report (Reports -> Manage). Currently I can only remove a heading (like Descriptions Notes ,columns,column comments.). Is there is any way to customize the report in such a way that I can remove some columns (mostly the empty ones) from the report and add the column comments along with the column table than a new column comments table.
    Please let me know  ,is there is an option to customize the report .
    Note: I even tried generating the report using the search then report , but it doesn't give a complete report (i was only able to generate a report on column or table name or constraints , not all together.)
    Thanks,
    Srinivasan.K

    Thanks for the immediate reply.
    I checked on the DM again, the report comes good for the one which has the data type . But now all my data type changed to UNKNOWN and lokks like ,due to this my table report is coming without the "Data Type".
    Can you please help me in fixing this unknown data type issue ?
    Table report for the ones with proper Data type:
    Columns
    No
    Column Name
    PK
    FK
    M
    Data Type
    DT
    kind
    Domain Name
    Formula
    (Default Value)
    Security
    Abbreviation
    1
    ID1
    Y
    NUMERIC (10)
    LT
    2
    SCRIPT
    Y
    VARCHAR (1024)
    LT
    3
    UPGRADE_S
    Y
    VARCHAR (10)
    LT
    4
    UPGRADE_D
    Y
    VARCHAR (250)
    LT
    5
    UPGRADING_F
    Y
    VARCHAR (20)
    LT
    6
    TIMESTAMP2
    Y
    Timestamp
    LT

  • Data Model on OTL-tables

    Hi,
    I need to know how the tables in OTL around table hxc_time_building_blocks is connected togehter. Does anybody have some information about this or can point me in the correct direction?
    I have search Metalink, eTRM, OTN without any luck. I have the User Guide and a logical data model without table names.
    Thanks...Daniel

    Daniel,
    Were you able to get what you wanted for timecards? Here is a query that I came up with. You may want to leverage it for your requirements.
    select ppf.person_id, ppf.full_name, ppf.employee_number, fl.meaning state_working,a.segment1, a.task_number,
    initcap(to_char(z.start_time,'DAY')) Weekday, z.start_time, z.tot_hrs
    from (
    select tbb_day.start_time,tbb_det.resource_id,trunc(hxc.stop_time) stop_time,
    tbb_det.resource_type, tbb_det.measure tot_hrs, tbb_det.unit_of_measure uom
    FROM hxc_time_building_blocks tbb_day,
    hxc_time_building_blocks tbb_det,
    hxc_timecard_summary hxc
    WHERE tbb_det.scope = 'DETAIL'
    and tbb_day.scope = 'DAY'
    and tbb_det.date_to = hr_general.end_of_time
    and tbb_det.parent_building_block_ovn = tbb_day.object_version_number
    and tbb_det.parent_building_block_id = tbb_day.time_building_block_id
    and tbb_day.parent_building_block_ovn = hxc.timecard_ovn
    and tbb_day.parent_building_block_id = hxc.timecard_id
    and tbb_day.start_time >= :p_date_from
    and tbb_day.stop_time <= trunc(to_date(:p_date_to) + 1) - (1/24/60/60)
    and tbb_det.resource_id = NVL(:p_person_id,tbb_det.resource_id)) z
    ,(select distinct pea.INCURRED_BY_PERSON_ID,ppf.full_name,ppa.project_id,ppa.segment1,pt.task_number,pei.expenditure_item_date,pei.quantity,
    pea.EXPENDITURE_ENDING_DATE, pea.INITIAL_SUBMISSION_DATE
    from pa_expenditures_all pea
    , pa_expenditure_items_all pei
    , pa_projects_all ppa
    , pa_tasks pt
    , per_all_people_f ppf
    Where pea.expenditure_id = pei.expenditure_id
    and pei.PROJECT_ID = ppa.project_id
    and pei.TASK_ID = pt.task_id
    and pea.INCURRED_BY_PERSON_ID = ppf.PERSON_ID
    and ppf.person_id = :p_person_id) a
    ,per_people_f ppf
    ,per_addresses addr
    ,fnd_lookup_values fl
    where ppf.person_id = z.resource_id
    and ppf.person_id = addr.person_id
    and ppf.person_id = a.incurred_by_person_id
    and z.resource_id = a.incurred_by_person_id
    and a.EXPENDITURE_ENDING_DATE = z.stop_time
    and a.expenditure_item_date = z.start_time
    and a.quantity = z.tot_hrs
    and addr.primary_flag = 'Y'
    and fl.lookup_code = addr.region_2
    and fl.lookup_type = 'US_STATE'
    and fl.enabled_flag = 'Y'
    group by ppf.person_id, ppf.full_name, ppf.employee_number, addr.region_2, a.segment1, a.task_number,
    z.start_time, fl.meaning, tot_hrs
    order by z.start_time
    Thanks
    uds

  • Power Pivot Data Model with Linked Table

    Can anyone provide me with some suggestions as to how to accomplish the following in Power Pivot?
    I have the following Pivot Table fields. I'm trying to create a data model to allow me to filter all of the projects by the selected Fiscal Year. The Fiscal Year table is a dimension I created to group the data by.
    I'm considering separating Projects into multiple tables such that 1 table is for Year1 information, another table is for Year2 information (includes Year2FiscalYear, Year2BudgetCAP, etc.).
    I think what I need to do is create a measure to allow me to filter the records by fiscal year. Anyone have any ideas?
    Thanks,
    Roland

    Hi Greg,
    The data is coming from Project Online (OData feed) and SharePoint lists (all within Project Online). I'm creating an Excel Report.
    The reason I can't use Power Query is because refreshing a report that is built using Power Query is not supported via browser. Power BI is needed to do this. On the other hand if I build an excel report using Power Pivot only, the browser refresh functionality
    works.
    The Year1FiscalYear, Year2FiscalYear, etc. are all enterprise custom fields in Project Online. Therefore I have some control in being able to change the format of the data. I'm looking into what are some options on my side to configure Project Online or
    SharePoint lists to make building the model simpler...
    Thanks,
    Roland

  • TCA Data Model between 11.x and 12.x

    Hi,
    Just wanted to check whether there is significant change in Customer Data Model (TCA) between 11.5.10.2 and R12.
    I am looking whether there is any change in Table Structure/ APIs etc between these two versions.
    Any help is appreciated.
    Thanks,
    Dinesh

    Hello,
    11i TCA already equipped to handle the following entities
    1. Customer
    2. Employee
    3. Student
    However, R12 brings a change to the above by adding several new trading entities to it, viz.
    *1. Suppiler*
    * Supplier, supplier site, & supplier contact information migrated to TCA tables
    * Three new AP tables are introduced to store the supplier information, viz.
    AP_SUPPLIERS AP_SUPPLIER_SITES_ALL AP_SUPPLIER_CONTACTS
    * The old PO_VENDORS table is obsolete now, but exists as a view to provide the backward compatibility
    *2. Bank & Branches*
    * Bank is now centralized model as part of R12 architecture and Cash Management owns it
    * The three key Cash Management tables to store Bank information are:
    1. CE_BANK_ACCOUNTS - Stores bank accounts
    2. CE_BANK_ACCT_USES_ALL - Stores account uses by Operating Units & Legal Entities
    3. CE_GL_ACCOUNTS_CCID - Stores bank account use accounting data
    * The TCA party model is being used to model banks and bank branches as parties with the associated attributes of Relationships, Address, Contact and Locations
    *3. LE & Intercompany*
    Regards,
    ND

  • Journal tables in SQL Developer Data Modeler

    In my database I use journal tables, which can be generated automatically by Oracle Designer.
    Now that I'm trying to start using SQL Developer Data Modeler, I can't find how to make journal tables with it.
    Does anyone know whether Data Modeler supports journal tables or not? And if it does, how can I generate one?

    No automatic generation you have to create them manually - use copy/paste to speed up the process.
    Philip

  • Including table and column comment in the Data Modeler

    Hi all,
    I used Oracle's SQL Developer Data Modeler (Version 3.0.0.665) and created a data model for my project. I e-mailed a PDF format of the data model to our Systems Analyst. She asked if I could re-create the data model and include table and column comments. Is this a possibility and if so how is this done?
    Thank you for your input,
    Seyed

    Hi Kent,
    Using the information you provided and Oracle’s Working with SQL Developer Modeler Reporting I did the following:
    1) Created a Reporting Schema User
    1.1) Using my Oracle 10g Personal Edition, I created a new user and gave him DBA administrative privileges
    2) Exported Relational Design to Reporting Schema
    2.1) Opened the Relational Design
    2.2) Exported it to the Reporting Schema. Note, I never got a message ‘Design has been exported successfully’.
    3) Reviewed the Report Results
    I think exporting the relational design was not successful, and didn’t get any error messages. Had step 2 completed successfully, I would have reviewed the Report Results in SQL Developer. By the way, I know I have marked this topic as closed, but would like to learn your method too.
    Thank you for your help,
    Seyed

  • To create referential constraints or not while designing a data model...

    Hi,
    If I were to design a data model involving some tables which tend to grow fast and huge, which option w.r.t creating referential constraints (foreign key constraints) between tables is advisable - to create or not to create?
    Assuming that there are no specific requirements to implement referential integrity (though it maybe implicity stated). I know that creating referential constraints might maintain data integrity but on the other hand, it might be a bottleneck in some data-intensive queries/operations involving huge tables.
    In other words, what factors should we consider while deciding on to create referential constraints or not in a data model?
    thanks & regds,
    Ashok.

    Hi,
    >>it might be a bottleneck in some data-intensive queries/operations involving huge tables.
    Hummm, are you sure ? I'm not convinced that foreign key constraints can cause a bottlenecks while querying the database. Why ? Otherwise, DML statements can be affected by some constraints and indexes ... in some systems for example perform data loading in a Data Warehouse, DSS Systems, etc....
    "The key thing to remember here is that if you cannot guarantee the integrity of your data, it doesn't matter how fast you can retrieve it from the database"
    Cheers

  • Powerpivot Error on Refresh -- "We couldn't get data from the data model..."

    I'm using Excel 2013 and Windows 8.1.  I have a spreadsheet I've been using for over a year, and I've just started getting this error message when I try to refresh the data.
    "We couldn't get data from the Data Model.  Here's the error message we got:
    The 'attributeRelationship' with 'AttributeID' - 'PuttDistCat9' doesn't exist in the collection"
    Any idea how I can fix this problem?  I haven't changed anything related to that particular attribute.  All the data is contained in separate sheets in the workbook, so there are no external sources of data.
    Thanks.
    Jean

    Thanks for all the suggestions.
    I found a slightly older version of the spreadsheet that still refreshes properly, so I don't think I have any issues with the version of Excel or Power Query.  (I've had this same error before, and I believe I applied the hotfix at that time.)
    I think this problem started after I updated a number of the date filters in the pivot tables.  I haven't made any changes to the data model, and the only updates I've made were to add data (which I do all the time), and to change the date filters on
    the pivot tables.
    As suggested, I added a new pivot table querying one table (the table with the attribute that shows up in the error message), and it worked fine.  I can also refresh this pivot table.
    Then I tried adding a pivot table which went against several tables in the data model (including the table in question).  The pivot table seemed to return that data properly.  However, when I tried to refresh it, I got the same error message ("we
    couldn't get data from the data model..."). 
    Dany also suggested running the queries one at a time to see which one is in error.  Without checking all the pivot tables, it appears that any which use the table "HolePlayedStrokes" generate the error (this is the table with the attribute
    mentioned in the error message).  Pivot Tables without that particular table seem to refresh OK.  Unfortunately, that is the main table in my data model, so most of the pivot tables use it.
    Any other suggestions?  I'd be happy to send a copy of the spreadsheet.
    Thanks for all the help.
    Jean

  • Data modeler in 2.1 - how to export metadata

    How do you do an export in the 2.1 EA for the data modeler? I..e do a 'bottom up' model?
    The documentation is written for the standalone datamodeler, file-import/export. How do you do it in 2.1?
    Edited by: Bazza on 27-Oct-2009 03:54

    Hi,
    standalone Data Modeler is cost option. Data Modeler Viewer is bundled into SQL Developer 2.1 - it's free. You can do following with viewer :
    1) Open designs created with Data Modeler - it's in read only mode
    2) Visualize tables and object types from SQL Dev browser when there is no open Data Modeler design - select tables/views on SQL Developer browser tree and drag them on relational model window - FK are imported if parent table is among selected or already is imported; for object types - they should be dropped on Data Types model window. This works for Oracle and SQL Server - we are going to support it for all databases supported by Data Modeler (including JDBC import). And you can do some rearrangement of tables but the rest is in read only mode - no additional import/export.
    Philip

  • Problems with printing from SQL Developer Data Modeler 2.0

    Hi,
    I am not able to print my Relational Model (SubView) from Data Modeler 2.0 Build 584. Only an empty page comes out. If I don't reduce the Print Scale (usually to 10-30%) I get something but then it is lots of pages. I have tried A4 and A3 format. Printing to JPEG or PDF seems to be ok.
    I have relational data model with 25 tables in my SubView.
    Is there any restriction on Print Scale or number of objects in the diagram?
    Do I have to install SQL Developer as well? I have just Data Modeler insalled.
    Regards,
    Alex

    Hi Alex,
    There is newer version of Data Modeler (3.0 EA2) and it is free
    You can download it from here
    http://www.oracle.com/technetwork/developer-tools/datamodeler/ea2-downloads-185792.html
    Regards
    Edited by: Dimitar Slavov on Dec 9, 2010 2:15 AM

  • Does SQL Developer Data Modeler fit-in??

    Hi Everyone,
    Wish you happy new year 2011.
    Does SQL Developer Data Modeler support conceptual, logical and physical in our modeling or only logical and physical?
    We all use Erwin for modeling. Erwin works without database repository storing models in desktop folders and provide additional reporting. I find some place SQL Developer Data Modeler talked about repository need.
    Does SQL Developer Data Modeler store the models in local/network folders instead of Database server?
    What are the functions need database based repository to work with SQL Developer Data Modeler?
    We are thinking of using SQL Developer Data Modeler for our conceptual, Logical, and data dictionary need. Will it help in our need?
    Do we need to face any surprises on using SQL Developer Data Modeler for our need?
    Thanks in sharing your experience and helping me out.
    RI

    1) Do we need to have Oracle database at back end to work with SQL Developer Data Modeler?No, Data Modeler use Oracle database only if you create reporting repository.
    Data Modeler is free, you need database license only if you want to log service request
    2) Will SQL Developer Data Modeler create any tables (as backend repository ) in Oracle database to store Model details? no
    3) Do we need to create reporting schema in backend oracle database to generate reports of SQL Developer Data Modeler's items such as Entity/attributes etc?no, reports can be created out of current loaded design. However having reporting repository will give you additional benefits - history (reports can be generated for every snapshot of your designs there) and multi-user usage, you can create your own reports
    4) Do we to use SQL Developer Data Modeler reverse engineer from DB2, SqlServer, Terra data etc?Data Modeler has full support for Oracle, DB2/390, DB2/UDB(LUW) and MS SQL Server. Reverse engineering from other databases (including Terra Data) is at generic JDBC level - you'll get some and some will be missing (no check constraints for example).
    You can read release notes http://www.oracle.com/technetwork/developer-tools/datamodeler/ea2-releasenotes-185793.html
    Philip

  • Physical Data Model For GL

    Hi Experts,
    I am new to Oracle Apps, I need Data Model for GL tables..from wherer we can get it.
    Please suggest !
    Regards
    S

    Hi,
    As you aware major part of GL is based on Chart of Account, Calander (GL Period) and Currency, you can check all tables related to these.
    You can use below query to get those tables :
    select from all_tables where table_name like 'GL%' and owner='GL'*
    and table_name not like 'GL_ALLOC%' and table_name not like 'GL_CONS%'
    Please do refer the doc suggested by the other expert in this thread..
    Regards,
    S.P DASH
    N.B : We believe you put a GL question in a wrong folder/Thread (Procurement) :).. you could have received a better response had it been in Finance folder.. :)

  • Does xcelsius access data model in MS sql server 2000

    have the following scenario: I need to create a dashboard which will be accessed through a Microsoft Office SharePoint server portal. This dashboard will be used for analysis of Agencies and Underwriters; they should be able to drill down to policy level details. 
    The data will originate from a Data Warehouse (Relational Schema) which resides on a Microsoft SQL server 2000 platform.
    Q) Does Xcelsius work off a relational model or does the data model need to be converted to a Dimensional Star schema?  Do you have to create Cubes?
    A)
    Q) It was mentioned in the book that Xcelsius can connect to a Microsoft SharePoint server using web part, however there is no information in the help menu to do that task? 
    A)
    My thought) I was also thinking that the data model build on MS SQL SERVER 2000 can be used to create a Universe, which then can link to Live Office using Query as a Web Service (QAAWS) and used to build Xcelsius model.  (Does one have to go this route, or can one access the data model created on SQL SERVER 2000?)
    Any Feedback)

    I need to create a dashboard which will be accessed through a Microsoft Office SharePoint server portal. This dashboard will be used for analysis of Agencies and Underwriters; they should be able to drill down to policy level details.
    The data will originate from a Data Warehouse (Relational Schema) which resides on a Microsoft SQL server 2000 platform.
    Q) Does Xcelsius work off a relational model or does the data model need to be converted to a Dimensional Star schema? Do you have to create Cubes?
    A) Xcelsius works on an X/Y (Column/Row) table model, strictly based on the Excel structure.  Though the underlying data model is a table, it is not inherently relational as it does not impose any BC Normal Form requirements.
    Xcelsius works primarily with data embedded in an integrated Excel workbook.  Data can be input to the workbook by a variety of methods, from importing a premade Excel workbook into the the model to retrieving data from flat files (.txt, .xml, .etc) to getting data from a connection such as a WebService. 
    There is no capability to connect directly, 1:1, to a database source and execute SQL queries.  An intermediary is required to retrieve data from a database, such as a WebService or an XML Data connection.

  • Data Modeler EA1:  Importing SQL Server Data Dictionary issue

    I am using the Data Dictionary Import Wizard to import the Schema of a SQL Server 2005 database (JDBC connection has "SQL Server 2005" as the Type) into the Oracle SQL Developer Data Modeler. In step 4 of the import, under the "Import to:" section, there is only SQL Server 2000 available in the drop down.

    Database Name: Microsoft SQL Server
    Database Version 10.00.2531
    I assumed that a SQL Server 2008 DB would be handled as a SQL Server 2005 DB (that is until 2008 is supported). Currently the db is not using any SQL Server 2008 specific features.
    In Oracle Developer Data Model 2, the tables with xml data type would not import. This time, those tables did import.

Maybe you are looking for

  • Odd region edit behavior

    Hi all, I encountering a small issue in Logic Pro 8.0.2. I record an audio track maybe 4 bars. After listening I decide I only want the second two bars. I used to be able to (in express 7.2) just drag the file to the beginning of the 3rd bar and that

  • How to Re-install Photoshop CC after installing Photoshop CC 2014 and un-installing Photoshop CC

    Hi all, What I did: 1) Installed Photoshop CC 2014 from Creative Cloud. 2) Removed Photoshop CC. Now I would like to re install Photoshop CC because not all my extensions are compatible with Photoshop CC 2014. I don't want to uninstall Photoshop CC 2

  • UI component glow remains after release.

    Hi, I am having a problem with the UI components in my flash project. Once they have been activated the highlight glow remains on until another UI is activated by a rollover or a release. this only happens in IE, not when the project is being viewed

  • Best General practice for performance and tuning.

    Hi , Can some body let me know the General Best practice for performance and tuning for Oracle Application 11i and 10g. that can be implemented and suggest in a new environment. Regards,

  • Custom mailbox columns in Mail?

    I'm using Mail 3.5 on 10.5.6. I've been trying set up Mail to display different columns in different mailboxes in ON MY MAC section in the left hand nav panel. Example: I'd like to show Received date in one mailbox without showing Sent date, and vice