Issue adding a new column to OBIEE presentation layer

Hi,
I am pretty new to OBIEE so this may be a silly question. I am facing some problems trying to add a new column from a physical table the OBIEE presentation layer.
Below are the steps I followed:
Task: add a product category set to the presentation layer.
Steps:
1) First verified that the product category set is being populated in the W_PROD_CAT_DH table in the datawarehouse. this was done by running the following sql
SELECT W_PROD_CAT_DH.TOP_LVL_PRODCAT_NAME
FROM W_PROD_CAT_DH, W_INVENTORY_PRODUCT_D
WHERE W_PROD_CAT_DH.integration_id = W_INVENTORY_PRODUCT_D.INV_PROD_CAT1
This sql gave the right category value.
2) created a "Alias" of the table W_PROD_CAT_DH in the OBIEE Admin tool physical layer. (done by right clicking W_PROD_CAT_DH >>New Object>> Alias)
3) named the Alias of W_PROD_CAT_DH as "Dim_W_INV_MKT_CAT" and created a key of the alias named "integration id" on the column "integration_id"
4) opened the pre-existing alias of W_INVENTORY_PRODUCT_D the alias was called "Dim_W_INVENTORY_PRODUCT_D" and added a key called "MKT_CAT" on the column "INV_PROD_CAT1" in this alias (Dim_W_INVENTORY_PRODUCT_D of the table W_INVENTORY_PRODUCT_D)
5) in the alias of the "W_INVENTORY_PRODUCT_D" called "Dim_W_INVENTORY_PRODUCT_D" added a "Foreign Keys" the expression of the key is following: ("Oracle Data Warehouse"."Catalog"."dbo"."Dim_W_INV_MKT_CAT"."INTEGRATION_ID" = "Oracle Data Warehouse"."Catalog"."dbo"."Dim_W_INVENTORY_PRODUCT_D"."INV_PROD_CAT1")
Logical layer
6) Opened the existing logical folder called "Dim - Inventory Product" and clicked on "Sources" tab then double clicked the source "Dim_W_INVENTORY_PRODUCT_D" and added a new mapping under "Map to these tables" under "General" tab. The column that was added was the physical alias "Dim_W_INV_MKT_CAT"
7) added a new column mapping to the same logical table source (Dim_W_Inventory_PRODUCT_D) this new mapping was a column from the alias "Dim_W_INV_MKT_CAT" (column name "TOP_LVL_PRODCAT_NAME")
Presentation Layer
8) dragged the newly added column (TOP_LVL_PRODCAT_NAME) from the logical layer "Dim - Inventory Product" to the presentation layer "Product" folder.
ISSUE
after adding everything and checking global consistency and save and checking-in my work when i login from the front end presentation services. I see the newly added column is showing under the "Product" folder. on dragging the column by itself to the Ad-Hoc analysis I can see the different values of the category. On adding a second column from the same logical folder (Dim - Inventory Product in logical layer) i still see the right product name and corresponding category. BUT when I drag any other column from any other folder (such as "Day" from "Time" or any fact values) the result does not fetch any data (message: The specified criteria didn't result in any data.)
I am not sure if I am missing any step but I know I am mapping the new table alias to the inventory_product_d since i see right results on creating analysis of columns in those two folders. but no other folders give me any data.
I also know that the logical folder "Dim - Inventory Product" is joined with other tables as I can see results when i do not add the newly added catagory column but other folder and other columns of "Dim - Inventory Product"
I would really appreciate any insight to this very much. we are using OBIEE 11.1.1.6 with the Oracle 11.5.10 Adaptor (SDE_ORA11510_Adopter)
I will try to upload some screenshots if needed but presently not sure if its something really simple.

Hi Prassu,
thanks for the responce. and Apologies for the delay in getting back to you.
1) 1.First of all set the logging level to 3 in the admin tool save it.
You can get the SQL query from here
settings(Answers right top)-->Administration-->manage sessions-->view log
When I try to do this I get the following message. and no log files.
Error
     Log Could Not Be Retrieved
Odbc driver returned an error (SQLExecDirectW).
Error Details
Error Codes: OPR4ONWY:U9IM8TAC
State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27002] Near <3790667783>: Syntax error [nQSError: 26012] . (HY000)

