WHEN-LIST-CHANGED Triggers Works Only Once ??

hi
i have a form with the 2 list ITEMS
And i have some trigger WHEN-LIST-CHANGED For the
first LIST item which Populates the Second List
Based on the Value selected in First List
Its Works Fine For the First time.
But for second time Onward , it Does change the Value of the items in List2.
Do i have to first clear and then repopulate, i tried this but then i get a total
Blank , please help.
jai

From one of our support notes:
List Items populated from Record Groups are extremely useful when you need to
give your users a choice of items to choose from. This note will show you how
to create two list items that have a "master-detail" relationship, i.e., the
items appearing in the "detail" list item will depend on what is chosen in the
"master" list item.
CREATING THE LIST ITEMS
Create two list items called DEPT_LIST and ENAME_LIST. Allow them to remain
the default type of List Item, Poplists. For this situation we will not make
them base table items. Go to the property pallet of each list item, click on
the elements in list property and choose more. The cursor should be in the
very topmost item under List_Elements. Depress CTRL+SHIFT+< to remove this
default element and depress the OK button. Since you are going to populate the
list item with RG values at runtime you do not need this element. This will
avoid an "FRM-30351: No list elements defined for list item" error when
running the form.
CREATING THE RECORD GROUPS
For this example, we will use the dept and emp tables. We have a choice of
creating the Record Groups (RG) dynamically at runtime or at design
time. In this case, the easiest option is to create them at design time.
First create a RG called DEPT_GROUP with the following select statement:
SELECT TO_CHAR(DEPTNO) A,TO_CHAR(DEPTNO) B
FROM DEPT
If you are unfamiliar with the structure of the RG required when it will be
used to populate a list item please note the following:
1. A list item has both a label and a value. For this reason the select
statement brings back two fields, one which will be the label name and the other
the label value.
2. TO_CHAR is used to convert numeric values to character as the list item
contains character values.
Second, create a RG called ENAME_GROUP with the following select statement:
SELECT ENAME A, ENAME B FROM EMP ORDER BY ENAME
Note that depending upon your applications logic you may want to use the
distinct operator to prevent duplicate names. But you should be aware that
this will result in the overhead for sorting. Also, since ENAME is a VARCHAR2
data type, the to_char function is not needed.
POPULATING THE GROUPS AND LIST ITEMS
You can populate the RGs and list items from a number of triggers but the most
common is the WHEN-NEW-FORM-INSTANCE trigger. Place the following code in this
trigger:
DECLARE
V_DEPT_GROUP NUMBER;
V_ENAME_GROUP NUMBER;
BEGIN
V_DEPT_GROUP:=POPULATE_GROUP('DEPT_GROUP');
V_ENAME_GROUP:=POPULATE_GROUP('ENAME_GROUP');
POPULATE_LIST('DEPT_LIST','DEPT_GROUP');
POPULATE_LIST('ENAME_LIST','ENAME_GROUP');
END;
Note that this code is needed to initially populate both RGs and both List
Items.
If you run the form at this time you will see that DEPT_LIST contains all the
departments in Dept and ENAME_LIST contains ALL the enames in the emp table.
As our original goal was to populate ENAME_LIST depending upon what was chosen
from DEPT_LIST, we will now add the code to do this. In this situation we will
add the code to a WHEN-LIST-CHANGED trigger on DEPT_LIST. The code should
look as follows:
DECLARE
V_NUMBER NUMBER;
V_QUERY VARCHAR2(512);
BEGIN
V_QUERY:='SELECT ENAME A, ENAME B FROM EMP
WHERE DEPTNO = '||:DEPT_LIST||' ORDER BY ENAME';
V_NUMBER:=POPULATE_GROUP_WITH_QUERY('ENAME_GROUP',V_QUERY);
POPULATE_LIST('ENAME_LIST','ENAME_GROUP');
END;
First we will build a query that will contain the currently chosen department
in DEPT_LIST. This is basically the same query we created in RG ENAME_GROUP
but we are adding the where clause restriction. We then use the
populate_group_with_query built-in to repopulate the RG and then populate the
list again.
Run the form again and test. Choose department 10 from the DEPT_LIST list item
and then choose the ENAME_LIST item. You will note that the enames appearing
in ENAME_LIST will be those in department 10. This should work for any
department you choose.

