Problem with Store.getFolder()

I'm just writing a little program for my Blackberry Pearl that listens for email messages (in Java) Here is the relevant code:
public void messagesAdded(FolderEvent e) {
        //Lets get the added message
        Store store = Session.waitForDefaultSession().getStore();
        Folder folder = Store.getFolder("INBOX");
        Message msgs[] = folder.getMessages();
        Message msg = msgs[0];
        //Now lets find out who sent the message
        Address from = msg.getFrom();
        //If the message is from [email protected] then make the phone ring
        if(from.toString().equals("[email protected]")){
           InputStream is = getClass().getResourceAsStream("sound.wav");
           Player p = Manager.createPlayer("http://216.7.189.162/globe/realtones/appliance/phonesring.wav");
            p.start();
        else{
           InputStream is = getClass().getResourceAsStream("sound.wav");
           Player p = Manager.createPlayer("http://216.7.189.162/globe/realtones/appliance/phonesring.wav");
            p.start();
    }So the problem is that when I use Store.getFolder, it says that I can
t use a non-static method in a static context. But even when I create new classes in new class files that are obviously non-static it still doesn't let me do it. What am i doing wrong?
Thanks in advance

Is your program a MIDlet?
Regards, Darryl

Similar Messages

  • Problem with store ResultSet and show result in table

    Hi, I'm kind of new in ADF, I need to store ResultSet and show result in table-component. I have two problems:
    1) I get my ResultSet by calling callStoredProcedure(...) and this returns actually ref_cursor as ResultSet.
    When I try to println() contains of this result set in this method - it works OK (commented part),
    but when I want to println() somewhere else (eg. in retrieveRefCursor() method) it doesn't work.
    The problem is that the scrollability of the ResultSet is lost - it becomes a TYPE_FORWARD_ONLY ResultSet.
    Is there any way to store data from ref_cursor for a long time?
    2) My second problem is "store any result set and show this data in table". I have tried use method storeNewResultSet() but
    without result (table contains only "No rows yet" and everything seems to be OK - no exception, no warning, no error...).
    I have tried to call this method with ResultSet from select on dbs (without resultSet as ref_cursor ) - no result with createRowFromResultSet(),
    storeNewResultSet(), setUserDataForCollection()...
    I've tried a lot of ways to do this, but it doesn't work. I really don't know how to make it so it can work.
    Thanks for your help.
    ADF BC, JDev 11.1.1.0
    This is my code from ViewObjectImpl
    package tp.model ;
    import com.sun.jmx.mbeanserver.MetaData ;
    import java.sql.CallableStatement ;
    import java.sql.Connection ;
    import java.sql.PreparedStatement ;
    import java.sql.ResultSet ;
    import java.sql.ResultSetMetaData ;
    import java.sql.SQLException ;
    import java.sql.Statement ;
    import java.sql.Types ;
    import oracle.jbo.JboException ;
    import oracle.jbo.server.SQLBuilder ;
    import oracle.jbo.server.ViewObjectImpl ;
    import oracle.jbo.server.ViewRowImpl ;
    import oracle.jbo.server.ViewRowSetImpl ;
    import oracle.jdbc.OracleCallableStatement ;
    import oracle.jdbc.OracleConnection ;
    import oracle.jdbc.OracleTypes ;
    public class Profiles1ViewImpl extends ViewObjectImpl {
        private static final String SQL_STM = "begin Pkg_profile.get_profile_list(?,?,?,?);end;" ;
        public Profiles1ViewImpl () {
        /* 0. */
        protected void create () {
            getViewDef ().setQuery ( null ) ;
            getViewDef ().setSelectClause ( null ) ;
            setQuery ( null ) ;
        public Connection getCurrentConnection () throws SQLException {
            // Note that we never execute this statement, so no commit really happens
            Connection conn = null ;
            PreparedStatement st = getDBTransaction ().createPreparedStatement ( "commit" , 1 ) ;
            conn = st.getConnection () ;
            st.close () ;
            return conn ;
        /* 1. */
        protected void executeQueryForCollection ( Object qc , Object[] params , int numUserParams ) {
            storeNewResultSet ( qc , retrieveRefCursor ( qc , params ) ) ;
            // callStoredProcedure ( qc , SQL_STM ) ;
            super.executeQueryForCollection ( qc , params , numUserParams ) ;
        /* 2. */
        private ResultSet retrieveRefCursor ( Object qc , Object[] params ) {
            ResultSet rs = null ;
            rs = callStoredProcedure ( qc , SQL_STM ) ;
            return rs ;
        /* 3. */
        public ResultSet callStoredProcedure ( Object qc , String stmt ) {
            CallableStatement st = null ;
            ResultSet refCurResultSet = null ;
            try {
                st = getDBTransaction ().createCallableStatement ( stmt , 0 ) ; // call 
                st.setObject ( 1 , 571 ) ; //set id of my record to 571
                st.registerOutParameter ( 2 , OracleTypes.CURSOR ) ; // my ref_cursor
                st.registerOutParameter ( 3 , Types.NUMERIC ) ;
                st.registerOutParameter ( 4 , Types.VARCHAR ) ;
                st.execute () ; //executeUpdate
                System.out.println ( "Numeric " + st.getObject ( 3 ) ) ;
                System.out.println ( "Varchar " + st.getObject ( 4 ) ) ;
                refCurResultSet = ( ResultSet ) st.getObject ( 2 ) ; //set Cursoru to ResultSet
                //   setUserDataForCollection(qc, refCurResultSet); //don't work
                //   createRowFromResultSet ( qc , refCurResultSet ) ; //don't work
                /* this works but only one-time call - so my resultSet(cursor) really have a data
                while ( refCurResultSet.next () ) {
                    String nameProfile = refCurResultSet.getString ( 2 ) ;
                    System.out.println ( "Name profile: " + nameProfile ) ;
                return refCurResultSet ;
            } catch ( SQLException e ) {
                System.out.println ( "sql ex " + e ) ;
                throw new JboException ( e ) ;
            } finally {
                if ( st != null ) {
                    try {
                        st.close () ; // 7. Close the statement
                    } catch ( SQLException e ) {
                        System.out.println ( "sql exx2 " + e ) ;
        /* 4. Store a new result set in the query-collection-private user-data context */
        private void storeNewResultSet ( Object qc , ResultSet rs ) {
            ResultSet existingRs = getResultSet ( qc ) ;
            // If this query collection is getting reused, close out any previous rowset
            if ( existingRs != null ) {
                try {
                   existingRs.close () ;
                } catch ( SQLException s ) {
                    System.out.println ( "sql err " + s ) ;
            setUserDataForCollection ( qc , rs ) ; //should store my result set
            hasNextForCollection ( qc ) ; // Prime the pump with the first row.
        /*  5. Retrieve the result set wrapper from the query-collection user-data      */
        private ResultSet getResultSet ( Object qc ) {
            return ( ResultSet ) getUserDataForCollection ( qc ) ;
        // createRowFromResultSet - overridden for custom java data source support - also doesn't work
       protected ViewRowImpl createRowFromResultSet ( Object qc , ResultSet resultSet ) {
            ViewRowImpl value = super.createRowFromResultSet ( qc , resultSet ) ;
            return value ;
    }

    Hi I have the same problem like you ...
    My SQL Definition:
    CREATE OR REPLACE TYPE RMSPRD.NB_TAB_STOREDATA is table of NB_STOREDATA_REC
    CREATE OR REPLACE TYPE RMSPRD.NB_STOREDATA_REC AS OBJECT (
       v_title            VARCHAR2(100),
       v_store            VARCHAR2(50),
       v_sales            NUMBER(20,4),
       v_cost             NUMBER(20,4),
       v_units            NUMBER(12,4),
       v_margin           NUMBER(6,2),
       v_ly_sales         NUMBER(20,4),
       v_ly_cost          NUMBER(20,4),
       v_ly_units         NUMBER(12,4),
       v_ly_margin        NUMBER(6,2),
       v_sales_variance   NUMBER(6,2)
    CREATE OR REPLACE PACKAGE RMSPRD.NB_SALES_DATA
    AS
    v_sales_format_tab   nb_tab_storedata;
    FUNCTION sales_data_by_format_gen (
          key_value         IN       VARCHAR2,
          l_to_date         IN       DATE DEFAULT SYSDATE-1,
          l_from_date       IN       DATE DEFAULT TRUNC (SYSDATE, 'YYYY')
          RETURN nb_tab_storedata;
    I have a PLSQL function .. that will return table ..
    when i use this in sql developer it is working fine....
    select * from table (NB_SALES_DATA.sales_data_by_format_gen('TSC',
                                        '05-Aug-2012',
                                        '01-Aug-2012') )
    it returning table format record.
    I am not able to call from VO object. ...
    Hope you can help me .. please tell me step by step process...
    protected Object callStoredFunction(int sqlReturnType, String stmt,
    Object[] bindVars) {
    System.out.println("--> 1");
    CallableStatement st = null;
    try {
    st = getDBTransaction().createCallableStatement("begin ? := " +"NB_SALES_DATA.sales_data_by_format_gen('TSC','05-Aug-2012','01-Aug-2012') ; end;", 0);
    System.out.println("--> 2");
    st.executeUpdate();
    System.out.println("--> 3");
    return st.getObject(1);
    catch (SQLException e) {
    e.printStackTrace();
    throw new JboException(e);

  • Lumia 920 / Problem with Store App

    Right after I bought my Lumia 920, a added few applications (viber, instagram, etc.) using store app. 
    After few days, everytime I tried to open Store App, or even visit the market page using browser on my device, I got the same message:
    ''Service unavailable at the moment. Check again in a little while.''
    My phone is totally blocked for downloading new Apps. I'm not able to, for example update ''What's Up'' App beacuse it's redirecting me automatically to Store. This haven't been changed for a while, about month or two. I even updated phone regulary once update was available, nothing changed after that. All other stuff is working perfectlly, so I'm not sure what could be the problem.
    Can anyone help?
    Thanks!

    Is everything ok with your Microsoft account? You didn't change your password recently or anything like that? Try logging into your microsoft account just to make sure everything is ok. 

  • Two problems with store

    The first one I'm having is with the app store. Whenever I choose a category it loads about halfway, then goes to nothing but a blank white screen. There is no error message nor any conflict that I have been able to find even after looking at the document showing common lsp conflicts. Does anyone know what could be causing this? I am running Windows 7 64bit, current iTunes.
    The other problem is that I purchased a movie, and the iTunes Extras do not appear anywhere, even in the movie folder. The movie is Red (2010). Will Apple credit a download for the missing Extras or am I stuck having paid for the content, but only recieving part?

    1 I downloaded an album and two of the songs had digital aritifacts, almost like skipping, in the songs. I cannot figure out how to report this to Apple ( I did use REPORT A PROBLEM and never heard back) for a refund.
    Contact the iTunes Store customer support department through the form at the bottom of their web page and explain the problem to them.
    2 I was trying to download several songs by different artists. So I chose the songs, and dragged them from the iTunes store into my PURCHASED folder. They then had a BUY SONG buttton next to each one listed in my purchased folder. I thought, "Cool," and kept adding a few more. When I was done, I clicked "BUY SONG" next to one of them, and TWO copies of the song were put into my PURCHASED folder instead of one.
    First, it's not a good idea to drag tracks into your Purchased Music folder. If you want to save them for future reference, create a standard playlist and drag the tracks there.
    Anyway, my guess is that you're seeing the purchased track and the original "pointer" track from the iTunes Store. Click on the tracks and I'll bet you'll see that one of each pair still shows the "buy" button; those you can just delete. If both seem to be full tracks, log into your iTunes Store account and check your Purchase History. That would show if you were charged twice for a track.

  • Problem with store procedures and Hibernate

    I got some problem when I am trying to override INSERT, and UPDATE operations in Hibernate. My delete functions works fine, and everything works when i´m not override with my stored procedure, and I have no idea why. When I am trying to make an INSERT, everything seems to be fine but no data is being insert and no excpetion throws.
    When I am trying to make an UPDATE following excpetion throws:
    Could not synchronize database state with session
    org.hibernate.exception.GenericJDBCException: could not update: [labb6Hibernate.bil#18]
    Here is my hbm.xml file:
    <hibernate-mapping>
    <class catalog="Cars" name="labb6Hibernate.bil" table="Bil">
    <id name="idNum" type="java.lang.Integer">
    <column name="idNum"/>
    <generator class="identity"/>
    </id>
    <property name="marke" type="string">
    <column length="10" name="Marke" not-null="true"/>
    </property>
    <property name="modell" type="string">
    <column length="10" name="Modell" not-null="true"/>
    </property>
    <property name="arsmodell" type="string">
    <column length="4" name="Arsmodell" not-null="true"/>
    </property>
    <sql-insert callable="true"> { call insertCars(?,?,?) } </sql-insert>
    <sql-update callable="true"> { call updateCars(?,?,?) </sql-update>
    <sql-delete callable="true"> { call deleteCars(?) } </sql-delete>
    </class>
    Here is my UPDATE code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    int s = Integer.parseInt(idTxt.getText());
    bil Bil = (bil) session.get(bil.class, s);
    Bil.setIdNum(s);
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.update(Bil);
    session.getTransaction().commit();
    session.close();
    Here is my INSERT code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    bil Bil = new bil();
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.save(Bil);
    session.getTransaction().commit();
    session.close();
    Does anyone have an idea what is wrong in my code?

    I got some problem when I am trying to override INSERT, and UPDATE operations in Hibernate. My delete functions works fine, and everything works when i´m not override with my stored procedure, and I have no idea why. When I am trying to make an INSERT, everything seems to be fine but no data is being insert and no excpetion throws.
    When I am trying to make an UPDATE following excpetion throws:
    Could not synchronize database state with session
    org.hibernate.exception.GenericJDBCException: could not update: [labb6Hibernate.bil#18]
    Here is my hbm.xml file:
    <hibernate-mapping>
    <class catalog="Cars" name="labb6Hibernate.bil" table="Bil">
    <id name="idNum" type="java.lang.Integer">
    <column name="idNum"/>
    <generator class="identity"/>
    </id>
    <property name="marke" type="string">
    <column length="10" name="Marke" not-null="true"/>
    </property>
    <property name="modell" type="string">
    <column length="10" name="Modell" not-null="true"/>
    </property>
    <property name="arsmodell" type="string">
    <column length="4" name="Arsmodell" not-null="true"/>
    </property>
    <sql-insert callable="true"> { call insertCars(?,?,?) } </sql-insert>
    <sql-update callable="true"> { call updateCars(?,?,?) </sql-update>
    <sql-delete callable="true"> { call deleteCars(?) } </sql-delete>
    </class>
    Here is my UPDATE code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    int s = Integer.parseInt(idTxt.getText());
    bil Bil = (bil) session.get(bil.class, s);
    Bil.setIdNum(s);
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.update(Bil);
    session.getTransaction().commit();
    session.close();
    Here is my INSERT code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    bil Bil = new bil();
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.save(Bil);
    session.getTransaction().commit();
    session.close();
    Does anyone have an idea what is wrong in my code?

  • Problem with store app, lumia 720

    hi
    i bought lumia 720 few weeks ago, and because i can't download apps from the windows store directly (cuz i'm from syria), i have to download them to the laptop then move them to the SD card, and later open the .XAP files from the store app.
    the problem is that THE STORE APP ISN'T WORKIING, it keeps saying "service unavailiable right now. Check back in a little while".
    so now i can't download any thing on my lumia and this sucks
    plz help..

    Hi, Adeptbe. Thanks for posting your concern on our community. Does the issue occur regardless of the connection you are using? Does the date and time of your phone are properly setup? Check it by going to Settings>date+time. Also, try checking if the Microsoft account on your phone is syncing properly. Do it by going to Settings>email+accounts>press and hold Microsoft account>sync. If you encounter any error message, you may check it in here: Common Windows Store error codes. Let us know if you need further assistance.

  • Constant problem with store in my Lumia 620

    Hi
    When I open store in my Lumia 620 it shows error c00cee22.
    Solved!
    Go to Solution.

    Hello, Vaibhav_16390. Have you already tried the suggestion given by eshiejamz? BTW, are you also using a Lumia 620? You may also try deleting the browser's history. Go to Settings > applications tab > Internet Explorer > delete history. Once done, press and hold both the volume down and the power keys for 10-15 seconds. 
    Let us know the outcome. 

  • Problem with store in my lumia 520

    Hi.....
    i cant download apps from store above 20mb...
    first above 100mb required wifi.... But now it asks for only 20mb....
    what i do....
    please help me.......

    Hi krishna212,
    Welcome to the forum!
    Did you encounter any error message? What type of connection used? Please note that you will need a WI-FI connection when downloading apps or games larger than 50 MB. You can also try to download an application via web and sent it to your phone automatically. Just visit:
    http://www.windowsphone.com/en-us/store
    Check this out for more information:
    http://www.windowsphone.com/en-US/how-to/wp8/apps/download-apps-and-games-faq
    Keep us posted. 

  • Problem with store app in nokia 302

    i can't open store app in my nokia 302 after i restore the phone , when i try to open ,it just open for 2 sec. Then close automatically

    Hi Alenmanuel,
    Welcome to Nokia Discussions!
    Try to check your phone configuration settings by going to Menu> Settings> Configuration. Or try to download the necessary settings from your network provider.
    Good luck

  • Problem with storer

    Hello,
    I have ZfD3sp1, NW6sp2. Invetory and DB were reinstaled and DB was
    restored
    from backup.
    Whole ZEN and Inventory works fine, wkst with record in DB are
    updated, but
    new imported wkst no.
    I have find only one error :
    [8/4/03 09:56:15.737] ZENInv - Selector: Processing
    0001021F3F34_1016620005000_152.STR
    [8/4/03 09:56:15.748] ZENInv - Selector: Entered
    isInventoryScannerValid()
    [8/4/03 09:56:15.749] ZENInv - Selector: Section ID 242,00000000
    [8/4/03 09:56:15.750] ZENInv - Common: Getting initial context
    [8/4/03 09:56:15.755] ZENInv - Common: look up for
    PC_WINNT_da144731-0300_inet.Computer.Other
    [8/4/03 09:56:15.759] ZENInv - Common: Authenticating as
    PC_WINNT_da144731-0300_inet.Computer.Other
    [8/4/03 09:56:15.760] ZENInv - Common: login tries:0
    [8/4/03 09:56:24.748] ZENInv - Common: login tries:1
    [8/4/03 09:56:35.519] ZENInv - Common: login tries:2
    [8/4/03 09:59:54.063] ZENInv - Common: login tries:9
    [8/4/03 10:01:00.417] ZENInv - Common: login tries:10
    [8/4/03 10:01:03.459] ZENInv - Common: getID() out ->exception[Root
    exception is com.novell.service.jncp.NDSException: ccode = -669
    (0xfffffd63)]com.novell.java.security.LoginException: Login failed.
    [8/4/03 10:01:03.460] ZENInv - Common: Unable to Authenticate as
    PC_WINNT_da144731-0300_inet.Computer.Other
    [8/4/03 10:01:03.461] ZENInv - Selector: Workstation DN Does not Exist
    [8/4/03 10:01:03.462] ZENInv - Selector: Unlocking
    DATA:\Zenworks\ScanDir\DbDir\0001021F3F34_10166200 05000.STR
    [8/4/03 10:01:03.464] ZENInv - Selector: Deleting
    DATA:\Zenworks\ScanDir\0001021F3F34_1016620005000_ 152.STR
    Thanks Jan

    "Jared L Jennings" <[email protected]> pse v diskusn
    m
    prspevku news:zBiZa.2947$[email protected]..
    > So what it working, and then you reinstalled the Db, or when did it> stop working.
    Stop working after reinstall DB.
    > It seems to me that a policy needs to be recreated, or that the
    import
    > policy doesn't have the correct rights.
    Server.Package has S rights to object wkst.
    > The log that you posed is for the inventory, so you need to post the
    > zwsreg.log from c:\ so that we can see the import processes.
    C:\wseg32.log
    *****(1)***** 08.08.2003 07:26:43 dop
    WSREG-v3.0 This log file is reporting activity on a
    WM_USER_LOGIN_EVENT
    event.
    WSREG-v3.0 This workstation has been updated.
    WSREG-v3.0 The program finished running.
    *****(2)***** 08.08.2003 03:47:37 odp
    WSREG-v3.0 This log file is reporting activity on a
    WM_USER_LOGOUT_EVENT
    event.
    WSREG-v3.0 This workstation has been updated.
    WSREG-v3.0 The program finished running.
    *****(3)***** 08.08.2003 03:56:16 odp
    WSREG-v3.0 This log file is reporting activity on a
    WM_USER_LOGIN_EVENT
    event.
    WSREG-v3.0 This workstation has been updated.
    WSREG-v3.0 The program finished running.
    *****(4)***** 08.08.2003 04:20:40 odp
    WSREG-v3.0 This log file is reporting activity on a
    WM_USER_LOGOUT_EVENT
    event.
    WSREG-v3.0 This workstation has been updated.
    WSREG-v3.0 The program finished running.
    > Q. Are the new workstations able to resolve zenwsimport?
    Yes.
    Logger screen contains sometimes this message ( but all java.processes
    reload fine ):
    New password alogrithm failed: java.lang.NullPointerException:
    Attempting old password alogrithm.
    > --
    > Jared L Jennings
    > Novell Support Forums SysOp
    > Using XanaNews 1.15.4.2
    > Geek by nature, NetWare by choice.

  • My app store wont let me download apps, says the card is expired and theres a problem with previous purchase can someone help me pls?

    My app store wont let me download apps, asks me to update my payment details then says theres a problem with previous purchase and card is expired which is untrue someone help me pls

    This is a User to User Forum...
    See Here for
    Mac Apps Store Customer Service
    http://www.apple.com/support/mac/app-store/contact.html?form=account
    iTunes Customer Service Contact
    http://www.apple.com/support/itunes/contact.html

  • I can't download from app store apps. if i try then open account and ask me shange payment type because there is a billing problem with a previous purchase. I download one game 0.99 and nothing more! help me. How can i contact with apple?

    I can't download from app store apps. if i try then open account and ask me shange payment type because there is a billing problem with a previous purchase. I download one game 0.99 and nothing more! help me. How can i contact with apple?

    Click here and ask the iTunes Store staff for assistance.
    (102938)

  • HT3702 I only download things that are free from App Store, but sometimes it doesn't let me download something saying there is a problem with a previous purchase?  So why won't it let me??

    Why won't the App Store let me download things that are free, just because I don't have money on my card sometimes, it's free so I just don't get it??

    You can try to make a new account on iTunes Store if you didnt have yet.
    I had the same problem with iTunes Store, the only thing you can do is to put some money on that credit card you are using with you account. iTunes Store already keeping some money for the last purchase you made you can see all info on the Account option and then Purchase history ...

  • Can't download anything from app store or itunes. everytime i try to install an app i get "there is abilling problem with a previous purchase. please update ur payment method". i have recently changed my address and visa debit card. please help

    can't download anything from app store or itunes. everytime i try to install an app i get this error "there is a billing problem with a previous purchase. please update ur payment method". i have recently changed my visa debit card and home adress and when i make these changes i still get the same error.
    will u please help me out?

    Are you listing the billing address for the card correctly? The address in the iTunes/MAS account must match the address on your bill exactly.

  • Ive entered my card details for my app store, been working fine now says that i have a problem with a previous purchase and now wont except my card? I have money on it so im confused, cant even downlad free apps???

    Ive entered my card details to set up app store, been working fine until recently it has been asking for my card details again so entered it again an says its been declined, also sayin there was a problem with a previous purchase, i have money on my card so confused?, it wont even let me download free apps, can anyone help getting so annoyed x

    To Contact iTunes Support and request assistance Click  Here

Maybe you are looking for

  • IMac Can no longer backup

    I run the latest version of leopard. Since I downloaded the most recent update I can no longer backup. I receive this message - "You do not have appropriate access privileges to save file ".001b6399ff8a" in folder "BackupDisk". I cannot find such a f

  • What can I do about the hackers in my devices.

    What can I do about the hackers in my devices. Pls help i need to know what I can do to take the hackers out of my devices.

  • Dynamic PAT and Static NAT issue ASA 5515

    Hi All, Recently we migrated our network to ASA 5515, since we had configured nat pool overload on our existing router the users are able to translated their ip's outside. Right now my issue was when I use the existing NAT configured to our router in

  • How to created an cost element group structure from P&L FSV

    Hi All, My client has changed his financial statement version and I have to change the cost element group structure according to the new profit and lost structure of this new FSV. Do you know any transaction to do this automatically?. For example the

  • Oracle Database not working

    Hi Gurus, I tried to start up the database by issuing the command on my Dev server c:\>sqlplus/nolog connect / as sysdba "startup,"   and I  am getting  the following error: ORA-03113 end-of-file on communication channel And the second time I issued