Unable to drop BMM Dimension to Presentation Layer

The BMM Dimension is based on Location_D. At first level I have country (1attribute of location_d) and is made as a key for first level. At second level I have state (also as key & 2 attribute of location_d) The preferred drill down path at first level is pointed to second level.
When I try to drop dimension to Presentation layer, it doesnt allow. I do not get any errors during consistency check.
I am using OBIEE10g on a Windows XP system.
Is there anything that is wrong?
Regards,
Prem.

If you are creating a Presentation catalog based on BMM then, mouse right click on Presentation layer and create manually and drag and drop from BMM.
If your case is adding column to existing Presentation catalog's Presentation table; See the related BMM to that Presentation catalog, you may use mouse right click and Related to.
If these are not helping send me rpd with details to my email I do it for you.
Mark if helps

Similar Messages

  • Getting extra NULL row in presentation layer when we use CASE in RPD

    Hi,
    We have created some time utility members in RPD like Previous month, Previous quarter.
    Steps:
    We have created a init block for capturing Previous month, Previous quarter and added variables with some default values assigned.
    Now, we have created a logical column under time dimension in BMM as Previous month, Previous quarter. We are deriving them using following way.CASE
    WHEN
    MONTH_COL_NAME=VALUEOF(REPOSITORY_VAR_NAME)
    THEN
    MONTH_COL_NAME
    END
    We want these dimension values to qualify with measures.
    The problem we are facing is it is showing one extra blank row in presentation layer when we bring Previous month or Previous quarter. This is because CASE conditions behaviour. How to avoid null in CASE condition in RPD?
    Thanks,
    Anilesh

    You need to handle the records which are not equals to REPOSITORY_VAR_NAME.
    I guess those other rest of values .
    Try this
    CASE
    WHEN
    MONTH_COL_NAME=VALUEOF(REPOSITORY_VAR_NAME)
    THEN
    'Y'
    ELSE 'N'
    END
    in criteria use Y as filter value
    If helps pls mark
    Edited by: Srini VEERAVALLI on Dec 20, 2012 7:49 AM

  • Rename columns in Presentation layer

    Hi Experts,
    I Have one BMM layer table with 2 groups columns like
    BMM Table
    Sales
    Revenue
    Sum
    Sales_ B Group
    Revenue_ B Group
    Sum_ B Group
    Now I want to show these columns in two tables i.e. A table and B table with same column names in presentation layer as below:
    Presentation A table Presentation B table
    Sales Sales
    Revenue Revenue
    Sum                     Sum          
    In BMM layer it should be Sales_ B Group but in presentation table it should show as Sales as vice verse for other 2 columns for B group columns
    If I rename Sales_ B Group as Sales in BMM layer it won’t accept because already sales column is there my requirement is in BMM layer in should as Sales_ B Group but in presentation layer the same column it should show as Sales .
    Regards,
    Rafi
    Edited by: Rafi.BI on Jan 31, 2013 11:28 PM

    Hi Rafi,
    Can you right click on your presenatation layer and create a new presentation table (EG: Table A) -- and then move the columns from bmm layer and rename them as per your req.
    Now right click again.. create one more Pres. table (EG: Table B) -- and then move the columns from bmm simply drag and drop and rename as per your req.
    Thank you.

  • 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

  • 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.

  • Managing presentation layer formats

    Hi, I'm just curious how people are managing presentation layer formats when using large, complex RPDs. For instance "Year" in our date dimension needs to be formatted to not display the comma, so it shows as "2012" not "2,012". However, this date dimension is used in TONS of presentation subject areas (we use EPM campus solutions), so I have to go in to each and every one to format the year. Is there a better way to do this?
    Sure wish there was a way to specify this in the business layer of the RPD....
    Thx,
    Scott

    Scott,
    For instance "Year" in our date dimension needs to be formatted to not display the comma, so it shows as "2012" not "2,012"
    1) Did someone changed default behavior if we normally pull year column in OOTB it wont give you ','  in results tab
    2) how about duplicating same column in rpd and cast ( col as int) and use it in calculation and pull the calculated measure to presentation layer ?
    thanks,
    Saichand

  • Merging  Patch,after that not able to see column in Presentation layer

    Hi,
    I am using rpd 11.1.1.5.0 and created patch done for modifications,after merging to original repository not able to see new derived columns in Presentation layer,able to see in BMM and Physical layer.
    Little bit urgent as client need to see reports.
    Thanks
    Karthik

    Thank you.... so much.
    Solution: clear preferences in home library ~/Library
    Preferences> com.apple.Safari.plist

  • Left outer join in presentation layer

    Could I do left outer join in presentation layer? I have 2 reports. They both have a common column - "Month". The first report have columns - "Month" and "Measure1" and the second report have columns - "Month" and "Measure2". I would like to put them together so the final report would have "Month", "Measure1" and "Measure2".
    Thanks,
    Ted

    Ted,
    It is not clear to me, why you want to do an outer join. If the dimension Month is shared by both "Measure1" and "Measure2", then it will work without any problem (assuming the RPD is configured correctly).
    An outer join comes into play if you need to preserve the dimension records. Let's assume you want to run an analysis like "Show me all months were there was no sales". In plain SQL you would to do a left-outer join between the Month dimension table and the sales fact table. If you want to know how this can be achieved in OBIEE you might want to have a look here [Outer join style report - OBIEE 10g|https://forums.oracle.com/forums/message.jspa?messageID=9805768#9805768]. This should be still valid for OBIEE 11g.
    Best regards,
    Peter

  • Presentation Layer Property

    Hi experts,
    In administratrion tool for obiee 10g, there are some property,such as export logical keys ,impilict fact column, in presentation layer. Can anybody tell me what it is and how to use it?
    Thank you.

    Refer to documentation, you can find the following on pg 300, E10540-02.
    Exporting Logical Keys in the Subject Area
    For each subject area in the Presentation layer, you can decide whether to export any logical keys as key columns to tools that access it. Exporting logical keys is irrelevant to users of Oracle BI Presentation Services, but it may be advantageous for some query and reporting tools. If you decide to export logical keys, make sure that the logical key columns exist in the table folders. In this situation, your business model should use logical key/foreign key joins. When you select the option Export logical keys in the Subject Area dialog, any columns in the Presentation layer that are key columns in the Business Model and Mapping layer are listed as key columns to any ODBC client. This is the default selection. In most situations, this option should be selected.
    Setting an Implicit Fact Column in the Subject Area
    For each subject area in the Presentation layer, you can set an implicit fact column. The implicit fact column is added to a query when it contains columns from two or more dimension tables and no measures. The column is not visible in the results. It is used to specify a default join path between dimension tables when there are several possible alternatives or contexts.

  • How do i drag and drop onto a smart object layer in Photoshop CS 5.5

    I recently bought a 3d mock up Photoshop file as I want to mock up my designs such as business cards and other 3d items. The file notes said With a simple drag and drop on the smart object layer your design will be presented in a realistic and striking way.
    Can you tell me how I do what they are telling me to do as I have played around with the file till the cows come home and can't work out how to do it. Do I need to do the old fashioned mock up way by skewing the image to fit or is there an easier way such as the drag and drop...?
    Any help will be gratefully received,
    Thanks

    Hi here is the template PSD and then I want to put my business card design over and it says you can drag and drop as per my previous message ...

  • HTML5 canvas app: flash for presentation layer

    Hi there,
    I'm a html frontend developer, so I'm quite new to this flash environment.
    For a project we're doing right now, however, we decided to go with flash for asset management and presentation layer development.
    So we have an MVC javascript project "finished" already, that uses assets exported from a HTML canvas project in flash pro cc. Right now all functionality is coded inside the javascript project, and only assets, animations, etc are loaded from the exported fla. This seems to work fine. However, there is still a strong connection between the javascript views and the exported assets. Right now we're in the position where we need to reskin the whole application, and to allow external developers to design skins as well. This strong connection between assets and views is becoming a problem.
    For example, at a certain point in our application we have to show a list options with a variable length. So we draw a container in flash that will contain the list, add a mask, create a scrollbar, etc. Then we have code in the javascript project that uses all these elements, adds displayobjects to the container, scroll the whole thing up and down, etc... That means that a skin designer, who only has access to the fla, is unable to make, for example, a theme where this list is shown horizontaly instead of vertically.
    I was wondering how other people handle these scenarios?

    you'd have to code and create the graphics for horizontal scrolling just like you did for vertical scrolling

  • Single presentation layer attribute from 2 LTSs

    Hi,
    I have a presentation layer attribute say, Country. The Country info is coming from 2 separate physical tables. So, in BMM layer I created a single table and added 2 LTSs pointing to 2 physical tables.
    Can I have a single attribute in presentation layer which is coming from both the LTSs of BMM layer?
    Thanks,
    Anilesh

    Hi,
    You can go for fragmentation in RPD in BMM, which will create a union of both the sources.
    Refer
    http://108obiee.blogspot.in/2009/01/fragmentation-in-obiee.html
    Hope this helped.
    Regards
    MuRam

  • I am trying to use java  file as Model layer and jsf as presentation layer

    I am trying to use java file as Model layer and jsf as presentation layer and need some help
    I successfully get the value of h:outputText from java file by doing simple binding operation but I am facing problems when I am trying to fill h:dataTable
    I create java file
    package oracle.model;
    import java.sql.;*
    import java.util.;*
    *public class TableBean {*
    Connection con ;
    Statement ps;
    ResultSet rs;
    private List perInfoAll = new ArrayList();
    *public List getperInfoAll() {*
    perInfoAll.add(0,new perInfo("name","username","blablabla"));
    return perInfoAll;
    *public class perInfo {*
    String uname;
    String firstName;
    String lastName;
    *public perInfo(String firstName,String lastName,String uname) {*
    this.uname = uname;
    this.firstName = firstName;
    this.lastName = lastName;
    *public String getUname() {*
    return uname;
    *public String getFirstName() {*
    return firstName;
    *public String getLastName() {*
    return lastName;
    right click on the file and choose 'create data control'
    then i wrote the jsf file:
    *<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>*
    *<f:view>*
    *<h:dataTable id="dt1" value="#{bindings.perInfoAll}"*
    var="item" bgcolor="#F1F1F1" border="10"
    cellpadding="5" cellspacing="3" rows="4" width="50%"
    dir="LTR" frame="hsides" rules="all"
    *>*
    *<f:facet name="header">*
    *<h:outputText value="This is 'dataTable' demo" id="ot6"/>*
    *</f:facet>*
    *<h:column id="c2">*
    *<f:facet name="header">*
    *<h:outputText value="First Name" id="ot1"/>*
    *</f:facet>*
    *<h:outputText style="" value="#{item.firstName}"*
    id="ot2"/>
    *</h:column>*
    *<h:column id="c4">*
    *<f:facet name="header">*
    *<h:outputText value="Last Name" id="ot9"/>*
    *</f:facet>*
    *<h:outputText value="#{item.lastName}" id="ot8"/>*
    *</h:column>*
    *<h:column id="c3">*
    *<f:facet name="header">*
    *<h:outputText value="Username" id="ot7"/>*
    *</f:facet>*
    *<h:outputText value="#{item.uname}" id="ot4"/>*
    *</h:column>*
    *<f:facet name="footer">*
    *<h:outputText value="The End" id="ot3"/>*
    *</f:facet>*
    *</h:dataTable>*
    *</center>*
    *</af:document>*
    *</f:view>*
    but nothing is appear in my table
    I know that there is something wrong in calling the binding object
    I need help pls and where can i find some help to deal with another tag types
    thanks

    i dragged the "perInfoAll" from my "Data Controls" and choosed adf table (even I know that new table with adf tags well be generated and i want table with jsf tags)
    and this code is generated
    *<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"*
    *"http://www.w3.org/TR/html4/loose.dtd">*
    *<%@ page contentType="text/html;charset=UTF-8"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>*
    *<%@ taglib uri="http://xmlns.oracle.com/adf/faces/rich" prefix="af"%>*
    *<f:view>*
    *<af:document id="d1">*
    *<af:messages id="m1"/>*
    *<af:form id="f1">*
    *<af:table value="#{bindings.perInfoAll1.collectionModel}" var="row"*
    *rows="#{bindings.perInfoAll1.rangeSize}"*
    *emptyText="#{bindings.perInfoAll1.viewable ? 'No data to display.' : 'Access Denied.'}"*
    *fetchSize="#{bindings.perInfoAll1.rangeSize}"*
    *rowBandingInterval="0"*
    *selectionListener="#{bindings.perInfoAll1.collectionModel.makeCurrent}"*
    *rowSelection="multiple" id="t1">*
    *<af:column sortProperty="uname" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.uname.label}"*
    *id="c1">*
    *<af:inputText value="#{row.bindings.uname.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.uname.label}"*
    *required="#{bindings.perInfoAll1.hints.uname.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.uname.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.uname.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.uname.tooltip}"*
    *id="it3">*
    *<f:validator binding="#{row.bindings.uname.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *<af:column sortProperty="firstName" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.firstName.label}"*
    *id="c2">*
    *<af:inputText value="#{row.bindings.firstName.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.firstName.label}"*
    *required="#{bindings.perInfoAll1.hints.firstName.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.firstName.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.firstName.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.firstName.tooltip}"*
    *id="it2">*
    *<f:validator binding="#{row.bindings.firstName.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *<af:column sortProperty="lastName" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.lastName.label}"*
    *id="c3">*
    *<af:inputText value="#{row.bindings.lastName.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.lastName.label}"*
    *required="#{bindings.perInfoAll1.hints.lastName.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.lastName.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.lastName.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.lastName.tooltip}"*
    *id="it1">*
    *<f:validator binding="#{row.bindings.lastName.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *</af:table>*
    *</af:form>*
    *</af:document>*
    *</f:view>*
    but when run it i see the following errors
    *Class oracle.adf.model.adapter.bean.BeanDataControl can not access a member of class nl.amis.hrm.EmpManager with modifiers "private"*
    *Object EmpManager of type DataControl is not found.*
    *java.lang.NullPointerException*
    *Class oracle.adf.model.adapter.bean.BeanDataControl can not access a member of class nl.amis.hrm.EmpManager with modifiers "private"*
    *Object EmpManager of type DataControl is not found.*
    *java.lang.NullPointerException*
    :(

  • Unable to drop database user

    Hi All,
    I am unable to drop database user and getting the folllowing error:
    " must use DBMS_AQADM.DROP_QUEUE_TABLE to drop queue tables "
    I find 3 table with AQ prefix in the schema but unable to drop these table even by using "sys" user.
    Any idea how can I do that ?
    Regards,

    Hi,
    select object_name,object_type from dba_objects where owner='USERNAME' and object_name like '%AQ%';TO drop the queue table, login as the owner and
    exec DBMS_AQADM.DROP_QUEUE_TABLE(queue_table=>'PASTE_THE_OBJECT_NAME_FROM_ABOVE',force =>TRUE);Anand

  • 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)

Maybe you are looking for

  • If I erased a season of a TV show from both iTunes library and iCloud, what can I do to restore it or at least have it back in my purchased list?

         Recently I bought three seasons of a TV show, but when I was going to download the second one I noticed that I could have it with 1080p, so I changed my settings so all other downloads would be in 1080p. The second and the third season where dow

  • How to Insert two queries in a single workbook in BI 7 ?

    Hi,            I am trying to insert two queries in a single workbook. The queries are of Accounts Receivable.I have inserted one query in a workbook , but am not able to proceed to inserting the second query. In BEx analyzer, in design mode , using

  • Missing Hard Drive Space + Other Issues

    My Macbook's been acting funny lately - it wouldn't always come out of sleep, and every now and then an application would crash but its icon would stay in the Dock and there would be no way to get rid of it. When I tried typing in my password on the

  • Can't use

    Hello all.. I have been using Solaris 10 for a few weeks now, and I really like it :-).. But, I am having this problem that has really stumped me, so if you could help it would be greatly appreciated. I can't use "localhost:<port #> to connect to my

  • JLabel doesn't show up in the Applet

    Hi, all, Could you please help me to see my code and tell me why the JLabel component doesn't show up in my applet? Thank you. It seems the applet's paint() overlaps the JLabel. I would like to create a JLabel on my applet, so that I can update the t