Netwr and fklmg dividing problem    --------    points assured

hi,
I am stuck in a problem please see the code
my internal table
                       data:  begin of it occurs 1,
                           vbeln like vbrp-vbeln,
                           netwr like vbrp-netwr,
                           fklmg like vbrp-fklmg,
                           fkdat like vbrk-fkdat,
                           erzet  like vbrk-erzet,
                           end of it.
SELECT avbeln anetwr afklmg bfkdat b~erzet
                INTO corresponding fields of table it
                      FROM vbrp as a inner join vbrk as b on avbeln = bvbeln
                           UP TO 1 ROWS where amatnr = komp-matnr and bfkart      ne 'ZPRO'
                                order by bfkdat descending berzet descending.
read table it index 1.
value  =  it-netwr / it-fklmg.
if it-netwr = 1000.00 and it-fklmg = 1.000
value is coming as 1.00
I declared    VALUE  like vbrp-netwr.
-> if I declare  VALUE(21) then my out put is 100
-> but actually it should be 1000.00
please help me.
points assured.
regards,
Prabhu

Hi Prabhu,
I think the declaration for Value matters here. I tried this in a test program,
REPORT  ztest.
DATA: lv_netwr  TYPE netwr_fp VALUE '1000.00',
      lv_fklmg  TYPE fklmg    VALUE '1.000',
      lv_value  TYPE netwr_fp.
lv_value = lv_netwr / lv_fklmg.
WRITE:/ lv_value.
The value that we get for lv_value is '1000.00'.
Reason being NETWR_FP is CURRENCY FIELD and FKLMG is QUANTITY FIELD. When we divide these two we need to have the result in a datatype that can hold bigger values.
Try declaring lv_value of type NETWR_FP. I think you should get the right value as output.
<i>Reward points for helpful answers</i>.
Best Regards,
Ram.

