Help needed in logic problem

HI,
I am trying to implement one marketing application, where the goods will be dispatched via some transportation. The receipt name is lr number or lrno. Some times for same lr no., 2-3 goods will be dispatched. Now, I am developing one application, if an user selects the from and to date from the web page, the web page should display all the lrno. Form date to to-date, its destination place and total amount, etc. These values are coming from backend.
Eg.
Trname      Lrno           dt          amt
BLR     LR300          1/2/05          1000
MUM     LR400          1/2/05          2000
MUM     LR400          1/2/05          100
MUM     LR400          1/2/05          200
DL     LR600          3/2/05          1000
My problem is if there are 2-3 goods for same lrno, the amounts should add up and final amount should come. Only in one record.(in one row). In the above example, for MUM 3 rows are there. So, the trname, lrno, dt shuld be same , but the total amount of all the three records should be added up and display.
Expected output
BLR     LR300          1/2/05          1000 as it is displayed
MUM     LR400          1/2/05          2300// it should display like this.
DL     LR600          3/2/05          1000 // as it displayed.
My output as follows: I cold add the amount, but, each time, the record is displayed. Like this
BLR     LR300          1/2/05          1000 //correct output
MUM     LR400          1/2/05          2000 //this should not display
MUM     LR400          1/2/05          2100 // this should not display
MUM     LR400          1/2/05          2300 //Only this record should be displayed.
DL     LR600          3/2/05          1000 //correct output
Code sample as follows:
<%
while(rs.next())
          trfamt=rs.getInt("cfrta");
          String carnam=rs.getString("ccara").trim();
          String lrdt=rs.getString("clrd").trim();
          String lrnum=rs.getString("clrn").trim();
          brk="y";
          cnt1=0;
          cnt=cnt+1;
          out.println("Counter="+cnt);
          if(cnt==1)
               subtot=trfamt;
               tmp=lrnum;
          }//end of if(cnt==1) cndition
          else
               if(lrnum.equals(tmp)) //compares whether two lrno are same or not.
                    brk="n";
                    subtot=subtot+trfamt; // if lrno are same, its amount is added up
                    //carnam1=carnam;
                    //lrnum1=lrnum;
                    System.out.println(lrnum+""+tmp+" "+"Lr numbers are same.totaling is continued");
                    tmp=lrnum;
                    cnt1=cnt1+1;
                    }//end of if     
               else
                    if(cnt1==0)
                         subtot=0; // if lrno are different, fresh totaling is done
                         subtot=trfamt;
                         System.out.println("Lr numbers are different.Fresh Totaling is done");
                         tmp=lrnum;
                         }//end of if(cnt1=0)condition
               }//end of else
               }//end of if(cnt==1)condition else part
     if((cnt==1)||(brk.equals("y"))||(cnt1>0))
                    {%>
                    <TABLE>
                    <TR>
                         <TD><%out.println("Carier Name="+carnam);%></TD>
                         <TD><%out.println("Lrnumber="+lrnum);%></TD>
                         <TD><%out.println("Amount="+subtot);%></TD>
                    </TR>
                    </TABLE>
                    <%}
     }//end of while condition %>          
How to correct this error ! please help me.
With regards,
AShvini

Thank you Ram.
I will try your code. ok, i took another look at it and dont see y it shouldnt
                        if(lrnum == mc.getLrNum())
              //if this has already been added, just update amount
              mc.addAmount(trfamt);
              dupRecord = true;
                                           break; //it would work correctly even without this, but y do unnecessary iterations if id found
,/code]
Since past 3 days, i am struggling with this bug. SO,
i asked for line by line compilation. As u said, i
tried to download IDE from www.ecllips.com, but,
stuckup somewhere. so, i gave up.
  don't give up, install eclipse (or any other ide), it would do wonders to ur development effort.
I will try with your code and get back to u.
   cool :-)
