Mysterious List behaviour

Hi,
I have a small function, and I don't understand it's behaviour. I hope some can explain me what happens:
public static List findList(JdbcSupport jsi, List list, RMObjectJdbc cls, long Id, String sql, Connection c) throws Exception{
          PreparedStatement ps = jsi.prepareStatement(sql,c);
          ps.setLong(1, Id);
          ResultSet srs = ps.executeQuery();
          int p = 0;  // a query is done and has three results
          for (; srs.next(); ){
               RMObject e = cls.getByIdSimple(srs.getLong(1), c);
               list.add(e); //result is added to list
System.out.println("findList:"+e.getClass().getName()+":"+Id+","+0+","+e.get_id()+","+e.hashCode());
//check properties, "e" really exist
               System.out.println("+"+list.get(p).hashCode());
//also the hashcode of "e" is printed corrctly
               p++;
          for(int i=0;i<list.size();i++){
               System.out.println(i+"-"+list.get(i).hashCode());
// but here, all the elements of the list are replaced by the last, how is that possible?
//that is my question
          srs.close();
          return list;
     }You can see the results of the screen-output
findList:nl.zorggemak.jdbc.orm.openehr.rm.datatypes.basic.DvIdentifierJdbcImpl:1,0,27,766399937
+766399937
findList:nl.zorggemak.jdbc.orm.openehr.rm.datatypes.basic.DvIdentifierJdbcImpl:1,0,28,766399954
+766399954
findList:nl.zorggemak.jdbc.orm.openehr.rm.datatypes.basic.DvIdentifierJdbcImpl:1,0,29,766399971
+766399971
0-766399971
1-766399971
2-766399971
So, why are all three elements of the list replaced by the last added?
It happens outside the loop.
If I don't ant this to happen, what a I do?
Thanks for any help
BertV

Thanks for your reply.
It looks like you are right, but as you can see on the output, I think that you are right, stupied, took me all evening to find out, and I did not see it, it is obvious.
Thanks, I will try immediately

Similar Messages

  • Dropdown list behaviour

    Hi there,
    I am using Designer 8.2 (within SAP) to generate an Interactive Form. A dropdown list is filled with almost 1000 entries. This forms works OK by opening it with Adobe Reader 9. The problem comes when I tried to use it in a mobile device, Motorola MC75, WM6.1.
    The form and even the dropdown list opens ok, but the problem comes when I select certain items from the dropdown. When the field looses its focus, the item changes by itself, normally to an item at the bottom of the list.
    I couldn't find any pattern whatsoever that gives me a hint about this problem.
    Has anybody run into something similar?
    Is there any special consideration in populating a table used as a source of a dropdown regarding the Item Code and Item Text?
    Thanks a lot for any help!
    Cheers,

    Hi Otto,
    Yes, backend is OK. I even tested it in a mobile phone that has the same problem.
    Javascript, good catch! Adobe Reader for Pocket PC doesn't support Javascript and I have to say, I also found some limitations with Formcalc.
    We're in touch with the provider of the devices, and even talked with Adobe Australia, but with no luck.
    It was helpful to read your answers tough. Makes me see that I tried almost everything I can think of.
    Hi Robert, nice work you had to do!
    You're right about the limitation, which is 50 and applies for Java WD and Online Interactive Forms. It's setting within the SAP Visual Administrator. There are several threads devoted to this. I don't think this is the case for me, as I alredy checked it. The issue remains with only 25 items!
    I finally give up and blame the "Pocket PC + Adobe Reader for Pocket PC + Adobe Interactive Offline Form" combination. There is a lack of support for this, and it's a shame because it could have a great potential.
    I replace those dropdowns with radiobuttons (weird, but works for my requirement) and leave a couple of dropdowns that haven't given me any problem so far, fingers crossed.
    I will leave the thread open for a few days, in case any of you SAP gurus want to share more.
    Cheers!
    Andres.

  • Dropdown list behaviour - (Adobe Pocket PC)

    Hi there,
    I am using Designer 8.2 to generate an Interactive Form using ABAP. A dropdown list is filled with almost 1000 entries. This forms works OK by opening it with Adobe Reader 9. The problem comes when I tried to use it in a mobile device, Motorola MC75, WM6.1.
    The form and even the dropdown list opens ok, but when I select certain items from the dropdown and the field looses its focus, the item changes by itself, normally to an item at the bottom of the list.
    I couldn't find any pattern whatsoever that gives me a hint about this problem.
    Has anybody run into something similar?
    Is there any special consideration in populating a table used as a source of a dropdown regarding the Item Code and Item Text?
    Thanks a lot for any help!
    Cheers,
    Andres.

    Hi Otto,
    Yes, backend is OK. I even tested it in a mobile phone that has the same problem.
    Javascript, good catch! Adobe Reader for Pocket PC doesn't support Javascript and I have to say, I also found some limitations with Formcalc.
    We're in touch with the provider of the devices, and even talked with Adobe Australia, but with no luck.
    It was helpful to read your answers tough. Makes me see that I tried almost everything I can think of.
    Hi Robert, nice work you had to do!
    You're right about the limitation, which is 50 and applies for Java WD and Online Interactive Forms. It's setting within the SAP Visual Administrator. There are several threads devoted to this. I don't think this is the case for me, as I alredy checked it. The issue remains with only 25 items!
    I finally give up and blame the "Pocket PC + Adobe Reader for Pocket PC + Adobe Interactive Offline Form" combination. There is a lack of support for this, and it's a shame because it could have a great potential.
    I replace those dropdowns with radiobuttons (weird, but works for my requirement) and leave a couple of dropdowns that haven't given me any problem so far, fingers crossed.
    I will leave the thread open for a few days, in case any of you SAP gurus want to share more.
    Cheers!
    Andres.

  • Need help: Mysterious initialization behaviour

    I subclassed a class UI_ProgressDialog with the class
    UI_MultiProcessProgressDialog.
    This class defines the following constructor:
    public UI_MultiProcessProgressDialog(Frame owner, String title, String header,boolean showTextArea, boolean showProgressLabel,boolean autoClose)
    super(owner, title, header, showTextArea,showProgressLabel, autoClose);
    This constructor calls the superclass constructor which calls a method named initGUI. This method is overriden in the subclass UI_MUltiProcessProgressDialog and is being called within the call to the super class constructor of the superclass UI_ProgressDialog.
    This initGUI method initializes a class attribute defined in
    the subclass UI_MultiProcessProgressDialog. Everything works fine but when the constructor is being processed,
    the regarding attribute is reset to null.
    If the class attribute is defined as shown here:
    Object o;
    everything works as it should.
    But if the regarding attribute is defined as :
    Object o = null;
    then the class crashes with a null pointer exception although the attribute has been initialized in the initGUI method.
    What's the difference between these two initializations ?
    It seems that the initialization of the class attributes is being processed after the constructor respective superclass constructor call. Can someone explain this to me ? Its urgent !!!

    not sure if this is relevant, but it might help.
    public class Master {
      public static void main(String[] args) {
        System.out.println("creating base");
        Base base = new Base();
        System.out.println("creating sub");
        Sub sub = new Sub();
    class Base {
      public Base() {
        System.out.println("in Base constructor");
        init();
      protected void init () {
        System.out.println("in Base init");
    class Sub extends Base {
      public Sub() {
        System.out.println("in Sub constructor");
      protected void init () {
        System.out.println("in Sub init");
    }outputs
    creating base
    in Base constructor
    in Base init
    creating sub
    in Base constructor
    in Sub init
    in Sub constructor

  • Showing filter in dynamic list by default

    I have a form using the ADDT dynamic list behaviour. What I'd like to do is show the filter items automatically when that form opens rather than have the user click on the Filter button.
    Does anyone know how to do that?
    Thanks in advance for any advice.

    Further searching, and I discovered this has already been answered.
    See http://forums.adobe.com/message/1075032#1075032

  • Drop down like behavior list in a query

    I would like to have drop-down list behaviour in a query. I could do it using with a  UDF (U_TipoMat) with 2 valid values set in a user table.
    DECLARE @TM Float
    SET @TM=(SELECT T0.U_TipoMat FROM .[@PARAMETROS] TO WHERE T0.U_TipoMat = )
    here it lets me select one of the 2 values stored in these UDF but it does not pass the value to the query
    Any ideas?
    Edited by: Héctor Ramón Santos Anaya on Mar 13, 2008 1:36 AM

    Hector,
    Can I know what is the end result you are trying to achieve.
    What are you trying to do with the value in the variable @TM.  Where are you planning to use this query?
    Also [dbo\].[@PARAMETROS\] TO ...you have use TO instead of T0.
    DECLARE @TM Float
    SELECT @TM = T0.U_TipoMat FROM [dbo\].[@PARAMETROS\] TO WHERE T0.U_TipoMat = '[%1\]'

  • Failing OpenGL & Mystery Wacom Int3

    Ok... tried posting under other topics, but I guess I need to start my own. I have tried calling tech support (HAH!!) and I am teetering on returning CS4. So PLEASE someone from the mothership give me a sign you care...
    Nvidia GeForce 8600GT 256mb downloaded the drivers last week (Driver Version: 6.14.0011.7824)
    Operating System: Windows XP Professional (5.1, Build 2600) Service Pack 3
    Processor: Intel(R) Core(TM)2 Duo CPU E6850 @ 3.00GHz (2 CPUs)
    Memory: 2814MB RAM
    Page File: 1049MB used, 3652MB available
    DirectX Version: DirectX 9.0c (4.09.0000.0904)
    Tech support says I am configured fine. But I need to have a compatible video card. I say based on specs it is. They say but it might not. I ask for list of "approved cards" and they can't tell me... they then tell me its Nvidia & Wacoms problem (but Autodesk works fine?) and transfer me to customer service to get me the mysterious list of approved vid cards (which I have searched for on the site - can someone point me top this?)and then cust service is reading off the side of the box "must have 1..2..8.. mb of " not even aware of what it is she is reading... then when I ask for SPECIFICS I am cut off. No call back even though she asked for my number in case we were... you know... cut...
    So... PLEASE... can I find out if my card is OK for this new OpenGL stuff?
    Why is my Wacom Not working?[downloaded latest drivers and called their support] It shows up all cursor function fine, except when you try to paint... NOTHING appears. (Invisible ink, perhaps? Is this a feature?)
    Thanks in advance for some solid and meaningful response(s)....

    DISCOVERY!!! Ok, I THINK I have it solved... NVidia Controll Panel, under the 3D settings, is a choice of either "Use the advanced 3D image settings" OR "Let the 3D App decide" well, I switched from the first to "Let the App decide" and it appears that OpenGL is fine AND the WACOM is operating normally!!!
    It's been about 30 minutes of normal functionality (anew world record for me). Let's assume no more news is good news. My apologies for all the bad thoughts I had towards the great folks in San Jose and beyond... :-)

  • Complex query help

    Hope someone can help with this.
    I have a database structure :
    table : photos
    Photo_ID (PK)
    Title
    Orientation
    etc
    table : keywords
    Keyword_ID (PK)
    Keyword
    Category
    table : photokeywords
    Photo_ID
    Keyword_ID
    I have a search page that uses checkboxes allowing users to
    search on keywords, that returns any photos which match the
    selected keywords.
    In the search page the checkboxes are created using an array,
    and are displayed as :
    //Display the checkbox
    echo "<td width=\"2%\">";
    echo "<input type=\"checkbox\"
    class=\"tickbox_".$row_type."\"";
    if (in_array($keyword['Keyword_ID'],$photokeywords)) { echo
    " checked"; }
    echo " name=\"ckbox[".$keyword['Keyword_ID']."]\"
    id=\"ckbox[".$keyword['Keyword_ID']."]\">";
    echo "</td>\n";
    Someone kindly helped me out some time ago to write a fairly
    complex (for me!) query that counts the matches, so enabling the
    results to be ordered by the number of matches, ie the most
    relevant matches first.
    The code for this is :
    //db session
    mysql_select_db($database_Photolibrary, $Photolibrary);
    if (isset($_GET['ckbox'])){
    // get profile keys
    $ckbox = array_keys($_GET['ckbox']);
    // sql string
    $sql = 'SELECT *, Count(*) As rank FROM photos, photokeywords
    WHERE photos.Photo_ID =
    photokeywords.Photo_ID AND photokeywords.Keyword_ID IN(' .
    implode(',', $ckbox).') GROUP BY
    photos.Photo_ID ORDER BY rank DESC, Title';
    $photos = mysql_query($sql) or die(mysql_error());
    $row_photos = mysql_fetch_assoc($photos);
    @$totalRows = mysql_num_rows($photos);
    The page I have is using Tom Muck's pages list and horizontal
    looper behaviours to display the results.
    Everything works fine except the pages list, where there is
    more than one page of results. I've emailed the ever helpful Tom
    who has advised me that the query may need to be constructed in DW,
    as the Pages List behaviour relies on DW's code to manage the
    paging.
    So I've gotten as far as the basic query code :
    <?php
    mysql_select_db($database_Photolibrary, $Photolibrary);
    $query_photos = "SELECT *, Count(*) As rank FROM photos,
    photokeywords WHERE photos.Photo_ID = photokeywords.Photo_ID AND
    photokeywords.Keyword_ID IN(' . implode(',', $ckbox).') GROUP BY
    photos.Photo_ID ORDER BY rank DESC, Title";
    $photos = mysql_query($query_photos, $Photolibrary) or
    die(mysql_error());
    $row_photos = mysql_fetch_assoc($photos);
    $totalRows_photos = mysql_num_rows($photos);
    ?>
    But am unsure where I need to call the ckbox values,
    previously :
    if (isset($_GET['ckbox'])){
    // get profile keys
    $ckbox = array_keys($_GET['ckbox']);
    in the DW construction.
    I've been playing around with different things in the query's
    variables, such as
    Name : Keyword_ID
    Default value : 1
    Run time value : $_GET['ckbox']
    but to no avail.
    If anyone can help out with this it'd be much appreciated.
    Cheers.

    Something like this?
    SQL> var P_DISCOUNT_RATE number
    SQL> var P_BASE_YEAR number
    SQL> var P_FUTURE_YEAR number
    SQL> exec :P_DISCOUNT_RATE := 0.1; :P_BASE_YEAR := 2003; :P_FUTURE_YEAR := 2009;
    PL/SQL-procedure is geslaagd.
    SQL> select sum(npd)
      2    from ( select nvl
      3                  ( ( select sum(sal)
      4                        from emp
      5                       where to_number(to_char(hiredate,'yyyy')) + 25 = :P_FUTURE_YEAR - l
      6                    )
      7                  , 0
      8                  ) / power(1 + :P_DISCOUNT_RATE, l) npd
      9             from ( select level-1 l from dual connect by level <= 1 + :P_FUTURE_YEAR - :P_BASE_YEAR )
    10         )
    11  /
                                  SUM(NPD)
    22248,89010313503176012567447578717301
    1 rij is geselecteerd.I counted 7 iterations for the values 2003 and 2009, so you might want to explain a little more.
    Regards,
    Rob.

  • How submit bug reports?

    I have a query which runs under Oracle 9i and disappears into the void under Oracle 10g (Windows OS). I suppose I can't call it a bug because I don't know if Oracle 10g simply supports a different SQL or the optimizer is very different.
    I can supply the data and query to demonstrate it (it's a 306K zip file).
    Is there any interest by Oracle in such examples?

    In the past, when have encountered a problem, or mysterious unexplained behaviour, I have raised a call on Metalink. The analysts there may or may not decide it is a bug.
    I do not know how to report a bug directly.
    You could try going through the 'whats new' in 10g manual to see if any of that applies to your SQL.
    If you have changed database, it is possible that your statistics are out of date, and that the optimizer is not able to make good explain plans. Oh, if I recall correctly, the Rule based optimiser is officially not supported in 10g - that could be it.
    I hope my ramblings are of some use.
    Takmeister

  • Static LOV Bug

    Hi,
    please check what happens with your select list behaviour (try selecting the last element in the list)when the LOV is of type SATTIC2 and you pres ENTER after the last element in the list (in the definition area).
    I haven't tried this with STATIC.
    HTMLDB Version is 1.6.
    Please confirm if you reproduce this error.
    Would you please fix this?

    OK, here it is:
    1) Add a Select list with Submit to a page;
    2) In the LOV definition area enter: STATIC2:one,two,three
    3) Press ENTER after "three" (the last element you wrote). Of course I did not do this intentionally the first time :-)
    4) Set display Null to YES;
    5) Set Null display value to "-Not selected-";
    6) Set Null return value to "notselected" or something else;
    6) Apply changes and run the page
    7) Select "one" from the list -> it's OK;
    8) Select three from the list -> OOOPS, the listbox says "-Not selected-". It did not stay on "three".
    Well this is it. I did not try this with STATIC and if the listbox was REDIRECT.
    Does this helped?

  • EDI challenge

    Hello ABAP Gurus,
    Implementing EDI is in itself a very big task. I guess the biggest challenge in implementing EDI is testing.
    How do you test with someone you may never meet? How do you do your own testing without sending data to your partner? How do you differentiate between a test message and a real one?
    Can somepne please foucs some light on my above asked questions ?
    Answesr will be surely awarded
    Regards,
    Tushar.

    Well during initial stages of your ALE setup, WE19 is a good tool. You can use it to quickly create temporary idocs and process these for inbound processing. You can even use ABAP debugging to run through the inbound process function module.
    For outbound processing, initially you should use the file port in your partner profile for outbound idocs and direct the file port to some temp directory on your app server. This way you can have the idoc in file, which you can easily read again to validate the output and fields in idoc.
    Also if you doing an SAP/SAP integration, Idoc and SAP versions are very important. This fact is sometimes overlooked and end result is mysterious system behaviour. Places to look for these are (1) while defining ports, transaction code WE21(you will see radio buttons for different SAP versions) and in you partner profile transaction code WE20 look for field called “Seg. release in IDoc Type” so make sure that you are persistently sending correct versions of Idocs for a smooth system behaviour.
    You mentioned a very interesting point that how do you test with someone you never meet, being involved in some situations similar to these all I can suggest is use email frequently. In the initial setup phase it is very important to build trust with your EDI partner because initially both parties are very sensitive about errors ( you will hear things like “it is OK from our side, there is a mistake in your system” etc) So it is important that you present yourself as someone who is helpful and sincere. Always try to work and suggest possible solutions even if the problem is not directly related to your system.  From a more technical side, clarify in the initial stage of project about the technical terms used. For example May be what they are calling plant in there system is actually a company code or warehouse number in your SAP system so make extra effort during the mapping phase.
    I hope this will be helpful to you although I couldn’t put it in a more organized way
    Cheers

  • E72 - WLAN AP automatically added under Internet d...

    Hi Folks
    My E72 (091.004) always got one WLAN AP automatically cloned from destionation "Intranet" into "Internet". No idea why this could happen.
    Here is the background.
    I got two WLAN connections at home, hence two WLAN APs, say A and B, have been created in the "Intranet" destination of the E72, accordingly. I only prefer using A to access the Internet, therefore I have copied A into the default "Internet" destination and named it C.
    Under the "Internet" destination, as usual, there are a few packet data APs there. I got two named 2G and 3G, respectively.
    Therefore, I should have three APs under the "Internet" destination, ordered by priority:
    1. C
    2. 3G
    3. 2G
    BUT, after using the phone for a few days, B mysteriously listed after C in the "Internet" destination:
    1. C
    2. B
    3. 3G
    4. 2G
    I do promptly delete B from the "Internet" destination, but after a few days the E72 does automatically add it back in the list, at the same location (priority).
    An interesting observation is if I change the priority by putting a packet data AP at the first, B will no longer be automaticallyed added. I of course can't always use 3G or 2G as the preferred connection.
    The other interesting thing is, the automatically cloned AP has the exact same name of the source AP: B. Normally a cloned AP should not have the same name as the original because all AP names must be unique among all destinations (per my understanding).
    Any clues about why this could happen and how to fix it please?
    Thanks,
    bbao
    bbao
    * If this post helped you, please click the white Kudo star.
    * If this post has solved your issue, please click Accept as Solution.

    Thanks for that scoobyman, that link does help.
    I have attached the screenshot of the related WCDMA option for reference.
    Now my E72 works smoothly between WLAN and 3G!
    Cheers,
    bbao
    bbao
    * If this post helped you, please click the white Kudo star.
    * If this post has solved your issue, please click Accept as Solution.
    Attachments:
    scr000019.jpg ‏20 KB

  • LMS4 UT ping sweep questions

    On the Admin > Collection Settings > User Tracking > Ping Sweep page, subnets that may be excluded from the ping sweep is presented.  How does CM populate this list?  In my environment I have some foreign subnets listed (don't know what these are or how they got there) and I have several valid subnets missing.
    I know that in LMS 2 ping sweeps were limited to Class C (254 hosts or < in size).  Since I see subnet masks in this mysterious list defining networks that are larger than that I have to assume LMS 4 does not have this limit.  However, help and documentation states that "User Tracking does not perform Ping Sweep on large subnets, for example, subnets containing Class A  and B addresses."  For example?  So what is the limit?
    Thanks,
    -Jeff

    Hello Michael,
    This discussion was not intended for the completeness of L3 resolution for the end hosts in UT, but that what you called “something else”: why is this single device is unreachable for UT although its managed by all other LMS moduls and its IP is ping/snmp-able.
    Yes in this network we have also the problem, that the L3 device is none Cisco (not manageable in LMS) and I tried to improve (after Joes hints) the L3 quality of UT with:
    1. DHCP-Snooping => we had to remove because it had slow down the network (don’t know why but after removing DHCP-Snooping, the performance was coming back)
    2. Ping ip in switches kron => no improvement and I cant understand why only a little part of the filled Switch-ARP table will get into UT. IP routing as a prerequisite that LMS will ask the switches ARP-table is enabled at this L3-switch.
    3. I will try today: rollout of UTLite to the clients
    But for this part of problem I created a separate discussion in the past.
    Steffen
    Von: michel.hegeraat
    Gesendet: Dienstag, 12. Juli 2011 18:35
    An: Neuser, Steffen
    Betreff: New message: "LMS4.0.1 - UT Aquisation complains about reachability of some devices"
    Cisco Support Community
    Re: LMS4.0.1 - UT Aquisation complains about reachability of some devices
    created by Michel Hegeraat in Network Management - View the full discussion

  • Set a "mobile" scroll behaviour to a scrollable List on a desktop app

    Hi,
    We're looking for some help on a Flex 4.5 AIR app deployed on a touch desktop environment.
    We're developping a kind of a kiosk app originally made for desktop machines (mouse). Recently we've tested it on a touch screen used with a stylus or fingers (not a mobile device but a touch screen connected to a PC), everything run smoothly without any changes as the touch events on the screen are interpretated as a mouse interaction by the driver.
    So everything works well but of course the UI is not designed to be manipulated with fingers and especially the behaviour of List scroll is not adapted : the desktop AIR app displays vertical scroll bars and buttons to scroll the list up and down but usually on a touch screen you scroll list by swiping it (touching an element and swiping up or left, the element is not selected because you've moved the finger before moving it up)
    I know that this behaviour for a Scroller exists in flex 4.5 within a "Mobile Project" (apparently it is possible to compile a "Mobile Project" into a desktop AIR app...?)
    So my questions are :
    1) Is it possible to set up this "mobile" behaviour of a scrollable List to a desktop AIR app ?
    2) Generally speaking, is it possible to set at the installation (by configuration or so) the "style" of the app (by "style" I mean the size and the behaviour of the components in order to be manipulated by a mouse or by a finger). It seems possible as the logic behind the component doesn't change, just the size (if it is a button and/or the bahaviour of the scroll if it is a List, and so on...). Is it something related to a Skin? or maybe a Theme?
    3) What the difference between a "desktop AIR app" and a "mobile app" in Flex Builder 4.5? (both project seems to have the same compiler's arguments, etc...)?
    Mich

    Hi there,
    Yes I use the mx datagrid because I need the drag and drop handling. The spark datagrid does not support this yet :-(
    So I can write my own drag and drop handlers for the spark datagrid or a touch scroll function for the mx version.
    I really think that componenents in Flex should be backwards compatible...
    Thanks

  • List selection behaviour

    Hi,
    The JList moves to a item beginning with the key that I typed on it. Is there a way
    to stop this behaviour and move the list to some other position that I need to.
    Thanks a lot,
    Chamal.

    When the user types in your list, the method getNextMatch will be called. Override this method to customize the behvaior you want. For more details, check the JList API:
    http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/JList.html
    or the JList source code.

Maybe you are looking for

  • Order Date should not be modifiable by the user

    Hi, I want  to do ordered date is don't modifiable by the user when they selected  order type in Order Management Super User Responsibility ,Please help me  If anybody done earlier I am not aware of form personalization . Thanks&Regards, Mannala Kris

  • Adding bevels to images

      when i choose layer styles in ps elements 8, there is nothing there..i can't choose anything....there are no drop shadows or bevels to add....not sure what i did...can someone help?

  • How to Use Repair Warranty without Receipt

    My screen was shattered when a stranger on a bike bumped into me, and I dont have the money to repair it, though it was given to me as a gift in November. If I don't have a receipt can I still utilize the 1-year free warranty?

  • Apps world

    Hi Blackberry Apps World is not working here in Saudi Arabia and I can't use the application,due to this problem,I am using the blackberry apps world in my laptop,before I can easily connect my smartphone bb bold 9700 to my laptop,but now I'm having

  • Sieve Rule on domain

    Hello, I want to implement some sieve rules on domain basis. The attribute for that is mailDomainSieveRuleSource but when i put a simple sieve rule in it, it does not work! The same rule in mailSieveRuleSource in user entry work fine. What have i mis