Issue with Global Vairable

Hello Experts,
I have Data Services job where I am using Global Variable, it is working fine from desinger but When I try to execute from Management Console, one of the Global Variable value comes as Null, everytime I have to change the value and execute my job,
Any idea why it is behaving like this.
Thanks,
Ravi

Are you presetting the value (properties->Global Variables) in Designer?
Or are you setting the value at run time in the code?
If you assign a value to the variable in Designer and then save the job, this same value should be used when you run the job in Management Console.  You can verify this in the management console before running the job by checking that the global variable value is still set.

Similar Messages

  • Scalability issue with global temporary table.

    Hi All,
    Does create global temporary table would lock data disctionary like create table? if yes would not it be a scalable issue with multi user environment?
    Thanks and Regards,
    Rudra

    Billy  Verreynne  wrote:
    acadet wrote:
    am I correct in interpreting your response that we should be using GTT's in favour of bulk operations and collections and in memory operations? No. I said collections cannot scale. This means due to the fact that collections reside in expensive PGA memory, you cannot stuff large data volumes into them. Thus they do not make an ideal storage bin for temporary data (e.g. data loaded from file or a web service). GTTs otoh do not suffer from the same restrictions, can be indexed and offer vastly better scalability and so on.
    Multiple passes are often needed using such a data structure. Or filtering to find specific data. As a GTT is a SQL native, it offers a lot more flexibility and performance in this regard.
    And this makes sense - as where do we put out persistent data? Also in tables, but ones of a persistent and not temporary kind like a GTT.
    Collections are pretty useful - but limited in size and capability.
    Rudra states:
    I want to pull out few metrices from differnt tables and processing itIf this can't be achieved in a SQL statement, unless Rudra is a master of understatement then I would see GTT's as a waste of IO and programming effort. I agree.
    My comments however were about choices for a temporary data storage bin in PL/SQL.I agree with your general comments regarding temporary storage bins in Oracle, but to say that collections don't scale is putting to narrow a definition on scaling. True, collections can be resource intensive in terms of memory and CPU requirements, but their persistence will generally be much shorter than other types of temporary storage. Given the right characteristics, collections will scale and given the wrong characteristics GTT's wont scale.
    As you say it is all about choice. Getting back to the theme of this thread though, the original poster should be made aware that well designed and well coded applications are most likely to scale. Creating tables on the fly is generally considered bad practice and letting the database do what it does best, join tables in queries at the SQL level is considered good practice. The rest lies somewhere in between and knowing when to do which is why we get paid the big bucks (not). ;-)
    Regards
    Andre

  • Issues with Global Address Book and Out of Office saying Exchange is Offline.

    So we have an Exchange 2010 server that has been running fine for quite a few years. We recently changed our firewall to an ASA 5510 and created all the firewall rules necessary to have email work through it. Everything works fine so naturally we thought
    everything was good to go.
    Then I started getting messages that the Out of Office wasn't working an that when users where trying to set their away message they would get a message from outlook that the exchange server was unavailable, yet when I
    check the outlook client it would say Connected to Microsoft Exchange at the bottom. I thought this was crazy so I started looking further into it and it turns out that the name for the server owa.xxxxxx.net points to a public address, which of course lives
    on the outside interface to the ASA. In ASA world it doesn't like private space (ie. 192.168.x.x) talking to the outside interface and drops the packets, where our old firewall did not. So as a short term fix I had the users using OWA site with a internal
    address to set their out of office message. This worked fine until today when I rebooted the email server and started getting support calls saying that when users where selecting the To: button in a new email that once again they were getting messages saying
    that they were not connected to exchange, yet they once again outlook said they were. I then started playing with the host name owa.xxxxxx.net again. This time I changed the hosts file on a box and pointed the internal IP of the exchange server to that
    host name. Restarted the outlook client and things started to work as they should. I have played with split DNS to see if this would help so I wouldn't have to do this with every client in the network, and it was promising until I realized that we many hosts
    that use this domain and an external DNS server that takes care of these requests that now the internal users will never reach. Funny part is that if we take one of our laptops out side the network everything works fine as well.
    So I'm guessing that some of the processes that connect Outlook to Exchange use the FQDN of the server or IP address, and that other things such as the Global Address Book and Out of Office use the External Host Name.
    Any help to point these request at the Internal FQDN/IP would be great, or if someone can think of another way of dealing with this issue would be greatly appreciated.

    Hi Titan,
    correct me if i have missed something but are users able to look up contacts in GAL?
    If you update (ex mobile number for a user) then run the following commands(one for each line):
       Get-GlobalAddressList | update-GlobalAddressList
       Get-AddressList | update-AddressList
    Get-OfflineAddressBook | Update-OfflineAddressBook
    Restart Your Outlook  in 5 min,then do a manual OAB download.Is info on that user updated?
    Does GAL from frm OWA?
    if im not wrong,Status and Out of Office use EWS for status update.
    Please run the following command:
    Get-WebServicesVirtualDirectory -Identity “mailserver01\EWS (Default Web Site)” |fl *internalUrl*
    where mailserver01 is the server that is having the issue.
    Then please check if internal URL is correct for that server (and those that are having issues.
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Off2work

  • Direct Path Loading Issues with Global Temporary Tables - OCI & OCILib

    I am writing some code to import data into a warehouse from a CPU grid which computes risk data. Due to the fact a computing grid is used there will be many clients which can load the data concurrently and at any point in time.
    Currently the import uses Binding in OCCI and chunking with a prepared statement to import the data into a global temporary table in a staging area after which a stored procedure is called within the same session which will process the data and load the data into a star schema.
    The GTT has the advantage that if any clients have issues no dirty data will be left and each client only sees their own instance of the data.
    I have been looking at using direct path loading to increase the performance of the load and have written some OCI code to perform the same task. I have manged to import the data into a regular heap based table using the OCI direct path apis. However when I try and use the same code to import against a Global Temporary Table I get an OCI Error (ORA-00600: internal error code, arguments: [6979], [16], [1], [1318528], [], [], [], [], [], [], [], [])
    I get error when the function OCIDirPathPrepare is executed. The same issue occurs in both OCI and OCILib.
    Is it not possible to use Direct Path Loading against a Global Temporry Table ? Because you can use the /*+ APPEND */ hint and load global temporary tables this way from tools like SQL Devloper / toad which is surely informing the SQL Engine to use Direct Path ?
    Looking at the table USER_OBJECTS I can see that for a Global Temporary Table the DATA_OBJECT_ID is null. Does this mean that it is impossible to us a direct path load into Global Temporary Tables ?
    Any ideas / suggestions would be really appreciated. If this means redesigning the application then I would appreciate suggestions which would allow many client to quick write processes in a parallel fashion. If this means creating a new parition in a Heap Table for each writer and direct path loading into this table then so be it.
    Thanks
    H
    Edited by: 813640 on 19-Nov-2010 11:08

    Replying to my own message in case anyone else is interested.
    I have now managed to successfully load data using direct path into a global temporary table with OCI. There appears to be no reason why this approach will not work.
    I loaded data into the temporary table and then issued a select count(*) on the table from within the session and from a new session. The results were as expected.
    The resaon for the ORA-006000 error was due to the fact that I had enabled table level parallel loading
    ie
    OCIAttrSet((dvoid *) context, (ub4) OCI_HTYPE_DIRPATH_CTX, *(ub1) 1*, (ub4)0, (ub4) OCI_ATTR_DIRPATH_PARALLEL, errhp)
    When loading a Global Temporary Table the OCI_ATTR_DIRPATH_PARALLEL attribute needs to be zero
    This makes sense, since the temp table does not have any partitions so it would not be possible to write in parallel to multiple paritions.
    Edited by: 813640 on 22-Nov-2010 08:42

  • Issue with Global variable in FM

    Hi experts,
    I have created  two functional modules under same function group and declared the internal table (ITAB)as global variable ,
    i have populated the data to to  ITAB n first function module , and  These FM are used in a program , when i debug the program , the data is populated to 1st FM and but in  2nd function module the ITAB is null only internal table structure is available.
    please let me know the reason.
    Thanks NK

    thanks all, the program ( it also an FM)  ,which is calling the 2nd FM is in background mode, i think thats the reason ITAB values are not populated.
    i ts working fine with IMPORT/EXPORT but my lead says it is not advisable and they are obsolete in ECC 6.0,
    ---> declated iTAB as global variable.
    ---> call FM1 --populate itab
    call function " MAIN_FM" in update task.
       ---> fm2 cllaed in side MAIN_FM,   ( here values not populated)
    please suggest global variable not filled incase of background mode.
    thanks
    NK

  • MGE - issues with pers. actions for delegation in ECC6.0 - management of global employees

    Hi experts,
    during implementation of MGE at my client we are facing issues with the personnel actions for delegation.
    We were using the standard actions as follows, without success.
    action Expatriation planning (81), IG 92 via PA40 --> new persno. has been created successfully, empl. status has been set to withdrawn, IT715 "host" has been set to "planned", IT710 has been filled (required fields only, no admin, no manager, no sending pers. assignment info), all payroll relevant ITs have been skipped (706 + 707)
    IT715 has been set to "to be activated" via PA30
    running of report RPMGE_Activation for newly created persno.(assignment nr), pers. action 82 Activation in host country, IG GE --> following ISSUES occure:
    Action can not be executed via PA40 (is this normal behaviour?)
    when running with report, employm. status changed to active
    IT715 "host" has not been changed updated in status (should have been updated to "in progress", right?)
    IT715 "home" has not been created (correct?)
    IT710 has not changed
    Background information:
    > Switch MAINS is activated
    > We are not going to use global payroll! No switch has been activated. Payroll will always run in home country, so the client does not want to use any of the py relevant ITs dealing with global employment.
    Many thanks + best wishes,
    Evelyn

    Hi experts,
    short update on our issue:
    After several times of trying the same thing, the report worked out fine as it should for 82 and also in the next step for 83. IT715 is going to be updated correctly. We need to work with the report and not with PA40.
    Some open questions remain:
    - Set home assignment to active during delegation (not to inactive for payroll reasons in home country)
    Documentation for RPMGE_Activation says
    Home Activation (Active) (84)
    Same process as described above, excpet that in the third step, the Employment Status field in infotype Action (0000) is set to Active if there are any trailing payments in the home country.
    We understand that 84 is identical to 83 but employment status is different.
    For action 84 a different IG is underlying (93) than for 83 (GE) and also it is called "Change expat.planning". The Action does not seem to work with the report as well.
    >> Is this correct? Do we need to create our own Home Activation (Active) Action by coping 83, changing the employment status setting?
    How do we need to configure Feature ACTCE then? EXPATACTHOME would need to have 2 entires at the end, no?
    - End of delegation
    Which actions are used for end of delegation? Are there standard once that we could not find?
    We would like to set the host country to withdrawn and the home country back to active (also change of employee group in this case).
    Also using the logic of IT715, is there any automatic way of changing the host country record to status completed, or would we use an exit action, including IT715 and set status manually?
    Same question for home country.
    Many Thanks,
    Evelyn

  • ACS 5.2 Authentication Issue with Local & Global ADs

    Hi I am facing authentication issue with ACS 5.2. Below is AAA flow (EAP-TLS),
    - Wireless Users >> Cisco WLC >> ADs <-- everything OK
    - Wireless Users >> Cisco WLC >> ACS 5.2 >> ADs <-- problem
    Last time I tested with ACS, it worked but didn't do migration as there'll be changes from ADs.
    Now my customer wants ACS migration by creating new Group in AD, I also update ACS config.
    For the user from the old group, authentication is ok.
    For the user from the new group, authentication fails. With subject not found error, showing the user is from the old group.
    Seems like ACS is querying from old records (own cache or database). Already restared the ACS but still the same error.
    Can anyone advice to troubleshoot the issue?
    Note: My customer can only access their local ADs (trusted by Global ADs). Local ADs & ACS are in the same network, ACS should go to local AD first.
    How can we check or make sure it?
    Thanks ahead,
    Ye

    Hello,
    There is an enhacement request open already:
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCte92062
    ACS should be able to query only desired DCs
    Symptom:
    Currently on 5.0 and 5.1, the ACS queries the  DNS with the domain, in order to get a list of all the DCs in the domain  and then tries to communicate with all of them.If the connection to even one DC fails, then the ACS connection to the domain is declared as failed.A lot of customers are asking for a change on this behavior.
    It  should be possible to define which DCs to contact and/or make ACS to  interpret  DNS Resource Records Registered by the Active Directory  Domain Controller to facilitate the location of domain controllers.  Active Directory uses service locator, or SRV, records. An SRV record is  a new type of DNS record described in RFC 2782, and is used to identify  services located on a Transmission Control Protocol/Internet Protocol  (TCP/IP) network.
    Conditions:
    Domain with multiple DCs were some are not accessible from the ACS due to security/geographic constraints.
    Workaround:
    Make sure ALL DCs are UP and reachable from the ACS.
    At the moment, we cannot determine which Domain Controller on the AD the ACS will contact. The enhacement request will include a feature on which we can specify the appropriate the Domain Controllers the ACS should contact on a AD Domain.
    Hope this clarifies it.
    Regards.

  • Issue with mouseListener / global variables

    So in my project, im having an issue with incrementing a counter using mouseListener. i have 2 windows pop up telling the user whose turn it is and then that players dice roll. after this i want the program to wait untill the player moves their piece. after they have moved their full move, it should go on to the next player. the issue im having is getting the program to wait for the player to make his moves, and i cant quite get it to work. it either skips the move and goes to the next player or never sees that the player has moved fully.
    public int getTurnsLeft(){
    return turnsLeft;
    public void setTurnsLeft(int newTurnsLeft){
    turnsLeft = newTurnsLeft;
    }these are what im using for both my mouseListener release method and my playTurn method to get and set the number of moves left.
    public void mouseReleased(MouseEvent e) {
              if(playerPiece == null) return;
              playerPiece.setVisible(false);
              Component c =  playBoard.findComponentAt(e.getX(), e.getY());
              if (c instanceof JLabel){
                   Container parent = c.getParent();
                   parent.add(playerPiece);
                   setTurnsLeft(getTurnsLeft() + 1);
                   System.out.println(getTurnsLeft());
              else {
                   Container parent = (Container)c;
                   parent.add(playerPiece);
                   setTurnsLeft(getTurnsLeft() + 1);
                   System.out.println(getTurnsLeft());
              playerPiece.setVisible(true);
         }mouse release method
         public void playTurn(){
              JOptionPane.showMessageDialog(null, "Player " + this.getPlayerNum() + "'s turn");
              int turns = (int)diceRoll();
              this.setMoveCount(turns);
              System.out.println(turns);
              int turnCheck = 0;
              while(turnCheck == 0){
                   System.out.print(getTurnsLeft());
                   if(getTurnsLeft() < turns)
                        turnCheck = 0;
                   else
                        turnCheck = 1;
              setTurnsLeft(0);
         }play turn method
    when i run this, the mouseRelease method can modify turnsLeft and get back the correct number, but in the playTurn method, i only get 0, which is what turnsLeft starts at. shouldnt they both get the same value, since there getting the value from the same source? or is the while loop the issue here?

    Your turnsLeft is really deceptively named, it is actually the number of steps taken during the current turn. Better rename it for clarity.
    The problem seems to be in your threading, I don't see how the while loop can end ('never sees that the player has moved fully'?) unless the diceRoll returns zero ('skips the move').
    What you should do is print out that diceRoll for more information (why doesn't it return an int? Use random.nextInt(maxSteps) + 1).
    And probably the end-of-turn check should be in setTurnsLeft(). You need to store the 'number of step this turn' as a class variable.
    So rename:
    playTurn -> startTurn
    turns -> steps
    turnsLeft -> stepsTaken
    setTurnsLeft(int) -> completeStep() which checks if stepsTaken >= steps and if yes calls completeTurn() which can check for a win or call the other players startTurn().

  • Issue with Wireless AP.

    Hi All,
    Greetings. 
    we have an issue with user who says that he is unable to connect to AP and he need to re-boot it everytime to re-connect to it.
    But when i check from WLC all the AP uptime is more than 150 days and the AP associate time of respective AP's is also more than 150 days.we are using cisco AIR-CT2504-K9 wlc and all the AP's are connected to Cisco 3750X and cisco4510R+E.please suggest.
    pasting logs from wlc below.
    Tue Feb 26 17:06:05 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 207) for client 88:53:95:7b:8f:56 / user 'unknown'
    1 Tue Feb 26 17:06:05 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    2 Tue Feb 26 17:06:05 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    3 Tue Feb 26 17:06:05 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 206) for client 60:c5:47:44:4d:d7 / user 'unknown'
    4 Tue Feb 26 17:06:05 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 191) for client 88:53:95:7b:8f:56 / user 'unknown'
    5 Tue Feb 26 17:06:05 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    6 Tue Feb 26 17:06:05 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    7 Tue Feb 26 17:06:05 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 190) for client 60:c5:47:44:4d:d7 / user 'unknown'
    8 Tue Feb 26 16:51:24 2013 User guest logged Out. Client MAC:8c:a9:82:ae:a2:4a, Client IP:10.40.101.33, AP MAC:0c:85:25:c7:dc:e0, AP Name:NTW100-AP07
    9 Tue Feb 26 16:45:16 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    10 Tue Feb 26 16:45:16 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    11 Tue Feb 26 16:45:16 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 44) for client 10:40:f3:5e:3b:26 / user 'unknown'
    12 Tue Feb 26 16:45:16 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    13 Tue Feb 26 16:45:16 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    14 Tue Feb 26 16:45:16 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 204) for client 10:40:f3:5e:3b:26 / user 'unknown'
    15 Tue Feb 26 16:05:29 2013 RADIUS server 10.12.2.34:1813 activated in global list
    16 Tue Feb 26 16:05:29 2013 RADIUS server 10.12.2.33:1813 deactivated in global list
    17 Tue Feb 26 16:05:29 2013 RADIUS server 10.12.2.33:1813 deactivated in global list
    18 Tue Feb 26 16:05:29 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 113) for client b8:c7:5d:e0:48:be / user 'unknown'
    19 Tue Feb 26 16:05:29 2013 RADIUS server 10.12.2.33:1813 activated in global list
    20 Tue Feb 26 16:05:29 2013 RADIUS server 10.19.3.104:1813 deactivated in global list
    21 Tue Feb 26 16:05:29 2013 RADIUS server 10.19.3.104:1813 deactivated in global list
    22 Tue Feb 26 16:05:29 2013 RADIUS server 10.19.3.104:1813 failed to respond to request (ID 132) for client b8:c7:5d:e0:48:be / user 'unknown'
    23 Tue Feb 26 16:05:17 2013 User guest logged Out. Client MAC:00:22:fa:95:d2:58, Client IP:10.40.101.69, AP MAC:0c:85:25:c7:dc:e0, AP Name:NTW100-AP07
    24 Tue Feb 26 15:42:36 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    25 Tue Feb 26 15:42:36 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    26 Tue Feb 26 15:42:36 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 111) for client 7c:c5:37:18:ca:2b / user 'unknown'
    27 Tue Feb 26 15:35:53 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 247) for client 68:a8:6d:e9:7d:36 / user 'unknown'
    28 Tue Feb 26 15:35:53 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    29 Tue Feb 26 15:35:53 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    30 Tue Feb 26 15:35:53 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 246) for client 68:a8:6d:e9:7d:36 / user 'unknown'
    31 Tue Feb 26 15:35:53 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 137) for client 68:a8:6d:e9:7d:36 / user 'unknown'
    32 Tue Feb 26 15:35:53 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    33 Tue Feb 26 15:35:53 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    34 Tue Feb 26 15:35:53 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 136) for client 68:a8:6d:e9:7d:36 / user 'unknown'
    35 Tue Feb 26 15:06:17 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    36 Tue Feb 26 15:06:17 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    37 Tue Feb 26 15:06:17 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 67) for client 24:ab:81:af:2f:da / user 'unknown'
    38 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    39 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    40 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 245) for client b8:17:c2:49:d5:37 / user 'unknown'
    41 Tue Feb 26 14:49:54 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 229) for client c0:9f:42:65:37:af / user 'unknown'
    42 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    43 Tue Feb 26 14:49:54 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    44 Tue Feb 26 14:49:54 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 230) for client 60:fa:cd:b6:f6:d6 / user 'unknown'
    45 Tue Feb 26 14:49:54 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    46 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    47 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 228) for client b8:17:c2:49:d5:37 / user 'unknown'
    48 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 243) for client c0:9f:42:65:37:af / user 'unknown'
    49 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    50 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    51 Tue Feb 26 14:49:54 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 242) for client 60:fa:cd:b6:f6:d6 / user 'unknown'
    52 Tue Feb 26 14:14:41 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 227) for client 0c:77:1a:a7:97:6e / user 'unknown'
    53 Tue Feb 26 14:14:41 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    54 Tue Feb 26 14:14:41 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    55 Tue Feb 26 14:14:41 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 226) for client 0c:77:1a:a7:97:6e / user 'unknown'
    56 Tue Feb 26 14:14:41 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 226) for client 0c:77:1a:a7:97:6e / user 'unknown'
    57 Tue Feb 26 14:14:41 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    58 Tue Feb 26 14:14:41 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    59 Tue Feb 26 14:14:41 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 225) for client 0c:77:1a:a7:97:6e / user 'unknown'
    60 Tue Feb 26 14:13:57 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    61 Tue Feb 26 14:13:57 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    62 Tue Feb 26 14:13:57 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 34) for client ec:85:2f:a2:4d:ba / user 'unknown'
    63 Tue Feb 26 14:13:57 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    64 Tue Feb 26 14:13:57 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    65 Tue Feb 26 14:13:57 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 225) for client ec:85:2f:a2:4d:ba / user 'unknown'
    66 Tue Feb 26 13:22:55 2013 Radar signals have been cleared on channel 52 by 802.11a radio with MAC: 00:1f:ca:cc:f0:00 and slot 1
    67 Tue Feb 26 13:20:02 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 214) for client e8:8d:28:7f:0e:5a / user 'unknown'
    68 Tue Feb 26 13:20:02 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    69 Tue Feb 26 13:20:02 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    70 Tue Feb 26 13:20:02 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 213) for client e8:8d:28:7f:0e:5a / user 'unknown'
    71 Tue Feb 26 13:20:02 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 33) for client e8:8d:28:7f:0e:5a / user 'unknown'
    72 Tue Feb 26 13:20:02 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    73 Tue Feb 26 13:20:02 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    74 Tue Feb 26 13:20:02 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 32) for client e8:8d:28:7f:0e:5a / user 'unknown'
    75 Tue Feb 26 12:52:55 2013 AP's Interface:1(802.11a) Operation State Up: Base Radio MAC:00:1f:ca:cc:f0:00 Cause=Radio channel set. Status:NA
    76 Tue Feb 26 12:52:54 2013 AP's Interface:1(802.11a) Operation State Down: Base Radio MAC:00:1f:ca:cc:f0:00 Cause=Radio channel set. Status:NA
    77 Tue Feb 26 12:52:54 2013 Radar signals have been detected on channel 52 by 802.11a radio with MAC: 00:1f:ca:cc:f0:00 and slot 1
    78 Tue Feb 26 12:48:34 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 164) for client 7c:c5:37:18:ca:2b / user 'unknown'
    79 Tue Feb 26 12:48:34 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    80 Tue Feb 26 12:48:34 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    81 Tue Feb 26 12:48:34 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 163) for client 7c:c5:37:18:ca:2b / user 'unknown'
    82 Tue Feb 26 12:48:34 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 212) for client 7c:c5:37:18:ca:2b / user 'unknown'
    83 Tue Feb 26 12:48:34 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    84 Tue Feb 26 12:48:34 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    85 Tue Feb 26 12:48:34 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 211) for client 7c:c5:37:18:ca:2b / user 'unknown'
    86 Tue Feb 26 12:45:09 2013 AP NTW100-AP07[1] (0c:85:25:c7:dc:e0) Device ID: 0x2019, Type: WiFi Invalid Channel[31], Severity: 2, Channels: 161, Cluster ID: 1c:75:a0:02:41:22, Previous Cluster ID: 1c:75:a0:02:41:22, Event: Clear
    87 Tue Feb 26 12:42:07 2013 AP NTW100-AP07[1] (0c:85:25:c7:dc:e0) Device ID: 0x2019, Type: WiFi Invalid Channel[31], Severity: 3, Channels: 161, Cluster ID: 1c:75:a0:02:41:22, Previous Cluster ID: 1c:75:a0:02:41:22, Event: Set
    88 Tue Feb 26 12:41:25 2013 AP NTW100-AP07[1] (0c:85:25:c7:dc:e0) Device ID: 0x2018, Type: WiFi Invalid Channel[31], Severity: 2, Channels: 161, Cluster ID: 1c:75:a0:02:41:22, Previous Cluster ID: 1c:75:a0:02:41:22, Event: Clear
    89 Tue Feb 26 12:37:38 2013 AP NTW100-AP07[1] (0c:85:25:c7:dc:e0) Device ID: 0x2018, Type: WiFi Invalid Channel[31], Severity: 2, Channels: 161, Cluster ID: 1c:75:a0:02:41:22, Previous Cluster ID: 1c:75:a0:02:41:22, Event: Set
    90 Tue Feb 26 12:35:47 2013 AP NTW100-AP07[1] (0c:85:25:c7:dc:e0) Device ID: 0x2017, Type: WiFi Invalid Channel[31], Severity: 2, Channels: 161, Cluster ID: 1c:75:a0:02:41:01, Previous Cluster ID: 1c:75:a0:02:41:01, Event: Clear
    91 Tue Feb 26 12:20:01 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 115) for client e8:8d:28:7f:0e:5a / user 'unknown'
    92 Tue Feb 26 12:20:01 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    93 Tue Feb 26 12:20:01 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    94 Tue Feb 26 12:20:01 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 114) for client e8:8d:28:7f:0e:5a / user 'unknown'
    95 Tue Feb 26 12:20:01 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 162) for client e8:8d:28:7f:0e:5a / user 'unknown'
    96 Tue Feb 26 12:20:01 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    97 Tue Feb 26 12:20:01 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    98 Tue Feb 26 12:20:01 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 161) for client e8:8d:28:7f:0e:5a / user 'unknown'
    99 Tue Feb 26 12:18:26 2013 User inventiv-guest logged in. Client MAC:8c:a9:82:ae:a2:4a, Client IP:10.40.101.33, AP MAC:0c:85:25:c7:dc:e0, AP Name:NTW100-AP07
    100 Tue Feb 26 12:11:01 2013 RADIUS server 10.12.50.52:1813 failed to respond to request (ID 106) for client a4:67:06:dd:ed:6a / user 'unknown'
    101 Tue Feb 26 12:11:01 2013 RADIUS server 10.19.3.104:1813 activated in global list
    102 Tue Feb 26 12:11:01 2013 RADIUS server 10.12.50.52:1813 deactivated in global list
    103 Tue Feb 26 12:11:01 2013 RADIUS server 10.12.50.52:1813 deactivated in global list
    104 Tue Feb 26 12:11:01 2013 RADIUS server 10.12.50.52:1813 failed to respond to request (ID 105) for client a4:67:06:dd:ed:6a / user 'unknown'
    105 Tue Feb 26 12:11:01 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 108) for client a4:67:06:dd:ed:6a / user 'unknown'
    106 Tue Feb 26 12:11:01 2013 RADIUS server 10.12.50.52:1813 activated in global list
    107 Tue Feb 26 12:11:01 2013 RADIUS server 10.19.3.108:1813 deactivated in global list
    108 Tue Feb 26 12:11:01 2013 RADIUS server 10.19.3.108:1813 deactivated in global list
    109 Tue Feb 26 12:11:01 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 107) for client a4:67:06:dd:ed:6a / user 'unknown'
    110 Tue Feb 26 12:10:12 2013 AP NTW100-AP07[1] (0c:85:25:c7:dc:e0) Device ID: 0x2017, Type: WiFi Invalid Channel[31], Severity: 0, Channels: 161, Cluster ID: 1c:75:a0:02:41:01, Previous Cluster ID: 1c:75:a0:02:41:01, Event: Set
    111 Tue Feb 26 11:45:29 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 68) for client 28:e0:2c:38:64:b3 / user 'unknown'
    112 Tue Feb 26 11:45:29 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    113 Tue Feb 26 11:45:29 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    114 Tue Feb 26 11:45:29 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 67) for client 28:e0:2c:38:64:b3 / user 'unknown'
    115 Tue Feb 26 11:45:29 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 113) for client 28:e0:2c:38:64:b3 / user 'unknown'
    116 Tue Feb 26 11:45:29 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    117 Tue Feb 26 11:45:29 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    118 Tue Feb 26 11:45:29 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 112) for client 28:e0:2c:38:64:b3 / user 'unknown'
    119 Tue Feb 26 11:42:27 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    120 Tue Feb 26 11:42:27 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    121 Tue Feb 26 11:42:27 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 183) for client 7c:c5:37:18:ca:2b / user 'unknown'
    122 Tue Feb 26 11:14:06 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    123 Tue Feb 26 11:14:06 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    124 Tue Feb 26 11:14:06 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 65) for client 7c:c5:37:18:ca:2b / user 'unknown'
    125 Tue Feb 26 11:06:56 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 93) for client ec:85:2f:a2:4d:ba / user 'unknown'
    126 Tue Feb 26 11:06:56 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    127 Tue Feb 26 11:06:56 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    128 Tue Feb 26 11:06:56 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 92) for client ec:85:2f:a2:4d:ba / user 'unknown'
    129 Tue Feb 26 11:06:56 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 200) for client ec:85:2f:a2:4d:ba / user 'unknown'
    130 Tue Feb 26 11:06:56 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    131 Tue Feb 26 11:06:56 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    132 Tue Feb 26 11:06:56 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 199) for client ec:85:2f:a2:4d:ba / user 'unknown'
    133 Tue Feb 26 10:54:54 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    134 Tue Feb 26 10:54:54 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    135 Tue Feb 26 10:54:54 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 16) for client 34:15:9e:f0:00:bf / user 'unknown'
    136 Tue Feb 26 10:54:54 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    137 Tue Feb 26 10:54:54 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    138 Tue Feb 26 10:54:54 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 90) for client 34:15:9e:f0:00:bf / user 'unknown'
    139 Tue Feb 26 10:46:56 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    140 Tue Feb 26 10:46:56 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    141 Tue Feb 26 10:46:56 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 38) for client ec:85:2f:eb:d0:0b / user 'unknown'
    142 Tue Feb 26 10:46:56 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    143 Tue Feb 26 10:46:56 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    144 Tue Feb 26 10:46:56 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 15) for client ec:85:2f:a2:4d:ba / user 'unknown'
    145 Tue Feb 26 10:46:56 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 31) for client 60:fa:cd:b6:f6:d6 / user 'unknown'
    146 Tue Feb 26 10:46:56 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    147 Tue Feb 26 10:46:56 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    148 Tue Feb 26 10:46:56 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 32) for client ec:85:2f:eb:d0:0b / user 'unknown'
    149 Tue Feb 26 10:46:56 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 35) for client ec:85:2f:a2:4d:ba / user 'unknown'
    150 Tue Feb 26 10:46:56 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    151 Tue Feb 26 10:46:56 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    152 Tue Feb 26 10:46:56 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 34) for client 60:fa:cd:b6:f6:d6 / user 'unknown'
    153 Tue Feb 26 10:41:10 2013 AP NTW100-AP17[0] (18:33:9d:b7:a0:70) Device ID: 0x319a, Type: WiFi Invalid Channel[31], Severity: 2, Channels: 6, Cluster ID: 1c:75:a0:02:40:c7, Previous Cluster ID: 1c:75:a0:02:40:c7, Event: Clear
    154 Tue Feb 26 10:38:54 2013 AP NTW100-AP17[0] (18:33:9d:b7:a0:70) Device ID: 0x319a, Type: WiFi Invalid Channel[31], Severity: 2, Channels: 6, Cluster ID: 1c:75:a0:02:40:c7, Previous Cluster ID: 1c:75:a0:02:40:c7, Event: Set
    155 Tue Feb 26 10:24:39 2013 AP NTW100-AP17[0] (18:33:9d:b7:a0:70) Device ID: 0x3197, Type: WiFi Invalid Channel[31], Severity: 2, Channels: 6, Cluster ID: 1c:75:a0:02:40:c1, Previous Cluster ID: 1c:75:a0:02:40:c1, Event: Clear
    156 Tue Feb 26 10:22:46 2013 AP NTW100-AP17[0] (18:33:9d:b7:a0:70) Device ID: 0x3197, Type: WiFi Invalid Channel[31], Severity: 2, Channels: 6, Cluster ID: 1c:75:a0:02:40:c1, Previous Cluster ID: 1c:75:a0:02:40:c1, Event: Set
    157 Tue Feb 26 10:15:02 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 13) for client b4:f0:ab:06:25:b6 / user 'unknown'
    158 Tue Feb 26 10:15:02 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    159 Tue Feb 26 10:15:02 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    160 Tue Feb 26 10:15:02 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 12) for client b4:f0:ab:06:25:b6 / user 'unknown'
    161 Tue Feb 26 10:15:02 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 30) for client b4:f0:ab:06:25:b6 / user 'unknown'
    162 Tue Feb 26 10:15:02 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    163 Tue Feb 26 10:15:02 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    164 Tue Feb 26 10:15:02 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 29) for client b4:f0:ab:06:25:b6 / user 'unknown'
    165 Tue Feb 26 09:59:58 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 38) for client ec:85:2f:eb:d0:0b / user 'unknown'
    166 Tue Feb 26 09:59:58 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    167 Tue Feb 26 09:59:58 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    168 Tue Feb 26 09:59:58 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 37) for client ec:85:2f:eb:d0:0b / user 'unknown'
    169 Tue Feb 26 09:59:58 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 11) for client ec:85:2f:eb:d0:0b / user 'unknown'
    170 Tue Feb 26 09:59:58 2013 RADIUS server 10.19.3.108:1813 activated on WLAN 1
    171 Tue Feb 26 09:59:58 2013 RADIUS server 10.12.2.33:1813 deactivated on WLAN 1
    172 Tue Feb 26 09:59:58 2013 RADIUS server 10.12.2.33:1813 failed to respond to request (ID 10) for client ec:85:2f:eb:d0:0b / user 'unknown'
    173 Tue Feb 26 09:49:25 2013 RADIUS server 10.12.2.33:1813 activated on WLAN 1
    174 Tue Feb 26 09:49:25 2013 RADIUS server 10.12.2.34:1813 deactivated on WLAN 1
    175 Tue Feb 26 09:49:25 2013 RADIUS server 10.12.2.34:1813 failed to respond to request (ID 156) for client 8c:58:77:8e:a3:f6 / user 'unknown'
    176 Tue Feb 26 09:46:41 2013 RADIUS server 10.12.2.34:1813 activated on WLAN 1
    177 Tue Feb 26 09:46:41 2013 RADIUS server 10.19.3.108:1813 deactivated on WLAN 1
    178 Tue Feb 26 09:46:41 2013 RADIUS server 10.19.3.108:1813 failed to respond to request (ID 16) for client 24:ab:81:af:2f:da / user 'unknown'

    Can you post the output to the command "debug client "?
    Can you try if the client has any issues if he was connected to an SSID with OPEN authentication?
    Is the wireless NIC drivers updated?

  • Performance issues with version enable partitioned tables?

    Hi all,
    Are there any known performance issues with version enable partitioned tables?
    I’ve been doing some performance testes with a large version enable partitioned table and it seems that OCB optimiser is choosing very expensive plans during merge operations.
    Tanks in advance,
    Vitor
    Example:
         Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    UPDATE STATEMENT Optimizer Mode=CHOOSE          1          249                    
    UPDATE     SIG.SIG_QUA_IMG_LT                                   
    NESTED LOOPS SEMI          1     266     249                    
    PARTITION RANGE ALL                                   1     9
    TABLE ACCESS FULL     SIG.SIG_QUA_IMG_LT     1     259     2               1     9
    VIEW     SYS.VW_NSO_1     1     7     247                    
    NESTED LOOPS          1     739     247                    
    NESTED LOOPS          1     677     247                    
    NESTED LOOPS          1     412     246                    
    NESTED LOOPS          1     114     244                    
    INDEX RANGE SCAN     WMSYS.MODIFIED_TABLES_PK     1     62     2                    
    INDEX RANGE SCAN     SIG.QIM_PK     1     52     243                    
    TABLE ACCESS BY GLOBAL INDEX ROWID     SIG.SIG_QUA_IMG_LT     1     298     2               ROWID     ROW L
    INDEX RANGE SCAN     SIG.SIG_QUA_IMG_PKI$     1          1                    
    INDEX RANGE SCAN     WMSYS.WM$NEXTVER_TABLE_NV_INDX     1     265     1                    
    INDEX UNIQUE SCAN     WMSYS.MODIFIED_TABLES_PK     1     62                         
    /* Formatted on 2004/04/19 18:57 (Formatter Plus v4.8.0) */                                        
    UPDATE /*+ USE_NL(Z1) ROWID(Z1) */sig.sig_qua_img_lt z1                                        
    SET z1.nextver =                                        
    SYS.ltutil.subsversion                                        
    (z1.nextver,                                        
    SYS.ltutil.getcontainedverinrange (z1.nextver,                                        
    'SIG.SIG_QUA_IMG',                                        
    'NpCyPCX3dkOAHSuBMjGioQ==',                                        
    4574,                                        
    4575                                        
    4574                                        
    WHERE z1.ROWID IN (
    (SELECT /*+ ORDERED USE_NL(T1) USE_NL(T2) USE_NL(J2) USE_NL(J3)
    INDEX(T1 QIM_PK) INDEX(T2 SIG_QUA_IMG_PKI$)
    INDEX(J2 WM$NEXTVER_TABLE_NV_INDX) INDEX(J3 MODIFIED_TABLES_PK) */
    t2.ROWID
    FROM (SELECT /*+ INDEX(WM$MODIFIED_TABLES MODIFIED_TABLES_PK) */
    UNIQUE VERSION
    FROM wmsys.wm$modified_tables
    WHERE table_name = 'SIG.SIG_QUA_IMG'
    AND workspace = 'NpCyPCX3dkOAHSuBMjGioQ=='
    AND VERSION > 4574
    AND VERSION <= 4575) j1,
    sig.sig_qua_img_lt t1,
    sig.sig_qua_img_lt t2,
    wmsys.wm$nextver_table j2,
    (SELECT /*+ INDEX(WM$MODIFIED_TABLES MODIFIED_TABLES_PK) */
    UNIQUE VERSION
    FROM wmsys.wm$modified_tables
    WHERE table_name = 'SIG.SIG_QUA_IMG'
    AND workspace = 'NpCyPCX3dkOAHSuBMjGioQ=='
    AND VERSION > 4574
    AND VERSION <= 4575) j3
    WHERE t1.VERSION = j1.VERSION
    AND t1.ima_id = t2.ima_id
    AND t1.qim_inf_esq_x_tile = t2.qim_inf_esq_x_tile
    AND t1.qim_inf_esq_y_tile = t2.qim_inf_esq_y_tile
    AND t2.nextver != '-1'
    AND t2.nextver = j2.next_vers
    AND j2.VERSION = j3.VERSION))

    Hello Vitor,
    There are currently no known issues with version enabled tables that are partitioned. The merge operation may need to access all of the partitions of a table depending on the data that needs to be moved/copied from the child to the parent. This is the reason for the 'Partition Range All' step in the plan that you provided. The majority of the remaining steps are due to the hints that have been added, since this plan has provided the best performance for us in the past for this particular statement. If this is not the case for you, and you feel that another plan would yield better performance, then please let me know and I will take a look at it.
    One suggestion would be to make sure that the table was been recently analyzed so that the optimizer has the most current data about the table.
    Performance issues are very hard to fix without a reproducible test case, so it may be advisable to file a TAR if you continue to have significant performance issues with the mergeWorkspace operation.
    Thank You,
    Ben

  • Issue with Insert in SP

    Gurus,
    I have an issue with inserting rows into temp table through SP.
    Here is my proc. its running fine. After the execution completed when i try to select the rows from srini_temp table its showing 0 rows. Whats wrong here.
    CREATE PROCEDURE BO_HR_RPT.SRINI_TEST AS
    BEGIN
    insert into BO_HR_RPT.srini_temp (
    COURSE_TITLE,
    COURSE_ID,
    CLASS_NO,
    DELIVERY_METHOD,
    LEARNER_OWN,
    DURATION,
    score,
    VENDOR,
    START_DATE,
    END_DATE,
    INSTRUCTOR_NAME,
    TRANS_STATUS,
    LEARNER_NAME,
    LEARNER_EMP_TYPE,
    INSTRUCTOR_OWN,
    INSTRUCTOR_EMP_TYPE,
    EFFT_PERIOD,
    YEAR,
    AS_OF_DATE,
    LMS_SOURCE,
    REPORT_CATEGORY)
    SELECT COURSE_TITLE,
    COURSE_ID,
    CLASS_NO,
    CASE WHEN COURSE_ID LIKE 'TIS%' OR COURSE_ID LIKE 'TIWEB%' OR COURSE_ID LIKE 'TIVLAB%' OR COURSE_ID LIKE 'TIWVT%'
    OR COURSE_ID LIKE 'STARELT%' OR COURSE_ID LIKE 'TIELT%' OR DELIVERY_METHOD ='Web Based Training'
    OR DELIVERY_METHOD = 'e-Learning or via backend Import' THEN 'E-Learning'
    WHEN DELIVERY_METHOD = 'IDL' THEN 'IDL'
    WHEN DELIVERY_METHOD = 'IDL Replay' THEN 'Replay'
    ELSE INITCAP(DELIVERY_METHOD) END AS DELIVERY_METHOD,
    RTRIM(LEARNER_OWN) as LEARNER_OWN,
    CASE WHEN LMS_SOURCE ='SABA' THEN ROUND(DURATION/60,1)
    ELSE DURATION END AS DURATION,
    CASE WHEN SCORE='0' then '' else score END as score,
    CASE WHEN (vendor_name IS NOT NULL) AND (UPPER(SUBSTR(COURSE_ID,1,2)) = 'TV') then vendor_name
    WHEN COURSE_ID LIKE 'TIWEB%' then 'SKILLSOFT'
    WHEN COURSE_ID LIKE 'TIVLAB%' then 'ELEMENTK'
    ELSE 'N' END AS VENDOR,
    START_DATE,
    END_DATE,
    INITCAP(INSTRUCTOR_NAME) AS INSTRUCTOR_NAME,
    TRANS_STATUS,
    INITCAP(LEARNER_NAME) AS LEARNER_NAME,
    INITCAP(LEARNER_EMP_TYPE) AS LEARNER_EMP_TYPE,
    RTRIM(INSTRUCTOR_OWN),
    INITCAP(INSTRUCTOR_EMP_TYPE) AS INSTRUCTOR_EMP_TYPE,
    trim(initcap(TO_CHAR(TRUNC(NVL(END_DATE,START_DATE)),'MONTH'))) AS EFFT_PERIOD,
    TO_CHAR(TRUNC(NVL(END_DATE,START_DATE)),'YYYY') AS YEAR,
    TRUNC(ADD_MONTHS(LAST_DAY(load_date) ,-1)) AS AS_OF_DATE,
    LMS_SOURCE,
    REPORT_CATEGORY
    FROM BO_HR_RPT.ELM_GLD_MASTER_BASE
    where ROWNUM <= 10
    ORDER BY COURSE_ID,CLASS_NO,START_DATE,END_DATE,INSTRUCTOR_NAME;
    COMMIT;
    END;
    Thanks for great help.
    Srini

    Are you completely sure this isn't a global temporary table?
    it really would explain your problems!
    Have you got access to run a
    select tablename from all_tables where TEMPORARY = 'Y'[pre]                                                                                                                                                                                                                                                                                                                                                                                                           

  • Issue with Integrated Weblogic Server in JDeveloper

    Hi
    I'm using JDeveloper version: 11.1.1.7
    I'm facing issue with the Integrated Weblogic server in JDeveloper.
    When I run the server, the log says as follows:
    *** Using port 7101 ***
    D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\bin\startWebLogic.cmd
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms768m -Xmx768m -XX:CompileThreshold=8000 -XX:PermSize=128m  -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\lib\sdoapi.jar;D:\fmwps6\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;D:\fmwps6\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\fmwps6\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;D:\Java\JDK16~1.0_5\lib\tools.jar;D:\fmwps6\WLSERV~1.3\server\lib\weblogic_sp.jar;D:\fmwps6\WLSERV~1.3\server\lib\weblogic.jar;D:\fmwps6\modules\features\weblogic.server.modules_10.3.5.0.jar;D:\fmwps6\WLSERV~1.3\server\lib\webservices.jar;D:\fmwps6\modules\ORGAPA~1.1/lib/ant-all.jar;D:\fmwps6\modules\NETSFA~1.0_1/lib/ant-contrib.jar;D:\fmwps6\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;D:\fmwps6\WLSERV~1.3\common\derby\lib\derbyclient.jar;D:\fmwps6\WLSERV~1.3\server\lib\xqrl.jar;;D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\config;D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\lib\stringtemplate-2.3b6.jar
    PATH=D:\fmwps6\patch_wls1035\profiles\default\native;D:\fmwps6\patch_jdev1111\profiles\default\native;D:\fmwps6\WLSERV~1.3\server\native\win\x64;D:\fmwps6\WLSERV~1.3\server\bin;D:\fmwps6\modules\ORGAPA~1.1\bin;D:\Java\JDK16~1.0_5\jre\bin;D:\Java\JDK16~1.0_5\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\oraclexe\app\oracle\product\11.2.0\server\bin;;D:\ADE\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;D:\Java\jdk1.6.0_51\bin;D:\Softwares\apache-ant-1.7.1\bin;C:\Program Files (x86)\Windows Live\Shared;D:\fmwps6\WLSERV~1.3\server\native\win\x64\oci920_8
    *  To start WebLogic Server, use a username and   *
    *  password assigned to an admin-level user.  For *
    *  server administration, use the WebLogic Server *
    *  console at http:\\hostname:port\console        *
    starting weblogic with Java version:
    java version "1.6.0_51"
    Java(TM) SE Runtime Environment (build 1.6.0_51-b31)
    Java HotSpot(TM) 64-Bit Server VM (build 20.51-b02, mixed mode)
    Starting WLS with line:
    D:\Java\JDK16~1.0_5\bin\java -client   -Xms768m -Xmx768m -XX:CompileThreshold=8000 -XX:PermSize=128m  -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=D:\fmwps6\WLSERV~1.3\server\lib\weblogic.policy -agentlib:jdwp=transport=dt_socket,server=y,address=49879 -Djavax.net.ssl.trustStore=D:\fmwps6\wlserver_10.3\server\lib\DemoTrust.jks -Dhttp.proxyHost=www-proxy.idc.oracle.com -Dhttp.proxyPort=80 "-Dhttp.nonProxyHosts=localhost|127.0.0.1|rnaguban-in" -Dhttps.proxyHost=www-proxy.idc.oracle.com -Dhttps.proxyPort=80 "-Dhttps.nonProxyHosts=localhost|127.0.0.1|rnaguban-in" -Doracle.jdeveloper.adrs=true -Dweblogic.nodemanager.ServiceEnabled=true  -Duim.home=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM -Dweblogic.log.Log4jLoggingEnabled_uim=true -Dlog4j.configuration_uim=loggingconfig.xml -Duim.logging.watchdog.timer=5000 -Djava.io.tmpdir=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\tmp -Dweblogic.management.discover.retries=6 -DtestConfig.home=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\UIM\testConfig -Dsun.lang.ClassLoader.allowArraySyntax=true  -XX:-UseSSE42Intrinsics -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.authz=ACC -Xverify:none  -da -Dplatform.home=D:\fmwps6\WLSERV~1.3 -Dwls.home=D:\fmwps6\WLSERV~1.3\server -Dweblogic.home=D:\fmwps6\WLSERV~1.3\server  -Djps.app.credential.overwrite.allowed=true -Dcommon.components.home=D:\fmwps6\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1 -Djrockit.optfile=D:\fmwps6\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.config.dir=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.domain.config.dir=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\FMWCON~1  -Digf.arisidbeans.carmlloc=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\FMWCON~1\carml  -Digf.arisidstack.home=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\config\fmwconfig\jps-config.xml -Doracle.deployed.app.dir=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\servers\DefaultServer\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=D:\fmwps6\ORACLE~1\modules\oracle.ossoiap_11.1.1,D:\fmwps6\ORACLE~1\modules\oracle.oamprovider_11.1.1,D:\fmwps6\ORACLE~1\modules\oracle.jps_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.protocol  -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=D:\fmwps6\JDEVEL~1\SYSTEM~1.93\DEFAUL~1\oracle\store\gmds   -Dweblogic.management.discover=true  -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=D:\fmwps6\patch_wls1035\profiles\default\sysext_manifest_classpath;D:\fmwps6\patch_jdev1111\profiles\default\sysext_manifest_classpath  weblogic.Server
    Listening for transport dt_socket at address: 49879
    Debugger connected to local process.
    <Aug 16, 2013 7:19:43 PM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Aug 16, 2013 7:19:43 PM IST> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Aug 16, 2013 7:19:44 PM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.51-b02 from Sun Microsystems Inc.>
    <Aug 16, 2013 7:19:44 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogic Server Temporary Patch for BUG13114768 Sat Jan 21 16:14:44 IST 2012
    WebLogic Server 10.3.5.0  Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <Aug 16, 2013 7:19:47 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 16, 2013 7:19:47 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Aug 16, 2013 7:19:47 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 16, 2013 7:19:47 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00115. Log messages will continue to be logged in D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Aug 16, 2013 7:19:47 PM IST> <Notice> <Log Management> <BEA-170019> <The server log file D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Aug 16, 2013 7:19:56 PM IST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Aug 16, 2013 7:20:00 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 16, 2013 7:20:00 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\access.log00066. Log messages will continue to be logged in D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\access.log.>
    Aug 16, 2013 7:20:05 PM oracle.ods.virtualization.engine.util.VDELogger info
    INFO: Notification sent for Mapping config object reloaded
    Aug 16, 2013 7:20:05 PM oracle.ods.virtualization.engine.util.VDELogger info
    INFO: Notification sent for Mapping config object reloaded
    <Aug 16, 2013 7:20:18 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Aug 16, 2013 7:20:18 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 16, 2013 7:20:20 PM IST> <Warning> <JDBC> <BEA-001552> <The Logging Last Resource (LLR) data source InventoryTxDataSource will not function when it is a participant in a global transaction that spans multiple WebLogic Server instances because remote JDBC support is disabled. LLR will function in single-server configurations.>
    <Aug 16, 2013 7:20:22 PM IST> <Warning> <JDBC> <BEA-001110> <No test table set up for pool "mds-commsRepository". Connections will not be tested.>
    <Aug 16, 2013 7:20:39 PM IST> <Warning> <Security> <BEA-090668> <Ignored deployment of role "Admin" for resource "type=<url>, application=DMS Application#11.1.1.1.0, contextPath=/dms, uri=/">
    <Aug 16, 2013 7:20:58 PM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application UIMCMWSAdapter is not versioned.>
    <Aug 16, 2013 7:21:11 PM IST> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application oracle.communications.inventory is not versioned.>
    <TableBuilder> <_buildSchema> Metric table "webcache:request_filter_denied_stats" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Reports_Server_Information" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Reports_Server_Performance" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Reports_Server_Response" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Reports_Servlet_Response" has no key column.  It will not be collected.
    <TableBuilder> <_buildSchema> Metric table "reports:Remote_Bridge_Elements" has no key column.  It will not be collected.
    <ConfigurationUtil> <getProperties> Could not load runtime-poms.properties
    <Aug 16, 2013 7:21:52 PM IST> <Error> <Net> <BEA-000903> <Failed to communicate with proxy: www-proxy.idc.oracle.com/80. Will try connection www.terracotta.org/80 now.
    java.net.UnknownHostException: www-proxy.idc.oracle.com
      at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
      at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:876)
      at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1229)
      at java.net.InetAddress.getAllByName0(InetAddress.java:1180)
      at java.net.InetAddress.getAllByName(InetAddress.java:1110)
      Truncated. see log file for complete stacktrace
    >
    <Aug 16, 2013 7:21:53 PM IST> <Error> <Net> <BEA-000903> <Failed to communicate with proxy: www-proxy.idc.oracle.com/80. Will try connection svn.terracotta.org/80 now.
    java.net.UnknownHostException: www-proxy.idc.oracle.com
      at java.net.InetAddress.getAllByName0(InetAddress.java:1184)
      at java.net.InetAddress.getAllByName(InetAddress.java:1110)
      at java.net.InetAddress.getAllByName(InetAddress.java:1046)
      at weblogic.net.http.HttpClient.openServer(HttpClient.java:309)
      at weblogic.net.http.HttpClient.openServer(HttpClient.java:414)
      Truncated. see log file for complete stacktrace
    >
    <LoggerHelper> <log> Cannot map nonserializable type "interface oracle.adf.mbean.share.config.runtime.resourcebundle.BundleListType" to Open MBean Type for mbean interface oracle.adf.mbean.share.config.runtime.resourcebundle.AdfResourceBundleConfigMXBean, attribute BundleList.
    <AdfDiagnosticsJarsVersionDumpImpl> <dumpVersionInfo> Path of the jars version dump :D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\oracle.communications.inventory-Versions.csv
    <FeatureUtils> <_resolveFeatures> Ignoring feature-dependency on feature "AdfDvtCommon".  No such feature exists.
    Warning: Starting ADF Library jar post-deployment on WebLogic Server. Is "provider-lazy-inited" init-param missing from LibraryFilter? Ignore this warning if the ADFJspResourceProvider is not being used.
    Started: ADF Library non-ADFJspResourceProvider post-deployment
    Finished: ADF Library non-ADFJspResourceProvider post-deployment (millis): 223
    <Aug 16, 2013 7:22:08 PM IST> <Notice> <LoggingService> <BEA-320400> <The log file D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 16, 2013 7:22:08 PM IST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00118. Log messages will continue to be logged in D:\fmwps6\jdeveloper\system11.1.1.7.40.64.93\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Aug 16, 2013 7:22:08 PM IST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 14.96.8.250:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Aug 16, 2013 7:22:09 PM IST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    But it doesn't list the server while deploying the application.
    I don't see the issue in my office network. But I encounter this problem when I work at my home.
    Ideally it should show the following lines after server is started:
    DefaultServer startup time: 195467 ms.
    DefaultServer started.
    This is not happening if i run the server without network.
    How can I fix this problem?
    Thanks
    Ravi

    I see some message about a proxy. Have you checked that you can use the proxy from you network?
    If not you should turn the proxy off.
    Timo

  • Workspace Login issue with IR

    I installed IR services and workspace connected with oracle database.
    EPM system version is 11.1.1.3
    When I created a new user provisioned with IR administrator role, I could only login once.
    If I log off and relogin, workspace prompt that "adf.jsp" error "CDS.mode not found".
    Anyone who can help me? Thanks.
    I found that when I logined with a new user, a user perference file has been created in security, when relogin next time following error prompted.
    Error Loading Adf 'http://hyperion:19000/workspace/browse/dyn?page=/modules/com/hyperion/tools/cds/repository/bpm/mode/Adf.jsp&instance=16&serverName=Workspace&bpmDesignerInstallerRelativeUri=%2Fwebstart%2Fstartup.jsp&jawsScriptInstallerRelativeUri=%2FAccessibilityIRScripts%2FAccessibilityIRScriptsSetup.exe&resizeContentInterval=2000' for module with id : cds.mode
    There was some communication error. Response is : http://hyperion:19000/workspace/browse/dyn <?xml version="1.0" encoding="UTF-8"?>
    <Application>
    <BpmModule id="cds.mode">
    <BpmContent/>
    </BpmModule>
    <Resources>
    <Script><![CDATA[
    BpmImport("com.hyperion.tools.cds.HSRoleVars");
    var rRoleVars = com.hyperion.tools.cds.HSRoleVars;
    rRoleVars.addRole(0, false);
    rRoleVars.addRole(1, false);
    rRoleVars.addRole(2, false);
    rRoleVars.addRole(3, false);
    rRoleVars.addRole(4, true);
    rRoleVars.addRole(5, true);
    rRoleVars.addRole(6, false);
    rRoleVars.addRole(7, false);
    rRoleVars.addRole(8, false);
    rRoleVars.addRole(9, false);
    rRoleVars.addRole(10, false);
    rRoleVars.addRole(11, true);
    rRoleVars.addRole(12, true);
    rRoleVars.addRole(13, true);
    rRoleVars.addRole(14, true);
    rRoleVars.addRole(15, false);
    rRoleVars.addRole(16, false);
    rRoleVars.addRole(17, false);
    rRoleVars.addRole(18, false);
    rRoleVars.addRole(19, false);
    rRoleVars.addRole(20, false);
    rRoleVars.addRole(21, true);
    rRoleVars.addRole(22, true);
    rRoleVars.addRole(23, true);
    rRoleVars.addRole(24, true);
    rRoleVars.addRole(25, true);
    rRoleVars.addRole(26, false);
    rRoleVars.addRole(27, false);
    rRoleVars.addRole(28, false);
    rRoleVars.addRole(29, true);
    rRoleVars.addRole(30, true);
    rRoleVars.addRole(31, true);
    rRoleVars.addRole(32, false);
    rRoleVars.addRole(33, true);
    rRoleVars.addRole(34, true);
    rRoleVars.addRole(35, false);
    rRoleVars.addRole(36, false);
    rRoleVars.addRole(37, false);
    BpmImport("com.hyperion.tools.cds.util.HSConstants");
    BpmImport("com.hyperion.tools.cds.bindows.HSBaseContainerHandler");
    * Handler associated with the open Application module
    com.hyperion.tools.cds.repository.bpm.mode.Handler = function()
    if (_biInPrototype)
    return;
    com.hyperion.tools.cds.bindows.HSBaseContainerHandler.call(this);
    BpmImport("com.hyperion.tools.cds.util.HSCallback");
    BpmImport("com.hyperion.tools.cds.data.HSNetwork");
    BpmImport("com.hyperion.tools.cds.data.HSNode");
    BpmImport("com.hyperion.tools.cds.data.HSNodeType");
    BpmImport("com.hyperion.tools.cds.CDSCommand");
    BpmImport("com.hyperion.tools.cds.repository.HSFileDialog");
    BpmExtend(com.hyperion.tools.cds.repository.bpm.mode.Handler, com.hyperion.tools.cds.bindows.HSBaseContainerHandler, "com.hyperion.tools.cds.repository.bpm.mode.Handler");
    c.ENUMERATEDAPPS_LIST = new Array();
    c.ENUMERATEDAPPS_MENUDATA = new Array();
    c.NAVIGATEID_MAPPINGS = {'exploreanotation':'bpm.mnit_ToolsViewerAnotationExplorer','answers':'bpm.mnit_ToolsViewerAnswers','dashboards':'bpm.mnit_ToolsViewerDashboards','delivers':'bpm.mnit_ToolsViewerDelivers','publisher':'bpm.mnit_ToolsViewerPublisher','scorecards':'bpm.mnit_ToolsViewerScorecards','metrics':'bpm.mnit_ToolsViewerMetrics','adminGeneral':'bpm.mnit_ToolsAdministerGeneral','adminAuthProperties':'bpm.mnit_ToolsAdministerAuthProperties','adminUserManagement':'bpm.mnit_ToolsAdministerUserManagement','adminPhysicalResources':'bpm.mnit_ToolsAdministerPhysicalResources','adminMimeTypes':'bpm.mnit_ToolsAdministerMimeTypes','adminNotifications':'bpm.mnit_ToolsAdministerNotifications','adminSmartcuts':'bpm.mnit_ToolsAdministerSmartcuts','adminRowLevelSecurity':'bpm.mnit_ToolsAdministerRowLevelSecurity','adminUsageTracking':'bpm.mnit_ToolsAdministerUsageTracking','adminEventTracking':'bpm.mnit_ToolsAdministerEventTracking','adminDimLibrary':'bpm.mnit_ToolsAdministerDimLibrary','adminAppLibrary':'bpm.mnit_ToolsAdministerAppLibrary','adminDataSync':'bpm.mnit_ToolsAdministerDataSync','adminAppUpgrade':'bpm.mnit_ToolsAdministerAppUpgrade','batchScheduler':'bpm.mnit_ToolsScheduleBatchScheduler','viewjob':'bpm.mnit_ToolsScheduleViewJobStatus','viewjob':'bpm.mnit_ToolsScheduleViewJobStatus','manageevents':'bpm.mnit_ToolsScheduleManageEvents','showparameters':'bpm.mnit_ToolsScheduleShowParameters','jobnotifications':'bpm.mnit_ToolsScheduleJobNotifications','jobqueue':'bpm.mnit_ToolsScheduleJobQueue','consolidate':'bpm.mnit_ToolsScheduleConsolidatedJobStatusList','schedJobConsole':'bpm.mnit_ToolsScheduleJobConsole','syncMetadata':'bpm.mnit_ToolsChangeManagementSynchronizeMetadata','datamodelUpdates':'bpm.mnit_ToolsChangeManagementDataModelUpdates','javascriptUpdates':'bpm.mnit_ToolsChangeManagementJavascriptUpdates','genericUpdates':'bpm.mnit_ToolsChangeManagementGenericUpdates','showTaskList':'bpm.mnit_ToolsChangeManagementShowTaskList','taskStatus':'bpm.mnit_ToolsChangeManagementShowTaskStatus','ioc':'bpm.mnit_ToolsChangeManagementShowImpactOfChange','adminConsolidationSystemMessages':'bpm.mnit_AdminConsolidationSystemMessages','adminConsolidationUsersOnSystem':'bpm.mnit_AdminConsolidationUsersOnSystem','adminConsolidationManageServersAndApp':'bpm.mnit_AdminConsolidationManageServersAndApp','adminClassicAppsConsolidation':'bpm.mnit_AdminClassicAppsConsolidation','adminClassicAppsPlanning':'bpm.mnit_AdminClassicAppsPlanning','adminChangeOwner':'bpm.mnit_ToolsAdministerChangeOwner'} ;
    * Initialize default values for member variables.
    p.initializeDefaults = function()
    com.hyperion.tools.cds.bindows.HSBaseContainerHandler.prototype._initializeDefaults.call(this);
    if (0)
    this._rstTabAlignment = bpm.common.StartupContainerHandler.TAB_ALIGNMENT_TOP;
    else
    this._rstTabAlignment = bpm.common.StartupContainerHandler.TAB_ALIGNMENT_BOTTOM;
    this._iResizeContentInterval =
    2000;
    var rstContextPath = gContextManager.getContext(this.getModule().getContext()).getPath();
    // Remove last backslash.
    this._rstContextPath = rstContextPath.substring(0, rstContextPath.length - 1);
    this._rCdsStringBundle = BpmStringBundle.getStringBundle("cds");
    this.newDocCount = 0;
    if (false)
    this.getModule().getConfig()['bpm.logoff'] = 'false';
    bpm.common.Utils.setUser("test");
    com.hyperion.tools.cds.rNetwork = new com.hyperion.tools.cds.data.HSNetwork();
    com.hyperion.tools.cds.rNetwork.addServer(
    "Workspace",
    gModuleManager.getStartupContextPath(),
    null,
    new com.hyperion.tools.cds.util.HSCallback(
    function(rThrowable)
    bpm.common.MessageDialog.showDetailsDialog(
    rThrowable.getMessageChain(),
    rThrowable.getDetailChain(),
    null,
    BiOptionPane.getImageFromOptionType("error"));
    null,
    null),
    new com.hyperion.tools.cds.util.HSCallback(
    function(rstMessage, rLogger)
    if (rLogger.isDebug())
    rLogger.debug(rstMessage);
    null,
    bpm.common.Logger.getLogger("com.hyperion.tools.cds.data")));
    this._rstSelectedTheme = "BpmTadpole";
    * Initialize default values for member variables.
    p.initializeActions = function()
    com.hyperion.tools.cds.bindows.HSBaseContainerHandler.prototype._initializeActions.call(this);
    var rModule = this.getModule();
    var rContent = rModule.getContent();
    var actionBar = rModule.getActionBarDef();
    actionBar.setId("cds.mode.actionBar");
    var cmds = this.getModule().getCommands();
    var cmdNewDoc = new BpmCommand();
    cmdNewDoc.setId("cds.mode.cmdNewDoc");
    cmdNewDoc.setEnabled(true);
    cmdNewDoc.setParentModule(this.getModule());
    cmds.add(cmdNewDoc);
    var cmdNewPP = new BpmCommand();
    cmdNewPP.setId("cds.mode.cmdNewPP");
    cmdNewPP.setEnabled(true);
    cmdNewPP.setParentModule(this.getModule());
    cmds.add(cmdNewPP);
    var cmdNewWP = new BpmCommand();
    cmdNewWP.setId("cds.mode.cmdNewWP");
    cmdNewWP.setEnabled(true);
    cmdNewWP.setParentModule(this.getModule());
    cmds.add(cmdNewWP);
    var cmdOpenDoc = new BpmCommand();
    cmdOpenDoc.setId("cds.mode.cmdOpenDoc");
    cmdOpenDoc.setEnabled(true);
    cmdOpenDoc.setParentModule(this.getModule());
    cmds.add(cmdOpenDoc);
    var cmdSubscriptions = new BpmCommand();
    cmdSubscriptions.setId("cds.mode.cmdSubscriptions");
    cmdSubscriptions.setEnabled(true);
    cmdSubscriptions.setParentModule(this.getModule());
    cmds.add(cmdSubscriptions);
    var cmdManagePersonalPages = new BpmCommand();
    cmdManagePersonalPages.setId("cds.mode.cmdManagePersonalPages");
    cmdManagePersonalPages.setEnabled(true);
    cmdManagePersonalPages.setParentModule(this.getModule());
    cmds.add(cmdManagePersonalPages);
    var toolBar = new BpmToolBar();
    toolBar.setId("cds.mode.tlb");
    this.getModule().setToolBarDef(toolBar);
    var rToolBarButtonHome = new BiToolBarButton();
    rToolBarButtonHome.setId("cds.mode.tlbt_Home");
    rToolBarButtonHome.setToolTipText("Home");
    rToolBarButtonHome.setEnabled(true);
    rToolBarButtonHome.setIcon(new BiImage(this._rstContextPath + "/images/com/hyperion/tools/cds/repository/bpm/TB_Home.gif"));
    toolBar.add(rToolBarButtonHome);
    var newDocButton = new BiToolBarButton();
    newDocButton.setId("cds.mode.tlbt_NewDoc");
    newDocButton.setToolTipText("New Document");
    newDocButton.setEnabled(true);
    newDocButton.setIcon(new BiImage(this._rstContextPath + "/images/com/hyperion/tools/cds/repository/bpm/TB_New.gif"));
    newDocButton.setCommand(cmdNewDoc);
    toolBar.add(newDocButton);
    var openButton = new BiToolBarButton();
    openButton.setId("cds.mode.tlbt_Open");
    openButton.setToolTipText("Open Document");
    openButton.setEnabled(true);
    openButton.setIcon(new BiImage(this._rstContextPath + "/images/com/hyperion/tools/cds/repository/bpm/TB_Open.gif"));
    openButton.setCommand(cmdOpenDoc);
    toolBar.add(openButton);
    var explorerModeButton = new BiToolBarButton();
    explorerModeButton.setId("cds.mode.tlbt_ExploreMode");
    explorerModeButton.setEnabled(true);
    explorerModeButton.setText("Explore");
    explorerModeButton.setToolTipText("Explore");
    explorerModeButton.setIcon(new BiImage(this._rstContextPath + "/images/com/hyperion/tools/cds/repository/bpm/TB_Explore.gif"));
    toolBar.add(explorerModeButton);
    var rstPath = gModuleManager.getStartupContextPath();var rItem = null;var rNavMenu = application.getComponentById(bpm.common.Constants.MENU_ID_NAV);var rMenuButton = null;var rMenu0=rNavMenu;rItem = new BpmMenuItem();rItem.setId('bpm.mnit_NavWorkspacePages');rItem.setText('Workspace Pages\nw');rMenu0.add(rItem);var rMenu1 = new BpmMenu();rMenu1.setId('bpm.mnu_NavWorkspacePages');rItem.setSubMenu(rMenu1);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_NavWorkspacePagesPersonal');rItem.setText('My Workspace Pages\nm');rMenu1.add(rItem);var rMenu2 = new BpmMenu();rMenu2.setId('bpm.mnu_NavWorkspacePagesPersonal');rItem.setSubMenu(rMenu2);var rNavWorkspacePagesPersonalSubMenu=rMenu2;rMenu2.addEventListener(bpm.common.Constants.EVENT_BEFORESHOW,this._buildWorkspacePagesSubMenu,this);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_NavWorkspacePagesCorporate');rItem.setText('Shared Workspace Pages\ns');rMenu1.add(rItem);var rMenu2 = new BpmMenu();rMenu2.setId('bpm.mnu_NavWorkspacePagesCorporate');rItem.setSubMenu(rMenu2);var rNavWorkspacePagesCorporateSubMenu=rMenu2;rMenu2.addEventListener(bpm.common.Constants.EVENT_BEFORESHOW,this._buildWorkspacePagesSubMenu,this);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsViewerExplorer');rItem.setText('Explore\ne');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ExploreMode.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu0.add(rItem);rItem = new BpmMenuSeparator();rItem.setId('bpm.mnit_Nav_Separator2');rMenu0.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdminister');rItem.setText('Administer\na');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerMode.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu0.add(rItem);var rMenu1 = new BpmMenu();rMenu1.setId('bpm.mnu_ToolsAdminister');rItem.setSubMenu(rMenu1);var administerSubMenu=rMenu1;rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerGeneral');rItem.setText('General\ng');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeGeneral.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerAuthProperties');rItem.setText('Authentication\na');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeAuthentication.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerUserManagement');rItem.setText('Shared Services Console\ns');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeUserManagement.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);var rUserManagementMenu=rItem;rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerLaunchCMC');rItem.setText('Configuration Console\nf');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeLaunchCMC.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsViewerAnotationExplorer');rItem.setText('Annotations\ni');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ExploreMode.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerPhysicalResources');rItem.setText('Physical Resources\nh');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModePhysicalResources.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerMimeTypes');rItem.setText('Mime Types\ny');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeMimeTypes.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerNotifications');rItem.setText('Notifications\nn');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeNotifications.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerRowLevelSecurity');rItem.setText('Row Level Security\nr');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeRowLevelSecurity.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerUsageTracking');rItem.setText('Usage Tracking\nu');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeUsageTracking.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerEventTracking');rItem.setText('Event Tracking\ne');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeEventTracking.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerChangeOwner');rItem.setText('Change Ownership\nw');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_AdministerModeChangeOwner.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuSeparator();rItem.setId('bpm.mnit_CalcMgrSeparator');rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdministerCalculationManager');rItem.setText(BpmStringBundle.getString('calcmgr-global','MItem_CalculationManager'));rItem.setIcon(new BiImage(rstPath + '/../calcmgr/themes/common/images/CT_AdminCalcManager.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rItem.setBefore('bpm.mnit_ToolsAdministerAppUpgrade');rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsSchedule');rItem.setText('Schedule\ns');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ScheduleMode.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu0.add(rItem);var rMenu1 = new BpmMenu();rMenu1.setId('bpm.mnu_ToolsSchedule');rItem.setSubMenu(rMenu1);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsScheduleJobQueue');rItem.setText('Job Queue\nq');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ScheduleModeJobsQueue.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsScheduleJobNotifications');rItem.setText('Job Notifications\no');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ScheduleModeJobNotifications.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsScheduleShowParameters');rItem.setText('Show Parameters\ns');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ScheduleModeShowParameters.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsScheduleViewJobStatus');rItem.setText('Jobs Running\nj');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ScheduleModeJobsRunning.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsScheduleManageEvents');rItem.setText('Manage Events\na');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ScheduleModeManageEvents.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsScheduleConsolidatedJobStatusList');rItem.setText('Consolidated Job Status\nc');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ScheduleModeConsolidatedJobStatusList.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuSeparator();rItem.setId('bpm.mnit_Nav_Separator3');rMenu0.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_IManager');rItem.setText('Impact Manager\ni');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ChangeManagementMode.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rItem.setBefore('bpm.mnit_Nav_Separator3');rMenu0.add(rItem);var rMenu1 = new BpmMenu();rMenu1.setId('bpm.mnu_IManager');rItem.setSubMenu(rMenu1);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsChangeManagementSynchronizeMetadata');rItem.setText('Synchronize Metadata\ns');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ChangeManagementModeSynchronizeMetadata.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsChangeManagementDataModelUpdates');rItem.setText('Update Data Models\nd');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ChangeManagementModeDataModelUpdate.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsChangeManagementJavascriptUpdates');rItem.setText('JavaScript Update\nj');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ChangeManagementModeJavascriptUpdates.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsChangeManagementGenericUpdates');rItem.setText('Custom Update\nc');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ChangeManagementModeGenericUpdates.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsChangeManagementShowTaskStatus');rItem.setText('Show Task Status\nt');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ChangeManagementModeJobStatus.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsChangeManagementShowTaskList');rItem.setText('Manage Task List\nm');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ChangeManagementModeShowTaskList.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsChangeManagementShowImpactOfChange');rItem.setText('Show Impact of Change\ni');rItem.setIcon(new BiImage(rstPath + '/images/com/hyperion/tools/cds/repository/bpm/CT_ChangeManagementModeImpactOfChange.gif',com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_WIDTH,com.hyperion.tools.cds.repository.bpm.mode.Handler.MENU_IMAGE_HEIGHT));rMenu1.add(rItem);rMenuButton = new BpmMenuButton();rMenuButton.setId('bpm.mnbt_File');actionBar.add(rMenuButton);var rMenu0 = new BpmMenu();rMenu0.setId('bpm.mnu_File');rMenuButton.setSubMenu(rMenu0);rMenu0.addEventListener(bpm.common.Constants.EVENT_BEFORESHOW,this.displayFileNewMenu,this);rMenu0.setBefore('bpm.mnit_FileClose');rItem = new BpmMenuItem();rItem.setId('bpm.mnit_FileNew');rItem.setText('New\nn');rMenu0.add(rItem);var rMenu1 = new BpmMenu();rMenu1.setId('bpm.mnu_New');rItem.setSubMenu(rMenu1);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_FileNewDocument');rItem.setText('Document...\nd\nCtrl+N');rItem.setCommand(cmdNewDoc);rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_FileNewPP');rItem.setText('Personal Page...\np\nCtrl+Shift+P');rItem.setCommand(cmdNewPP);rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_WorkspacePage');rItem.setText('Workspace Page...\nw\nCtrl+Shift+W');rItem.setCommand(cmdNewWP);rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_FileOpen');rItem.setText('Open\no');rMenu0.add(rItem);var rMenu1 = new BpmMenu();rMenu1.setId('bpm.mnu_Open');rItem.setSubMenu(rMenu1);rMenu1.addEventListener(bpm.common.Constants.EVENT_BEFORESHOW,this.onActionFavoritesOpen,this);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_FileOpenDocument');rItem.setText('Document...\nd\nCtrl+O');rItem.setCommand(cmdOpenDoc);rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsWorkspacePages');rItem.setText('Workspace Pages\nw');rMenu1.add(rItem);var rOpenWorkspacePagesMenuItem=rItem;var rMenu2 = new BpmMenu();rMenu2.setId('bpm.mnu_ToolsWorkspacePages');rItem.setSubMenu(rMenu2);var rOpenWorkspacePagesSubMenu=rMenu2;rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsWorkspacePagesPersonal');rItem.setText('My Workspace Pages\nm');rMenu2.add(rItem);var rOpenWorkspacePagesPersonalMenuItem=rItem;var rMenu3 = new BpmMenu();rMenu3.setId('bpm.mnu_ToolsWorkspacePagesPersonal');rItem.setSubMenu(rMenu3);var rOpenWorkspacePagesPersonalSubMenu=rMenu3;rMenu3.addEventListener(bpm.common.Constants.EVENT_BEFORESHOW,this._buildWorkspacePagesSubMenu,this);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsWorkspacePagesCorporate');rItem.setText('Shared Workspace Pages\ns');rMenu2.add(rItem);var rMenu3 = new BpmMenu();rMenu3.setId('bpm.mnu_ToolsWorkspacePagesCorporate');rItem.setSubMenu(rMenu3);var rOpenWorkspacePagesCorporateSubMenu=rMenu3;rMenu3.addEventListener(bpm.common.Constants.EVENT_BEFORESHOW,this._buildWorkspacePagesSubMenu,this);rItem = new BpmMenuSeparator();rItem.setId('bpm.mnit_FileURLLauncherSeparator');rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_File_URLLauncher');rItem.setText('URL...\nu');rMenu1.add(rItem);rMenuButton = new BpmMenuButton();rMenuButton.setId('bpm.mnbt_Favorites');rMenuButton.setText('Favorites\nr');rMenuButton.setBefore('bpm.mnbt_Help');actionBar.add(rMenuButton);var rMenu0 = new BpmMenu();rMenu0.setId('bpm.mnu_Favorites');rMenuButton.setSubMenu(rMenu0);rMenu0.addEventListener(bpm.common.Constants.EVENT_BEFORESHOW,this.onActionFavorites,this);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_FavoriteAdd');rItem.setText('Add to Favorites\na');rMenu0.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_FavoritesManager');rItem.setText('Manage Favorites...\nf');rMenu0.add(rItem);rItem = new BpmMenuSeparator();rItem.setId('bpm.sep_FavoritesManager');rMenu0.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsPersonalizeSubscriptions');rItem.setText('Show Subscribed Items\ns');rItem.setCommand(cmdSubscriptions);rMenu0.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsPersonalizeManagePages');rItem.setText('Manage Personal Pages\nm');rItem.setCommand(cmdManagePersonalPages);rMenu0.add(rItem);rItem = new BpmMenuSeparator();rItem.setId('bpm.sep_FavoritesManager2');rMenu0.add(rItem);rMenuButton = new BpmMenuButton();rMenuButton.setId('bpm.mnbt_Tools');rMenuButton.setText('Tools\nt');rMenuButton.setBefore('bpm.mnbt_Help');actionBar.add(rMenuButton);var rMenu0 = new BpmMenu();rMenu0.setId('bpm.mnu_Tools');rMenuButton.setSubMenu(rMenu0);rItem = new BpmMenuItem();rItem.setId('bpm.mnit_ToolsAdvancedSearch');rItem.setText('Advanced Search...\na');rMenu0.add(rItem);rItem = new BpmMenuSeparator();rItem.setId('bpm.mnit_ToolsLinksSeparator');rMenu0.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnu_ToolsInstall');rItem.setText('Install\ni');rMenu0.add(rItem);var rMenu1 = new BpmMenu();rMenu1.setId('bpm.mnu_ToolsInstall');rItem.setSubMenu(rMenu1);rItem = new BpmMenuItem();rItem.setId('bpm.mnu_ToolsInstallQueryAndReportingClient');rItem.setText('Interactive Reporting Web Client\ni');rMenu1.add(rItem);rItem = new BpmMenuItem();rItem.setId('bpm.mnu_ToolsInstallSmartView');rItem.setText('Smart View\ns');rMenu1.add(rItem);this._rNavAppMenuItemHashtable = new Object();this._rNavAppMenuHashtable = new Object();rNavWorkspacePagesPersonalSubMenu.setUserData(new Array(rNavWorkspacePagesPersonalSubMenu, this._loadWorkspacePagesPersonalList));rNavWorkspacePagesCorporateSubMenu.setUserData(new Array(rNavWorkspacePagesCorporateSubMenu, this._loadWorkspacePagesCorporateList));application.getAdf().getXmlResourceParser()._addObject(administerSubMenu, bpm.common.Constants.MENU_ID_TOOLS_ADMINISTER);application.getAdf().getXmlResourceParser()._addObject(rUserManagementMenu, bpm.common.Constants.MENUITEM_ID_NAV_ADMINISTER_USER_MANAGEMENT);rUserManagementMenu.setEnabled(com.hyperion.tools.cds.HSRoleVars.hasRole(com.hyperion.tools.cds.HSRoleVars.ROLE_CAN_PROVISION_USERS));rNavMenu.add(this.createOpenItemsMenuItem());this.createOpenI

    It sounds like a issue with FireFox and Workspace.
    LiveCycle Workspace 9.0 - End User Issues
    ** New for LiveCycle ES2 SP1 ** Problem logging into Workspace 9.0 using Firefox 3.6.x in Windows
    When you log into Workspace 9.0 using the Firefox 3.6.x web browser in Windows, you are unable to enter text in the User ID or Password fields. The current workaround is to select another window (or empty area on the desktop), reselect the web browser to reset the focus, and then enter text in the User ID or Password fields.
    You can see it in the release notes at http://help.adobe.com/en_US/livecycle/9.0/releasenotes.html#EndUserIssues.
    Hope that helps!
    ...Gil

  • Flex Table Add Row Issue with Dynamic Entry Lists in Visual Composer

    All,
    Your help would be kindly appreciated in resolving an 'Add Row'-issue within a Flex Table that uses Dynamic Entry Lists in Visual Composer. The issue here is as follows :
    When I use a [Local Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=O5hrG2aMxWZ84Mu1211193041]to populate a row field, the initial row and all next rows are emptied upon 'insert row', they loose their selected values and also the entry list values ('pull-down menus') are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    The initial row does [show the entry list values |http://www.postyourimage.com/view_image.php?img_id=2HybmEHAuQYs9cg1211192766]from the Local Dynamic Entry List based on the dynamically assigned input value; upon 'insert row' the entry lists are lost. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=FPLr2cABcgiHRou1211192889].
    When using a [Global Dynamic Entry List |http://www.postyourimage.com/view_image.php?img_id=m5p2KYuBb442dTq1211193501]to populate the row fields the Flex-table behaves normally as expected. Unfortunately with a Global Entry List it is not possible to dynamically assign a input value. Please also see [screenshot|http://www.postyourimage.com/view_image.php?img_id=U96V0zENCCyO3gA1211193157].
    Please also see the [issue summary image|http://www.postyourimage.com/view_image.php?img_id=06xti08tIEfely1211195178] I made to visualize the issue.  What I basically would like to know is whether this is a 'known issue' or not, or that it is an issue that can be fixed or whether there is an alternative workaround available ... I'm using Visual Composer 7.0 and the Portal is at SP 13.
    Many thanks,
    Freek

    Hi,
    you should be able to assign a dynamic value with global entry lists as well. If you say @myParam as dynamic value. VC will indicate in red letters, that the field @myParam is unknown. However, it will work, as long as @myParam is known in the form or table where you use the entry list.
    I have never heard of the problem that entry lists are emptied after "insert"-event.
    Kindes Regards,
    Benni

  • Auto adjustment of page orientation causes printing issues with documents that have a page width greater than its page height.

    Hi,
    Since an upgrade from Word 2003 to Word 2010, we are experiencing printing issues with certain
    documents that have a page width greater than its page height.
    In Word 2003, it was no problem to set the page width greater than the page height while setting the page orientation to "portrait".
    In Word 2010, this seems impossible: despite leaving the page orientation to "portrait", if one changes the page width/height as stated,
    Word 2010 automatically adjusts the orientation to "landscape". Resetting the orientation to "portrait" will flip the page's width/heigth settings.
    This behaviour causes printing problems: the page prints out 90° rotated.
    I do not believe this is a printer driver issue: I tried several different printer drivers, and all give the same (bad) result. Setting the printer driver's page orientation settings (before printing) makes no difference, as
    Word 2010 seems to force the page orientation settings.
    Inserting the documents 90° rotated is not an option, since it causes problems with the printing margins.
    This is very annoying, since we have to print official documents of a municipality (driver's licences).
    Is there a workaround for this issue?
    Regards,
    Laurent Grandgaignage
    Sysadmin Gemeentebestuur Stabroek, Belgium

    Hi
    Thank you for using
    Microsoft Office for IT Professionals Forums.
    From your description, we can follow these steps to test this issue
    Step 1: Repair Office 2010
    1.      
    Click
    Start, and then click Control Panel.
    2.      
    Click
    Programs and Features.
    3.      
    Click the
    Office 2010 program that you want to repair, and then click
    Change.
    4.      
    Click
    Repair, and then click Continue. You might need to restart your computer after the repair is complete.
    Step 2:
    Rename the global template (Normal.dotm)Follow the steps for the operating system that you are using:
    Windows Vista and Windows 7
    a)      
    Exit Word 2010
    b)      
    Click
    Start.
    c)       
    In the
    Start Search box, type the following text, and then press
    ENTER:
    1.      
    %userprofile%\appdata\roaming\microsoft\templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    Microsoft Windows XP
    a)      
    Exit Word 2010
    b)      
    Click
    Start, and then click Run.
    c)       
    In the
    Open box, type the following text, and then press ENTER:
    %userprofile%\Application Data\Microsoft\Templates
    d)      
    Right-click
    Normal.dotm, and then click Rename.
    e)      
    Type
    Oldword.old, and then press ENTER.
    f)       
    Close Windows Explorer.
    How to troubleshoot print failures in Word 2010, Word 2007, and Word 2003
    http://support.microsoft.com/kb/826845
    Please take your time to try the suggestions and let me know the results at your earliest convenience. If anything is unclear or if there is anything
    I can do for you, please feel free to let me know.
    Hope that helps.
    Sincerely
    William Zhou CHNPlease remember to mark the replies as answers if they help and unmark them if they provide no help.