Similar Messages

  • Very Urgent: illegal reference problem:  Points assured

    hi all
    I have developed a class(type final)  using SE24 with no subclasses or interfaces.  Then from the program i am creating an object and calling methods. In the implementation of one of the methods,  another method is being called  i.e.
    call method obj->meth , the method called has no parameters. But  the reference is not correct. as it says in the dump
    "Access not possible using "NULL" object reference.
    Please help me solve this.
    Points assured
    Thanks

    Hi,
    Can you please tell me what <b>obj</b> is....?
    Are you passing the object also into this method(in which the second method is being called)...?
    If not, you can call the second method in the first method as
    call method me->meth2.
    The error you have given is coming because <b>obj</b> doesn't have anything to point to..
    Hope this will be of some help to you...
    Regards,
    SP.

  • Pre-order points missing and pre-ordering problems at the store level.

    Hi
    During the week of July 6th-July 12 there was an ad for pre-ordering certain movies and getting 100 bonus points for each movie.  On July 12th I pre ordered Rio 2, The Amazing Spiderman 2, and Transformers:AOE (Steelbook edition).  The employee was able to successfully pre-order Rio 2 using the provided in store pre order card but had difficultly pre ordering Spiderman 2 and Transformers.  Rio 2 and Spiderman 2 had set release dates while at that time Transformers did NOT have a release date until recently.  These pre-orders were done in three different transactions. 
    Picking up Rio 2 on 7/15 was not a problem.  The employee did an exchange in the system.  The 100 bonus points never posted.
    The Amazing Spiderman 2 had a lot of problems.  The employee thought I already bought it and picked it up on 7/12 when I went to pick it up on 8/19 (the release date).  At the time of the pre order purchase, there was no announcement of the BB exclusive Magno pack for the same price as the regular blu ray release.  Again the employee did a return/rebuy.  This employee also stated that the employee who processed the pre-orders Spiderman and Transformers did it incorrectly since it looks like she did it as a normal transaction instead of a pre-order.  The points have yet to be posted.
    Transformers: AOE (Steelbook edition) now has an official release date of 9/30.  My question is will the system allow for employee to process the pre-order pick up since it is outside of the 45 day window?  I am hoping it won't be but seeing how the employees have been processing pre-orders incorrectly when picking them up I expect problems when doing so. 
    I have also noticed a price drop for transformers (6760435) from the time I pre-ordered it on 7/12.  Will the employees be able to adjust the price and give me the difference?
    Not all stores carry the pre-order cards making this a difficult process for everyone (it takes me on average 30 minutes to pick up 1 pre-order instead of in and out within 5 mins like usual) because someone didn't do it correctly the first time.  So my question is, how should employees process a pre-order if there is NO Pre-Order card in store??  I would love to continue to pre-order at best buy, but am getting tired of having employees screw up my pre-order.

     Hello ITDEFX101,
    Pre-ordering your movies during these 100 My Best Buy™ Bonus Point promotions is a great way to ensure that you are able to get your hands on some great movies as soon as possible after release, while simultaneously earning extra points. It is regrettable to hear that your pre-order experience with Rio 2 and The Amazing Spiderman 2 were not as smooth as we strive for these processes to be, and in the end, you state you didn’t even get the bonus points you expected.
    Using the information you registered with the forum, I was able to review your pre-orders for all three movies, as well as your My Best Buy™ account. Sadly, it does appear that there may have been some issues with your pre-orders, and I would like to address these with you privately, especially concerning your pre-order for Transformers: Age of Extinction. I am sending you a private message, which you may view once you’ve signed into the forum and clicked the envelope icon in the top right corner of the page.
    Sincerely, 
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

  • JSplitPane Divider problem...

    I'm having problem with the JSplitPane divider. Ive learned that the MouseListener class is most likely the reason why the divider isn't performing as expected. I had to learn how to use the MouseListener interface and I've also learned that the divider is an instance of BasicSplitPaneDivider. I've finally got the divider to PARTIALLY work if I only set the following:
    1) setting the setContinuousLayout(true)
    //setting it to false wont work for some reason, I want to fix that, too. By setting it to false, the divider wont move :(.
    and
    2) if I move the mouse slowly, so the divider can follow the mouse. If I move my mouse too fast, then my divider will suddenly stop the moment the mouse cursor hovers away from the divider.
    Can anyone help me fix the divider problem? Thanks in advance! Here's my code below:
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    import java.awt.event.MouseEvent;
    import javax.swing.event.MouseInputAdapter;
    import javax.swing.plaf.basic.BasicSplitPaneDivider;
    public class JSplitPaneDemo{
         public static void main(String args[]){
              //Practice p = new Practice("SplitPane Divider Works Now?");
              JSplitPaneDemo x = new JSplitPaneDemo();
              x.new Practice("SplitPane Divider Works Now?");
         public class DendrogramListener extends MouseInputAdapter
              Container contentPane;
              Component button1, button2, button3;
              JSplitPane splitter;
              Point mLocation;
              JFrame myFrame;
              MyGlassPane glass;
              private boolean inDrag = false;
              private boolean inButton = false;
              private boolean inDivider = false;
              public DendrogramListener(JFrame frame)
                   this.myFrame = frame;
                   this.contentPane = frame.getContentPane();
                   this.mLocation = new Point();
              public DendrogramListener(AbstractButton aButton, AbstractButton b2, AbstractButton b3, MyGlassPane glass1, Container cP, JSplitPane split){
                   this.button1 = aButton;
                   this.button2 = b2;
                   this.button3 = b3;
                   this.glass = glass1;
                   this.contentPane = cP;
                   this.mLocation = new Point();
                   this.splitter = split;
              public void mouseDragged(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mouseMoved(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mouseClicked(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mousePressed(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mouseReleased(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
                   inDrag = false;
              public void mouseEntered(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void mouseExited(MouseEvent arg0) {
                   // TODO Auto-generated method stub
                   redispatchMouseEvent(arg0);
              public void redispatchMouseEvent(MouseEvent e){
                   inButton = false;
                   inDrag = false;
                   inDivider = false;
                   Component component = null;
                   JButton tempButton;
                   Container container = contentPane;
                   Point glassPanePoint = e.getPoint();
                   mLocation = e.getPoint();
                   Point containerPoint = SwingUtilities.convertPoint(glass, glassPanePoint, contentPane);
                   int eventID = e.getID();
                 component = SwingUtilities.getDeepestComponentAt(container, containerPoint.x, containerPoint.y);
                 if (component == null) {
                      //System.out.println("NULL");
                     return;
                 if (component instanceof JButton) {
                     inButton = true;
                 if(component instanceof BasicSplitPaneDivider){
                      inDivider = true;
                      testForDrag(eventID);
                 if (inButton || inDivider)
                           Point componentPoint = SwingUtilities.convertPoint(glass, glassPanePoint, component);
                          component.dispatchEvent(new MouseEvent(component,
                                                               eventID,
                                                               e.getWhen(),
                                                               e.getModifiers(),
                                                               componentPoint.x,
                                                               componentPoint.y,
                                                               e.getClickCount(),
                                                               e.isPopupTrigger()));
                   testForDrag(eventID);
             private void testForDrag(int eventID) {
                 if (eventID == MouseEvent.MOUSE_PRESSED) {
                     inDrag = true;
         public class MyGlassPane extends JComponent {
              int x0, y0;
              Point mLocation;
              public MyGlassPane(AbstractButton aButton, AbstractButton b2, AbstractButton b3, Container cP, JSplitPane splitter){
                   DendrogramListener dl = new DendrogramListener(aButton, b2, b3, this, cP, splitter);
                   addMouseListener(dl);
                   addMouseMotionListener(dl);
             public void setPoint(Point p) {
                 mLocation = p;
         public class Practice extends JFrame implements ActionListener
              private MyGlassPane glassPane;
              public Practice(String str)
                   super(str);
                   setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   setDefaultLookAndFeelDecorated(true);
                   addComponents(this);
                   pack();
                   setVisible(true);
              public Practice addComponents(final Practice p)
                   JPanel leftPane = new JPanel();
                   JPanel midPane = new JPanel();
                   JPanel rightPane = new JPanel();
                   JLabel l1 = new JLabel("Left panel");
                   JLabel r1 = new JLabel("Right panel");
                   JLabel m1 = new JLabel("Middle panel");
                   JButton b1 = new JButton("Button 1");
                   JButton b2 = new JButton("Button 2");
                   JButton b3 = new JButton("Button 3");
                   leftPane.add(l1);
                   leftPane.add(b3);
                   b3.setActionCommand("b3");
                   b3.addActionListener(this);
                   leftPane.setPreferredSize(new Dimension(200, 300));
                   midPane.add(m1);
                   midPane.add(b1);
                   midPane.setPreferredSize(new Dimension(200, 300));
                   rightPane.add(r1);
                   rightPane.add(b2);
                   rightPane.setPreferredSize(new Dimension(200, 300));
                   JSplitPane splitter2 = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, rightPane, midPane);
                   splitter2.setOneTouchExpandable(true);
                   splitter2.setContinuousLayout(true);
                   JSplitPane splitter = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, leftPane, splitter2);
                   splitter.setOneTouchExpandable(true);
                   splitter.setContinuousLayout(true);
                   getContentPane().add(splitter);
                   glassPane = new MyGlassPane(b1, b2, b3, p.getContentPane(), splitter);
                   this.setGlassPane(glassPane);
                   glassPane.setVisible(true);
                   return p;
              public void actionPerformed(ActionEvent arg0) {
                   // TODO Auto-generated method stub
                   if("b3".equals(arg0.getActionCommand())){
                        JOptionPane.showMessageDialog(this, "Button 3 Pressed!");
    }

    The problem with your listener is that you are only dispatching events to the
    button or divider when the mouse is directly over that component. This results
    in the behavior you see with the divider: you have to move the mouse slowly
    to keep it over the divider otherwise it gets over some other component and
    you stop dispatching the events to it.
    You actually have a similar problem with the buttons: if you click on one, it
    gets the event but if you then drag the mouse out of the button and release
    the mouse, it still triggers the button! This is not how buttons work: if you
    release the mouse when it is not over the button, it shouldn't trigger.
    Try this for your listener:
         public class DendrogramListener extends MouseInputAdapter {
              Component redispatch;
              boolean inside;
              Container contentPane;
              Component button1, button2, button3;
              JSplitPane splitter;
              Point mLocation;
              JFrame myFrame;
              MyGlassPane glass;
              private boolean inDrag = false;
              private boolean inButton = false;
              public DendrogramListener( JFrame frame ) {
                   this.myFrame = frame;
                   this.contentPane = frame.getContentPane();
                   this.mLocation = new Point();
              public DendrogramListener( AbstractButton aButton, AbstractButton b2,
                        AbstractButton b3, MyGlassPane glass1, Container cP,
                        JSplitPane split ) {
                   this.button1 = aButton;
                   this.button2 = b2;
                   this.button3 = b3;
                   this.glass = glass1;
                   this.contentPane = cP;
                   this.mLocation = new Point();
                   this.splitter = split;
              public void mouseDragged( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mouseMoved( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mouseClicked( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mousePressed( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mouseReleased( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
                   inDrag = false;
                   inButton = false;
              public void mouseEntered( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void mouseExited( MouseEvent arg0 ) {
                   redispatchMouseEvent( arg0 );
              public void redispatchMouseEvent( MouseEvent e ) {
                   int eventID = e.getID();
                   Point glassPanePoint = e.getPoint();
                   Point containerPoint = SwingUtilities.convertPoint( glass, glassPanePoint, contentPane );
                   if ( !inDrag && !inButton && eventID == MouseEvent.MOUSE_PRESSED ) {
                        redispatch = SwingUtilities.getDeepestComponentAt( contentPane, containerPoint.x, containerPoint.y );
                        inButton = ( redispatch instanceof JButton );
                        inside = inButton;
                        if ( !inButton )
                             inDrag = ( redispatch instanceof BasicSplitPaneDivider );
                   if ( inButton || inDrag ) {
                        if ( inButton )
                             eventID = possiblySwitchEventID( eventID, containerPoint );
                        Point componentPoint = SwingUtilities.convertPoint( glass, glassPanePoint, redispatch );
                        redispatch.dispatchEvent( new MouseEvent( redispatch, eventID, e.getWhen(), e.getModifiers(),
                                  componentPoint.x, componentPoint.y, e.getClickCount(), e.isPopupTrigger() ) );
              private int possiblySwitchEventID( int eventID, Point containerPoint ) {
                   int switchedID = eventID;
                   Component deepest = SwingUtilities.getDeepestComponentAt( contentPane, containerPoint.x, containerPoint.y );
                   if ( deepest == redispatch ) {
                        if ( ! inside )
                             switchedID = MouseEvent.MOUSE_ENTERED;
                        inside = true;
                   } else {
                        if ( inside )
                             switchedID = MouseEvent.MOUSE_EXITED;
                        inside = false;
                   return switchedID;
         }: jay

  • Customer Support problems, points stolen

    First off, let me say I have always been a loyal Best Buy customer, but over the past few weeks, I am not sure what happened but I have lost almost all faith in this stores ability.
     Last week, I went into my local store, to get a price adjustment on a Smart TV I had purchased.  The TV was bought roughly 30 days prior, it was outside of the price match window, but within the Elite Plus return window, so the store said they would match the current advertised price.  They told me the only way I could do this was if they returned the item, then resold it to me.  They placed the return on a gift card and re-purchased it for me, and I was left the $400 balance on a gift card.
    When I purchased the TV, I used my BB MC and used standard finiancing, with all the bonuses etc I earned nearly 12000 reward pointd for this purchase.  These were all taken away because of the way the store handled the return.  
    The old points taken away, and since in the system it showed me using a gift card to make the re-purchase I got minimal points.  I called customer support and after 40 minutes of trying to explain to this nice woman how the program works and what the problem was, she said she had to refer me to the "back office". This is slang, I have come to find out, for the real best buy employees.  Not sure if these folks work from home, or in a separate call facility not associated with actual Best Buy.  She assured me I would have resolution in 7-10 days.  Today, I received a phone call from a woman I could not even understand because of her foreign accent.  She started to explain to me how I have 2000 points pending and will get them in 15 days or so and if that was all that I needed.  I did not have the patience to try and translate my situation to her so I asked to speak with a supervisor, I was trnasfered to a phone line that rang non stop for 15 minutes until I ended the call.
    This is all somewhat irrelevent since yesterday, I somehow issued myself $1065 worth of reward certificates and immediately used them for something.  No idea what, I guess they are investigating this as well.  Funny thing is, the certificates that were issued were for more points than I actually had by a few thousand. 2 hours before the theft, I had 46000 points, yet I issued over 50,000 worth It said my balance was 16000 and had $240 in rewards left, after calling customer support, I changed my passwords, today I log in and I have 114 points.
    After reading this forum and a few others online, I have found out that this is not a new problem but actually a security issue they have been dealing with.  Last week I had 56,000 reward points that I have been diligently saving, today I have 114.  I cant even get someone who has a clue to talk to me on the phone, and the store just tells me I need to call the 800 number.  According to mybestbuy profile I have spent $18,153 to date this year at Best Buy and with my BB MC, and I get little to no help.
    Michael {removed per forum guidelines}

    Good afternoon Michael,
    Thank you for taking the time to reach out to us on the forum.  I can certainly understand having concerns if it appears that all of the points you have banked are now gone.  It does appear the price match could have been handled a little bit differently.  Once outside of the 15 day time frame allowed for price matches, a return and repurchase might be performed in-order to process a price match; however, instead of issuing the funds in the form of store credit, a full refund to the credit card and new purchase with the same credit card may have been a better way to go.
    While looking over your My Best Buy™ account, I believe that I can explain what may have happened with your points.  I am going to send you a private message so that I can go over your account with you in greater detail and see what I can do to hopefully resolve any of the issues you have encountered.  To check your private messages, please make sure you are logged into the forum and click on the yellow envelope icon located at the top of the screen.
    I look forward to speaking with you.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • How do I Help Apple Care Stop Warring with Each Other and Fix the Problem with My iPhone that They Acknowledge Creating?

    How Do I Help Apple US & Apple Europe Stop Warring With Each Other And Fix The Problem They Created?
    PROBLEM
    Apple will not replace, as promised, the iPhone 5 (A1429 GSM model) that they gave me in London, UK, with an iPhone 5 (A1429 CDMA model).
    BACKGROUND
    My iPhone 5 (A1429 CDMA model) was purchased this year in September on an existing Verizon Wireless (VZW) line using an upgrade. The purchase took place in California and the product was picked up using Apple Personal Pickup through the Cerritos Apple Retail Store. I will refer to this phone at my "original" phone.
    The original phone was taken into the Apple Store Regent Street in London, England, UK on November 15, 2012. The reason for this visit was that my original phone's camera would not focus.
    The Apple Store Regent Street verified there was a hardware problem but was unable to replace the part.
    The Apple Store Regent Street had me call the US AppleCare. At first they denied support, but then a supervisor, name can be provided upon request, approved the replacement of my original phone with an iPhone 5 (A1429 GSM model) as a temporary solution until I got back in the US. And approved that the GSM model would be replaced with a CDMA model when I came back to the US. I will refer to the GSM model as the "replacement". They gave me the case number --------.
    The Apple Store Regent Street gave me the replacement and took the original. The first replacement did not work for reasons I do not understand. They switched out the replacement several times until they got one that worked on the T-Mobile nano SIM card that I had purchased in England, UK. Please refer to the repair IDs below to track the progression of phones given to me at the Apple Store Regent Street:
    Repair ID ----------- (Nov 15)
    Repair ID ----------- (Nov 16)
    Repair ID ----------- (Nov 16)
    The following case number was either created in the UK or France between November 15 to November 24. Case number -----------
    On November 19, 2012, I went to France and purchased an Orange nano SIM card. The phone would not activate like the first two repair IDs above.
    On November 24, 2012, I went to the Apple Store Les Quatre Temps. The Genius told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault. They had me call the AppleCare UK.
    My issue was escalated to a tier 2 UK AppleCare agent. His contact information can be provided upon request. He gave me the case number -----------.
    The UK tier 2 agent became upset when he heard that I was calling from France and that the France Apple Store or France AppleCare were not helping me. He told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault.
    The UK tier 2 agent said he was working with engineers to resolve my problem and would call me back the next day on November 25, 2012.
    While at the Apple Store Les Quatre Temps, a Genius switched the phone given to from repair ID ----------- with a new one that worked with the French nano SIM card.
    Also, while at the Apple Store Les Quatre Temps, I initiated a call with AppleCare US to get assistance because it seems that AppleCare UK was more upset that France was not addressing the issue rather than helping me. I have email correspondance with the AppleCare US representative.
    A Genius at the Apple Store Les Quatre Temps switched the replacement with a new GSM model that worked on the French SIM card but would not work if restored, received a software update, or had the SIM card changed. This is the same temporary solution I received from the Apple Store Regent Street in the UK.
    By this point, I had spent between 12-14 hours in Apple Store or on the phone with an AppleCare representative.
    Upon arriving in the US, I went to my local Apple Store Brea Mall to have the replacement switched with a CDMA model. They could not support me. He told me that my CDMA phone should not have been replaced with a GSM model in the UK and that this was clearly Apple's fault. My instructions were to call AppleCare US again.
    My call with AppleCare US was escalated to a Senior Advisor, name can be provided upon request, and they gave me the case number -----------. After being on the phone with him for over an hour, his instructions were to call the Apple Store Regent Street and tell them to review my latest notes. They were to process a refund for a full retail priced iPhone 5 64BG black onto my credit card so that I could use that money to buy a new iPhone 5 64GB black at the Apple Store Brea Mall to reoslve the problem.
    The Apple Store Regent Street did not process my refund. He, name can be provided upon request, told me that the AppleCare US did not do a good job reviewing my case, that they were incapable of getting to the bottom of it like they were, and instructed me to call AppleCare US and tell them to review this case number and this repair id. I asked if he read the notes from the AppleCare US Senior Advisor and he would not confirm nor deny. When I offered to give him the case number he accepted but it seemed like would do no good. Our call was disconnected. When I tried calling back the stores automated system was turned on and I could not get back through.
    Now I have the full retail price of an iPhone 5 64GB black CDMA on my credit card and Apple will not process the refund as they said they would.
    I've, at this point, spent between 14-16 hours at Apple Stores or on the phone with AppleCare representatives, and still do not have the problem resolved.
    SOLUTION
    AppleCare US and AppleCare Europe need to resolve their internal family issues without further impacting their customers.
    Apple is to process a refund to my credit card for the cost of a full retail priced iPhone 5 64GB black.
    DESIRED OUTCOMES
    I have an iPhone 5 (A1429 CDMA model) that works in the US on VZW as it did before I received the replacement phone in the UK.
    Apple covers the cost of the solution because I did not create the problem.
    Apple resolves their internal issue without costing me more time, energy, or money.
    This becomes a case study for AppleCare so that future customers are not impacted like I have been by their support system.
    Does anyone have recommendations for me?
    Thank you!
    <Edited by Host>

    Thanks, but I've been on the phone with AppleCare US (where I am and live) and AppleCare UK. They continue bouncing me back and forth without helping resolve the problem.
    Perhaps someones knows how to further escalate the issue at Apple?

  • Remote Control and Remote View Problem

    Hi,
    I work at a High School running Netware 6.0 SP5 and Zen works 4.01 ir7.
    Remote Control and Remote View works great but I noticed one problem.
    We have a logo of the school that is forced down on to the desktop when a
    user logs in through group policies. This logo works perfect for the
    desktop wall paper and loads every time a user logs in.
    When I Remote Control or Remote View a computer the users desktop wall
    paper turns from the logo being forced down through group policies to the
    desktop to a blue desktop wall paper.
    I would prefer the desktop wall paper staying the schools logo when I
    Remote Control or Remote View because if the desktop wall paper changes to
    the blue color I mentioned above when I Remote Control or Remote View the
    users computer, they will know that someone is taking over their computer
    which sometimes we dont want them knowing.
    We have Windows 98SE computer running Novell Client 3.4 and we have some
    computers running Windows XP Professional SP1 and Windows XP Professional
    SP2 both running Novell Client 4.91 SP2.
    The Remote Control and Remote View problem of the desktop wall paper
    changing on the users computer occurs on all operating systems mentioned
    above.
    Is there a solution to my above problem? When Remote Controlling and
    Remote Viewing someone's computer I don't want the desktop wall paper to
    change.
    Thanks!

    Bpilon,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Acrobat Pro 6 Average Daily Production and Math.round problem

    Acrobat Pro 6 Average Daily Production and Math.round problem
    (Production.0) (154) (whole units) . (Production.1) (90) (fractional) / (divided by) 31 (days) results in (Average.0) (4)(whole units) . (Average.1) (10) (fractional) using :Math.round.� Noticed that 154 (whole units) . 85 through 99 (fractional) also show 4.10. (without Math.round : 5.00)
    Method:
    �Production.0� (whole units) . �Production .1� (fractional) / Days = (Average Daily Production) (�Average.0� (whole units) . (Average.1) (fractional)
    � Production.0 (value not calculated)�, � Production 1 (calculated) (event.value = util.printx("0099", (event.value)).substr(-2,2); � �Average.0 (value not calculate)�, and �Average.1 has following calculation:
    var punits = this.getField("Production.0");
    var pfrac = this.getField("Production.1");
    var average = 0.0;
    average = (punits.value + pfrac.value / 100) / this.getField("Days").value;
    this.getField("Average.0").value = average - average % 1;
    this.getField("Average.1").value = util.printx("0099", Math.round((average % 1 * 100))).substr(-2,2);
    �Math.round� appears to be a problem. Also, could you explain the purpose of �0099� . Anyway, why would 154.85 through 154.90 divided by 31 give 4,10. Also, their must be a better way, to find the average daily production. All you have to do is divided the production (whole. fractional) by the days, and display the average daily production as (whole. fractional). Any suggestions??

    There are a many loose ends in your question.
    First, I have never seen before a variable type called 'var'. Is it a java primitive or a class?
    Next, I cannot seem to find any class that has the printx method.
    When it comes to substr(-2,2), I get confused. First, I thought that it was a method of the String class, but I only got as far as substring(beginIndex, endIndex).
    If you really must break the production and average into pieces, try this:
    float average = (punits + pfrac/100) / days;
    int avg_units = (int)average;
    int avg_frac = (int)( (average - avg_units) * 100 );My guess is that util.printx("0099", x) formats x having two optional digits and two mandatory digits, showing 0-99 as 00-99, but allows to show numbers with three and four digits.
    154.85/31 = 4,9951612903225806451612903225806
    154.99/31= 4,9996774193548387096774193548387
    If you round the fraction of theese numbers multiplied by 100 ( = 99.51.. and 99.968...) you get 100, and this will be the output of printx. My guess for "4.10" is that substr(-2,2) returns the two first characters of the string, because the start index should not be zero. (According to java docs, substring throws an exception on a negative index, so what kind of class are you really using ??????)

  • Iphoto 9.3 and Mountain Lion Problems : Cant access my library : rebuilding doesn't work just hangs for hours

    My Macbook Pro running Snow Leopard, had hard drive failure so I had to borrow a friends similar machine to access my iPhoto library ( 523 GB) on a 1TB drive after editing the photos and after exporting one folder of images the program quit and then asked me to repair which I tried hung up at 99% and would not open the event thumbnails . I have tried everything even trying to transfer the particular event from that library to a new library using iphoto manager just so I can export my project and send but still no success as it is telling me that it is getting no info from the library, I changed permissions on the drive ..still no success . I restarted Iphoto and it took hours to show the images but all events thumnails said "0" and it shows all the event cover photos as a gray photo with a palm tree in it or something . I tried rebuilding again this morning and the new library says "0" photos and a library size of 7.3 mb
    I got my own Macbook 17in back yesterday and downloaded Mountain Lion to my machine and Iphoto 9.3
    I tried to open the library which is 523 GB of images that used to work fine before getting an error message saying it needed to be repaired. I tried opening it with Iphoto 9.3 via I photo manager which told be that there were inconsistencies in the library and it needed to be repaired I chose that option and it is now the following day still "rebuilding thumbnails" since last night . This is a huge problem I have missed project deadlines and my income is severely affected by this situation of not being able to access my work. What can I do to fix this, access my files and export my overdue project at this point ?

    Terence I find it surprising that you would say use Iphoto Manager after saying that I used it to rebuild using it took me to 99% of the way and just hung. I even spent my $20 and got the latest version 3.8.3  which was supposed to remedy these issues. See below my email to Fat Cat software the makers of Iphoto Manager:
    "Email to Fat Cat Software : Re Iphoto problems:
    My Macbook Pro running Snow Leopard, had hard drive failure so I had to borrow a friends similar machine to access my iPhoto library ( 523 GB) on a 1TB drive
    after editing the photos and after exporting one folder of images the program quit and the asked me to repair which i tried …it hung up at 99% and would not open the event thumbnails .I have tried everything trying to transfer the particular event from the library to a new library using Iphoto Manager just so I can work on my project but still no success as IPLM is telling me that it is getting no info from the library, I changed permissions on the drive ..still no success .
    I opened it using IPLM and it took hours to show the images but all events said "0" and it shows all the event cover photos as a gray photo with a palm tree in it or something . I tried rebuilding again this morning and the new library says "0" photos and a library size of 7.3 mb . There
    really seems to be a serious problem with Iphoto 9.3 as it
    asks you to rebuild or repair the library then IPLM stops at 99% leaving
    the thumbnails
    unviewable and just hangs up after that or wont open and there the problems start.
    Please advise and give me some viable options on this issue."
    Its days later and the support at Fat Cat software emailed me asking a question and are apparently just as floored as I am with this malfunction ..I hope they are working feverishly to address this as my conclusion and solution is as follows :
    Using the older version of Iphoto Library Manager when my machine asked me to upgrade and rebuild instead of the first aid function in Iphoto 9.3 did not help but actually corrupted my library and downloading the latest version did not help remedy it either. What I should have done and am now doing is using the Iphoto first Aid function in Mountain Lion and Iphoto 9.3 using option command to rebuild the entire library. So far it is working with no hangups ...it is now rebuilding image version number 6715 and counting with 33000+ images to go ..if this solution really rebuilds then that is the ONLY way to go with this issue which has cost me a lot of time and money in missed deadlines , lost income and lost business . Iphoto and Iphoto Library manager are normally great in what their purposes are and in ease of use and function but whenawry with compatibility in version software issues arise things go terribly awry and the tedious painstaking fixes available that go for days on end  just do not cut it.

  • Macbook Pro and Thunderbolt USB problem

    I have read a few threads regarding problems with the Thunderbolt displays and Macbook Airs. None of the suggestions in there work for me including doing an SMC Reset.
    Here is my problem. I have a brand new Macbook Pro 17", 2.5Ghz Core i7,  8gb ram, 750Gb HD etc., new Thunderbolt display. Running OS X Lion 10.7.3.
    In the back of my display I have plugged in a USB mouse from Logitech, an Apple full size keyboard and my wired ethernet connection. The monitor and peripherals stay at work and I take the Macbook Pro home every night. If I do not follow a certain sequence every morning, my computer freezes. I put the power connector in first, open the lid, wait for the screen on the laptop to show the login prompt, login and then and only then can I plug in my Thunderbolt connector. Once I do this, my second screen lights up and my mouse, keyboard and ethernet connection works. But if I plug in the Thunderbolt first before power up or if I plug it in before logging in, then I have a high probabilty that the USB hub on the back of the monitor will stop working altogether. Then I have to move my mouse and keyboard over to the laptop and everything works great (my ethernet keeps working fine though). My mouse scroll for whatever reason goes into high gear and starts scrolling much faster and I have to slow it down.
    Now, this works 90% of the time. But there are days, like today, where this process does not work. And when it doesn't, either I have to move the USB devices over or like today, the machine freezes and no longer responds to any input. It appears to still be working as the screen updates but I can never regain control of it via any keyboard or mouse.
    My co-worker has the exact same setup and exact same problem. We also have 10 Thunderbolt displays here (all new) and same problem with ANY I choose. So this is not a hardware issue. Something is wrong with the driver code for some device. And my co-worker has an Apple mouse so that's not the issue either. If this can help Apple with debugging, here is another interesting tid bit. 3 weeks ago, I had a non Thunderbolt display. And for 6 months with an older laptop, I had issues with it's USB hub. Same kind of problem. Some days, the USB hub in the monitor would work and others it would go dead until a reboot was performed.
    I think a driver needs some fixing somewhere.
    Thanks,
    EJK

    For the past 3 days I have had no issues after trying something different. After reading btully's post, what I decided to do is power off the Thunderbolt display every morning before I plug my laptop in and so far this seems to work. 3 days is not a data point but perhaps if others try too for a bit, we can see if this solves the issue for some of us. I will keep you all posted and see if this continues to work.
    One thing to note as well, is that if I power off the Thunderbolt display while logged in and do not retract the plug first, the system hangs often. I am not sure if I am imagining this as I think once you power off the display it must be just like pulling the cable out no??
    Anyways, one thing is clear, there is a problem somewhere with either Thunderbolt display firmware or Mac OS X drivers.

  • We bought an iphone 4s for our daughter. We transfered it to straight talk. She can make calls and text no problem. She can use the WiFi but is unable to use the internet or mms. How do we update the APN?

    We bought an iphone 4s for our daughter. We transfered it to straight talk. She can make calls and text no problem. She can use the WiFi but is unable to use the internet or mms. How do we update the APN?

    To clarify for anyone who is still having any problems doing this.
    1. Unlock your phone with the carrier ( I know the process will work if it is jail broken but I am assuming you dont want to void the warranty on your phone) NOTE: even if you purchased the phone outright at Wal-Mart it is still locked to ATT so you will have to unlock the phone.  If it's already unlocked skip to step 2.  This works and will work even if you update the phone. 
    1a Here is the link to unlock a ATT iphone. Simply follow the instructions https://www.att.com/deviceunlock/client/en_US/
    2. Get a T- mobile SIM. Even if you don't want the service, if you feign interest, they will send you one for free or 99cents. If you need it now you can get one at a T-mobile store too.
    3. Once you have both your Straight talk SIM and your T-mobile SIM follow these instructions:http://www.youtube.com/watch?v=mFFf5uqk18M
    4. If you have any remaining questions look at all the responses posted previously on this thread or check out the Howard Forums Wiki: http://wiki.howardforums.com/index.php/Straight_Talk_iPhone
    Everything should work flawlessly at this point.  If not let me know and I'm happy to help when I can.  I hope this makes doing this very easy for everyone in the future. God Bless -J

  • PDF and Preview related problems

    Hi:
    A user in our office (MacBook Pro, v10.5.6) is having difficulty viewing and creating PDF files. To wit:
    --Opening a PDF file results in a morass of symbols throughout.
    --Opening a PDF file may show exclamation points substituted for tab characters.
    Some other files appear to be just fine using Preview, and occasionally the latter of the two above will open and appear to be just fine and dandy. The files appear to be just fine on another Mac.
    The two files appear correctly when viewed with Adobe Reader 9.0.
    Also:
    --Creating a PDF file may result in exclamation points substituted for tab characters.
    I tried a full system software archive and install...no luck.
    I tried deleting the Adobe Reader and Preview preferences files...no luck.
    I dragged and dropped a copy of Preview (v4.1) from my computer to hers...no luck.
    I created a Second User, and the previously mangled PDF files open and appear to be just fine. I can also create PDF files that are true to their source document (no exclamation points for tab characters). I did only limited testing of this; however I did use the files above and created a new PDF file using the original source document. No problems.
    I don't believe this is a missing font problem.
    So that makes me think there's something wrong in the user's home directory with Preview and the PDF creation process. Some preference file or something.
    Before I go ahead and move my data over to a new home directory...
    1. Has anyone seen this before?
    2. Has anyone fixed this before?
    3. How do I know which files to move to the new home directory and which (corrupted ones) to leave behind..if that indeed is the fix?
    4. How do I know that the creation problem doesn't extend beyond this user, and that I wasn't just lucky when Second User's PDF-created file was fine?
    TIA,
    mm

    You need to resolve the conflict/corruption in the original account. This can be a laborious process, but is guaranteed to resolve the problem. While logged into the newly created account (if it's an admin account; otherwise create a new one), backup the bad account's folder (to another volume, partition, or disk), delete the bad account, selecting the save data option (which is stored in /Users/Deleted Users/ as a disk image), recreate the bad account using the same username/password combo, log out and back into the recreated original account. Run Preview and, If the problem's solved (which it should be), open the saved data dmg file in /Users/Deleted Users/, open the /Library/Preferences/ folder from the saved data, open the current /Users/restored account/Library/Preferences/ folder, and slowly copy plist files from the saved data folder to the current one that don't exist in it, keeping track of what you're moving to the new account so you can remove them if you encounter problems in the next step. Log out and back in to ensure there's no conflict and things still work correctly. Good luck.

  • For loop and xml - how to point the right content in a XML file with a dynamically created button?

    Hi Everybody,
    as my first experience in AS3 I'm bulding a photo multigallery. In that gallery I have some buttons, each one pointing to its respective set of images.
    Each button is created with the for loop, that picks the information from a XML file. From this XML I get the text of the button, the position etc. What I did with some sucess. But there is a scary problem: I don't know how to make each button load the respective and unique set of images.
    I've tryied several different methods, with no effect, to make each loop to give to each button an unique identity to load the respective set of images.
    I imagine that the solution pass by the use of arrays. I wrote some code, and I guess that I'm almost there (but not sure). Here is my AS3 code until now:
    // CREATE MENU CONTAINER //
    var menuContainer:MovieClip = new MovieClip();
    menuContainer.x=10;
    menuContainer.y=300;
    addChild(menuContainer);
    // CREATE IMAGES CONTAINER //
    var imagesContainer:MovieClip = new MovieClip();
    imagesContainer.x=10;
    imagesContainer.y=10;
    addChild(imagesContainer);
    //// LOAD XML ////
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.addEventListener(Event.COMPLETE, whenLoaded);
    xmlLoader.load(new URLRequest("XML/roiaXML.xml"));
    var xml:XML;
    function whenLoaded(evt:Event):void {
         xml=new XML(evt.target.data);
         var mySetsList:XMLList=xml.children();
         //// MENU BUTTONS ////
         // CREATE ARRAYS //
         var totalArray:Array = new Array();
         var setNodesArray:Array = new Array();
         var setNamesArray:Array = new Array();
         // POSITIONING BUTTONS INSIDE MENU CONTAINER//
         var rowsQuantity:Number=3;
         var columnsQuantity:Number=Math.ceil(mySetsList.length()/rowsQuantity);
         var cellWidth:Number=160;
         // CREATE BUTTONS //
         for (var i:int=0; i< mySetsList.length(); i++) {
              var newSetButtonMC:setButtonMC=new setButtonMC();
              //what do I do here to make it works? To give each button created a unique id.
              setNodesArray.push(i);
              //trace(setNodesArray);
              var imageNodesArray:Array = new Array();
              for (var j:int=0; j<mySetsList[i].IMAGE.length(); j++) {
                   imageNodesArray.push(mySetsList[i].IMAGE[j].attribute("imageTitle"));
              totalArray.push(imageNodesArray);
              newSetButtonMC.setButtonText.text=mySetsList.attribute("galeriaTitle")[i];
              newSetButtonMC.setButtonText.autoSize=TextFieldAutoSize.LEFT;
              var cellX:Number=Math.floor(i/rowsQuantity);
              var cellY:Number=i%rowsQuantity;
              newSetButtonMC.x=cellX*cellWidth;
              newSetButtonMC.y=cellY*(newSetButtonMC.height+10);
              newSetButtonMC.addEventListener(MouseEvent.CLICK, onClick);
              menuContainer.addChild(newSetButtonMC);
         totalArray.push(setNodesArray);
         //// MENU BUTTONS ACTIONS ////
         function onClick(mevt:MouseEvent):void {
              trace(totalArray [0][0]);
              trace(totalArray [0][0]);
              // in the line above I achieved some success loading a specific info from XML.
              // but I don't know what to do with it.
              //what do I do here? To make each button to load its own node from XML.
    Here is my XML:
    <GALERIA galeriaTitle="galeria 01">
      <IMAGE imageTitle="imageTitle01">feio.jpg</IMAGE>
      <IMAGE imageTitle="imageTitle02">muitofeio.jpg</IMAGE>
      <IMAGE imageTitle="imageTitle03">aindamaisfeio.jpg</IMAGE>
    </GALERIA>
    <GALERIA galeriaTitle="galeria 02">
      <IMAGE imageTitle="imageTitle01">estranho.jpg</IMAGE>
      <IMAGE imageTitle="imageTitle02">maisestranho.jpg</IMAGE>
      <IMAGE imageTitle="imageTitle03">aindamaisestranho.jpg</IMAGE>
    </GALERIA>
    Thanks everyone . ABSTRATO

    you can assign each newSetButtonMC and ivar property that points to its i value or, even easier:
    // CREATE MENU CONTAINER //
    var menuContainer:MovieClip = new MovieClip();
    menuContainer.x=10;
    menuContainer.y=300;
    addChild(menuContainer);
    // CREATE IMAGES CONTAINER //
    var imagesContainer:MovieClip = new MovieClip();
    imagesContainer.x=10;
    imagesContainer.y=10;
    addChild(imagesContainer);
    //// LOAD XML ////
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.addEventListener(Event.COMPLETE, whenLoaded);
    xmlLoader.load(new URLRequest("XML/roiaXML.xml"));
    var xml:XML;
    function whenLoaded(evt:Event):void {
         xml=new XML(evt.target.data);
         var mySetsList:XMLList=xml.children();
         //// MENU BUTTONS ////
         // CREATE ARRAYS //
         var totalArray:Array = new Array();
         var setNodesArray:Array = new Array();
         var setNamesArray:Array = new Array();
         // POSITIONING BUTTONS INSIDE MENU CONTAINER//
         var rowsQuantity:Number=3;
         var columnsQuantity:Number=Math.ceil(mySetsList.length()/rowsQuantity);
         var cellWidth:Number=160;
         // CREATE BUTTONS //
         for (var i:int=0; i< mySetsList.length(); i++) {
              var newSetButtonMC:setButtonMC=new setButtonMC();
              //what do I do here to make it works? To give each button created a unique id.
              setNodesArray.push(i);
              //trace(setNodesArray);
              var imageNodesArray:Array = new Array();
              for (var j:int=0; j<mySetsList[i].IMAGE.length(); j++) {
                   imageNodesArray.push(mySetsList[i].IMAGE[j].attribute("imageTitle"));
             nextSetButtonMC.imageArray = imageNodesArray;
              //totalArray.push(imageNodesArray);
              newSetButtonMC.setButtonText.text=mySetsList.attribute("galeriaTitle")[i];
              newSetButtonMC.setButtonText.autoSize=TextFieldAutoSize.LEFT;
              var cellX:Number=Math.floor(i/rowsQuantity);
              var cellY:Number=i%rowsQuantity;
              newSetButtonMC.x=cellX*cellWidth;
              newSetButtonMC.y=cellY*(newSetButtonMC.height+10);
              newSetButtonMC.addEventListener(MouseEvent.CLICK, onClick);
              menuContainer.addChild(newSetButtonMC);
         totalArray.push(setNodesArray);
         //// MENU BUTTONS ACTIONS ////
         function onClick(mevt:MouseEvent):void {
              var mc:setButtonMC=setButtonMC(mevt.currentTarget);
    for(i=0;i<mc.imageArray.length;i++){
    trace(mc.imageArray[i]);
    Here is my XML:
    <GALERIA galeriaTitle="galeria 01">
      <IMAGE imageTitle="imageTitle01">feio.jpg</IMAGE>
      <IMAGE imageTitle="imageTitle02">muitofeio.jpg</IMAGE>
      <IMAGE imageTitle="imageTitle03">aindamaisfeio.jpg</IMAGE>
    </GALERIA>
    <GALERIA galeriaTitle="galeria 02">
      <IMAGE imageTitle="imageTitle01">estranho.jpg</IMAGE>
      <IMAGE imageTitle="imageTitle02">maisestranho.jpg</IMAGE>
      <IMAGE imageTitle="imageTitle03">aindamaisestranho.jpg</IMAGE>
    </GALERIA>
    Thanks everyone . ABSTRATO

  • Very Urgent: how to define field symbols in class using se24 Points assured

    hi all
    I am new to abap oo programming. I am using se24 to build a class
    where some methods have code which involves working with field sybmols but i am not able to figure out way for how to define field symbols in the attributes section.
    I tried defining like : fld_sym type ref to  dbtab-fld
    but in the method implementation if i try to use it like assign fld to <fld_sym> there it says fld_sym is not defined as a field symbol.
    So can anyone please guide me how to define field symbols in se24.
    Also what should be the general steps while creating a class using se24.
    Points assured
    thanks

    Hi
    Global classes are like Global fun modules in which the Methods and code is already written and is mainly used for Reusability purpose.
    Goto SE24 tcode and see the std global classes like
    CL_ABAP_CHAR_UTILITIES
    see the links
    chk out the links below:
    General Tutorial for OOPS
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e8a1d690-0201-0010-b7ad-d9719a415907
    Have a look at these links for OO ABAP.
    http://www.sapgenie.com/abap/OO/
    http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm
    http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
    http://www.allsaplinks.com/
    http://www.sapgenie.com/abap/controls/index.htm
    http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
    http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
    http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
    SDN Series:
    https://www.sdn.sap.com/irj/sdn/developerareas/abap?rid=/webcontent/uuid/35eaef9c-0b01-0010-dd8b-e3b0f9ed7ccb [original link is broken]
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf
    Basic concepts of OOPS
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b6cae890-0201-0010-ef8b-f970a9c41d47
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1591ec90-0201-0010-3ba8-cdcd500b17cf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/alv%20grid/abap%20code%20sample%20to%20display%20data%20in%20alv%20grid%20using%20object%20oriented%20programming.doc
    http://www.henrikfrank.dk/abapuk.html
    http://www.erpgenie.com/abap/OO/
    Reward oints if useful,
    Aleem.

  • Macbook Pro - Finish flaking off...  and now a problem with AppleCare

    Hello,
    So basically I am here due to that a year into having my 15" Macbook Pro the finish started flaking off to the left of the trackpad. It has progressively gotten worse and I figured being more of a cosmetic thing there was nothing that I could do about it. So I started researching it last month to find that a lot of people have this problem with the finish coming off the 06/07 Macbook Pro's. Some said that Apple have replaced the bezel around the keyboard or the entire top part of it that the flaking is happening.
    So On October 2nd I called AppleCare and spoke to someone and described my problem to them. They said that it would be covered under the AppleCare Warranty and I was extremely happy to hear that. He then explained to me that the Apple Store who replaced a bad hard drive for me once only does things like hard drive replacements and ram replacements. Something as in depth as replacing the cover in question would need someone with more specialized training. With that being said I asked if there are any local places that could take care of it so the shipping in of my laptop and shipping back to me wouldn't be needed (hoping to speed things up a bit) and they said yes and gave me a name, address and phone number of a local computer repair place that is certified to service Apple products under AppleCare.
    I think dropped off my Macbook and a week later get a call saying that Apple requested pictures of the flaking finish and then denied the service saying that it was normal wear and tear (even though other people I know with Macbooks that use them far more than I have no problem like I do). I did call and speak to a supervisor at Apple and got nowhere with him, insisting it was just normal wear and tear on the laptop and that his does the same thing.
    Now when I dropped off the Macbook I did explain I had contacted Apple who assured me that this would be covered. When they called me saying the service was denied by AppleCare they did state my computer was already apart anticipating parts and the repair would be carried out. Now they are holding me liable for a charge of at least $45 since they normally charge $90/hr.
    Basically I am writing this to find out a couple things. First off is the finish on the Macbooks a common problem, and if so have you had it fixed under AppleCare?
    Who should pay the money to get my Macbook back? Since Apple first assured me it would be covered (on a recorded line) and then they change their mind.

    This is a user forum and for everyone that responds you will only be getting an opinion. Try calling AppleCare and speak to a customer representative about the issue. Be nice but firm. I'm afraid they will have the last word.

Maybe you are looking for

  • Announcement: Super 5.10 - a suite of J2EE tools

    Announcement: Super 5.10 - a suite of J2EE tools. Super 5.10 comes with: SuperEnvironment SuperLogging SuperPeekPoke SuperReport SuperScheduler SuperStress SuperWatchdog and SuperPatrol, as a schedule job. The evaluation edition can be anonymously do

  • How can I use my Iphone 5s that was purchased in the US here in the Philippines?

    please let me know

  • How to install MySQL 5 and remove default install

    Hi all, I have some problems to make MySQL 5 works fine on Mac OS X server. I have installed the package (http://dev.mysql.com/downloads/mysql/5.0.html) but a instance of the old mysql still running. Can someone explain me how to remove the default i

  • Photoshop CS5 will not run

    I have Photoshop CS5 as part of the complete CS5 Design Premium but installed only Photoshop and Illustrator.  There did not seem to be any problems on installation but Photoshop will not run.  It installs many Plug-ins untill is stops at ScriptingSu

  • G5 quad, wont boot.. help?

    hallo forum. my compu, was working perfect, until now. i was doing 3 things at the time it freeze. 1. burning a DVD, a TS folder. (the dvd is still inside, so i can´t run safe-mode, test, etc (somebody knows how to take it out without electricity??)