Similar Messages

  • When I long in and type my sync key its said : incorrect key.I worked only once

    I have Firefox 4 on Mac. I have sync for Iphone settled. I have Home app' in the Iphone...I cannot log in, response : incorrect Sync Key. But it worked only once.
    I want uninstall all the stuff and start again, how?

    Sounds as if you are trying to create a new Sync account. You need to treat that software reload as a '''new device''' for purposes of Sync.
    https://support.mozilla.com/en-US/kb/add-a-device-to-firefox-sync#w_add-another-computer

  • Add-ons working only once

    It's been a while now that I've noticed my addons not working on Mozilla DE in Ubuntu. Addons are installed correctly and, indeed, they show up when I use mozilla sync in other computers.
    Today I've tried the troubleshooting suggested here https://support.mozilla.org/en-US/questions/982460
    It works only once. I can install my addons again, but as soon as I close firefox and open it again the addons dissapear from the top bar and customization window. Even when I try to change preferences for Ghostery I only get a blank screen so addons are definitely not working in Ubuntu

    Lets do a full install. But do it this way;
    '''[http://www.mozilla.org/en-US/firefox/all/ Download Firefox Full Installer For All languages And Systems]''' {web link}
    Save the file. Then;
    Using your file browser, open the '''Programs''' folder on your computer.
    '''Windows:''' C:\Program Files
    C:\Program Files (x86)
    '''Mac:''' Open the "Applications" folder.
    '''Linux:''' Check your user manual.
    • Linux: If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see Install Firefox on Linux. If you downloaded and installed the binary package from the Firefox download page, simply remove the folder firefox in your home directory.
    Look for, and rename any Mozilla and Firefox folders by adding '''.old''' to them.
    Now run the full installer.
    If all goes well, remove the OLD folders when you are done.

  • Using WHEN-LIST-CHANGED on T-list to navigate block records

    I have a form on which I use a T-List to list all of the child records in a block based on the selected parent record of the form. I am using the T-List almost strictly for navigational purposes (and eventually later for delete purposes as well). Above my T-List on the form is all of the individual fields that display the details of the record that is selected in the T-List. My POST-QUERY trigger on the block populates the T-List with all of the child records, and also uses the value of the highest (max value) child record to updated all of the detail fields for the block. I also have a program unit that updates all of the detail fields for the block that gets called from my WHEN-LIST-CHANGED trigger for the T-List. It passes the key value from the T-List to the program unit and updates all of the child record detail information.
    My problem comes when I attempt to actually update the currently selected child record. I've tried a number of different things to get this to work, but none of them have completely worked, and I'm coming to the end of my knowledge base and can't figure out how to make this update the child record correctly. Initially I was having a problem where the form actually WAS performing the update, but it was always (no matter which list item I had selected) updating the same record, which was the first record that was retrieved for the block. I've run the form in debug mode, and checked the actual values of the child record fields after I've changed the selected item in the list, and all of those fields are actually the correct values corresponding to the selected item in the list, but for some reason, it won't update the record that is currently in those fields when I do a save. From what I can tell, I need to be able to somehow actually navigate the records in that block when I click on an item in the list (i.e. perform next_record or previous record until the block gets to the record that corresponds to the item selected in the list) so that the form recognizes and attempts to update the correct record.
    Has anyone out there tried this before? Does anyone know of a solution for how to do this? Any help would be greatly appreciated. Thanks in advance.
    -::YEX::-
    <)))><

    1. WHEN-LIST-CHANGED trigger is not for items it is for List items (Pop , COMBO, Tlist)
    2. Try to write a code on WHEN-VALIDATE-ITEM at field level with code similar to this
    if :custname is not null then
    begin
          select ship_to_location into :ship_to_location
            from tablename
         where custcd = :custcd;
    exception when no_data_found then
          ----call some alert and error message.........
    end;
    else
      :ship_loc := null;
    end if;plz mark it helpful/correct if it is

  • CUP - field mapping from request to SU01 for Accnt No worked only once

    CUP - field mapping from request to SU01 worked only once. I configured the Field Mapping for Account Number with Account Id. First request worked fine in DEV systems, 2nd and 3rd requests failed. Same thing happened in QA systems. Not sure whether the difference in SP on GRC and ECC is causing this. Any help is greatly appreciated.
    We are currentky on GRC 5.3 ABAP stack SP 14.0  
    and
    ECC - SAPK-53315INVIRSANH VIRSANH 530_700: Support Package 0015
    Any help is greatly appreciated.
    Thanks,
    Vish

    Hi Diego,
    Yes, we are on VIRSANH SP15  also VIRSAHR SP13 for SAP_HR . My connector type is SAP HR System, Version ECC 6.0.
    We are on GRC 5.3  Support Pack 14.0 . Our GRC 5.3 installation is running on ABAP stack.
    It is very strange that in QA client, SU01 got updated atleast 3 times with new account number , user group. Tried 4th time, did not work. In DEV client, it worked only once.
    Thanks,
    Vish

  • Listing a join column only once in a select

    Hi.  Has there been any advancement in t-sql where I can continue to select * on tables a and b in a join but expect to get back only one occurrence of columns that r used in the join.  Or do I still need to explicitly list all cols in the
    query?
    eg.  select a.*,b.* from a inner join b on a.c = b.c
    hoping there is some shorthand way to see c only once
     

    Sorry, I would not refer your expectation with "advancement". Relational engine needs to identify each column separately in the query, user have capability to select required columns.
    If you consider LEFT OUTER JOIN, how would it decide which column to display from LEFT or RIGHT table (because when the values do not match you will still have all the rows from LEFT table).
    When you specify "*" it brings the entire result set. So you will have to do little work and select only the required column. :-)
    If this post answers your query, please click "Mark As Answer" or "Vote as Helpful".

  • BM 3.9 Access Rules Work Only Once

    What I want:
    Access Rule that blocks ALL attempts to download in a browser any file that ends with a specific extension (.exe for example).
    What I have:
    Access Rule:
    Type: Port
    Source DNS Hostname: Any
    Destination DNS Hostname: *.exe
    Origin Server Port: 1-65535
    Action: Deny Access
    What is happening:
    I apply the rule and test and I am denied the first attempt.
    When another attempt is made, the action is allowed.
    Monitor shows the following error message when rules changes are applied:
    Unable to read configuration from NDS (error - -672)
    Note: I just removed ALL rules listed in iManager, saved and I am still able to access web pages. I though that by default access is denied?

    In article <[email protected]>, Johnefleming
    wrote:
    > I apply the rule and test and I am denied the first attempt.
    > When another attempt is made, the action is allowed.
    >
    > Monitor shows the following error message when rules changes are
    > applied:
    >
    > Unable to read configuration from NDS (error - -672)
    >
    Do you have a replica on the server?
    A 672 error sounds like something fundamentally wrong is going on with
    NDS on that server. You should have a replica on it that holds the
    server objects at least.
    Craig Johnson
    Novell Support Connection SysOp
    *** For a current patch list, tips, handy files and books on
    BorderManager, go to http://www.craigjconsulting.com ***

  • Redirected printers using Remote Desktop Easy Print driver work only once during session

    Hello all
    We are running Windows Server 2012 R2 Remote Desktop Services Sessions hosts with printer redirection allowed using only the Easy Print Driver, we have no other drivers installed on the servers. All client printers are redirected and can print fine, but
    only once per session! We have tested with several different client printers and they all work a single time in each session. After that the user needs to log off and then back on again to be able to print once again, but only once. Needless to say, our users
    are annoyed. If I look at the c:\windows\system32\spool\printers folder while jobs are printing, but failing, I can see the spool files appearing and disappearing as jobs are spooled. No errors in the event logs accompany the behaviour. Our clients are running
    Windows 7, 8 and 8.1. All exhibit the same problem. The error looks a little like what is described here:
    http://support.microsoft.com/kb/2925429
    While similar, this problem describes a scenario where Easy Print is not used, but XPS is, and since Easy Print is based on XPS and the behaviour is very similar, I am tempted to make a connection.
    I have checked all the usual stuff with permissions etc, and no manufacturer provided drivers are present. The problem appears on newly installed systems as well as one that have been running for some time. Restarting the spooler services does not resolve
    the problem. Actually I do not think it is related to the spooler service or driver framework at all, but rather is an Easy Print driver issue that is occurring much later in the process, if not I would see some errors in the logs and no jobs would print at
    all.
    Anyone ever heard of something like this?
    Thanks
    Morgan

    Hi Morgan,
    Based from your description, users can only print once during single RDP session, I suggest you check if this issue also happens locally.
    In addition, after the first print attempt, does any other issue exist on the RDP session?
    Is the server fully patched? If there are any available driver updates, please also apply them. If there are any third party software installed, try disable/uninstall them to see if the issue persists.
    You can also enable print auditing to get more detailed information about this issue.
    More information for you:
    Auditing Printing Events
    https://technet.microsoft.com/en-us/library/cc976774.aspx
    Logging Spooler Events
    https://technet.microsoft.com/en-us/library/cc976746.aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • Update works only ONCE on random - then i cant change songs!

    duuuh. I tried to update by itunes. cool! it worked.
    after a week the songs were boring and i decided to update the list of my songs... selected them carefully in my library and then it happened. i clicked on update and it went through the list in 2 seconds (the list was stuffed with 700mb new music) and said "done"! i began to wonder how this was possible, ejected to pod from itunes and tried listening.
    so far ... as you may have thought nothing was changed on my ipod, but a few songs from the previous content were missing.
    I jacked it back in and on the next playlist update it came up with an error (something like "cant update error(-36)" ).
    after trying to play the songs it showed up with a reading error (y'know these green/yellow flashing LEDs). Kay.
    after a few more tries i finally got it working again with a new playlist (installed itunes again, formatting, set it back to default settings with ipod updater, n'stuff...).
    Now everytime i try to update my playlist i can only do this on random mode with itunes I CANNOT update single selected files. if i do this the error occures again. and i have to work around it for an hour (which is really annoying!).
    Can anyone help me to get my shuffle working correctly?
    btw dont worry about my bad english im german... =)

    Which USB port are you using? Front-mounted ports are generally bad for iPods but even rear ports can be bad. Try using a different port to see if it stops the errors.
    If you turn on "Disk Mode" the iPod won't mount/unmount as often (because you have to tell it to unmount). That might help (since otherwse, every change you do causes the iPod to mount, do something, then unmount).
    Another way to do it is to always show the "iPod Playlist" and do your changes with the iPod disconnected. Then you plug it in and let it do all the changes in one go.

  • My button function seems to work only once

    When I tell Flash to go back frames the buttons cease to work, in other words, the button only works once. I've tried tracing it to find the problem and when I tell it to go back frames it won't run the function.  I'm using actionscript 3 on Flash CS4.
    hap.addEventListener(MouseEvent.CLICK,clickFunction2);
        trace("addEventListener worked!");
    function clickFunction2(evt:MouseEvent):void {
        trace("clickFunction2 worked!");
    this.gotoAndPlay(191);
        trace("gotoAndPlay worked!");
    sad.addEventListener(MouseEvent.CLICK,clickFunction3);
        trace("addEventListener worked!");
    function clickFunction3(evt:MouseEvent):void {
        trace("clickFunction3 worked!");
    this.gotoAndPlay(1,"sadness");
        trace("gotoAndPlay worked!");
    ang.addEventListener(MouseEvent.CLICK,clickFunction4);
        trace("addEventListener worked!");
    function clickFunction4(evt:MouseEvent):void {
        trace("clickFunction4 worked!");
    this.gotoAndPlay(1,"anger");
        trace("gotoAndPlay worked!");
    rewind.addEventListener(MouseEvent.CLICK,clickFunction5);
        trace("addEventListener worked!");
    function clickFunction5(evt:MouseEvent):void {
        trace("clickFunction5 worked!");
    this.gotoAndPlay(120,"happiness");
        trace("gotoAndPlay worked!");

    Thanks for the answer.  I was having the same issue with something I was writting.  I was wondering, if it would be better to remove eht event listener and then add them after the frame has changed.
    Would one approach be bettor or worse that the other.
    -Thanks

  • Second list depending on first on when-list-changed

    Hello!
    I'm having some trouble with 2 poplists. First poplist (:bloc_portar.lista) is generated ok. Second poplist (:bloc_portar.cnp) depends on the values of the first like this:
    DECLARE
         nume_lista1 varchar2(60) := replace(:bloc_portar.lista, ' ', NULL);
         nume_lista2 varchar2(60);
         rg_query_cnp varchar2(1000) := 'SELECT b.id, b.id FROM vizitatori2 b
         WHERE b.nume=nume_lista2';
         rg_id_cnp recordgroup;
         rg_id2 recordgroup;
         err_cnp NUMBER:= 0;
    BEGIN
    nume_lista2 := substr(nume_lista1, 1, 7);
    message('---' || nume_lista2 || '---');
         rg_id2 := Find_Group ('rg2');
         if not ID_NULL(rg_id2) then
         delete_group(rg_id2);
         end if;
         rg_id_cnp := create_group_from_query('rg2',rg_query_cnp);
         err_cnp := populate_group(rg_id_cnp);
         clear_list('bloc_portar.cnp');
         populate_list('bloc_portar.cnp',rg_id_cnp);
    END;
    nume_lista1 fetches the data selected from the first poplist and nume_lista2 takes the first 7 letters of that string to pass it in the query which should make the group/populate the second list. This code is more of a test and not a final code thats why i used those string functions (and also because the values in first list are concatenated (name+surname).
    I used a message to make sure the value in nume_lista2 is the one that i want for the query to work.
    The problem : its in here 'SELECT b.id, b.id FROM vizitatori2 b WHERE b.nume=nume_lista2';
    I've found out that when i pass the WHERE condition "manually" like this 'SELECT b.id, b.id FROM vizitatori2 b WHERE b.nume=''James'' ';
    the second poplist is populated just fine with the right values. But when i try to make it use the variable nume_lista2 in the condition it says that rg2 (aka the group for the second poplist) "Cannot create Group rg2".
    Hope you can help me,
    Iulian

    But can u enlighten me on a couple of issues pls?Sure :)
    >
    1. How come it doesn't recognise the variable in the query when i make the definition in DECLARE? Shouldn't it be analyzed only later in the main program when i actually use the query ? How does this work?You can do that in declare part too :). I am usually convenient to have a query built just before using it.
    2. Why tripple quotes and concatenate operators ? Is this how variables are passed to queries? I believe i used them before without any extra bording or anything.varchar2 variables are not passed with quotes by default. So, if you do not use the quotes, the resultant query would be something like
    SELECT b.id, b.id FROM vizitatori2 b WHERE b.nume=Jameswhich is not what we expect. So, surround the variable with the quote, which would turn the query to
    SELECT b.id, b.id FROM vizitatori2 b WHERE b.nume='James'HTH.
    -Arun

  • File Association: "Change All" working only for recommended programs

    Hello,
    I am having problems with the "Change All" function in the Finder. I only seem to be able to make a change to a program which is already recommended in the drop-down menu. If I use "Other..." and select the program and then select "Change All", it automatically reverts back to the Default setting.
    As a concrete example:
    I want to open all .tiff files with Acrobat Pro 7.0, the default setting is Preview. If I select Acrobat and click on Change all, I get the standard verification dialogue. However as soon as I confirm, the drop down menu switches back to Preview. Instead, if I select Photoshop (which is already in the drop down menue) I can make the change without problems.
    I tried to restart and I even manually edited the "launch services" plist file - changing to Photoshop works after restart, changing to Acrobat is ignored.
    File vault is off. Repairing permissions was also without success.
    Would anyone have an idea how to fix this?
    Best regards,
    Mark
    System: Powerbook G4 Aluminium / OSX 10.4.11

    Unfortunately, there isn't always a way around this. PDF files are an excellent example. A PDF file created by Adobe has a Creator of CARO and a Type of PDF_. Preview has a different Type and Creator code for PDF files created with it.
    So what happens is when you assign (say the Adobe Reader) to Adobe PDF files, it associates them with those based on Adobe's Type and Creator codes. That usually means PDF files created with Preview will still open in Preview.
    If you associate Preview PDFs with the Adobe Reader, then the OS breaks the link to the Adobe Type/Creator codes. Now Preview PDF files will open in the Adobe Reader. But since the Adobe created PDFs are no longer linked to the Reader, the OS opens them in the nearest default program, which is Preview.
    You end up with an unwanted one-or-the-other problem.

  • Stop release strategy when pgrp changed triggering different release group/

    Currently when our buyers change the purchasing group field on the purchase requisition it is triggering a new release strategy because the release group and code is different than the original creator. 
    It has been indicated that we should request from SAP that these two fields be made available to the structure for the release strategy. 
    Is there a user exit that we can use to stop a new release strategy?

    Hi,
    Do you have different rel. stgy for diff. plants? if yes, than which rel. stgy should be picked in case if both plants entered have different rel. stgy? what is your expectations/requirements?
    If your PO is to go through diff. approvals for different plants than you should have different PO for each plant (even diff authorizations and rel. codes), or else you should not have plant as the criteria. Technically, whether it is fesible or not is different question, but whether practically your organization is ready that if a common material is to be procured it will have approvals of only one plant or may be a different approvals all together?
    Regards,
    Dakshesh

  • HP Photosmart 7520 scan to email not working / working only once in a while

    I have read through all of the answers that I can find as to how to fix the scan to email function on my printer.  The printer is only a couple of months old.  I am using a Mac.  I need this to work.  The problem is that while I always receive the emails, they don't always have the scan attached to them.  Sometimes, but not always.
    When I scan one page, it works.  When I scan 10 pages, it works about half the time.  When I scan 25 pages, as I sometimes do, it doesnt' work.
    HP, please fix this !  It worked just fine a couple of weeks ago!
    Machta

    Hi Machta,
    Welcome to the HP Support forums.  I see that your scan to email feature of your Photosmart 7520 seems to be inconsistent when attaching the scanned documents to the email.
    Please start by assigning a manual IP address and manual DNS servers to your printer.  If you are unsure how to do this please click here.  It will take you to another post I’ve done that has the steps with screen shots.  Don’t fret that the screen shots are for a Photosmart  7510 printer, the steps are the same.
    If you have already set the manual IP address and manual DNS servers, then please call HP’s Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you live outside the USA/Canada region please click here to find the Technical Support number for your country/region.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • LG IPS display with HDMI plugged to Macbook Pro worked only once

    Hi!
    I bought this display (http://www.lg.com/us/monitors/lg-IPS237L-BN-led-monitor).
    I plugged it to my Macbook Pro 13 with Mac OS X Mountain Lion updated to the latest version using a HDMI cable and a HDMI to Mini Displayport conversor. It didn't work the first time, but after searching in the forums i tried deleting the file /Library/Preferences/com.apple.windowserver.plist and it worked! Later on my Mac ran out of baterry and shutdown. I turned it on again but since then, i haven't been able to get the display working. It just says "no signal", and i can see it gets recognized in someway by Mac OS because when i plug it or turn it on the laptop screen goes blue, but then nothing happens and i can't find the display under System Preferences > Displays.
    I have tried the following:
    - Deleting all the files related to com.apple.windowserver.plist (including those under ~/Library/Preferences/ByHost)
    - Delete also those files in single user mode and also in verbose mode.
    - Deleted Overrides files for displays (/System/Library/Displays/Overrides)
    - Restarted in Safe mode.
    - Deleted .GlobalPreferences files
    - Reset NVRAM and SMC
    - As a last resort i tried reinstalling Mac OS. That didn't work either.
    I have tried those and a couple of things more that i can't rememeber, but at this point i'm clueless. I guess my Mac is caching something related to the display and that's why it doesn't work. It's not certainly a cable or device problem since i already could make it work once.
    Any ideas what could i be missing? I'm pretty sad i can't use my new display! Any help appreciated!

    It was the **** cable. As it worked once, i never cared to test with another one. As soon as i did, it worked. So many wasted hours but pretty happy now.

Maybe you are looking for

  • Firefox crashes on Start-Up

    Hello! I downloaded the latest version of Firefox for Windows XP but it always crashes on start-up. Mozilla Crash Reporter appears. I am not able to start Firefox in safe mode. My latest crash ids are bp-9fdcf812-70e4-4025-97b1-4c7592130430, and bp-7

  • Palm Desktop Will Not Open on Windows XP Pro

    I have recently upgraded my Treo 700P to a Centro. I completely removed all palm software on my computer, rebooted and then reinstalled it. It has been working with no problem until today. I haven't installed any new software or removed any from my p

  • Getting error when installing OBIEE 11.1.1.6 "Operating system does not support IPV4".

    HI, I am trying to install OBIEE 11.1.1.6 on Windows 7 . Have created repository successfully ,using the RCU 11.1.1.6 and now tring to install OBI. I am getting the below error "Operating system does not support IPV4". Can anyone please suggest why i

  • Deploying junitee outside of the application ear file

    I have an application that is deployed within an ear file, and I have junitee tests within a war file, called test.war. I would like to not have to place the test.war within the ear file because the ear may be release code but I still want to test it

  • Creating button and actionhandler..well trying

    The thing i am not sure about are the words ActionEvent e , not sure if that is suppose to go there but its in my book and i was trying to folow an example to just get it to work. EORRORS A:\LetterProgram.java:42: cannot resolve symbol symbol : class