Similar Messages

  • Problem in adding the new column in VO : ADF

    Hi,
    I am using jdev 10.1.3.2 with ADF.
    I added a new column in a table in the database. In my ADF application, I right clicked on the entity object of the changed table, and selected ‘Synchronize with DB’ which added the new column in the entity object also.
    I had a jsp which uses this view object’s (VO). I had to change the VO also to add this new column.
    After all this, in the jsp page, I dragged and dropped this new column as an input text field.
    But while running this page, the field is empty. Also when I drag and drop it, this field doesn’t have the ‘id’ attribute.
    Below is the code. Please let me know how I can fix this issue.
    <af:inputText value="#{bindings.RebillNumber.inputValue}"
    label="#{bindings.RebillNumber.label}"
    required="#{bindings.RebillNumber.mandatory}"
    columns="#{bindings.RebillNumber.displayWidth}">
    <af:validator binding="#{bindings.RebillNumber.validator}"/>
    </af:inputText>
    Thanks,
    Venki

    Hi Venki,
    Please check if the object on the page is bound to the same iterator as the other components. Sometimes dragging and dropping new attributes makes JDev create a new iterator, and the two iterators will not be in sync.
    You can check this in the pageDef file and correct any strange things you may find.
    Jeroen van Veldhuizen

  • Adding a new column to a big table is very slow

    All,
    I am trying to add a column to a table with defaul value as 0. The table has about 15M rows. The alter table statement is extermely slow.
    I am using 11.1.0.7 on windows.
    Thanks in advance

    Please be careful when using this new 11g feature that can add columns to tables without updating each row. If you use a default value on a new not null column, update triggers that reference that column's :new value could have problems. There is a bug that has been around for at least 3 years that Oracle claims is "not a bug" that could cause problems in your triggers.
    The issue is that triggers will still see null for the :new.column value even though it has a not null default. Even though you can select from the table and the results will show the default value, which it pulls from the data dictionary, the trigger cannot handle it. It appears to pull the value from the data block, not the data dictionary. So if it has never been updated, those two values will be out of synch. The fix, shown below, it to update each row.
    For example, in 11.2.0.2:
    1. Create a new table, insert one row, and add a new column (not null, with default value):
    create table t (c1 number, c2 number);
    insert into t values (1,1);
    alter table t add (c3 number default 0 not null);Select from it and everything looks fine. The value for C3 is 0, my default. Perfect.
    SQL> select * from t;
            C1         C2         C3
             1          1          0My new column C3 looks fine. Even though that row was never updated, my query pulled the default value of 0 from the data dictionary. Great!
    But now add a simple trigger:
    create or replace trigger t_bur_tr
    before update on t for each row
    begin
      :new.c3 := :new.c3;
    end;
    /I am updating C1, one of my original columns. The trigger looks at the new value of C3 anyway, but because I am not updating it, it should equal its existing value. But this is what I get:
    SQL> update t set c1 = 9999 where c1 = 1;
    update t set c1 = 9999 where c1 = 1
    ORA-01407: cannot update ("AMARTIN"."T"."C3") to NULL
    SQL> The workaround is to update every row. (Defeating the purpose of the cool new 11g feature that can supposedly add columns without updating each row.)
    SQL> update t set c3 = c3;
    1 row updated
    SQL> commit;
    Commit complete
    SQL> select * from t;
            C1         C2         C3
             1          1          0
    SQL> update t set c1 = 9999 where c1 = 1;
    1 row updated
    SQL> select * from t;
            C1         C2         C3
          9999          1          0 Now it works as expected.
    Just a heads-up on this unexpected feature. Not a bug? Sure looks like one to me.
    Edit: Appears to be fixed in 11.2.0.3

  • Adding a new column in table control of MIGO

    Hello,
    I want to add a column in the itemlist table control (screen 200) of MIGO to show the batch's case qty.  I used an example in BAdI MB_MIGO_BADI to add a new header tabstrip but the itemlist table is still pointing to MIGO's table control screen 200 ( used in subscreen SUB_ITEMLIST ).   I want to show my table control which has the added column instead.  
    Does anyone have any ideas how to do this ?
    Thanks.
    TTran

    Hi....
    1. Goto that screen layout and make it change mode.
    2. Follow the menu path -> goto-> secondary window-> dictionary/ program fields
    3. select the reuired field
    4. drag that into your table control , cretes new column
    5. Also capture icon in the left side i.e. T for text make that in header area of new field.
    6. Double click on this , give some name.
    7. Save check activate
    Thanks,
    Naveen.I

  • Adding a new Column in Sim Datawarehouse Delivery screen

    Hi All,
    I need to add one new column 'comments' in Sim Datawarehouse delivery Screen(navigation:Shipping/Receiving->Warehouse Delivery ->select ASN->Select Container) .That column should be mapped with comment_desc colun in rk_shipment_items table
    1.created a 'comments' class in src\oracle\retail\sim\shared ,
    2.created a 'CommentsDisplayer' in src\oracle\retail\sim\shared\swing\displayer.modified
    WarehouseDeliveryCartonDetailPanel.java as-
    public List<SimTableAttribute> getAttributes() {
    List<SimTableAttribute> attributes = new ArrayList();
    attributes.add(new SimTableAttribute("Comments", "comments",true));
              new CommentsDisplayer()));
    3.In WarehouseDeliveryLineItemWrapper added the get and set methods for 'comments'
    public String getComments() {
    return lineItem == null ? null : ((SimpleShipmentLineItem)lineItem).getComments();
    public void doSetComment(String quantity) throws BusinessException {
    if (lineItem != null) {
         ((SimpleShipmentLineItem)lineItem).doSetComment(quantity);
         //lineItem.setQuantityDamagedBasedOnUOM(quantity);
    Now that column is coming on screen and mapped properly with the database column comment_desc
    .But that column is coming as disabled on the screen.What else should be done to make that enable?

    You first need to add a new column to the definition of the internal table that is passed to the ALV function.  You'll then need to loop through the table and update the new total column.  For example,
    LOOP AT itab.
      itab-total = itab-cost + itab-discount.
      MODIFY itab TRANSPORTING total.
    ENDLOOP.
    You'll need to determine whether discount should be added or subtracted from cost.
    The only other change would be to update the field catalog.  There is likely a subroutine in your program that populates the field catalog table with the expected columns in the internal table.  Use the existing code as an example and add another record to the catalog for your total column.

  • How can I import db column comments into the OBIEE presentation layer?

    We have a very well designed data mart - it is a star schema and all the fact and dimension table columns have comments in them with their definition and use. There is virtually no change required in the physical or business layer. The only modifications done in the presentation layer was to hide the Pk/Fk columns.
    Is there a way to import these column comments into the presentation layer so that the business user can see this comment in the tool tip while hovering over the presentation column in Answers?
    Thanks for your help!

    Hi,
    I assume the comments you mean are stored in user_tab_comments and user_col_comments.
    When this is the case you should do the following:
    Go to your subject area in your presentation layer. For now I assume the name of this subject area is "Subject Area".
    Then right click on this subject area and check "Externalize Descriptions".
    Then create an initialization block (session) using this query:
    (select 'CD_Subject_Area_' || table_name, comments from user_tab_comments)
    union all
    (select 'CD_Subject_Area_' || table_name || '_' || column_name, comments from user_col_comments)
    Use "Row-wise initialization" for this initialization block.
    Two comments:
    1) Like I said, I assume Subject Area is the name of your subject area in your presentation layer, so I guess you need to replace this with the name of your Subject Area.
    But be sure that you replace each space ' ' with an underscore '_'.
    2) Maybe you need to refine above querys by filtering on table_name for those table_names you are using.
    Good luck.
    Regards,
    Stijn

  • Last Year Inovice Total need to be calculated in a new column in OBIEE 11g

    Hi,
    I have a measure Net Invoiced Amount, and now my client is asking to get a new column in which last year's Net Invoiced Amount total needs to be calculated.
    We need to select the Dates dynamically, it is 2012, so the column should the invoiced amount total for 2011, if it is 2013 then amount should be 2012. Can we do this in RPD. If so, please tell me how.

    Hi,
    Method1:
    TIMESTAMPADD( SQL_TSI_DAY , -1, TIMESTAMPADD( SQL_TSI_DAY , EXTRACT( DAY_OF_YEAR FROM DATE Column) * -(1) + 1,
    DATE Column))
    Note: create alias table from your fact (call it as fact table name_YTD) Join th aliases to the dimension tables exactly like how your normal fact table is joined to the aliases, except for the time dimension.
    Method 2: by using Time series functions (Ago fxn)
    Ago(<<Measure>>, <<Level>>, <<Number of Periods>>)
    Example:Ago("Human Resources"."Fact - Absence"."# Days" , "Human Resources"."Time"."Year" , 1)
    Method 3: if your using obiee11g --> from analysis itself you cand solve it
    AGO(expr, [time_level], offset)
    Thanks
    Deva

  • Adding a new column to item overview screen 4900 in sales order transaction

    Hi All,
    I want to add a new column to refer to a custom field in screen 4900 ( Item overview screen ) in sales order transaction. Please suggest appropriate exit or BADI for the same. Give all steps to do the same.
    Thanks in adavance.
    Jawahar.

    Hi
    As the link that RamKi let us know, this is a modification, so, I suggest to avoid. See SAP Note 862228 - Order reason for returns on item level for further information. I suggest to use the other enhancements in tabs.
    Regards
    Eduardo

  • Adding of new column in report for downpayment

    Dear Experts,
    We want to add column for downpayment in report S_ALR_87013019 for which we have created a new report with the help of GRR2, (report)602 - (Description)internal orders and have selected its sub category 60BU-001 - Budg/act/commitm, also we have created a new column for downpayment and have assigned valuation type - 61(Downpayment) and valuation - zero(Legal valuation).But while posting downpayment the report is not getting updatedwith the downpayment values. The internal order that is being created is a statistical order but even if real orders are assigned still the values are not getting displayed.
    Please tell us the combination of valution type and valuation or any other characteristic that requires to be made for updating the downpayment column.
    Thanks & Regards
    Edited by: Aniruddha B. Mahalle on Feb 21, 2012 11:25 AM

    hi
    check cost element is created also check is there any exclustion of cost element setting done.
    Edited by: AP on Feb 21, 2012 11:50 AM

  • Adding a new column in a CREATE -- AS SELECT statement

    I am creating a table using a select from an existing table. I wish to also add one new column (with null values for all records). Is this possible? What would the syntax be for this column?
    Thanks,
    Kevin

    user10856100 wrote:
    I am creating a table using a select from an existing table. I wish to also add one new column (with null values for all records). Is this possible? What would the syntax be for this column?
    Thanks,
    KevinKevin,
    IN any case, create table won't accept zero byte for the column declaration.
    SQL> create table e(empno,ename, sal, new_co) as select  empno,ename, sal, to_number(null) from emp;
    create table e(empno,ename, sal, new_co) as select  empno,ename, sal, to_number(null) from emp
    ERROR at line 1:
    ORA-01723: zero-length columns are not allowed
    SQL> create table e(empno,ename, sal, new_co) as select  empno,ename, sal, to_number('12') from emp;
    Table created.
    SQL> desc e
    Name                                      Null?    Type
    EMPNO                                              NUMBER(4)
    ENAME                                              VARCHAR2(10)
    SAL                                                NUMBER(7,2)
    NEW_CO                                             NUMBER
    SQL> select * from e;
         EMPNO ENAME             SAL     NEW_CO
          7369 SMITH               0         12
          7499 ALLEN               0         12
          7521 WARD                0         12
          7566 JONES               0         12
          7654 MARTIN              0         12
          7698 BLAKE               0         12
          7782 CLARK               0         12
          7788 SCOTT               0         12
          7839 KING                0         12
          7844 TURNER              0         12
          7876 ADAMS               0         12
         EMPNO ENAME             SAL     NEW_CO
          7900 JAMES               0         12
          7902 FORD                0         12
          7934 MILLER              0         12
          7369 SMITH               0         12
          7499 ALLEN               0         12
    16 rows selected.HTH
    Aman....

  • Adding a new column to an existing database table

    How can I add a new column to an existing table (ex. dcs_product) and can anyone tell me the required configuration changes i may need to make.
    Thanks in advance!

    create/customize /atg/commerce/catalog/ProductCatalog.xml:
    <gsa-template>
    <item-descriptor name="product" xml-combine="append">
    <table name="my_dcs_product" type="auxilary" id-column-name="product_id">
    <property category-resource="categoryInfo" name="myDescription" column-name="myDescription" data-type="string"/>
    </table>
    </item-descriptor>
    </gsa-template>
    Hope it helps.
    -RMishra

  • ALV adding a new column

    Hi!
    In ALV, how do you create columns and add them so that they are displayed?
    We have a list viewer and we want to add a new column to it.
    regards
    Baran

    Hi baran ,
    There are alternative ways if you're creating it for use in list viewer you don't have to use methods.
    use this for merging fields that you use in your
    internal table
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name        = sy-repid
          i_internal_tabname     = 'WT_LIST'
          i_client_never_display = 'X'
        i_inclname        =    gc_include_name
        CHANGING
          ct_fieldcat            = wt_fcat2
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
    if you want to append directly or after the fieldcatalog merge
    such as :
         CLEAR ws_fcat.
        ws_fcat-fieldname = 'BANKN'.
        ws_fcat-tabname   = 'WT_VENDOR'.
        ws_fcat-ref_fieldname = 'BANKN'.
        ws_fcat-ref_tabname   = 'LFBK'.
        ws_fcat-input         = wv_edit.
        APPEND ws_fcat TO wt_fcat.
    hope this helps

  • OBIEE presentation layer agregate values are not acurate

    hi,
    i have a simple BMM where for the given fact year wise i want to show summation of values and %.
    here is the query generated by the OBIEE
    WITH
    SAWITH0 AS (select sum(T5779.SLA_NOT_MET) as c1,
    sum(T5779.SLA_MET) as c2,
    count(T5779.APP_ID) as c3,
    T5801.CALENDAR_YEAR as c4,
    T5801.TIME_ID as c5
    from
    SQA_CAS_TIMES T5801,
    SQA_CAS_FCT T5779
    where ( T5779.TIME_ID = T5801.TIME_ID )
    group by T5801.TIME_ID, T5801.CALENDAR_YEAR),
    SAWITH1 AS (select distinct SAWITH0.c4 as c1,
    SAWITH0.c3 as c2,
    SAWITH0.c2 as c3,
    SAWITH0.c1 as c4,
    SAWITH0.c2 / nullif( SAWITH0.c3, 0) * 100 as c5,
    SAWITH0.c1 / nullif( SAWITH0.c3, 0) * 100 as c6,
    SAWITH0.c5 as c7
    from
    SAWITH0)
    select SAWITH1.c1 as c1,
    SAWITH1.c2 as c2,
    SAWITH1.c3 as c3,
    SAWITH1.c4 as c4,
    SAWITH1.c5 as c5,
    SAWITH1.c6 as c6
    from
    SAWITH1
    order by c1
    the results are comming wrong when i am doing piviot in presentation layer but this query when i check if i remove the group by time_id then the results are correct
    WITH
    SAWITH0 AS (select sum(T5779.SLA_NOT_MET) as c1,
    sum(T5779.SLA_MET) as c2,
    count(T5779.APP_ID) as c3,
    T5801.CALENDAR_YEAR as c4
    from
    SQA_CAS_TIMES T5801,
    SQA_CAS_FCT T5779
    where ( T5779.TIME_ID = T5801.TIME_ID )
    group by T5801.CALENDAR_YEAR),
    SAWITH1 AS (select distinct SAWITH0.c4 as c1,
    SAWITH0.c3 as c2,
    SAWITH0.c2 as c3,
    SAWITH0.c1 as c4,
    SAWITH0.c2 / nullif( SAWITH0.c3, 0) * 100 as c5,
    SAWITH0.c1 / nullif( SAWITH0.c3, 0) * 100 as c6
    from
    SAWITH0)
    select SAWITH1.c1 as c1,
    SAWITH1.c2 as c2,
    SAWITH1.c3 as c3,
    SAWITH1.c4 as c4,
    SAWITH1.c5 as c5,
    SAWITH1.c6 as c6
    from
    SAWITH1
    order by c1
    The above one is without time_id in group by.
    can some one suggest as to what is wrong with the pivot for the above query.

    why are u bringing TIME_ID column in the first Query... just remove it from the Criteria TAB.

  • How to create new user for OBIEE presentation service

    Hello Guys
    I now only have 2 users on my OBIEE, demo1, demo2.. Now I'd like to create a new user call A and make this new user able to log on to OBIEE presenation service..
    So I went to the RPD admin tool and created new user there and gave password. It was done online mode and I checked out..
    I am able to login to admin tool with the new user account, but when I go to presentation service, I am not able to see this new user nor would I be able to log on using the new user account..
    So how does this work? If I wanted to create a new user and let it access dashboard, I'd I do it
    Any pointer will be greatly appreciated
    Thanks

    Hi.
    actually there is no option available in presentation service to create user. There you can just delete user and create and delete the groups.
    Anyhow, you said you have created a user in rpd.
    To see this user in answers, you must login into answers with this user once.
    are you able to login with the newly created user?
    (As you said you done the creation of user in online mode, this may not effect to the answers)
    if not, just login with administrator into answers, click on reload server metadata, then log off from there.
    Now, try to login with the new user. You may able to login.
    OR
    just restart your BI Server services.

  • Extending VO object , adding a new column.Ploblem with start up.

    Hi Everybody, Am new to OA framework development.
    My requirement is to extend OA page to show an additional field in the table region.
    That field is not part of available columns picked by VO (If that is the case then requirement could be fulfilled by personalization).
    As required column not available in VO I need to extend existing VO definition and create new VO and runtime have to perform substitution, then we can add this column to the table region through OA personalization. Theoretically looks simple, as am doing first time facing many problems and concerns.
    My concern is basically how to start working with Jdev, I have installed jdeveloper compatible version and able to run
    Helloworld page successfully. Now my requirement is to implement new requirement.
    For hello world page, we have .jpr file which picks all required BC4J objects and we can perform changes on top of them. Coming to the real problem facing issues with initial start up itself.
    1)Which files need to do FTP from $JAVA_TOP to jdeveloper/myclasses?
    2)Do we need create new workspace and project for this extension?
    Please help in this regard. Appreciate your help.
    Thanks in advance.
    Regards,
    Vamshi.
    Edited by: [email protected] on Sep 8, 2008 12:17 PM

    Thanks Anand,
    Mentioned link refers to extending VO under Release 12. Can we follow same steps for 11i (11.5.10)?
    Also in mentioned document there arefew steps, Could you please clarify those.These steps are under
    'Setup steps for working on jDeveloper Extension'
    *3. FTP the files from JAVA_TOP to myclasses. Make sure that dependent classes are copied as well.*
    *4. Copy the files from myclasses to myprojects. Remove the .class files from the myprojects. Here, you need to copy just those files which you*
    wish to extend.
    *5. FTP the xml files from $PRODUCT_TOP/mds to myprojects*
    For step 3, Under $JAVA_TOP there are many files , many file structures.Which need to be FTP?
    Say for example my page which need to extended is : /oracle/apps/icx/por/reqmgmt/webui/ReqDetailsPG
    then Is there any specific directory structure to be copied to myclasses?
    Same confusion for steps 4 and 5.
    Please clarify in this regard.Appreciate your help.
    Regards,
    Vamshi.
    Edited by: [email protected] on Sep 9, 2008 9:31 AM

