Need More Help on Date Conversion

Hi All,
Could you please let me know how can I get the number of seconds lapsed till date from jan 1 1970, that is input will be sysdate and it return the number of seconds...
Thanks,
Janki

Hi
select (sysdate - to_date('19700101', 'YYYYMMDD'))/24/60/60 from dual;
Ott Karesz
http://www.trendo-kft.hu

Similar Messages

  • Need more help with a GUI

    It's the ever popular Inventory program again! I'm creating a GUI to display the information contained within an array of objects which, in this case, represent compact discs. I've received some good help from other's posts on this project since it seems there's a few of us working on the same one but now, since each person working on this project has programmed theirs differently, I'm stuck. I'm not sure how to proceed with my ActionListeners for the buttons I've created.
    Here's my code:
    // GUICDInventory.java
    // uses CD class
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class GUICDInventory extends JFrame
         protected JPanel panel; //panel to hold buttons
         protected JPanel cdImage; // panel to hold image
         int displayElement = 0;
         public String display(int element)
                   return CD2[element].toString();
              }//end method
         public static void main( String args[] )
              new GUICDInventory();
         }// end main
         public GUICDInventory()
              CD completeCDInventory[] = new CD2[ 5 ]; // creates a new 5 element array
             // populates array with objects that implement CD
             completeCDInventory[ 0 ] = new CD2( "Sixpence None the Richer" , "D121401" , 12 , 11.99, 1990 );
             completeCDInventory[ 1 ] = new CD2( "Clear" , "D126413" , 10 , 10.99, 1998 );
             completeCDInventory[ 2 ] = new CD2( "NewsBoys: Love Liberty Disco" , "2438-51720-2" , 10 , 12.99, 1999 );
             completeCDInventory[ 3 ] = new CD2( "Skillet: Hey You, I Love Your Soul" , "D122966" , 9 , 9.99, 1998 );
             completeCDInventory[ 4 ] = new CD2( "Michael Sweet: Real" , "020831-1376-204" , 15 , 12.99, 1995 );
             //declares totalInventoryValue variable
                 double totalInventoryValue = CD.calculateTotalInventory( completeCDInventory );
              final JTextArea textArea = new JTextArea(display(displayElement));
              final JButton prevBtn = new JButton("Previous");
              final JButton nextBtn = new JButton("Next");
              final JButton lastBtn = new JButton("Last");
              final JButton firstBtn = new JButton("First");
              prevBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = (//what goe here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              nextBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                          displayElement = (//what goes here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              firstBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = 0;
                        textArea.setText(display(displayElement));// <--is this right?
              lastBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = //what goes here?;
                        textArea.setText(display(displayElement));// <--is this right?
              JPanel panel = new JPanel(new GridLayout(1,2));
              panel.add(firstBtn); panel.add(nextBtn); panel.add(prevBtn); panel.add(lastBtn);
              JPanel cdImage = new JPanel(new BorderLayout());
              cdImage.setPreferredSize(new Dimension(600,400));
              JFrame      cdFrame = new JFrame();
              cdFrame.getContentPane().add(new JScrollPane(textArea),BorderLayout.CENTER);
              cdFrame.getContentPane().add(panel,BorderLayout.SOUTH);
              cdFrame.getContentPane().add(new JLabel("",new ImageIcon("cd.gif"),JLabel.CENTER),BorderLayout.NORTH);
              cdFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cdFrame.pack();
              cdFrame.setSize(500,200);
              cdFrame.setTitle("Compact Disc Inventory");
              cdFrame.setLocationRelativeTo(null);
              cdFrame.setVisible(true);
         }//end GUICDInventory constructor
    } // end class GUICDInventory
    // CD2.java
    // subclass of CD
    public class CD2 extends CD
         protected int copyrightDate; // CDs copyright date variable declaration
         private double price2;
         // constructor
         public CD2( String title, String prodNumber, double numStock, double price, int copyrightDate )
              // explicit call to superclass CD constructor
              super( title, prodNumber, numStock, price );
              this.copyrightDate = copyrightDate;
         }// end constructor
         public double getInventoryValue() // modified subclass method to add restocking fee
            price2 = price + price * 0.05;
            return numStock * price2;
        } //end getInventoryValue
        // Returns a formated String contains the information about any particular item of inventory
        public String displayInventory() // modified subclass display method
              return String.format("\n%-22s%s\n%-22s%d\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Copyright Date:", copyrightDate, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
         } // end method
    }//end class CD2
    // CD.java
    // Represents a compact disc object
    import java.util.Arrays;
    class CD implements Comparable
        protected String title; // CD title (name of product)
        protected String prodNumber; // CD product number
        protected double numStock; // CD stock number
        protected double price; // price of CD
        protected double inventoryValue; //number of units in stock times price of each unit
        // constructor initializes CD information
        public CD( String title, String prodNumber, double numStock, double price )
            this.title = title; // Artist: album name
            this.prodNumber = prodNumber; //product number
            this.numStock = numStock; // number of CDs in stock
            this.price = price; //price per CD
        } // end constructor
        public double getInventoryValue()
            return numStock * price;
        } //end getInventoryValue
        //Returns a formated String contains the information about any particular item of inventory
        public String displayInventory()
              //return the formated String containing the complete information about CD
            return String.format("\n%-22s%s\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
        } // end method
        //method to calculate the total inventory of the array of objects
        public static double calculateTotalInventory( CD completeCDInventory[] )
            double totalInventoryValue = 0;
            for ( int count = 0; count < completeCDInventory.length; count++ )
                 totalInventoryValue += completeCDInventory[count].getInventoryValue();
            } // end for
            return totalInventoryValue;
        } // end calculateTotalInventory
         // Method to return the String containing the Information about Inventory's Item
         //as appear in array (non-sorted)
        public static String displayTotalInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (unsorted):\n";
              //loop to go through complete array
              for ( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);          //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory();     //add the inventory detail in String
              }// end for
              return retInfo;          //return the String containing complete detail of Inventory
        }// end displayTotalInventory
         public int compareTo( Object obj ) //overlaod compareTo method
              CD tmp = ( CD )obj;
              if( this.title.compareTo( tmp.title ) < 0 )
                   return -1; //instance lt received
              else if( this.title.compareTo( tmp.title ) > 0 )
                   return 1; //instance gt received
              return 0; //instance == received
              }// end compareTo method
         //Method to return the String containing the Information about Inventory's Item
         // in sorted order (sorted by title)
         public static String sortedCDInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (sorted by title):\n";
              Arrays.sort( completeCDInventory ); // sort array
              //loop to go through complete array
              for( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);     //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory(); //add the inventory detail in String
              return retInfo;     //return the String containing complete detail of Inventory
         } // end method sortedCDInventory
    } // end class CD

    nextBtn.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
                   displayElement = (//what goes here? ) % //what goes here?
                   textArea.setText(display(displayElement));// <--is this right?
    });Above is your code for the "Next" button.
    You ask the question "What goes here"? Well what do you think goes there?
    If you are looking at item 1 and you press the "Next" button do you not want to look at item 2?
    So the obvious solution would be to add 1 to the previous item value. Does that not make sense? What problem do you have when you try that code?????
    Next you say "Is this right"? Well how are we supposed to know? You wrote the code. We don't know what the code is supposed to do. Again you try it. If it doesn't work then describe the problem you are having. I for one can't execute your code because I don't use JDK5. So looking at the code it looks reasonable, but I can't tell by looking at it what is wrong. Only you can add debug statements in the code to see whats happening.
    If you want help learn to as a proper question and doen't expect us to spoon feed the code to you. This is your assignment, not ours. We are under no obligation to debug and write the code for you. The sooner you learn that, the more help you will receive.

  • HT4061 I AM ASKING THAT I TRIED TO UPDATE MY iPHONE 4 BUT NOT RESPONDING PLEASE I NEED MORE HELPING

    I AM ASKING THAT I TRIED TO UPDATE MY iPHONE 4 BUT NOT RESPONDING PLEASE I NEED MORE HELPING

    If you are rying to update an iPhone 4 that now has iOS 4.3, you must connect to a computer with iTunes, start iTunes and select the iPhone from the list of Devices on the left side of the window.  Then in the main Summary window select Software Update.  The process will take a rather long time, up to half an hour depending on the speed of your internet connection.

  • Need help on data Conversion

    Hi Gurus,
    Please help me with process and validations in following conversions.
    Sub Inventory conversion
    Hr Locations conversion.
    I am working on R12 implementation project.
    Thanks in advance.
    GVK.

    Hello,
    In DSV you can change the linked table into a "named query" and then you can do the data type conversion there, like
    SELECT CONVERT(varchar(20), MyIntColumn) AS MyCharColumn
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Need help in date conversion(it's Urgent)

    I am reading data from the text file... and inserting that data into the oracle table(using bpel process)
    I have following problem with the date field.
    In the XSD file if i specify the date format as nxsd:dateFormat="ddMMyyyy" and when i pass null value in place of date,partnerlink(file adapters read ) is not reading the data.
    When i remove the dateFormat="ddMMyyyy” in the xsd file then it is reading correctly and i am able to insert that data into the table.
    Can anybody give me the solution to the above problem

    from information you've given i'm concluding that
    You've tried reset (*#7370#)
    Ensured that you've successfully upgraded, i mean you didn't suffer a failed upgrade(*#0000#)
    Though NSU uses user data conservation technology, you might've lost settings, which i'm sure you've checked and its there and selected correctly.
    As the problem started after firmware upgrade and glitch seems to be with connectivity(i remember browser improvement was one of changelog of last update), so your phone somehow didn't get upgraded properly. Only way out is to consult nokia care in your city.

  • Need Urgent Help on Currency Conversion Routine

    I am trying to load data from Cube2 to cube1. If cube2 has static currency as EUro then i have to convert the amount into GBP. I managed to convert the amount, but it Local currency is still showing as Euro where it should have been GBP. Any ideas? Please let me know if i need to put fullstop(.) or , in the code.
    The code i am using is as follows:
    CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
    EXPORTING
    CLIENT = SY-MANDT
    DATE = COMM_STRUCTURE-pstng_date
    FOREIGN_AMOUNT = COMM_STRUCTURE-inv_rc_val
    FOREIGN_CURRENCY = COMM_STRUCTURE-loc_currcy
    LOCAL_CURRENCY = 'GBP'
    RATE = 0
    TYPE_OF_RATE = 'M'
    READ_TCURR = 'X'
    IMPORTING
    local_amount = RESULT
    EXCEPTIONS
    NO_RATE_FOUND = 1
    OVERFLOW = 2
    NO_FACTORS_FOUND = 3
    NO_SPREAD_FOUND = 4
    DERIVED_2_TIMES = 5
    OTHERS = 6
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endif.

    Hi Swapna,
    Just mark 'Unit Conversion in the Routine' in update rules.
    system provides two new lines of coding
    result value of the unit
      UNIT = .
    Just add desired currency ( e.g. UNIT = 'GBP' . )
    Hope this helps
    Joe

  • Need URGENT help on DATA PACKAGE

    Hi team,
    When we extract the data from the data source it's getting as a package by package before start process i need to add all the packages into one internal table .
    How do i do that ?.
    Pl help me it's URGENt appreciate your response. thanks.
    Regards,
    Senthil

    hi,
    you need to do the process in source system or BW.
    if it is in source system, extract through program/function module that coolects all the data package and process there and push to BW once procee is over.
    if it is to be done in BW- i hope in the start routine u can do only by package by package.
    please give ur actual requirment so that others can give suggesstion.
    Ramesh

  • Need some help with date

    Hi everyone!
    I have an application in Flex AIR and I'm having problems with dates, I could't found an example on internet until now.
    I tried this for insert (database is embeded sqlite)
    insertManager.parameters[":mydate"] = mydate.selectedDate.time; // type of this column is INTEGER (in my table) and store a number (milliseconds from 1/1/1970) ex: 1265079600000
    Then when I need read records
    mydate.selectedDate = new Date(mydateprice); //it supposed show me DD/MM/YYYY but in every case display 1/1/1970
    If I replace mydateprice for mydate.selectedDate = new Date(1265079600000); // it brings me the right date
    So I don't know what happed, and I'm not sure if it's the best idea to store a date in Flex AIR
    I'll appreciate any help, information or example to find a solution.
    Regards!
    Mara.-

    Thank you so much VIKASH!!! it works!!!
    Now I'm trying to format this value 1265079600000 in my datagrid column:
    <mx:DateFormatter id="dateFormatter" formatString="DD/MM/YYYY"/>
    <mx:DataGridColumn width="140" textAlign="left" headerText="DATE" dataField="myDateColumn" labelFunction="formatDate"  />
    public function formatDate(item:Object,column:DataGridColumn):String
    return dateFormatter.format(item.myDateColumn);
    but this column appear empty....
    Regards and thanks again!
    Mara.-

  • Converted DVD files, Now I Need More Help

    I converted my DVD files so that my video iPod can read them, but now I have another problem. It would seem that a DVD has 8 or more seperate files that contains different portions of the actual movie.
    How can I get all of those different chapter files into one streaming video?

    You need to install itunes (the actual program) on your C: drive. The program and preference files don't take up that much space.
    Then put the actual music, podcasts, videos, etc on the exHD. Use itunes to do this, not Win Explorer, so itunes will be able to find the files after the move.
    Directions on moving the music to an exHD:
    http://support.apple.com/kb/HT1364

  • Need More Help!

    Hi
    Sorry to be such a pain but I always have problems with this.
    This isn't related to my other project.
    I'm saving video from Fraps at 1920 by 1200, in AVI format, the resolution of my monitor.
    I want to import it into PE10, crop it to a wide screen format and export it at  1600 by 900 frames size as an AVI file.
    The clip coming in is 1.0 PAR.
    In the options to export AVI files I can't find any options to export it at anything other then 720 by 480.
    It doesn't matter if I pick Standard NTSC Wide Screen NTSC or Microsoft AVI the only options are 720 by 480.
    It won't let me change the size in the advanced menu on any of the formats.
    I could export it at anything I want as a WMV file but I have to have an AVI file to import it into the program I want to use it in.
    Is there any way to do this?
    And last even when I do export it as an AVI file at 720 by 480, and the image is bigger then the preview window, what I get is a much smaller image that doesn't fill the frame.
    I thought I finally had the PAR thing figured out, it's 1.0 PAR going in, and 1.0 PAR going out but it still doesn't come out right.
    I just tried importing it at Full HD 30 and outputting it at Standard NTSC and I get a small frame in a bigger window.
    Any help welcome.
    Mike

    tep one: Visit http://www.giganews.com/line_info.html and post up the Traceroute the page shows, if you wish. Be aware that your non-bogan public IP Address will show up.  It might shown up as the final hop (bottom-most line of the trace)  might contain a hop with your IP address in it. Either remove that line or show only the first two octets. What I'm looking for is a line that mentions "ERX" in it's name towards the end. If for some reason the trace does not complete (two lines full of Stars), keep the trace route intact.
    For example this what I see
        news.giganews.com
        traceroute to 71.242.*.* (71.242.*.*), 30 hops max, 60 byte packets
        1 gw1-g-vlan201.dca.giganews.com (216.196.98.4) 13 ms 13 ms 13 ms
        2 ash-bb1-link.telia.net (213.248.70.241) 39 ms 7 ms 7 ms
        3 TenGigE0-2-0-0.GW1.IAD8.ALTER.NET (63.125.125.41) 4 ms 4 ms GigabitEthernet2-0-0.GW8.IAD8.ALTER.NET (63.65.76.189) 4 ms
        4 so-7-1-0-0.PHIL-CORE-RTR1.verizon-gni.net (130.81.20.137) 6 ms 6 ms 6 ms
        5 P3-0-0.PHIL-DSL-RTR11.verizon-gni.net (130.81.13.170) 6 ms 6 ms 6 ms
        6 static-71-242-*-*.phlapa.east.verizon.net (71.242.*.*) 32 ms 32 ms 33 ms
    Step two: Can you provide the Transceiver Statistics from your modem?
    #3 If you don't know how to get that info:
    a) What is the brand and model of your modem?
    b) If you have a RJ-45 WAN port router connected to it: What is the brand and model of the RJ-45 WAN port router?
    #4 If you have a RJ-45 WAN port router connected to the modem, even if you know how to get the Transceiver Statistics from the modem: What is the brand and model of the RJ-45 WAN port router?
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • Need  some help on data selection

    Hi all,
       In COST dbtable there are fields TKG001, TKG002, ... TKG016.
    From this i need to select one according to month.
    ie., if month is January i need to select TKG001,
                         June    i need to selct TKG006 and so on.
    How can i do this. Please help me in this.

    Write one select to fetch all the fields and in the program, filter out from he internal table only those ields that u require..

  • Sorry but I need more help to set up AE as bridge

    Hi, I had some advise on how to set up airport Extreme as a bridge (? - I need to extend my network without confusing two or more IP addresses or something like that). I have tried a few thing but really do not know how to connect to the device for the setup. I think the LAN connection from the ISP Modem should go into the "circle" port and the MAC should plug into one of the three <-.-> ports.
    In running through AE utility, I end up with it telling me that I do not have an IP address and I should contact my ISP.
    If there is someone out there that has the knowledge and patience to give me a step by step guide to connect and configure this setup so that I end up with a reliable network extension that does not clash with the ISP modem Router. I would be very grateful. Thanks!

    I will check. I it possible that that was not the model number. I have hooked up the laptop so I can communicate again. and hmmm, sorry it is a 2701 model.
    Here's what I have done in the mean time and the information you requested Bob:
    Switched everything off again, disconnected the apple TV and 2Wire modem, connected modem, connected AE, waited 3 minutes, switched on Mac Pro then connected to <-.-> port on AE, waited 2 minutes, started up Airport Utility and tried to connect (after upgrading to latest firmware).
    Resulting in Error message:
    "An error occurred while updating the configuration.
    Make sure your Apple wireless device is plugged in and in range of your computer or connected via Ethernet and try again. (-6737)"
    I can report the connections settings prior to changing them:
    Connect using: Ethernet (I left this as was)
    Configure IPv4: Using DHCP (I set to manually)
    Ethernet WANPort: Automatic I l left this as was)
    Connection sharing: Share a public IP address (I set to "OFF (Bridge Mode)")
    resulting in the error mentioned above..
    Does this tel you anything? Should I disconnect my MacBook which is using wifi to 2Wire?
    I am going to try to set the AE with the MacBook while I wait for your advice.
    Thanks again! Floor

  • Hi friends.....i need a help regarding date manipulations

    I want to know that how can i get the week date ranges of a specified month.
    for example: the input is month = 6 and year = 2007
    i need the output as 01.05.07 - 07.05.07
                                  08.05.07 - 14.05.07
                                  15.05.07 - 21.05.07
                                  21.05.07 - 27.05.07
                                  27.05.07 - 30.05.07
    Waiting for your positive response.
    Kesavadas T

    parameters : month(2), year(4).
    data : date type sy-datum.
    data : last_date type sy-datum.
    data : day(2) value '01', last_day(2).
    data : from_date type sy-datum, to_date type sy-datum.
    concatenate year month day into date.
    CALL FUNCTION 'SG_PS_GET_LAST_DAY_OF_MONTH'
      EXPORTING
        day_in                  = date
    IMPORTING
       LAST_DAY_OF_MONTH       = last_date.
    last_day = last_date+6(2).
    from_date = date.
    to_date = date + 6.
    while to_date <= last_date.
      write : / from_date, '-', to_date.
      from_date = to_date + 1.
      to_date = from_date + 6.
    endwhile.
    if from_date <= last_date.
      write : / from_date, '-', last_date.
    endif.
    This works fine. Hope this solves your problem.
    Regards
    Anil Madhavan

  • Playing H.264 content using NetStream (got it to work; need more help though PLEASE)

    hey everyone,
    by going on here
    http://www.adobe.com/devnet/flashplayer/articles/hd_video_flash_player_03.html
    i've been able to stream a h.264 video.
    below is the code i used to make the .mp4 stream (which is in
    the link above).
    everything works great when i publish the swf.
    it plays perfectly and everything, but..it's just a little
    screen.
    what i have to do is create a little video player for it so
    you can hit PLAY and STOP, but my creative director also wants it
    to be able to SCRUB so you can scrub through it if you want.
    i'm not the best flash person in the world, so every little
    bit anyone can help me is highly appreciated.
    i need to have something to show the creative director by
    tomorrow...and i'm really stressing it.
    i just need to be able to make what i've set up to PLAY,
    STOP, and SCRUB...
    and i'm not really sure how to do this.
    when i asked my creative director about the scrubbing, he
    said u can do that by using netObjects.
    whats the most efficient way to make my video play, stop, and
    be able to scrub?
    please help =D
    i'd really really appreaciate it.
    thank you so very much.
    _Tobes

    anyone?
    anyone?

  • Need some help on data encryption in Forms 6i with Oracle Database.

    Hi,
    Here is my requirement:
    I have a username and a password field, and i can add new users to it and ofcourse set a password for it.This password will be visible as asteriks on the forms but i want it to entered in the encrypted format in the database in the designated table.Can anyone help me with this.(hope my question is clear!!!)
    Thanks,
    Aparna.
    null

    Hi,
    try it in the follwing very simple way:
    translate each character of the password to it's ascii value and add a constant value you like. e.g. i = asc(substr(pwstring,i,1)) + k. concatenate each char-value of i(whitch have to be a fix length string of f.e. 4 digits) to build op the encrypted string. you can rich up this by calculating k in differents ways like:
    K = offset + i. and by the way this encryption can call n times, mean encrypt the encryption, if you want.
    the decryption is yout turn ;-)
    hope this will help you...
    Regrads
    biki
    null

Maybe you are looking for

  • Powershell script sends e-mail in ISE but not from powershell command line

    I have created a script that generates a report of all users who do not have photos in Active Directory. The script runs and sends an e-mail to a distribution list. It runs fine in ISE, but I cannot run it from command line or as a scheduled task. An

  • Raw file problem in elements 9

    a few days ago i could open and edit raw files in my photoshop elements 9 software with no problem. now when i try i get a message saying unable to open as not a recognised photoshop file. what do i do?

  • Unable to compile class for JSP in tomcat

    Hi I developed an application. it works Ok in embedded OC4J server. But I get the following error when I deployed to tomcat server : org.apache.jasper.JasperException: Unable to compile class for JSP      org.apache.jasper.servlet.JspServletWrapper.h

  • System copy of GTS - Productive to Test - How to ?

    Dear all, We are planning a copy of our SAP sytems from productive to test. We did this already several times including ERP, BW and CRM systems. Now for the first time GTS is involved, too. Is there any special information available on how to do this

  • Laptop stuck on blue loading screen!

    hi folks! i am in serious need of HELP! any advice wud be appreciated! I updated the software on my laptop to 10.4.9 about 3-4 days ago and it worked fine, however 2 days later my laptop crashes and then when i go to start it up again it doesnt stop