I'd use Safari's bug report function instead of posting here, but...

...it crashes Safari. lol.
So here are my reports:
- If Google is set as the default search engine, setting the home page to www.google.com crashes the program.
- Bookmarks... seems like this topic has been covered well enough. I actually had no problems importing them from Firefox, but adding new ones crashes the program.
- And as mentioned, the bug report function crashes the program.
Bugs aside, I love it. Looking forward to future releases.
Homegrown PC, P4 1.8GHz.   Windows XP Pro  

...it crashes Safari. lol.
Haha! It's so Windows-alike!

Similar Messages

  • I can use my apple id and password to log in here, but they are not accepted to reinstall os on mac mini.  I've changed passwords, still no luck After 3 hours I'm ready to go back to windows!

    I can use my Apple ID to log in here but I can not use it to reinstall IOS on my Mini.  What gives this has been 3 hours.  I've changed the password twice, I can log into the forum but the App store say unknown error!

    What makes you think an Unknown Error has anything to do with your password....
    Also, a Mac Mini runs OSX not IOS. Be that as it may, a simple Google search would have led you to this support article for "iTunes Unknown Error":
    http://support.apple.com/kb/TS1368
    Hope you are able to find a solution!
    Cheers,
    GB

  • When I use Safari the computer says can't connect to server but I am connected to internet.

    This morning I opened Safari and got this message. Can not connect to server (Google). That's funny I can use the internet and visit any site. Why am I getting this message?

    What happens when you click this link, same thing? :
    https://www.google.com

  • The wi-fi is working but I get I grayish screen when I use safari.  The touch screen is also not working but only on safari (well internet).  How do I fix that?

    Good day,
    I get a grayish screen when I access internet via my Ipad.  The touch screen is also not working but only with internet.  How do I fix that?
    thank you
    mélanie

    I have the same problem! Can anyone help us? Thanks!!

  • When trying to get onto my email, the following statement comes uip: "We are sorry, but you will need to enable cookies and Javascript to use your Username with this site. I click "here" but nothing happens. How do I enable cookies amd Javascript?

    Trying to get t my email, this comes up: We are sorry, but you will need to enable cookies and Javascript to use your Username with this site.
    How do I do this?
    George Szanto<br />
    [email protected]

    see similar question answered at https://support.mozilla.com/questions/836913
    To be notified of updates to a question whether it is your problem or not simply click on the "Get email notifications" and follow directed choice. Only the original poster can mark as solved, so there should be a slight difference in choice as an original poster and where you latch onto another question. The notifications only apply to the specific question where entered.

  • Bug report: entering serial number does not work with azerty keyboard

    I did not find a place to submit bug reports, so I'm posting here.
    During the instalation of Photoshop Elements 8 for Mac, I was not able to enter any numbers in the serial number fields.  Some other keys did work (like &é$...).  My keyboard is an azerty (Belgium).  Notice the numbers on an azerty keyboard have to be entered while holding the shift key.  I tried switching the keyboard to "French - Numerical" (wich enables numbers to be entered with shift lock on), and then some number keys worked, and others didn't.
    I solved this with a workaround, by temporary switching my keyboard to U.S. English.

    You can submit a bug report by clicking "Feature Request/Bug Report" in the upper-right corner:
    http://www.adobe.com/support/photoshopelements/
    Despite what it says, I've seen no hard evidence that Adobe ever pays attention to PSE bug reports.

  • How do i use the bug reporter in ios 8

    im trying to use the bug reporter for the beta ios 8 but i dont get to input anything. Maybe i dont understand how this works,so can someone please explain.either way i figure i should say somthing now.
    -the infinity blade 2 app does not load
    -my settings button doesnt load all the time,
    -most of the apps dont load the first time i open them,if i switch to another menu then back it will load.
    -just now i shut off my phone, plugged it into the charger. My phone then turned itself back on and had me reactivate it.
    -the "sample" button in the ibooks app doesnt seem to do anything either
    -most of the time scrolling down on anything rather large(e.g.songs,articles,facebook) there is alot of skipping or lagging effect
    -when on safari i turn my phone sidways and it totally messes up where things should go and it wont return i have to exit and close to fix
    anyways id just thought id put that out there

    You need to ask this question in the Developer's forum, which as a registered developer you have access to. If you're not a registered developer, then you have no business messing with iOS Beta software, & discussing such, even bug reporting, is PROHIBITED in this public forum.
    But, as a registered developer, you already knew that, correct?

  • Confused after reading bug report

    Hello,
    I'm working on a desktop application which utilizes the system tray. I have an icon set with a popup menu that is triggered when the user left-clicks on the icon. Originally I was using java.awt.PopupMenu but then came across javax.swing.JPopupMenu which looks a little nicer and has support for icons. For the most part it works great. However I noticed that when the user triggers the popup menu more than once (i.e. the user left-clicks the tray icon twice or more times), a ClassCastException is thrown. After doing a bit of searching, I came across [this bug report|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6583251] and many others describing the issue I was having.
    According to the report, the evaluation is:
    Everything is clear
    we shouldn't cast mouseEvent.getSource() to Component without checkingUnfortunately this still leaves me a little confused. I mean, it does sort of let me know where the problem is happening (in the MouseListener portion of my Tray Menu where I am trying to detect the popup trigger), but I don't understand if this means that there is a way to prevent this from happening or not.
    In other words, I think the bug is coming from this block of code (correct me if I am mistaken):
    public void mouseReleased(MouseEvent e) {
              if ( e.isPopupTrigger() ) {
                   this.setLocation( e.getX(), e.getY() );
                   this.setInvoker( this );
                   this.setVisible( true );
         }Where e is apparently being casted to a Component, thus causing the error. Now, why this error occurs when the user clicks twice or more on the icon, I don't really understand. Ultimately, my question is: Is there any other way this can be written to prevent the error?
    One solution would be to simply use java.awt.PopupMenu, but I want to make sure there isn't a better solution first as JPopupMenu looks much nicer.. but if I have no other option, I will of course substitute looks for function.
    Any clarification would be greatly appreciated.
    (Apologies if this is the wrong forum. I was originally going to post this in the Swing forum, but the error actually cites AWT, yet I'm using a Swing component.. so I figured the Java Programming forum would be alright. Well, please feel free to move it if necessary.)

    ejp wrote:
    The exception stack trace tells you where the exception is being thrown from. It certainly isn't from that code, because there are no class casts of any kind there, let alone casts of e.getSource() to Component.Hi ejp, thank you for the response. My apologies.. I only assumed that e.isPopupTrigger() was throwing the exception because the bug report mentioned mouse events, and the stack trace doesn't specify where the error is within my code (e.g. the line, method, or even which class is throwing the error that I've written, though it does cite other Java classes not written by me). The e.getSource() in actionPerformed() was my next guess because that and the MouseListener are the only two places where I am detecting events. Nevertheless, I still don't believe that I am using casting, so I'm not sure how to fix this.
    Here is the stack trace:
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.awt.TrayIcon cannot be cast to java.awt.Component
         at javax.swing.plaf.basic.BasicPopupMenuUI$MouseGrabber.eventDispatched(Unknown Source)
         at java.awt.Toolkit$SelectiveAWTEventListener.eventDispatched(Unknown Source)
         at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
         at java.awt.Toolkit.notifyAWTEventListeners(Unknown Source)
         at java.awt.TrayIcon.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.awt.TrayIcon cannot be cast to java.awt.Component
         at javax.swing.plaf.basic.BasicPopupMenuUI$MouseGrabber.eventDispatched(Unknown Source)
         at java.awt.Toolkit$SelectiveAWTEventListener.eventDispatched(Unknown Source)
         at java.awt.Toolkit$ToolkitEventMulticaster.eventDispatched(Unknown Source)
         at java.awt.Toolkit.notifyAWTEventListeners(Unknown Source)
         at java.awt.TrayIcon.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)Below is my TrayMenu class extending JPopupMenu:
    package gui.menus;
    import gui.frames.TrayTweetFrame;
    import java.awt.HeadlessException;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import javax.swing.ImageIcon;
    import javax.swing.JMenuItem;
    import javax.swing.JPopupMenu;
    import util.Constants;
    public class TrayMenu extends JPopupMenu implements ActionListener, MouseListener {
         private JMenuItem exitMenuItem = null;
         private TrayTweetFrame frame = null;
         private JMenuItem minimizeMenuItem = null;
         private JMenuItem restoreMenuItem = null;
         private static final long serialVersionUID = 1L;
          * Constructor
          * @param TrayTweetFrame frame
          * @throws HeadlessException
         public TrayMenu ( TrayTweetFrame frame ) throws HeadlessException {
              this.frame = frame;
              this.initialize();
         } // end constructor
          * This method handles the events.
         public void actionPerformed( ActionEvent e ) {
              // Exit
              if ( e.getSource().equals( getExitMenuItem() ) ) {
                   getFrame().exit();
              // Restore or Minimize window
              else if ( e.getSource().equals( getRestoreMenuItem() ) ||
                        e.getSource().equals( getMinimizeMenuItem() ) ) {
                   getFrame().minimize();
         } // end method actionPerformed()
          * This method initializes and returns
          * the Exit menu item.
          * @return MenuItem exitMenuItem
         public JMenuItem getExitMenuItem() {
              if ( exitMenuItem == null ) {
                   exitMenuItem = new JMenuItem( Constants.MENU_EXIT, new ImageIcon("img/icons/exit.png" ) );
                   exitMenuItem.addActionListener( this );
              return exitMenuItem;
         } // end method getExitMenuItem
          * This method returns the frame.
          * @return frame
         public TrayTweetFrame getFrame() {
              return frame;
         } // end method getFrame
          * This method initializes and returns
          * the Minimize menu item.
          * @return MenuItem minimizeMenuItem
         public JMenuItem getMinimizeMenuItem() {
              if ( minimizeMenuItem == null ) {
                   minimizeMenuItem = new JMenuItem( Constants.MENU_MINIMIZE, new ImageIcon("img/icons/minimize.png" ) );
                   minimizeMenuItem.addActionListener( this );
              return minimizeMenuItem;
         } // end method getMinimizeMenuItem
          * This method initializes and returns
          * the Restore menu item.
          * @return MenuItem restoreMenuItem
         public JMenuItem getRestoreMenuItem() {
              if ( restoreMenuItem == null ) {
                   restoreMenuItem = new JMenuItem( Constants.MENU_RESTORE, new ImageIcon("img/icons/maximize.png" ) );
                   restoreMenuItem.addActionListener( this );
                   restoreMenuItem.setEnabled( false );
              return restoreMenuItem;
         } // end method getRestoreMenuItem
          * This method initializes the menu.
         private void initialize() {
              this.add( getMinimizeMenuItem() );          // Minimize
              this.add( getRestoreMenuItem() );          // Restore
              this.addSeparator();                    // --------
              this.add( getExitMenuItem() );               // Exit
         } // end method initialize
         public void mouseClicked(MouseEvent e) {
              // Check for double-click
              if ( e.getClickCount() == 2 ) {
                   // Minimize to the system tray
                   getFrame().minimize();
              } // end if
         public void mouseEntered(MouseEvent e) {}
         public void mouseExited(MouseEvent e) {}
         public void mousePressed(MouseEvent e) {}
         public void mouseReleased(MouseEvent e) {
              if ( e.isPopupTrigger() ) {
                   this.setLocation( e.getX(), e.getY() );
                   this.setInvoker( this );
                   this.setVisible( true );
    } // end class TrayMenuAm I doing something wrong? Like I said, I'm not casting (at least explicitly..), so I'm not sure why I'm getting a java.lang.ClassCastException error. Normally I can figure out problems like these with Google, but again, when I did Google this, I came across the bug report which describes my issue exactly (but at the same time, left me wondering what the solution is).
    Again, any help is appreciated. Thanks again, ejp!

  • Bug report: ignore not working

    Bug report: ignore in the forum here not working
    I set some SPAM users to 'ignore' - still can see their SPAM.
    Please fix it.

    The "Ignore a community user" feature will only block private messages received from other community users. See also the community help here: http://community.skype.com/t5/help/faqpage/faq-category-id/pm#pm
    Is that what you are referring to or do you expect this also to hide public messages posted by these users (which is not what it is currently designed to do).
    If you should spot content on the community that is violating our Community Guidelines please use the "Report inappropriate content" link from the "Post Options" menu next to the message. These abuse reports will then be reviewed by our moderation team.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • MS office report function does not work after building the appication

    I use the MS office report function  with a custom excel template my application.
    It works properly in de developstate, but after building the application it does not work .
    I use office 2000  and Windows XP

    jmq wrote:
    I use the MS office report function  with a custom excel template my application.
    It works properly in de developstate, but after building the application it does not work .
    What error message if any did you get? It could be a couple things:
    1. Did you include the Report Toolkit's dynamic vis in the app's build process?
    Ref: Error 7 when Running an .EXE Using VIs from Report Generation Toolkit for MS Office
    2. How are you giving the path to you custom template, as a relative or an absolute path? The path will be different for the .exe. You have to strip twice.
    Ref: Why Can't My Executable Load My Included File When I Use Relative Path Encoding?
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • Want to use ouput of a report in my program

    Hi all,
          I want to use the output of report rm07mlbd(stock on posting date) in my report program. How do I get the same done.

    Hi Kaushal,
    Follow this logic if you want to use the output
    *--> Submit VL04 Report and store output in Memory
        SUBMIT rv50sbt1
                WITH vstel   EQ lw_vstel
                WITH s_ledat IN lr_ledat
                WITH s_ebeln IN lr_ebeln
                WITH allea   EQ lw_allea
                WITH alleb   EQ lw_alleb
                WITH samml   EQ lw_samml
                WITH anzei   EQ lw_anzei
                EXPORTING LIST TO MEMORY
           AND RETURN.
        IF sy-subrc NE 0.
          MOVE text-e09 TO ztastolog-zerrmsg.
          PERFORM insert_message USING c_chare text-i09.
          EXIT.
        ENDIF.
    *-->  Import List output from Memory
        CALL FUNCTION 'LIST_FROM_MEMORY'
          TABLES
            listobject = lt_list
          EXCEPTIONS
            not_found  = 1
            OTHERS     = 2.
    *--> Convert list output to ASCI format
        CALL FUNCTION 'LIST_TO_ASCI'
          TABLES
            listasci           = lt_asci
            listobject         = lt_list
          EXCEPTIONS
            empty_list         = 1
            list_index_invalid = 2
            OTHERS             = 3.
    *--> Free Memory
        CHECK sy-subrc EQ 0.
        CALL FUNCTION 'LIST_FREE_MEMORY'
          TABLES
            listobject = lt_list.
    Thanks,
    Vinay

  • Submitting bug reports for linux player

    hello,
    we're in the process of improving the
    feedback
    form to better collect your input on the linux version of flash
    player 9. while we are waiting for these form updates to be made,
    please use the "Problem description" field near the top of the form
    to provide additional information such as:
    * distribution and version
    * browser and version
    * any mutant library configuration (other than those included
    with distribution)
    * camera/microphone type (if applicable)
    this information will greatly help our QE team in reviewing
    and reproducing your issues, which leads to issues getting fixed
    faster.
    thanks!
    jennifer
    (adobe's flash player program manager)

    Anyone have any idea how to submit a bug report for Oracle XE.Posting bug description in this Forum should be enough.

  • Bug Report (reproducible) - Adding an appointment to Google Calendar causes Pre to display a blank calendar.

    I have been able to reproduce an important bug on the Pre (webOS 1.0.2).  I didn't see a way to submit an official bug report, so I'm posting it here.
    Step 1: Import the following ical file into a Google calendar:  http://www.halfwayproductions.com/test.ics
    Step 2: Sync the Google calendar to your Pre
    Step 3: Your Pre calendar appears completely blank!
    It's worth noting that this file doesn't import correctly into Google calendar.  Google gets the repeat wrong and puts the appointment at the wrong time.  However, this shouldn't cause the Pre to display a blank calendar!
    Post relates to: Pre p100eww (Sprint)

    EDgeofNJ wrote:
    I confirmed that a meeting location with an apostrophe causes the event to not sync to Google Calendar. Interesting enough, I created an event on Google Calendar with an apostrophe in the location and it sync'd to my Pre, without causing the calendar to go blank. BTW, I'm on 1.1.0.
    This seems like it would be a very common occurance as many meetings or appointments could possibly contain apostrophes in the location (Joe's office, Dr's office, Arthur's Tavern, etc). It leaves me with little confidence of what is on the Pre and what is in my Google Calendar, as there could be other issues causing events not to sync, and they are obviously not "in sync." Is anyone looking into a fix for this? (Is Palm or Google listening?) In the mean time, is there any way to get a log of events that did not sync, as opposed to blindly assuming everything was uploaded fine?
    Message Edited by EDgeofNJ on 07-30-2009 10:18 AM
    Some of these are known occurrences and I believe have been logged into the Palm SW database. Symbols had also been causing Facebook contacts to not sync properly as well. I don't know if getting a log of events that do not sync is possible at this time. However, if a user could post characters and their entry points that are known anomalies that cause the errors, that'd be useful.

  • IOS 8 Bug Reporter suddenly crashes constantly

    Hi,
    I have ios 8 beta. Earlier today I was making drafts in the Bug Reporter application that came with ios 8. I currently have 4 drafts. I could not submit these yet beacuse I did not have wifi. So, when I finally got to wifi, I opened the Bug Reporter, entered my email and password, and then it crashed right after that. I have done a reset, and a restart. I just cant seem to find out what the problem is and why this will not work, because I have already submitted 3 bug reports yesterday and some today with absolutely no problems. I managed to dig up a log file from the Bug Reporter crash and will post it below. I hope somebody can kindly help, as I am trying to make ios 8 a better OS for apple and users when it is released. I can not do this without Bug Reporter.
    Thank you so very much!!
    -24GHz
    Here is part of the log file:
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Triggered by Thread:  0
    Last Exception Backtrace:
    (0x2b9bb436 0x38968d1a 0x2b8d9500 0x3476f9a4 0x3476f8ce 0x346f0e30 0x2f245f80 0x2f247cc2 0x2f087042 0x2f086eea 0x2f0869d8 0x2efad274 0x2efad18a 0x2e9cf8e6 0x38ecf80e 0x38ed84a2 0x2b982764 0x2b980e84 0x2b8cd7dc 0x2b8cd5ee 0x32a1e25c 0x2efd8e38 0x237d2 0x38f01aaa)
    Thread 0 Crashed:
    0   libsystem_kernel.dylib                  0x38fc5ee0 0x38fb1000 + 85728
    1   libsystem_pthread.dylib                 0x3904406a 0x39040000 + 16490
    2   libsystem_c.dylib                       0x38f65900 0x38f1c000 + 301312
    3   libc++abi.dylib                         0x381b1c2c 0x381b1000 + 3116
    4   libc++abi.dylib                         0x381cb66a 0x381b1000 + 108138
    5   libobjc.A.dylib                         0x38968fb6 0x38962000 + 28598
    6   libc++abi.dylib                         0x381c8df8 0x381b1000 + 97784
    7   libc++abi.dylib                         0x381c85b8 0x381b1000 + 95672
    8   libobjc.A.dylib                         0x38968dee 0x38962000 + 28142
    9   CoreFoundation                          0x2b8d9500 0x2b8b3000 + 156928
    10  RadarCompose                            0x3476f9a4 0x346ec000 + 539044
    11  RadarCompose                            0x3476f8ce 0x346ec000 + 538830
    12  RadarCompose                            0x346f0e30 0x346ec000 + 20016
    13  UIKit                                   0x2f245f82 0x2ef6c000 + 2989954
    14  UIKit                                   0x2f247cc2 0x2ef6c000 + 2997442
    15  UIKit                                   0x2f087044 0x2ef6c000 + 1159236
    16  UIKit                                   0x2f086eea 0x2ef6c000 + 1158890
    17  UIKit                                   0x2f0869d8 0x2ef6c000 + 1157592
    18  UIKit                                   0x2efad274 0x2ef6c000 + 266868
    19  UIKit                                   0x2efad18a 0x2ef6c000 + 266634
    20  QuartzCore                              0x2e9cf8e6 0x2e9bd000 + 76006
    21  libdispatch.dylib                       0x38ecf810 0x38ece000 + 6160
    22  libdispatch.dylib                       0x38ed84a2 0x38ece000 + 42146
    23  CoreFoundation                          0x2b982764 0x2b8b3000 + 849764
    24  CoreFoundation                          0x2b980e84 0x2b8b3000 + 843396
    25  CoreFoundation                          0x2b8cd7dc 0x2b8b3000 + 108508
    26  CoreFoundation                          0x2b8cd5ee 0x2b8b3000 + 108014
    27  GraphicsServices                        0x32a1e25c 0x32a15000 + 37468
    28  UIKit                                   0x2efd8e38 0x2ef6c000 + 446008
    29  Bug Reporter                            0x000237d2 0x20000 + 14290
    30  libdyld.dylib                           0x38f01aac 0x38f00000 + 6828

    Try here:
    https://discussions.apple.com/community/developer_forums

  • Is it possble to use out/inout parameters in function?

    Is it possble to use out/inout parameters in function?

    Hi,
    user10784864 wrote:
    But I can't call the function from SQL if it contains DML statements also right?Right.
    I know of two separate and independent reasons why fucntions with OUT arguments (or IN OUT arguments; I'll just say OUT in the remainder of this message)might not be a good idea.
    (1) They can be confusing, and
    (2) you can't call them from SQL statements.
    My reasons for (1):
    They are potenially confusing, because people usially expect the function value (alone) to pass information back to the caller. I like to write code that works. I like to avoid writing code that doesn't work, even if the reason is simply because someone else didn't read the documentation carefully. Notice I didn't say "Never write a function with OUT arguments", I said think carefully before you do. I believe there are good uses for such functions. I also believe that there are good uses for duct tape, and those good uses account for maybe 1% of the actual applications. (By the way, DML in stored procedures is another thing that is done far more often than it should.)
    If one of these reasons doesn't apply in your case, you should still consider the other reason.

Maybe you are looking for

  • Problem in Inbound delivery creation

    Hi all, While creating Inbound delivery for a scheduling agreement in VL31N while saving the document i am getting the following error Item does not exist. and its getting terminated. Regards, Ram.

  • Problems downloading Dreamweaver

    I have been attempting to download the trial version of Dreamweaver CS4. After finding the version and OS, and selecting DOWNLOAD, a pop-up appears that tells me I need to install the ADOBE DOWNLOAD MANAGER first. Problem is, there are MANY MANY MANY

  • Find the purchase order from an article delivered to a customer ?

    Hi friends;  How to identify the purchase order from an article delivered from stock to a sales order. I only have the customer order and material number. Are there standard report that could provide me with this information. Thanks in advance for yo

  • IPod 5G Stuck in recovery mode

    Where do I begin... I have a backup of my iPod 5g which is running an OS version of 7.1, and has all my apps, and data, and stuff. One night my friend decided it would be funny to factory restore it, which set the iOS to 7.1.1, and deleted everything

  • New Columns Used in a Package Declaration

    I added the following new columns to a table: alter table J48PLTEQUIP add LOCBYUSER Char ( 1) Default 'N', UPF85 VarChar2(6) Default To_Char(SysDate,'MMDDRR'), COFFSETDV VarChar2( 8) , UPF86 VarChar2(6) Default To_Char(SysDate,'MMDDRR'), COFFSETEV Va