Maybe you are looking for

  • Mouse and trackpad clicks won't register?

    Hi all, I'm using an iMac that I purchased last year around this time (Nov 2011), and it's sometimes not registering the clicks from my trackpad or mouse.  The problem resolves itself if I put it to sleep them wake it up, and only happens when I run

  • Formatted External Hard drive won't work

    I formatted my external hard drive using the MS-DOS(FAT) in Disk Utilities so I could use it on my windows and on my mac. After the formatting finished, I copied some folders to my hard drive from my macbook and ejected it, then plugged it to my wind

  • Alert : long text not complete

    Hi all, I manage specific alerts in my BPM. I have defined it as "dynamic text" alerts in ALRTCATDEF. These alerts are well thrown by PI however I can see only the first caracter of the long text. My version is PI 7.0 SP8. Is it a known issue ? Thank

  • SSO Connection Between Netweaver CE 7.2 and MDM 7.1

    Hi , I am trying to set up SSO connection between Netweaver CE 7.2 and MDM 7.1 systems in our landscape. But Iam not finding the MDM template in Netweaver CE to create the MDM system in System configuration tab of CE. Please help me on how to go abou

  • IPhoto hangs when selecting trash

    Hi there, iPhoto is hanging when I click the trash button in the menu. Right or left click. Must force-quit to get out. Otherwise works fine.