Maybe you are looking for

  • How can I stream radio on my Macbook?

    I have been trying for months to stream in my favourite radio stations.  I have been totally unsuccessful. Everything I search, as far as HELP is concerned, it always talks about movies. An app called Radium worked for a few days and then started to

  • Wireless printer goes offline

    I recently purchased an HP Laserjet Pro CP 1025nw wireless printer.  If I turn off the printer it is offline when I turn it back on.  I left it on all night and it was offline this morning.  The only way to resurrect it is to uninstall and install th

  • Mouse not working in Word 2010 and Outlook 2010

    Hi My setup is: Windows 7 Ultimate x64, Office pro 2010 I have a problem where my right click mouse og select text isn't working in Word and Outlook. My keyboard os working fine, and my mouse cursor moves fine, but if I try to select text with the mo

  • Verizon mail deleted from server is not deleted from IPAD2 but works fine on Android

    I have both an Android phone and an IPAD.  This Android (RAZR) and my previous one (Droid2) worked fine.   Mail deleted from the server is also deleted from the phone.  Deleted from phone would delete from server.  Worked great.  On IPAD, when settin

  • No sound in iMovie 5

    After upgrading to Quicktime 7.1.1 I've lost sound in iMovie 5. Previously recorded movies have lost their sound together with any new recordings I make. Volume levels are still shown in the timeline but no sound is produced. All other applications a