Cannot understand the problem

Hi frnds my name is raj , i am very new to OBIEE , i have been pracitcing it on my own and now i had few problems in understanding the errors .
I built a physical layer with CHANNELS ,COSTS , COUNTRIES , PRODUCTS , SALES ,TIMES tables and SALES being the fact table ,,, I have physical joined every column except COST to sales .
And in Bussiness layer i have created a new bussiness model and dragged all the tables from physical layer except COST table..
In BMM layer , in Sales Table i have dragged a column named UNIT_COST from cost table in physcial layer and renamed it to unitcost , so the sales table in BMM layer has two sources i.e., SALES and COSTS .
Now i applied aggergation sum rule on UNIT COST and dragged it to presentation layer ...
When i opened the presentation server , and selected Product name from product table and Amount sold and Unitcost from sales table and when i click the results to view i have encountered with an error
ODBC DRIVER RETURNED AN ERROR(SQLEXECDirectVV)
the message says : UNIT_COST : invalid Identifier at OCI call .
Please help me in understanding this error and kindly give me the solution for it
thanks ...

Hi,
Firstly did you make a "view data" in the physical layer for the COSTS table. I am doubting that this table wasnot created in the db itself. Kindly check it and let us know if you have any issues
Regards,
BI Learner

Similar Messages

  • I don't have a ringtone when recieving calls to me on FacTime, I have checked my settings and cannot identify the problem

    I don't have a rintone when recieving calls to me on FaceTime, I have checked my setting but cannot find the problem? I have 3x iPads in the house and the other two operate normally....

    Are you checking "Mute" function? It's hide in bottom of screen.
    You can use four fingers slide up from bottom then slide to right side to see mute on/off.

  • ITunes gives code 42110 and 3014 and i cannot solve the problem

    iTunes gives code 42110 and 3014 and i cannot solve the problem. iphone out of order.

    Error 3014 means the following:
    Errors 3000-3999 (3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the update server (gs.apple.com) on ports 80 or 443.
    Update to the latest version of iTunes.
    Verify the computer's date and time are accurate.
    Check that your security or firewall software is not interfering with ports 80 or 443, or with the server gs.apple.com.
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    An entry in your hosts file may be redirecting requests to gs.apple.com (see "Unable to contact the iOS software update server gs.apple.com" above).
    Internet proxy settings can cause this issue. If you are using a proxy, try without using one.
    Test restoring while connected to a known-good network.
    Error 3014 may indicate that you need to free up more disk space on the computer before trying to restore again.
    Here's the article containing the above: http://support.apple.com/kb/TS3694

  • HT1390 I downloaded two movies 4 days ago before a school trip. I watched the first on the bus on the way. I am now on the way home and want to watch the other movie and it disappeared. This has happened to me in the past and I dont understand the problem

    I downloaded two movies 4 days ago before a school trip. I watched the first on the bus on the way. I am now on the way home and want to watch the other movie and it disappeared. This has happened to me in the past and I dont understand the problem!!

    Drrhythm2 wrote:
    What's the best solution for this? I
    Copy the entire /Music/iTunes/ folder from her old compouter to /Music/ in her account on this new computer.

  • I corrupted the firefox profile file using profile manager and firefox thinks it is still running and asks me to close but there is no instance of it running...I have tried several re-installs but cannot resolve the problem....

    .........I have deleted the .ini file associated with the profile file and the profile file itself...have tried to locate the "lock" file but cannot find the file in the specified path on the support forum for this problem....I believe there is a file mounted in another directory somewhere that firefox is seeing....I would really like to be able to use firefox as the default browser on this new linux (ubuntu) install...it was working prior to my trying to import my profile from the windows partition.....

    See this. <br />
    https://support.mozilla.com/en-US/kb/Firefox+hangs#Hang_at_exit

  • IMac (Late 2012) Rattling, how to get fixed if Apple cannot "recreate" the problem?

    I set up an appointment with Apple and took in my iMac that is suffering from a rattling that comes and goes. It is on for 5-10 seconds and then off for 5-10 seconds. I assume it has something to do with the fan, but the rattling is always the same regardless of how fast or slow the fan is spinning. It is very subtle and the closest thing it reminds me of is the sound a woodpecker makes. If there is any music on or sound in the room, it goes mostly unnoticed, however if I am working on the computer in silence it begins to drive me insane.
    At the Apple store they took my iMac to the back to test it in a quieter environment and then returned saying they did not hear the sound and could not do anything. I fear they were still in too loud of an environment to make it out, and I understand not being able to repair a problem you can not find.
    Now finally to my question: If Apple says they are unable to recreate the problem, what are my options? I have 3 months left on my warranty and imagine the repairs for something like this should be covered, if I can get an acknowledgement of the problem. The sound and it's pattern, although subtle and quiet are becoming unbearable, so any help would be greatly appreciated.

    It seems that you may have 2 severe problems. One may be a faulty battery, especially if it's not holding a charge. The other may be the hard drive itself. The folder with the exclamation point can be solved by restoring the iPod. But the battery will need some expert attention like sending it back to Apple for a replacement battery.

  • I cannot solve the problem-please help-IMPORTANT

    I have got the following two classes. It shows the elements (double-numbers) of a matrix in a frame. The problem is, if the matrix consists of too much numbers , I am not able to see the whole numbers, but rather the first digit of each number.
    I want to be able to scroll through the matrix and the numbers should be presented completely in the frame.
    But how????;-(
    public class MatrixFrame extends Frame {
    public MatrixPanel matrixPanel;
    public MatrixFrame(double[] [] values,int x, int y) {
    matrixPanel = new MatrixPanel(values,x,y);
    this.setSize(300,500);
    this.setLocation(200,200);
    add(matrixPanel);
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    dispose();
    show();
    }//MatrixFrame
    public class MatrixPanel extends Panel {
    MatrixPanel(double[] [] values,int l, int r) {
    setLayout(new GridLayout(l,r));
    for (int i=0;i<l;i++) {
    for (int j=0;j<r;j++) {
    add(new MatrixValue(values [j]));
    //this.add(BorderLayout.CENTER);
    setVisible(true);
    class MatrixValue extends JComponent {
    private double data;
    MatrixValue(double d) {
    data=d;
    public void paint(Graphics g) {
    Dimension d= getSize();
    g.drawString(Double.toString(data),d.width/2,d.height/2);
    Thanx for your help
    Thomas

    Instead of extending JComponent, your MatrixValue should extend JLabel. JLabel sizes properly, thus allowing you to place it within a ScrollPane. Otherwise you will have do something like this:
    public MatrixValue extends JComponent {
    public void paint(Graphics _g) {
    Graphics2D g = (Graphics2D)_g;
    Rectangle r = g.getFontMetrics().getStringBounds(Double.toString(data), g);
    setPreferredSize(new Dimension(r.getWidth(), r.getHeight());
    g.drawString(Double.toString(data),d.width/2,d.height/2);
    }

  • I want to kill somebody if I cannot fix the problem

    Hi all,
    I am really upset on my ipod & ITunes. Anyway I have problem on my ITunes, hope someone can help me! Thanks in advance.
    I tried to use ITunes but failed. Actually I completed the installation but when I launched ITunes, it said cannot launch. I tried to uninstall & disable my Anti-virus & to reinstall it. Unfortunely, ITunes still cannot launch.

    ok, here is something that is solving some itunes issues with many pple. Go to oldversion.com and download an older version of Quicktime. See if that works. First make sure all your remnants of Quicktime are completely uninstalled. Go to Microsoft Clean UP Utility to clean up the uninstall.
    To change the Chinese lang. download, make sure you go into Control Panel>Changer date, time and regional settings and make sure English is the default language.
    Good Luck and let me know how it goes.

  • When I power up my system. I get the following error message: Video controoller [VGA Compatible] The system won't them find the driver and I cannot reslove the problem or remove it. Any help to do so would be most welcome

    This is not a FireFox problem as it starts before I open any browser. As the system powers up. The hardware is yellowed, but if I delete it. It just reloads it and the same error comes back, next time the system power up as before.
    The system is asking for a hardware disk that I do not have to give it. Any help would be most welcome.

    You have to enter the Apple ID and password. You are running into the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.

  • HT6114 since updating my mac to 10.9.2, my system preferences page comes up with an empty page in front of "internet accounts" page and I am unable to understand the problem? Any support would be appreciated.

    Since updating my Mac to OS X 10.9.2,  my "system preferences" app appears with a blank page in front of "interent accounts". Any support would help as I cannot see/find resolution to this issue.

    Strangely enough the pref file did not show up in the Preferences folder.  I don't know what this means but it could be signifigant.

  • Cannot understand the organisation of children at all

    Can someone please explain some things to me?  I have two classes.  One is the document class:
    package {
        import flash.display.*;
        import flash.events.*;
        import fl.motion.*;
        import fl.transitions.*;
        import fl.transitions.easing.*;
        public class SlideShow extends Sprite {
            private var viewer:ImageLoader;
            private var images:Array=new Array("images/seats.jpg","images/office.jpg","images/wall.jpg","images/light.jpg","images /elephant.jpg");
            private var count:int=0;
            public function SlideShow() {
                viewer=new ImageLoader();
                viewer.x=100;
                viewer.y=100;
                viewer.setUpTextField(this);
                addChild(viewer);
                loadImage();
                next_btn.addEventListener(MouseEvent.CLICK,nextPicture)
                prev_btn.addEventListener(MouseEvent.CLICK, prevPicture)
            private function loadImage():void{
                if(count>images.length-1 || count<0){
                count=0;
                viewer.loadImage(images[count]);
            private function nextPicture(e:Event):void{
                viewer.removeImage()
                count++;
                loadImage()
                trace(viewer)
            private function prevPicture(e:Event):void{
                viewer.removeImage()
                count--;
                loadImage()
    The next is my ImageLoader class:
    package {
        import flash.display.*;
        import flash.net.URLRequest;
        import flash.events.*;
        import flash.text.*;
        import fl.motion.*;
        import fl.transitions.*;
        import fl.transitions.easing.*;
        public class ImageLoader extends Sprite {
        private var loader:Loader;
        public var progress_txt:TextField;
        var img:Bitmap;
        var parent_mc:SlideShow;
        public function ImageLoader() {
            loader=new Loader();
            loader.contentLoaderInfo.addEventListener(Event.INIT, showImage);
            loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, showProgress);
            public function loadImage(url:String) {
                var URLObject:URLRequest=new URLRequest(url);
                loader.load(URLObject);
            private function showImage(e:Event) {
                progress_txt.visible=false;
                img=Bitmap(loader.content);
                img.alpha=0;
                loader.unload();
                addChild(img);
                var myTween:Tween = new Tween(img, "alpha", Strong.easeOut, 0, 1,100)
                trace(next_btn.x)
            public function removeImage():void{
                removeChild(img);
            public function setUpTextField(obj:Object):void{
                parent_mc=SlideShow(this.parent);
                progress_txt=new TextField();
                progress_txt.text="Loading";
                progress_txt.x=0;
                progress_txt.y=0;
                var tf:TextFormat=new TextFormat();
                tf.font="Arial";
                tf.size="18";
                tf.align="center";
                progress_txt.defaultTextFormat=tf;
                obj.addChild(progress_txt);
                //couldn't work out why I couldn't say parent_mc.addChild(progress_txt);
            private function showProgress(e:ProgressEvent){
                progress_txt.text=String(Math.round(e.bytesLoaded/e.bytesTotal*100))+"%"
    Problem is with accessing the buttons.
    I manually placed two buttons on the stage and called them next_btn and prev_button.  How on earth do I access these buttons from inside the ImageLoader class?  I have no clue as to the hierarchy.  When I say inside imageLoader.as trace(this.parent) I get NULL, which confuses me, because something has added it to the stage, I thought it was the document class SlideShow.
    I tried trace(this.next_btn), (next_btn), (this.parent.next_btn), (stage.next_btn)....where on earth is the next_btn???

    pass a reference to the stage from your document class to you imageloader class.

  • TS4169 I have Final Cut X 10.1.1 and have Mavericks and I cannot fix the problem

    Please give me an update or a soluton for how to fix the "restoring window layout" freeze at final cut x boot.. There is nothing to show how to fix problem with mavericks... I have a brand new macbook pro and FCX has been working up until a few days ago. Please help I am loosing money

    Try this ......  corrupt preferences can create a vast range of different symptoms, so whenever FCP X stops working properly in any way, trashing the preferences should be the first thing you do using this free app.
    http://www.digitalrebellion.com/prefman/
    Shut down FCP X, open PreferenceManager and in the window that appears:-
    1. Ensure that only  FCP X  is selected.
    2. Click Trash
    The job is done instantly and you can re-open FCP X.

  • Function module throwing error from work area. Cannot find the problem...

    REPORT  ZPSMARTFORM1.
    tables: zptable1.
    types: begin of ty_zptable1,
          f1 type zf1,
          f2 type zf2,
          f3 type zf3,
    end of ty_zptable1.
    data: itab type table of ty_zptable1 with header line.
    data: wa type ty_zptable1.
    select f1 f2 f3 from zptable1 into table itab.
    CALL FUNCTION '/1BCDWB/SF00000005'
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        ITAB                       =   .
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    this is my driver program.In my form interface  there are tables,import,export are there where i have to declare tables data.If i am putting wa means it is throwing error.Please show me the clear information.
    Edited by: Julius Bussche on Nov 14, 2008 10:09 AM

    REPORT ZPSMARTFORM1.
    tables: zptable1.
    types: begin of ty_zptable1,
    f1 type zf1,
    f2 type zf2,
    f3 type zf3,
    end of ty_zptable1.
    data: itab type table of ty_zptable1 with header line.
    data: wa type ty_zptable1.
    select f1 f2 f3 from zptable1 into table itab.
    CALL FUNCTION '/1BCDWB/SF00000005'
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    ITAB = .
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Plz for this driver program. Give me the exact solution.I am passing the information like itab  like zptable1 ther ein the smart form table. Even now i am getting error.Here in this driver program i passed itab = itab means .I  am not getting solution.If i have to change any function module name means plz tell me.What i have to put there.Plz give me the correct solution

  • Cannot solve the problem of not being able copy and paste in firefox. I have tried removing appInit.dll, new profiles, etc. with no luck. What is the problem?

    I have not been able to copy and paste in firefox for the last two months. My research on the topic has led me to try the disabling all plugins, creating a new profile in safe startup, I removed appInit_dlls from my registry, could not find pushowxx adware, installed lastest version and updates of firefox, etc. All to no avail.

    Hi Gary,
    I have seen this issue occur with users who have this registry setting missing or have improper permissions.
    When you double click the attachment to launch the pdf it is saved and opened from the temporary folder unless saved specifically to a location.
    If you dont have the below mentioned registry key or improper permissions then attachments fail to open.
    Please  heck if the following reg key exists:
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Security
    or
    HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\Security
    Value Name: OutlookSecureTempFolder
    If the value exists, and if the value contains a valid path, Outlook 2010 uses that location for its temporary files.
    If the registry value does not exist, or if the value points to an invalid location, Outlook 2010, Outlook 2007, or Outlook 2003 creates a new subdirectory under the Temporary Internet Files directory and then puts the temporary file in the new subdirectory. The name of the new subdirectory is unknown and is randomly generated, depending on your version of Outlook.
    Please check the following key:
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Security
    Note the location for: OutlookSecureTempFolder key
    Check if the same folder exists in the following location and if not create a corresponding folder in the location on C:\Users\<User account name>\Appdata\Local\Software\Microsoft\Windows\......
    Regards,
    Rave

  • I cannot understand the answers provided when I ask 'how to change a password for a website' in Firefox Options tab.

    The answers that your website have provided have not done me any good. I use a Master Password for Firefox. Now Firefox is not asking me if I want it to remember a certain password that I have entered for a website. In the 'Options' tab, I have told Firefox that I do not want to be tracked; that I don't want it to remember the history; and not to accept third-party cookies. What is it that I have to do in 'Options' so that Firefox remembers a new password (I have changed a password recently). I would really appreciate an actual answer, rather than a link to "some answers already posted".
    I'm using Firefox 33.1. Windows XP - Service Pack 3.
    Thank you.

    Are you saying that you changed your history setting here:
    "3-bar" menu button (or Tools menu) > Options > Privacy
    to "Firefox will: Never remember history"?
    This causes Firefox to always start up in a private browsing session. According to the help article "[[Usernames and passwords are not saved]]":
    <blockquote>If you use the Firefox Private Browsing feature, no passwords will be automatically filled in for your Private Browsing window or in permanent Private Browsing mode, and no new passwords will be saved.</blockquote>
    So hopefully that helps connect the dots.
    If you prefer to keep using automatic private browsing, you may need to use an add-on to manage your passwords instead of Firefox's built-in password manager.
    Or if you want to adjust other Firefox settings so that they are as close as possible to private browsing, we can suggest how to do that instead.

Maybe you are looking for

  • File is damaged and can't be repaired error

    I was at the IRS forms page, downloaded and printed some forms, but when I tried to download and print the instruction and tax chart pages, I began getting 'file is damaged and can't be repaired' error. I upgraded my free Reader to version 9, reboote

  • IPad 2 - Red blue flickering screen problem

    blue flickering screen problem

  • Editable columns in table don't select the whole row

    I am new to the forums and posted this to the wrong one the first time and I am not sure how to move it so I am just reposting it here. Sorry. I have a table with 7 columns. 2 of them are non-editable and the rest are either radio buttons or check bo

  • After Effects audio issue...(not RAM preview)

    I hope someone can help...! I'm having a nightmare getting audio to work in After effects (CS3)? I've imported my movie files and can see the audio wave displayed in the thumb nail in the project window, but when I drag the clip into the timeline the

  • Imported slide show movie looks weird and flickering

    I exported a slide show of high rez photos out of Lightroom as a MP4 movie @1080 and inserted it in to my final Cut X movie and most of the slides have areas of  the photo that are flickering back and forth. Seems like it might be the areas with a lo