Problems with global messagens

Hello,
I'm creating one page list, in this page I've created one h:messages for display global messagens. On my get property I add one message to the faces context and at first access the message isn't showed, If I trigger some action, this message will be show.
How can I show this message at first time?

I also have exactly the same problem. Even if i put something in the FacesMessage inside the constructor of the backing bean,then also nothing is displayed. It is only getting displayed if do exactly the same thing inside the actionListener method.
How do i show the message if something goes wrong inside the constructor of the backing bean?I really need to implement this feature urgently. here is a very simple protoype jsp and the corresponding backing bean.
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<h:form id="test">
     <h:messages infoStyle="font-size: 18px; font-weight: bold; color: #000066"
                                       errorStyle="font-size: 20px; font-weight: bold; color:#FF0000"/>
    <h:inputText value="#{testBean.simpleprop}"/>
    <h:commandButton actionListener="#{testBean.submit}"/>
</h:form>Here is the backingBean:
public class TestBean {
    public TestBean() {
        FacesContext.getCurrentInstance().addMessage(null,new FacesMessage(FacesMessage.SEVERITY_ERROR,"somemessage","dgfdhfd"));
    private String simpleprop;
      public String getSimpleprop() {
        return simpleprop;
    public void setSimpleprop(String simpleprop) {
        this.simpleprop = simpleprop;
       public void submit(ActionEvent e){
        System.out.println("jcckch");
        FacesContext.getCurrentInstance().addMessage(null,new FacesMessage(FacesMessage.SEVERITY_ERROR,"chbchbcb","ahnagagafgs"));
}

Similar Messages

  • Comma problem with global string variable

    Hi,
    I'm fiighting with comma problem for global string variable. I've on page string for example "7nndqrr52vzyb,0" and by dynamic column link I'm assigning this string to global variable. Then I'm trying to display value of that global variable on another page but I see only string till comma, nothings more. I'm not sure what I'm doing wrong because when I'm trying to assign that value normally by computation process as a constant value is fine and see on another page correct string. I'll be really glad for help.
    Thanks
    Cheers,
    Mariusz

    When it tries to display the string, it sees the comma and wants to believe the string is terminated. You could escape the , in the string or replace it with a different character..
    See this link: http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/concept.htm#BEIGDEHF
    Thank you,
    Tony Miller
    Webster, TX
    If vegetable oil is made of vegetables, what is baby oil made of?
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Problem with Global settings panels

    Using Flash player v10,1,53,64. with IE7 and Safari 5. I am trying to turn off the auto update notification as I work in an infant school and the pop-up notifications confuse the children.
    Flash objects are working fine and the http://www.adobe.com/software/flash/about/ page tells me that I have the version of Flash installed with no problem.
    I then right click on an active Flash object on a web page and choose "Global settings..."
    Then choose Global Notification Settings Panel... , which takes me to  http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager05.htm l
    At this point, instead of the panel I get the "This content requires Flash" replacement item - so I can't go any further. The same sthing happens with any of the Settings panels.
    So one page on the Adobe site says I have the player installed, others don't.
    Help much appreciated.

    pwillener wrote:
    Does that happen on all browsers?
    Anyway, another way of disabling update notifications is by using a mms.cfg file; see http://kb2.adobe.com/cps/167/16701594.html for details.
    It has happened with all the browsers I have checked, some may be a bit out of date as we don't use them regularly but I have the problem with
    Internet Explorer 7.0.5730.13
    Safari 5.0
    Firefox 3.0.19
    Chrome 5.0.375.86
    I'll have a look at the mms.cfg option this afternoon.
    I'm beginning to wonder whether this is caused by a firewall problem. I don't control the firewall settings. I've been assured by our network team that there is no block, but I'm wondering if that is right. I suppose they could have a block on flash content from not specifically authorised sites (which might well include Adobe) that would still let the Adobe site interrogate to find out the Flash version - but as I'm not 100% certain how the protocols work I can't be sure, I'll have to recheck that one.
    Thanks for the help so far.

  • Problem with global temporary table in Oracle 10g

    Hi All,
    I face a peculiar problem in Oracle 10g with respect to Global temporary table.
    Have Oracle 10g version in Production and 11g version in UAT.
    Table_
    create global temporary table TT_TEMPGPSMANUAL
      Col_1    VARCHAR2(50),
      Col_2    VARCHAR2(500),
      Col_3    VARCHAR2(50),
      Col_4    VARCHAR2(50),
      Col_5    VARCHAR2(15),
      Col_6    VARCHAR2(20),
      Col_7    VARCHAR2(250),
      Col_8    VARCHAR2(20),
      Col_9    VARCHAR2(15),
      Col_10   VARCHAR2(20),
      Flag     NUMBER,
      Col_11   INTEGER,
      Col_12   VARCHAR2(50)
    on commit preserve rows;So this should preserve the rows inserted into this table until the session ends.
    Have a webpage in front-end where in turn, it opens another page (session is carried through) and a few rows will be inserted to this table from the webpage (through a function) on submit and the current page will be closed.
    From the parent page, if I open the sub-page data inserted in the temporary table are held and displayed (another function to fetch the values in the Global Temp table).
    The Problem in Oracle 10g (Production) is, this is not happening properly. When I close and open the sub-page, not every time I get the data stored i.e if I close and open the page 10 times, atelast 4 times the data is missed in the page (I am not getting values from temp table) randomly.
    But this does not happen in UAT (which has Oracle 11g installed) as I get the data in the webpage consistently. After passing UAT, when we rolled out to Prod, getting this issue which we are unable to get what could be the reason.
    It is very hard to debug using GTT dynamically in prod. It takes time to get Oracle 11g installed in Prod.
    Can anyone suggest?
    Regards
    Deep

    935195 wrote:
    Also, I am opening the sub-page from the parent page (through a hyperlink). Then in this case, Would session will be changed from parent to subpage? (I am not aware exactly and have the impression that, as the second page is a child, I guess it would take the same session).I'm not sure what "sub-page" or "parent page" means to you. If you're just linking from one page to another, "parent" and "child" don't really make sense since page A links to page B and B links to A quite frequently.
    Assuming that you have to log in to access the site, it is likely that the two pages share the same middle tier application session. It is unlikely that the middle tier would hold the database session from the first request open waiting to see if the user eventually requested the second page. It is theoretically possible that you could code your middle tier this way but it is extremely unlikely that you would want to do so for a variety of reasons. So, when you say "would [the] session ... be changed", it is likely that the application session would be the same for both calls but that the database session would be different.
    Justin

  • TS/OI - problem with globals variable

    Hello all,
    I am in the middle of developing OI which uses some of our previously developed sequences/teststeps etc.
    When I do have sequence running directlly on TS - it performs without any problems;
    When I run it on OI I dont get some data i think stored mainly in global vi. I havent developed library, so I am not quite sure how it works, but I belive it is something like this :
    there is some .ocx file which handles all that - the handle/reference for that is kept in global vi. using this ocx we are also getting some data from text file (mainly addresses for communication) . Those addresses are then stored in stationglobals for TS to use them. 
    The problem is, that when I run that sequence on OI the addresses remain 0x0000, when i want to debug the vi it finds addresses normally. 
    Have anyone faced something like this? Or can have sugguestion what check (ie execution options, preload system etc ?)
    Thanks for help
    Regards,
    PacHOOk

    Can you expand on the following...
    [The problem is, that when I run that sequence on OI the addresses remain 0x0000, when i want to debug the vi it finds addresses normally]
    When you say, "when I want to debug the vi....."
    How are you doing this are you running in SeqEditor and LabVIEW development system?
    or
    Running in your OI with labVIEW development system?
    When it fails, with your OI are you using the LabVIEW RTE for your labVIEW Adaptor comfiguration or are you still using the LabVIEW development System.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Problems with Global Temparory Table

    {color:#0000ff}Hi,{color}
    {color:#0000ff}
    We are using Global Temporary tables in Store proc's.{color}
    {color:#0000ff}
    Created GTT Table with preserve rows on commit.{color}
    {color:#0000ff}
    we are inserting data into GTT using "Insert into Select" statement. The problem is GTT is not returning all the records. That is First run records count is 2176. After running consecutively 4 times, the record count is 49.
    we are not able to find the exact reason.
    Please let us know the reason and resolution for this issue.{color}

    I am not sure what type of GTT you have "COMMIT DELETE ROWS" or "COMMIT PRESERVE ROWS". I am guessing here, that you have GTT of "COMMIT DELETE ROWS". In this case once you have done the inserted and comitted then you will not see the record that you have just inserted. You can only see the record if you have not comitted.
    I think the procedure at first does inserts 2176 rows but the data is erased due to commit. And you see the last insert of 49 rows because you have not commited yet.
    If this is not the case then kindly post he script you are using. Regards

  • Problems with global variable!!

    Hi!
    I am using some cluster (global variable), and certain fields in the cluster don't be updated.I can't understand where is the problem, because some fields are updated correctly and others no!!
    Any idea?
    Thanks in advanced!!
    Graci

    A functional global acts as a global variable in that it allows LV applications to access the data from different parts of the vi or from different vis for as long a LV is running. The vi is set to not be reentrant so that race conditions are avoided. Since functional globals are subvis that you write you also have the ability to store many global variables which are dependent upon only one input by performing the calculations within the functional global vi. You can certainly achieve this by using semaphores, but with functional globals this synchronization is built in.
    In the functional global vi you have a while loop which is set to stop after 1 iteration. This while loop has a shift register which holds the global data. There is a cas
    e structure to determine whether to read or write the functional global variable. In the write case the data from the input is written to the shift register on the right side. In the read case the data from the left shift register is written to the output and also passed on through to the right shift register. A good example can be found at the following link.
    http://sine.ni.com/apps/we/niepd_web_display.DISPLAY_EPD4?p_guid=B45EACE3DB4956A4E034080020E74861&p_node=174821&p_submitted=N&p_rank=&p_answer=&p_source=External

  • Problem with global ExceptionHandler showing errors in a dialog box

    Our use case is that whenever an exception occurs, instead of going to the default text page which shows the exception (which can be custom designed using <error-page> in web.xml), the exception should be shown in an error popup dialog box on the same page. Now as I understand this is very easily achievable by creating your own class extending ExceptionHandlerWrapper (creating it's factory class and referencing it in faces-config.xml) and implementing it's handle() function. The following is the main code snippet (stripped-down):
        @Override
        public void handle() throws FacesException
            FacesContext fc = FacesContext.getCurrentInstance();
            //Handle unhandled exceptions only if we have a FacesContext & ViewRoot
            if (fc != null && fc.getViewRoot() != null) {
                Iterator<ExceptionQueuedEvent> it = getUnhandledExceptionQueuedEvents().iterator();
                while (it.hasNext()) {
                    ExceptionQueuedEvent event = it.next();
                    ExceptionQueuedEventContext ectx = event.getContext();
                    //Get the concerned exception
                    Throwable t = ectx.getException();
                    //Do not process JVM Errors
                    if (!(t instanceof VirtualMachineError)) {
                        //Log the exception
                        logger.error("Faces Handled Exception", t);
                        //Make ADF create a global error popup dialog
                        FacesMessage fm = new FacesMessage(t.toString());
                        fm.setSeverity(FacesMessage.SEVERITY_ERROR);
                        fc.addMessage(null, fm);
                        //Exception handled. Now remove it
                        it.remove();
            //Call parent handler to do whatever it wants
            getWrapped().handle();
        }This works perfectly when the page is loaded and some action triggers an exception. Where this does fail is when an exception occurs when a manual navigation or re-direct happens (I haven't tested it out for faces navigation though). In this case, where I would have seen a textual representation of the exception stack trace in the normal scenario, the exception gets handled by the exception handler, it gets FacesContext and UIViewRoot instances and add's the corresponding FacesMessage, but the message is never shown (probably because the page never got created since the exception happened in the middle of it's creation) and we get an empty page or the concerned component is not rendered (in the case of composite components). This is very bad for the user experience since the user doesn't know that an error has occurred and only the logs can specify that.
    I would like to know how can I detect the right time to add FacesMessage to FacesContext so to be sure that ADF will render it as a popup in the page. Whenever I detect it's not the right time, I'll let the parent handler handle it so that the user is shown the exception page.

    Hi,
    if this is not a generic ADF Faces questions but ADF and task flow related then read this: http://www.oracle.com/technetwork/issue-archive/2013/13-mar/o23adf-1897193.html
    Frank

  • Problem with global temporary table with rows

    Scenario :
    I need to create a table for generating a report in a oracle 10g database. Data population in the table depends on the parameter passed from front end.
    I have created global temporay table to achieve this. But use of same table by another user is not possible.
    I have created the global temporary table as follows:
    ''Create global temporay table xyz (a varchar2(10),b varchar2(10)) on commit preserve rows''

    You have not posted much details.
    But yes, global temporary tables are session specific. So other session won't see anything.
    Amardeep Sidhu
    http://amardeepsidhu.com/blog
    http://oracleadmins.wordpress.com

  • Problem with GLOBAL TEMPORARY TABLE  into SP

    im trying to create a temporary table into a sp but it show me an error , this is the store
    CREATE OR REPLACE PROCEDURE sp_sample IS
    BEGIN
    CREATE GLOBAL TEMPORARY TABLE tmp_datos_entrada
    ON COMMIT DELETE ROWS AS
         Select * from Customer where NAME = 'LOPEZ';
    END sp_sample

    Hi,
    You can't execute DDL directly in PL/SQL, it's not supported.
    You can, however, use Native Dynamic SQL to do this in the following manner:
    begin
       execute immediate 'create table t(x int)';
    end;You will need to use the autonomous_transaction pragma to maintain transactional integrity.
    But you may want to think about WHY you are doing this in a SP. You should probably just create the global temporary table as a permanent database object. It's refreshed on commit anyway -- I think you're missing the point slightly.
    cheers,
    Anthony

  • Problem with .DLL and global variables

    Hi,
    I need some helps to figure out my problem.
    I wrote a .dll file to open and run a GUI. When I run it at the first time, it is ok. When I call it again, there is an error "Pointer to free memory passed to library. It will be ok if I completely exit the program that calls the .dll before re-call it. I think there is some problems with global variables when I call another thread. How can I free global variables between threads. Is there any solution for this problem?
    Thanks

    Vinh Pham:
    Are you doing anything intentionally that frees your globals?
    CVI ships with an example program that demonstrates calling a DLL to create a user interface: guidll.cws.
    I made two simple modifications to guidll.cws.
    1. In guidll.c, I made hpanel global by moving its declaration from RunDLLUI() to right below the #include statements.
    2. In useguidll.c, I duplicated the lines calling RunDLLUI () and MessagePopup() to call the DLL gui twice.
    I built the project and ran it.  I had no problems with free'ed globals.
    Take a look at the guidll example.
    Can you either post your code or a modification to guidll that demonstrates the problem you're having?

  • Problem with exporting devices to non-global zone

    Hi,
    I've problem with exporting devices to my solaris zones (i try do add support to mount /dev/lofi/* in my non-global zone).
    A create cfg for my zone.
    Here it is:
    $ zonecfg -z sapdev info
    zonename: sapdev
    zonepath: /export/home/zones/sapdev
    brand: native
    autoboot: true
    bootargs:
    pool:
    limitpriv: default,sys_time
    scheduling-class:
    ip-type: shared
    fs:
    dir: /sap
    special: /dev/dsk/c1t44d0s0
    raw: /dev/rdsk/c1t44d0s0
    type: ufs
    options: []
    net:
    address: 194.29.128.45
    physical: ce0
    device
    match: /dev/lofi/1
    device
    match: /dev/rlofi/1
    device
    match: /dev/lofi/2
    device
    match: /dev/rlofi/2
    attr:
    name: comment
    type: string
    value: "This is SAP developement zone"
    global# lofiadm
    Block Device File
    /dev/lofi/1 /root/SAP_DB2_9_LUW.iso
    /dev/lofi/2 /usr/tmp/fsfile
    I reboot the non-global zone, even reboot global-zone, and after that, in sapdev zone, there is no /dev/*lofi/* files.
    What i do wrong? Maybe I reduce my sol 10 u4 sparc instalation too much.
    Can anybody help me?
    Thanks for help,
    Marek

    I experienced the same problem on my system Sol 10 08/07.
    Normally, when the zone enters the READY state during boot, it's zoneadmd will run devfsadm -z <zone>. In my understanding this is to create the necessary device files in ZONEPATH/dev.
    This worked well until recently. Now only the directories are still created.
    It seems as if devfsadm -z is broken. Somebody should issue a call to sun.
    As a workaround you can easily copy the device files into the zone. It is important not to copy the symbolic link but the target.
    # cp /dev/lofi/1 ZONEPATH/dev/lofi
    Hope this helps,
    Konstantin Gremliza

  • Global transaction problem with JDriver/Oracle and Oracle XA

    We are haveing serious problems with Container Managed Transactions on Bea 6.1
    and Oracle with EJB having set "Required" for all methods. We have tried in vain
    to make it work with JDriver as well as OracleXAClient. Both fail at sometime
    during the execution throwing "Not called in cotext of global transaction" (with
    JDriver) OR "XAER_PROTO : Routine was invoked in an
    inproper context start() failed on resource 'OracleXAPool'" (this one with oracle
    XA).
    1.) Weblogic JDriver-XA:
    DatabaseMetaData metaData = dataSource.getJDBCConnection.getMetaData();
    ResultSet resultSet = metaData.getTables(null, null, tableName.toUpperCase(),
    new String[]{"TABLE"});
    This fails immmediately saying that it was not called from global transaction.
    Interesting thing is that with OracleXA, it doesnt say this exception at this
    check point.
    2) Oracle XA
    Okie, we couldnot read through the CLOB using it so for reading CLOB, we used
    direct jdbc connection and then did away with it. Now all next sql queries were
    executed against oracle pool using XA data source with OracleXAClient. But at
    some point we again ran into the problem "XAER_PROTO : Routine was invoked in
    an
    inproper context start() failed on resource 'OracleXAPool'"
    3 Oracle Thin Driver
    everything always works with it.

    AFAIR this issue was resoved by moving tx opreations out from non-tx
    methods.
    Regards,
    Slava
    "Apurb Kumar" <[email protected]> wrote in message
    news:[email protected]...
    Jawad,
    It would be nice if you can post the full stack trace error message. Didyou try moving to
    the latest service pack (sp2) for WLS6.1.
    Thanks,
    Jawad Mahmood wrote:
    Yes we had correctly set TXDataSource and let it to point to the right
    connection
    pool each time and it worked well with oracle thin driver but not whenwe switched
    the pool to JDriver or OracleXAClient. Note that we could aways confirmthat pool
    was successfully created alongwith we could retrieve connection from itvia TXDatSource,
    things gave problem after we attempted to do what i had mentioned in mylast posting.
    >>
    Also with JBoss 2.4.4 things work pretty well. So couldnt be our codeproblem.
    "Slava Imeshev" <[email protected]> wrote:
    Jawad,
    Did you set up TxDataSource?
    Regards,
    Slava Imeshev
    "Jawad Mahmood" <[email protected]> wrote in message
    news:[email protected]...
    We are haveing serious problems with Container Managed Transactionson
    Bea 6.1
    and Oracle with EJB having set "Required" for all methods. We havetried
    in vain
    to make it work with JDriver as well as OracleXAClient. Both fail atsometime
    during the execution throwing "Not called in cotext of global
    transaction"
    (with
    JDriver) OR "XAER_PROTO : Routine was invoked in an
    inproper context start() failed on resource 'OracleXAPool'" (this onewith
    oracle
    XA).
    1.) Weblogic JDriver-XA:
    DatabaseMetaData _metaData =
    _dataSource.getJDBCConnection.getMetaData();
    ResultSet resultSet = metaData.getTables(null, null,tableName.toUpperCase(),
    new String[]{"TABLE"});
    This fails immmediately saying that it was not called from globaltransaction.
    Interesting thing is that with OracleXA, it doesnt say this exceptionat
    this
    check point.
    2) Oracle XA
    Okie, we couldnot read through the CLOB using it so for reading CLOB,we
    used
    direct jdbc connection and then did away with it. Now all next sqlqueries
    were
    executed against oracle pool using XA data source with
    OracleXAClient.
    But
    at
    some point we again ran into the problem "XAER_PROTO : Routine wasinvoked
    in
    an
    inproper context start() failed on resource 'OracleXAPool'"
    3 Oracle Thin Driver
    everything always works with it.
    Apurb Kumar

  • Problem with NSMutableString global

    Hi all,
    I'm having problems creating a global string that I can access and change as needed. I start by defining a mutable string in the header file like this...
    /* AppController.h */
    #import <Cocoa/Cocoa.h>
    extern NSMutableString *testString;
    @interface AppController : NSObject
    <snip>
    <snip>
    @end
    then declare it in the main file like this...
    // AppController.m
    #import "AppController.h"
    NSMutableString *testString = @"Hello string!";
    @implementation AppController
    <snip>
    @end
    Now, I don't have any problem displaying my simple "Hello string!" message in an NSTextField with:
    [nameField setStringValue:testString];
    but as soon as I try to change the fixed text to something else, using:
    testString = [addressField stringValue];
    or (even worse) using a direct assignment like...
    testString = anotherString;
    [nameField setStringValue:testString];
    then try to display it in the NSTextField using the previously successful code line, the compiler will generate errors (usually 'warning: assignment from distinct Objective-C type' or the even more confusing 'trying to mutate an immutable object') or the app will hang
    I'm obviously making a very fundamental error here, and I've searched the developer documentation and the net for info on this without any success. And possibly because the problem is so dumb and so basic that no-one even bothered to write it up yet... Can anyone tell me where I'm going wrong and how to achieve what I'm trying to do, please?
    Ernie

    Hi PsychoH13,
    First of all, you shouldn't use global variables. It's highly unadvised... So, don't use global
    variables.
    I agree that while it would be dumb to give every variable global scope (an extreme example), it surely is legitimate programming practice to use globals if the alternative would be say, to sacrifice simplicity by writing blocks of complex code to achieve the same goal.
    In the early programming days, there was a good argument to be made for avoiding globals whenever possible, in order to make best use of limited available memory in those older computers. But memory isn't really an issue with modern hardware nowadays -- yet the same 'rule' seems to have carried over to the present day.
    Personally I feel it's all a balancing act depending on the situation at the time. On the one hand, it's true we might violate the rule of least privelege. But by avoiding global scope under every circumstance, we then violate a principle of simplicity and have to write heaps of extra code to hang on to, and repeatedly pass the variable to where it's needed. And the more complex the code, the more likely we are to introduce errors, and the harder it becomes to read if/when we need to fix problems...
    Other arguments in favour of globals are (2) while we might use up a few extra bytes permanently hanging on to a global variable while the app runs, not using them means the app itself must become permanently bigger to accommodate our extra lines of code, and (3) since globals are a legitimate part of the official 'C' standard, why not make use of them (sparingly, of course) ?
    And it seems many big-league programmers feel the same. In Aaron Hillegass' book "Cocoa Programming For Mac OS X" he uses two globals in his preferences pane example, and says (quote):
    "...you could use the C pre-processor's #define command, but most Cocoa programmers use global variables for this purpose. Add the following lines to your PreferenceController.h file after the #import statement:
    extern NSString *BNRTableBgColorKey;
    extern NSString *BNREmptyDocKeyKey;
    "(end quote).
    So -- other than the fact that all Americans seem to have a major problem spelling the word 'colour' correctly -- I don't feel qualified to go against that and agree with the view that 'all globals == always bad'.
    Second of all, in Objective-C, it's not because you declare a variable as being a NSMutableString
    that it will be an NSMutableString. The type is determined at runtime and by the object that you
    assign. Here, a Objective-C string literal like this :
    @"my string"
    Is totally immutable, so if you try using methods of NSMutableString it won't work.
    Oh... okay... I see... <blink, blink>. Just when I thought I was cruising along with my Cocoa conversion, seems like I've just stepped on another conceptual land-mine about immutable strings literally being 'read-only' and mutable strings being 'read-write'. The issue was made even more confusing by the fact that I can alter a locally-declared mutable string in my test app without problem, but the same technique falls down when applied to strings with global scope.
    So, assuming you yourself needed a string that you could change frequently -- but still needed global access to it -- any tips on how'd you go about it, please?
    Thanks!
    Ernie

  • Problems with 11g Global Schema / Java API Test Programs

    Hi,
    In the process of trying to get the 11g sample java api programs up and running, I've encountered a problem. Having installed without error the sample schemas for documentation and set up the 11g version of the test code, I get this error when I try to run BuildAW11g.java
    Created the AW GLOBAL_AWJ
    Identifier "GLOBAL.CHANNEL_DIM.TOTAL_ID" is invalid.
         at
    oracle.olapi.syntax.parser.IdentifierResolver.error(Unknown Source)
         at oracle.olapi.syntax.SyntaxObject.validate(Unknown Source)
         at oracle.olapi.syntax.SyntaxObject.fromSyntax(Unknown Source)
         at oracle.olapi.syntax.SyntaxObject.fromSyntax(Unknown Source)
         at oracle.olapi.syntax.SyntaxObject.fromSyntax(Unknown Source)
         at oracle.olapi.examples.metadata.BuildAW11g.createDimension(BuildAW11g.java:470)
         at oracle.olapi.examples.metadata.BuildAW11g.run(BuildAW11g.java:120)
         at oracle.olapi.examples.BaseExample11g.execute(BaseExample11g.java:54)
         at oracle.olapi.examples.BaseExample11g.execute(BaseExample11g.java:74)
         at oracle.olapi.examples.metadata.BuildAW11g.main(BuildAW11g.java:989)
    This seems to indicate that there is a problem with the sample schema - that GLOBAL.CHANNEL_DIM.TOTAL_ID doesn't exist. Is that right?
    On the topic of the sample schemas, a quick question. The install script runs without error so presumably the tables described in the readme had been installed, but I'm not sure. How can I verify this? When I connect as global using Oracle SQL Developer and expand 'Tables' in the right hand pane, I don't see any tables at all. I would have (perhaps naively) expected to see the tables listed in the samples schemas readme, eg, CHANNEL_DIM. Should I have? If not, how can I view these tables? Thanks in advance for any input anyone may have.
    -exits

    After a reboot the "DHCP-check" is passed:
    INFO: Checking DetectIfDHCPAssignedIP
         This is a prerequisite condition to test whether the primary IP address of the system is DHCP-assiged or static.
    INFO: Detecting the IP.....:192.168.1.4
    INFO: Checking the network interface display name.... :eth0
    INFO: Checking the network reference name..... :eth0
    INFO: Checking the platform .......46
    INFO: Checking the LINUX vendor .... :enterprise
    INFO: Inspect interface file :/etc/sysconfig/network-scripts/ifcfg-eth0
    INFO: Check complete. The overall result of this check is: Passed
    But net configuration assistant is still failing.

Maybe you are looking for

  • Relationship between a Spark DropDownList's dataProvider and selectedItem

    I'm working on an existing project and have come across a somewhat complicated issue regarding a Spark DropDownList's (actually, a custom component inheriting from it) displayed item not changing when its dataProvider is updated. Here's the code for

  • Get rid of padding.

    How do I get rid of padding so the uploaded fill file populates the whole page? I want the uploaded image to fill the entire page, content area and background fill as well.

  • Evaluation Path Results change after ECC6 Upgrade

    Hi All, We have upgraded to ECC6 up to and including our QA environment. We are running an old java version of the MSS team viewer. We have a custom evaluation path, a modified version of SAP_MANG (Z_MANG) that we have been using for years. After upg

  • New monitor and old monitor on mac mini

    Hi I have a mac mini with a thunderbolt port and a new 27 inch led cinema display, i have an old moniter which is 20 inch and i believe has a DVI connection. Is there a way i can use this as a second monitor? Many Thanks

  • Advanced Programming Techniques?

    I recently learned about dynamic programming, and it's really helping me with programming contests and such. So I'm just wondering if there's anything else like dynamic programming that I've never heard of. I don't know what you call them, "technique