ram.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Help Needed in resolving problems with Hyperion Planning Web Forms

    Hi,Can anyone help me with this problem?Problem:We are running Planning 2.3.1 I have created Webform & security(application owner has the ownership).Somehow Iam getting only 7 dimensions into webform & 1 dimension is missing in that. But whereas 8 dimensions are there in Essbase.Hsp_Rates dimension is available in essbase outline but Iam unable to see that dimension in the webform selection.And using the webform Iam unable to load any data ...the form is graded/protected.Is this happening because i dont have the requirement of 1 member from each Dimension?Please someone let me know why this is happening what might be the reason.ThanksUser

    Hi,The dimension Hsp_Rates is a hide dimension used by Planning to store the exchange rates for the differentes exchanges.All the standard information is stored on HSP_InputValue member (in this dimension).When you create a web form, Planning automatically asign this member (but don't show it).Probably you can't load data because you are selected on Version dimension a Standard Botton Up version, and you only can load data on level 0 members in this type of version.If you want to load data on upper level members, then you need to create a Standard Target version (in the Version dimension) and select it in the form.Please, advice if this solve your problemClaudioBPD Solutions

  • Help needed with 848p problem

    hi allll
     i have buyed new MSI 848p Neo and i have the following hardware  
    CPU: 2 GHZ 533 P4
    Memery : 256 DDR 2700
    GC: MSI 848 p
    HD: WD 10 GB
    when i connacted everting only the processer  fan was working the hard drive and the CD doesnot work (POST)
    if i unplage the Hard drive and the CD it will work (POST)  
    the problem is the Pc doesnot Post only the processer  fan and i have blank screen ?
    help needed
    thanks  

    Try this.
    Put your optical drives like CD-ROM drive to IDE 1 and set as Primary Master aka Master mode and put your HDD to IDE 2 and set as Secondary Master aka Master mode also.
    Btw, what is your PSU specs?

  • Help needed with Layout problem

    Hello everybody
    I need to insert components such as buttons in a JPanel using absolute positioning
    I still cant dot this
    even if I used the method setLocation for the component
    I wanna know if I have to change the default layout for JPanel or whatever
    thanks a lot

    i found this quite useful:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html#border
    dont know if it will specifically help with your absolute positioning problem.

  • Help needed in Logical Database Programming

    Hello Gurus,
    I am working on a Report on ASSET ACTIVITY BY DATE RANGE .
    The program is copied from std. program S_ALR_87011990.
    The above std. program displays for the whole financial year. This is modified for a particalar period range in the new leveraged program.
    My question is in the below code.
    We are fetching data using LDB ADA. The statement "GET anlcv" works fine here, I mean Sy-subrc is 0 and anlcv structure has some data in it.
    When it comes to statement "GET anepv" in the below code, we are not getting any data into that structure and sy-subrc NE 0. Then it is skipping all the get statements and directly going to statement " PERFORM abga_simulieren.".
    My logic lies in between this Get statement and the perform statement. When i see it in debugging mode my statement is not executed at all.
    What needs to be done. Please anyone help me.
    GET anlcv.
    CHECK select-options.
    MOVE anlcv TO sav_anlcv.
    GET anepv.
    CHECK select-options.
    Nur Bewegungen des Jahres des Berichtsdatums durchlassen.
    CHECK anepv-bzdat GE sav_gjbeg.
    CHECK anepv-bzdat IN so_bzdat. "Added for SIR-3132
    Bewegungen in SAV_ANEPV sammeln.
    MOVE anepv TO sav_anepv.
    APPEND sav_anepv.
    GET anlb LATE.
    Check auf Bestandskonto bei Gruppensummen erst hier, wegen
    fehlender Abgänge/Umbuchungen
    IF NOT summb IS INITIAL.
    IF NOT anlav-ktansw IN so_ktanw.
    REJECT 'ANLAV'.
    ENDIF.
    ENDIF.
    ANLCV aus Save-Area zurueckholen.
    CHECK NOT sav_anlcv-anln1 IS INITIAL.
    MOVE sav_anlcv TO anlcv.
    Abg-Simu: Abgang simulieren.
    PERFORM abga_simulieren.
    Promise to reward points
    Regards
    Mac

    1) delete line  CHECK anepv-bzdat ge sav_gjbeg.
    2) test with an asset , which has movements (purchases) in your intervall so_bzdat.
    otherwise post a movement (e.g. transaction type 100) with tcode abzon
    A.

  • Urgent help need on swing problem

    Dear friends,
    I met a problem and need urgent help from guru here, I am Swing newbie,
    I have following code and hope to draw lines between any two components at RUN-TIME, not at design time
    Please throw some skeleton code, Thanks so much!!
    code:
    package com.swing.test;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class LongguConnectLineCommponent
        public static void main(String[] args)
            JFrame f = new JFrame("Connecting Lines");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new ConnectionPanel());
            f.setSize(400,300);
            f.setLocation(200,200);
            f.setVisible(true);
    class ConnectionPanel extends JPanel
        JLabel label1, label2, label3, label4;
        JLabel[] labels;
        JLabel selectedLabel;
        int cx, cy;
        public ConnectionPanel()
            setLayout(null);
            addLabels();
            label1.setBounds( 25,  50, 125, 25);
            label2.setBounds(225,  50, 125, 25);
            label3.setBounds( 25, 175, 125, 25);
            label4.setBounds(225, 175, 125, 25);
            determineCenterOfComponents();
            ComponentMover mover = new ComponentMover();
            addMouseListener(mover);
            addMouseMotionListener(mover);
        public void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            Point[] p;
            for(int i = 0; i < labels.length; i++)
                for(int j = i + 1; j < labels.length; j++)
                    p = getEndPoints(labels, labels[j]);
    //g2.draw(new Line2D.Double(p[0], p[1]));
    private Point[] getEndPoints(Component c1, Component c2)
    Point
    p1 = new Point(),
    p2 = new Point();
    Rectangle
    r1 = c1.getBounds(),
    r2 = c2.getBounds();
    int direction = r1.outcode(r2.x, r2.y);
    switch(direction) // r2 located < direction > of r1
    case (Rectangle.OUT_LEFT): // West
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x + r2.width;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_TOP): // North
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y + r2.height;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    break;
    case (Rectangle.OUT_LEFT + Rectangle.OUT_TOP): // NW
    p1.x = r1.x;
    p1.y = r1.y;
    p2.x = r2.x + r2.width;
    p2.y = r2.y;
    if(r1.y > r2.y + r2.height)
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_RIGHT): // East
    p1.x = r1.x + r1.width;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_TOP + Rectangle.OUT_RIGHT): // NE
    p1.x = r1.x + r1.width;
    p1.y = r1.y;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.y > cy)
    p1.y = r1.y + r1.height;
    p2.y = r2.y + r2.height;
    if(r1.y > r2.y + r2.height)
    p1.y = r1.y;
    else
    if(r1.y > r2.y + r2.height)
    p2.y = r2.y + r2.height;
    break;
    case (Rectangle.OUT_BOTTOM): // South
    p1.x = r1.x;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    break;
    case (Rectangle.OUT_RIGHT + Rectangle.OUT_BOTTOM): // SE
    p1.x = r1.x + r1.width;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    break;
    case (Rectangle.OUT_BOTTOM + Rectangle.OUT_LEFT): // SW
    p1.x = r1.x;
    p1.y = r1.y + r1.height;
    p2.x = r2.x;
    p2.y = r2.y;
    if(r1.x > r2.x + r2.width)
    p2.x = r2.x + r2.width;
    if(r1.x > cx && r2.x > cx)
    p1.x = r1.x + r1.width;
    p2.x = r2.x + r2.width;
    return new Point[] {p1, p2};
    private void determineCenterOfComponents()
    int
    xMin = Integer.MAX_VALUE,
    yMin = Integer.MAX_VALUE,
    xMax = 0,
    yMax = 0;
    for(int i = 0; i < labels.length; i++)
    Rectangle r = labels[i].getBounds();
    if(r.x < xMin)
    xMin = r.x;
    if(r.y < yMin)
    yMin = r.y;
    if(r.x + r.width > xMax)
    xMax = r.x + r.width;
    if(r.y + r.height > yMax)
    yMax = r.y + r.height;
    cx = xMin + (xMax - xMin)/2;
    cy = yMin + (yMax - yMin)/2;
    private class ComponentMover extends MouseInputAdapter
    Point offsetP = new Point();
    boolean dragging;
    public void mousePressed(MouseEvent e)
    Point p = e.getPoint();
    for(int i = 0; i < labels.length; i++)
    Rectangle r = labels[i].getBounds();
    if(r.contains(p))
    selectedLabel = labels[i];
    offsetP.x = p.x - r.x;
    offsetP.y = p.y - r.y;
    dragging = true;
    break;
    public void mouseReleased(MouseEvent e)
    dragging = false;
    public void mouseDragged(MouseEvent e)
    if(dragging)
    Rectangle r = selectedLabel.getBounds();
    r.x = e.getX() - offsetP.x;
    r.y = e.getY() - offsetP.y;
    selectedLabel.setBounds(r.x, r.y, r.width, r.height);
    determineCenterOfComponents();
    repaint();
    private void addLabels()
    label1 = new JLabel("Label 1");
    label2 = new JLabel("Label 2");
    label3 = new JLabel("Label 3");
    label4 = new JLabel("Label 4");
    labels = new JLabel[] {
    label1, label2, label3, label4
    for(int i = 0; i < labels.length; i++)
    labels[i].setHorizontalAlignment(SwingConstants.CENTER);
    labels[i].setBorder(BorderFactory.createEtchedBorder());
    add(labels[i]);

    If you need some help, be respectful of the forum rules and people will help. By using "urgent" in the title and bumping your message every 2 hours you're just asking to be ignored (which is what you ended up with).

  • Help in script logic - problem in FOR loop

    Hi Experts,
    We are using BPC 7.5 SP08. I have written a FOR loop in script logic default.lgf which is as follows:
    *FOR %TIM_MEM%=%TIME_SET%
    *XDIM_MEMBERSET TIME =%TIM_MEM%
    *WHEN P_ACCT2
    *IS "OSDU"
    REC(EXPRESSION=[P_ACCT2].[ASSTCAINVURO][P_ACCT2].[COGSUPRVIPSA]/[P_ACCT2].[ASSTUPRVTAQTY],P_ACCT2="COGSUIPSAO")
    *ENDWHEN
    *COMMIT
    *NEXT
    As per my requirement, all this members: [ASSTCAINVURO], [COGSUPRVIPSA], [ASSTUPRVTAQTY] exists for months September to next year's August. But in my input schedule, the months are from August to next year's July(which is the company's fiscal year). Consequently the loop runs for month August to next year's July while I need to run the loop 1 month late(i.e. September to next year's August). This was achieved earlier by hard-coding the time members which we cannot afford as this requires to update these hard-coded member IDs every year.
    We have also tried using the "NEXT" property of TIME dimension as follows:
    *XDIM_MEMBERSET TIME =%TIM_MEM%.NEXT
    but %TIM_MEM%.NEXT doesn't get the month in 'NEXT'.
    Please suggest if there is any way out to solve this problem.
    Thanks in advance.

    Hi Appu,
    Even if you restrict the scope using the XDIM statement, your script will just run the number of times as per the for loop. Actually, in reality, the same calculation is happening again and again, in your code; since your calculation is not based on the time member.
    To use the for loop effectively, you need to incorporate the time member in your calculation.
    Please look at the below sample code:
    *XDIM_MEMBERSET TIME = %TIME_SET%
    *FOR %TIM_MEM%=%TIME_SET%
       *WHEN P_ACCT2
       *IS "OSDU"
          *REC(EXPRESSION=<CALCULATION>,P_ACCT2="COGSUIPSAO")
       *ENDWHEN
    *NEXT
    And in your calculation, you can use statements like
    ([P_ACCT2].[ASSTCAINVURO],TMVL(1, [TIME].[%TIM_MEM%]))
    This will ensure that everytime (as per the for loop), the calculation works on separate set of data.
    Hope you got the idea.

  • Help needed. Having problems loggin in to my computer

    Hi,
    I recently upgraded to Mac os X 10.5, and since then I have been having all kinds of problems loggin in to my computer. It is not recognizing my password. I reset the Admin password using the install dvd disc, but that still didn't help. I loggin but I don't have access to any of my files or documents. Could someone please help.
    Thanks in advance.

    you really need to decide if you are going to reinstall or try to fix your current system. I just posted a long answer to your other thread.
    is your current account listed as admin in system preferences?
    and what happens if you try to log into your old account?
    Message was edited by: V.K.

  • Helped needed. PPPoE problem

    In trying to secure my wireless connection, I changed a lot of the router's default settings. Somewhere along the line, I have lost the ability to get to the internet on the Linksys. Here are the sys details.
    WIN XP
    Westell 2100 broadband modem
    Linksys WRT54G
    I usually have everything set so that the Westell is in Bridged mode. The problem was nothing was secure.
    Here is what is on the Linksys.
    PPPoE,  
     User Name:  It is correct.
                             Password:          It is correct.                      
                             Service Name:                                      
                            Connecton Demand : Max Idle Time  5  Min.                 
                            KeepAlive : Redial Period    Sec.       180    
                 Optional Settings
    (required by some ISPs)
                             Router Name:                           
                                         Host Name:                              
                             Domain Name:                                     
                             MTU:                           
                             Size:                             
    Network Setup                                                                                     
    Router IP                                 Local IP Address:         .   .  .                           
                             Subnet Mask:                           
    Network Address
    Server Settings (DHCP)                                   DHCP Server:             Enable  Disable             
                             Starting IP Address:     192.168.1.                  
                             Maximum Number of  DHCP Users:                             
                             Client Lease Time:         minutes (0 means oneday)                  
                             Static DNS 1:   .  .   .                          
                             Static DNS 2:   .  .   .                          
                             Static DNS 3:   .  .   .                          
                             WINS:              .  .   . 
    IP address: 192.168.1.101
    Mask is correct
    Gateway:   192.168.1.1
    There are no ACCESS Restrictions, no MAC Filters, Wireless Security is currently DISABLED. I have pushed the reset button on the Linksys (and the Westell, too) trying to fix things and  nothng changed.
    Here is what is on the desktop.
    Dhcp enabled:                   Yes 
    Autoconfiguration enabled: Yes 
    IP address:                       192.168.1.101
    Subset Mask:                    255.255.255.0
    Default Gateway:               192.168.1.1
    Dhcp Server:                     192.168.1.1
    DNS servers:                     192.168.1.1 
    I have done power cycles to no avail. 
    Any help will be appreciated. 

    Since you have Resetted your Modem and Router. Connect the Modem to Computer and check if you are able to go online or not. If yes, then on your computer open the Command Prompt window and type "ipconfig" and hit enter and post the details output in your next post.
    If the IP address of your Modem is in the range of your Router, then your modem is Unbridge so you need to Bridge your Modem again. 

  • Help needed with connection problem before I chew off my foot.

    I am on 24/7 with Virgin.
    From last Friday, my connection telephone number has been constantly engaged.
    BT tell me it is not a valid number (?).
    I can access the internet just by changing the number in remote access to the one I'm using now - a pay by the minute number.
    This leads me to believe thay my settings are correct - as they have been for a considerable time.
    Virgin have responded once with a standard reply confirming the telephone number (useless) to four e-mails. There is an unconnected (no pun intended) 'server' problem with their 'online help'.
    I am on Netscape or IE, external Zoom modem and I haven't done anything which might alter my settings.
    Any help would be much appreciated - even sympathy might make me feel better!
    Please bear in mind that I am a techno-idiot with any advice offered.
    Thanks in advance.

    I get a perpetual 'engaged' tone with a mechanical woman telling me that the number is busy, please try later.
    The 'helpline' is a premium number. Cleverly, I have had premium numbers blocked on my 'phone line to defeat the fraudsters re-directing calls.
    This means that I have to use someone else's 'phone to call a premium number!
    Since last Friday, I have sent a total of six e-mails to Virgin and received one 'standard' reply which was of no help.
    I agree that it seems like an ISP problem.
    However, perhaps someone could kindly talk me through the things I ought to be checking on my computer (in words of one syllable where possible!).
    Thankyou in anticipation.

  • Help needed with permissions problem in new Aperture 3.5.1

    Hello and thank you for helping me with my first question to this wonderful support center. I have been using Aperture for many years. I recently upgraded my Mac to Mavericks, now running 10.9.2. and then upgraded (by necessity) to Aperture 3.5.1. I am working on a big project for a client and have an assistant in another city. I live outside the US so mailed  my library to my asst. on an external drive. She updated to 10.9.2 or .3 and Aperture 3.5.1. No problems. She modified the library and sent the library to the client in another city in the US on an external drive who has also upgraded to  Mavericks and is running Aperture 3.5.1.  So we are all in Mavericks with recent Apertures. When client tried to open the sent library client got a message that stated:
    "Aperture cannot access this library. To use this library, make sure its file permissions are set correctly.”
    Clientʻs Tech assistant at her office is a PC specialist but apparently did try on Friday and did try to repair permissions but I am told that it did not work. I wish I had more specific info on what Tech assistant did but I do not at this time.
    On Monday I would like to give them very specific instructions about what to do to open the library
    For recent discussions I have found only this
    https://discussions.apple.com/message/23600132#23600132
    Oct 30, 2013 3:35 PM by Frank Caggiano
    about repairing permissions.
    I am sure that we are all running Mavericks and new Aperture, that does not seem to be at the root of  the immediate problem. As we are in two different countries and three different cities and communication is hard, please tell me if this is a common problem with an easy fix and if it should be fixed by Repairing Permissions, please tell me exactly what I should tell them to do on Monday. They can at least see this discussion from their city!
    Many thanks!! This is an urgent project so I very much appreciate your help.

    Have your collegues check the file system of the drive and the "Ignore Ownership on this volume" flag.
    To check the filesystem and "Ignore ownership" flag select the drive in the Finder and use the command "File > Get Info ⌘i"
    In the panel unlock the padlock in the "Sharing & Permissions" brick and set the "Ignore ownership" flag at the bottom of the panel.
    Also, check the "General" brick of the panel. The format should be showing as "Mac OS Extended (Journaled)". Aperture checks for the correct formating before opening a library and may refuse to open a library on a drive formatted for Windows.
    If the format is wrong, it would be best to move the library to a different drive with the correct formatting.
    Once the "Ignore ownership" flag is set, try again to repair the permissions and see, ifyou now can open the library.

  • More help needed on m2v problems!

    I have also been having problems when I try to import compressed (using Compressor) video files in SP 4. I have repaired file permissions and shortened the name of the file (as recommended in previous posts), but every time I try to import the file into SP, it closes the program and gives me an error report. When I try to open the file by itself, if opens Droplet. When I hit "submit," it freezes the program. Also, other compressed video files (that I have burned DVD's with in the recent past) don't work. They all do the same thing. It was all working fine last week (about two months after I upgraded Production Suite), and all of a sudden it's making me loose hair.
    Another thing I should mention: I have very little space left (1.89 GB) on my internal hard drive. This filled up very quickly, and I'm not quite sure how. When I started my computer yesterday, I had 5.5 GB. Before that, I had even more, though I'm hazy on the details. Anyway, I would GREATLY appreciate any help that's out there! Thanks!

    One thing (which may or may not help) is clearing off you hard drive, 1.89 Gigs on 80 Gigs will lead to the computer slowing down considerably, anything over 80% seems to be the number of more problems creeping up, and you should clear out as much as possible. With temp files, virtual memoory etc, it causes issues

  • Help Needed , N93I Camera problem after Update

    Hi All
    After updating my N93I the camera can't take pics and only take Black photos , You don't see nothing on the screen ( Only stripes)
    The Phone is O.k since it worked for 1 time even after the upgrade and that's all.
    I can use the internal camera.
    Please Help .

    same problem here ( still waiting maybe someone knows the solution (

  • Major help needed with date problem

    hi everyone, I have been working on this problem for so long, my brain is completely fried, really. the part of the project I have listed is just one of larger program that I have all figured out; this is the last part and I am just struggling to come up with a start. I think i need to use a for loop, but not quite sure.
    HERE IS THE PROBLEM:
    (2)     Prompt the user for a premium amount (in dollars and cents, but assume the user does not enter the $ sign), a start date and an end date for a policy term, and an effective date for a policy cancellation. Dates should be entered with three separate prompts for year, month, and day, in that order. Month will be a number between 1 and 12, and year will have 4 digits. Assume any pair of dates is possible, between January 1, 1900 and December 31, 2200. You may assume that the user always enters a valid date. You may also assume that the user enters a start date that is before the end date. Assume the cancellation effective date is between the start and end dates. You may also assume that the premium amount the user enters is a valid number.
    (5)     Using the start date, end date, premium and a desired refund amount (entered by the user), calculate the cancellation effective date required to produce an amount equal to or slightly larger than the desired refund amount
    if anyone is looking for some major duke stars, please post here . . .

    (5)     Using the start date, end date, premium and a
    desired refund amount (entered by the user),
    calculate the cancellation effective date requiredto
    produce an amount equal to or slightly larger than
    the desired refund amountCan you describe in precise detail--clear enough so
    that somebody who had no idea about this problem or
    the process could do it--the steps you'd take to do
    this without regard to Java?If I understand correctly, you need to find out what percentage of their policy they want to use (the refund they want back tells you what percentage of the premium they want back, so the rest is what they want to use). Then use that percentage to calculate the number of days they would have to use the policy to get that refund (you already know the total days, so total days * percentage = days until refund). Then you just need to find out what day is that many days after the start day. that would be when they would cancel. Hopefully that makes sense. I am still trying to have it make sense for me. I can't figure out how to code this.

  • Help Needed Urgently - Payment Problem!

    Hi all,
    I have tried to purchase a couple of apps and I keep getting an error message (below) and yet, both times I received a confirmation sms on my phone telling me that my credit card had been charged the amount! I have re-entered my payment information and my account info and everything and it still doesnt work, even though the payment works just fine apparently as the money is getting deducted with no problem.
    How do I solve this and how do I (a) make the apps that I purchased work without repurchasing again OR (b) get my money back.

    hishamsaidi wrote:
    Hi please I can't purchase by me visa card it is telling Me error 12000 from app world thanks
    Hi and Welcome to the Community!
    Here is a KB that discusses that error:
    KB28978 "Error ID 12000" is encountered when attempting to complete a purchase on a BlackBerry device
    Hopefully it contains something useful! There also are multiple existing threads on this site that discuss that exact error...your review of those might prove useful, and a search of this site, using the error message, error code, or symptom, should reveal all applicable existing threads to you.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for