GIVE ME QUICK REPLY ITS URGENT.

hi,
   Is there any performance problem if i keep select single <f1> from <table> into <itab> where <condition> in loop.plz give me example code if it is problem.
thanking you.
ex:
LOOP AT ITADR2.
      SELECT SINGLE VKONT FROM FKKVKP INTO ITADR2-VKONTO
           WHERE ADRNB EQ ITADR2-ADDRNUMBER.
      SELECT SINGLE COKEY FROM EVER INTO ITADR2-COKEY
            WHERE VKONTO EQ ITADR2-VKONTO AND COKEY IN S_COKEY.
      IF SY-SUBRC EQ 0.
        IF ITADR2-ADDRNUMBER NE ' '.
          MOVE ITADR2 TO ITADR2FT.
          IF ITADR2FT-TEL_EXTENS EQ 'SMS'.
            ITADR2FT-MLIND = 'M'.
            APPEND ITADR2FT.
          ELSE.
            ITADR2FT-MLIND = 'L'.
            APPEND ITADR2FT.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDLOOP.

Hi,
select <f1> from <table> into <itab> where <condition>
if not itab[] is initial.
select VKONT FROM FKKVKP into table t_vkont for all entries in itab
WHERE ADRNB EQ itab-ADDRNUMBER.
SELECT COKEY FROM EVER INTO t_cokey for all entries in itab
WHERE VKONTO EQ itab-VKONTO AND COKEY IN S_COKEY.
endif.
Loop at itab.
read table t_vkont key ADRNB = itab-addrnumber.
read table t_cokey key vkonto = itab-vkonto.
Your logic if sy-subrc is true.
endloop.
Please reward if useful.
regards,
sachin

Similar Messages

  • Please reply its urgent

    it is only wokring when i only assign value to sub1 variableassign
    <html>
    <body>
    <%@ page language="java" import="java.sql.*" %>
    <%
    String[] list=request.getParameterValues("list");
    // String list=request.getParameter("list");
    int i;
    String sub1;
    for(i=0;i<list.length;i++)
    try
    sub1=list;
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con=DriverManager.getConnection("jdbc:odbc:dsn1","","");
    Statement stmt=con.createStatement();
    stmt.execute("delete from mes where sub='"+sub1+"'");
    out.println(sub1);
    stmt.close();
    con.close();
    catch(Exception e)
    {out.println(e);}
    %>
    Click here
    </body>
    </html>

    Doublepost: http://forum.java.sun.com/thread.jspa?threadID=5192841
    Crosspost: http://forum.java.sun.com/thread.jspa?threadID=5192927
    Like I said in your former topic: just debug it. Run the debugger or put some simple System.out.println() lines to check if the array has a length, if the array elements are not null, if the final SQL statement is correct, etcetera.
    By the way, with putting pressure by shouting "please reply its urgent" you don't gain that much respect from our side. Some will refuse to reply. Urgency is your issue, not ours.

  • Plz reply its urgent.

    hi,
        I have one issue i:e I have one selection screen with fields company code and plant.If i give plnt as m001 and company code as 'renl' then display two more selection screen input fields verna and  ' vernr' and after giving this i have to display all these things .how can i hide these 2 fields on selection screen?any body send me sample code.plzzzzzzzz.

    Hi
    See the sample code
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: pa_file TYPE rlgrap-filename MODIF ID abc,
    pa_lifnr TYPE lfa1-lifnr MODIF ID abc,
    pa_vkorg TYPE vbak-vkorg MODIF ID abc.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: pa_kunnr TYPE vbak-kunnr MODIF ID def.
    SELECT-OPTIONS: s_lifnr FOR gs_lfa1-lifnr MODIF ID def,
    s_date FOR gs_lfa1-erdat MODIF ID def,
    s_augru FOR gs_vbak-augru MODIF ID def,
    s_vbeln FOR gs_vbak-vbeln MODIF ID def.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_upd RADIOBUTTON GROUP g1 USER-COMMAND uc01 DEFAULT 'X'."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-004 FOR FIELD pa_upd.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pa_rep RADIOBUTTON GROUP g1 ."#EC *
    SELECTION-SCREEN COMMENT 3(60) text-005 FOR FIELD pa_rep.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK b3.
    IF pa_rep EQ gc_x.
    LOOP AT SCREEN.
    IF screen-group1 = gc_abc.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_def.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.
    ELSEIF pa_upd EQ gc_x.
    *For Reprocessing
    LOOP AT SCREEN.
    IF screen-group1 = gc_def.
    screen-input = gc_zero_num.
    ELSEIF screen-group1 = gc_abc.
    screen-active = gc_one_num.
    ENDIF.
    MODIFY SCREEN.
    CLEAR pa_upd.
    ENDLOOP.
    ENDIF.
    REPORT zrich_001.
    PARAMETERS: p_rad1 RADIOBUTTON GROUP grp1 DEFAULT 'X'
                            user-command chk,
                p_rad2 RADIOBUTTON GROUP grp1.
    SELECT-OPTIONS: s_datum1 FOR sy-datum MODIF ID d1,
                    s_datum2 FOR sy-datum MODIF ID d2.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_rad1 = 'X'
          AND screen-group1 = 'D2'.
          screen-active = '0'.
        ENDIF.
        IF p_rad2 = 'X'
         AND screen-group1 = 'D1'.
          screen-active = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    Reward points for useful Answers
    Regards
    Anji

  • Failed to initialize the orb--please reply its urgent

    hi im using a stand alone java application to access a jndi data source configured on websphere 6.1
    im getting the following error
    failed to initialize the ORB...
    most of the solutions i got suggest to change from sun jdk to ibm jdk.BUT BUT how do we do that and what are the steps to be followed.
    he code im using is given below:
    //WebsphereJNDI.java
    import java.sql.*;
    import java.util.*;
    import javax.sql.*;
    import javax.naming.*;
    import javax.rmi.*;
    public class WebSphereJNDI
    private String websphere_server;
    private String jndi_datasource;
    private String sql_query;
    WebSphereJNDI(String serverpath, String jndiname, String query)
    websphere_server = serverpath;
    jndi_datasource = jndiname;
    sql_query = query;
    public ResultSet get_data() throws Exception
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.ibm.websphere.naming.WsnInitialContextFactory");
    env.put(Context.PROVIDER_URL, websphere_server);
    InitialContext ctx = new InitialContext(env);
    DataSource ds = (DataSource) ctx.lookup(jndi_datasource);
    Connection conn = ds.getConnection();
    Statement stm = conn.createStatement();
    ResultSet res = stm.executeQuery(sql_query);
    // moving cursor to first row
    res.next();
    return res;
    // ResultSetTester.java
    import java.sql.*;
    import java.util.*;
    import javax.sql.*;
    import javax.naming.*;
    import javax.rmi.*;
    public class ResultSetTester {
    public static void main(String[] args) throws Exception {
    WebSphereJNDI test = new WebSphereJNDI(
    "http://hostname:port no.", "jdbc/mydatasource",
    "SELECT * FROM pubs.dbo.authors");
    System.out.println(dump_data(test.get_data()));
    public static String dump_data(java.sql.ResultSet rs)
    throws Exception {
    int rowCount = 0;
    String result = "";
    result += "<P ALIGN='center'><TABLE BORDER=1>";
    ResultSetMetaData rsmd = rs.getMetaData();
    int columnCount = rsmd.getColumnCount();
    // table header
    result += "<TR>";
    for (int i = 0; i < columnCount; i++) {
    result += "<TH>" +
    rsmd.getColumnLabel(i + 1) + "</TH>";
    result += "</TR>";
    // the data
    while (rs.next()) {
    rowCount++;
    result += "<TR>";
    for (int i = 0; i < columnCount; i++) {
    result += "<TD>" +
    rs.getString(i + 1) + "</TD>";
    result += "</TR>";
    result += "</TABLE></P>";
    return result;
    Im an amateur...Please help its urgent

    Thanks Anuj.
    We use OSB apps (exported as jars only).
    We place the jars in domain/lib to be available for all services in this domain.
    Is there another place we can put our jars in it?? and how can we solve the problem of soa infra with using Spring 3.2 ??
    Thanks in advance.

  • Kindly reply, its urgent

    hi all,
    i am creating a subscription site, i will send a mail to subscriber. So i want to know
    1. weather he opened my mail or not
    2. Which links he clicked.
    kindly send me the code if possible, or just explain how will it be possible
    my id is [email protected]
    thanks n regards
    v

    my id is [email protected]
    If I were you I would never publish [email protected] because web crawlers can pick up [email protected] and then you will get loads of spam sent to [email protected] .

  • Plz send a reply,its urgent

    i hv 4 columns in a DB: first_count,second_count,3rd_count and level.
    i hv to find the max between the three counts & depending on the count,the level is updated. If first_count is the max,the level is 1, if the 2nd_count is the max,level is updated to 2 else it has to set level=3.
    int 1st= retrieve_1st();
    int 2nd=retrieve_2nd();
    int 3rd=retrieve_3rd();
    max_count(1st,2nd, 3rd);
    int retrieve_1st()
         int ret=0;
         try {
         statement = connection.createStatement();
         ResultSet r= statement.executeQuery("select first_count from User");
         boolean success=r.next();
         if (success==true)
         ret=r.getInt("first_count");
    statement.close();}
         else
         System.out.println("Error with retrieve");
         }//try
         catch ( Exception ex )
              ex.printStackTrace();
         }//catch
    return ret;
    public void max_count( int 1st, int 2nd, int 3rd)
         int max= 1st;
         if (2nd> max)
         max= 2nd;
         else if (3rd> max)
    max= 3rd;
    if ( max==(1st))
         int lvl=1;
         set_level(lvl);
    }//if
    else if ( max==(2nd))
    int lvl=2;
    set_level(lvl);
    }//else if
    else if ( max==(3rd))
    int lvl=3;
    set_level(lvl);
    }//else if
    }//end of function max_count
    public void set_level(int lvl)
    int i=0;
    try {
    statement = connection.createStatement();
    ResultSet r= statement.executeQuery("select level from User");
         boolean success=r.next();
    if (success==true)
    i=r.getInt("inter_count");
    statement.executeUpdate("UPDATE User SET level="+lvl);
    statement.close();}
    else
         System.out.println("Error with set_level");
    }//try
    catch ( Exception ex )
    ex.printStackTrace();
    }//catch
    }//end function set_level
    i dnt get any errors,but it doesnt update my DB

    Please post requests only once. Your answer is in the other thread.

  • Java (JMX) vs WLST (Please Reply.. Its Urgent!)

    HI,
    I know that there are two ways to admin weblogic server. One way is by WLST scripts which we write in WLST console. Second way is by JMX which we write in JAVA language.
    I know that java language gives more flexibility but still all the scripts present in my companies Weblogic servers are WLST scripts.
    Can anyone tell me about all the benefits and advantages I can have if I change them to Java (JMX) code.
    One of the Flexibility is that I can implement multithreading and start multiple AdminServer (in multiple domain) at same time.
    Thanks
    Nitish Kumar

    Doublepost: http://forum.java.sun.com/thread.jspa?threadID=5192841
    Crosspost: http://forum.java.sun.com/thread.jspa?threadID=5192927
    Like I said in your former topic: just debug it. Run the debugger or put some simple System.out.println() lines to check if the array has a length, if the array elements are not null, if the final SQL statement is correct, etcetera.
    By the way, with putting pressure by shouting "please reply its urgent" you don't gain that much respect from our side. Some will refuse to reply. Urgency is your issue, not ours.

  • Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

    Is it possible to export contacts  from Outlook 2011 for Mac and importing this file back into Mac Address Book.? please reply me its urgent

  • Can anyone give me Interview question on forms6i and reports 6i(its urgent)

    plz give me Interview question on forms6i and reports 6i its urgent .plz mail it to me on paritosh [email protected]

    Check this link
    http://www.geekinterview.com/Interview-Questions
    You will find many information regarding interview questions of oracle related domains.

  • Plz tell ...its urgent......give ur answer

    I want to connect ORACLE 9i and ASP.NET 2005
    now plz plz plz can any body tell me wht are the steps 4 tht.....
    wht to do...because i dont know anything
    plz tell me all the steps from starting
    thanks in advance
    from chintan

    > plz tell ...its urgent......give ur answer
    Forums like this work better when people can see what you asking by glancing at the subject line. A better subject line might have been "Connect to Oracle 9i from ASP.NET 2005".
    Also I'm afraid it is your problem if it is urgent, not ours.

  • How to Fix the row in sap script, its urgent......

    Hi Experts,
    first i explain my sap script, i have print void check in my script client give readymade format means box are there, lines are there. i have to fix in box and line data form database table. everthing is working fine. i got all data. i have total 6 window in my script .but i have one issue  In my sap script in header window total five rows... like below
    Check voucher no:8888
    check No: 1234
    Date:1/28/2007
    Bank:xyz
    Batch no: 5678
    now sometime check voucher is balnk....
    Check voucher no: BLANK/NULL
    check No: 1234
    Date:1/28/2007
    Bank:xyz
    Batch no: 5678
    because of that all rows are move up side and all window also move up side and so script not fix to the box and line all data are seen not perfectly... so guru`s how to fix the row and window in script....
    its urgent...
    Waiting for ur reply
    Thanks & regards
    Jigar

    Hi,
    Follow the below steps . Definately your issue will bve resolved.
    Let us suppose you are printing following fields
    PH &v_text&
    PH &v_text1&
    PH &v_text2&
    you will get the output as you expected.
    and if you have any conditions  for these fileds
    /: if v_text is not initial.
    PH &v_text&
    /: endif
    PH &v_text1&
    PH &v_text2&
    if you have data in each field then you will get output as expected .
    But when v_text is initial.
    the data will be moved up wnhich is happening in your case.
    so what you need to do is?
    /: if v_text is not initial.
    PH &v_text&
    /: else
    PH  (Here you need to mention empty line with same paragraph format
    /: endif.
    PH &v_text1&
    PH &v_text2&
    Reward points if useful
    Regards,
    Nageswar

  • Doubt in ORA_FFI(Its urgent)

    Hi,
    I've created a test.dll which contains caps func as follows:
    int caps()
         int * ptr=0x417;
         if (*ptr==64)
              return 1;
    else
    return 0;
    Then I called this func through ORA_FFI package..
    DECLARE
    dll_handle ORA_FFI.LIBHANDLETYPE;
    winexec_handle ORA_FFI.FUNCHANDLETYPE;
    vn_ret PLS_INTEGER;
    FUNCTION Runp( handle IN ORA_FFI.FUNCHANDLETYPE)
    RETURN PLS_INTEGER;
    PRAGMA INTERFACE(C, Runp, 11265);
    BEGIN
    break;
    dll_handle := ORA_FFI.REGISTER_LIBRARY(NULL,'test.dll');
    winexec_handle := ORA_FFI.REGISTER_FUNCTION(dll_handle,'caps');
    ORA_FFI.REGISTER_RETURN(winexec_handle,ORA_FFI.C_INT);
    vn_ret := Runp(winexec_handle);
    IF vn_ret = 2 THEN
    MESSAGE('Cannot find file ' );
    END IF;
    EXCEPTION WHEN OTHERS THEN
    FOR i IN 1..Tool_Err.NErrors LOOP
    message(Tool_Err.Message);
    Tool_Err.Pop;
    END LOOP;
    END;
    When I debug this code,It gives error as caps func not found in test.dll.
    But the only func in test.dll is caps..
    I'm using forms 6i in client server mode.
    I created test.dll using Microsoft visual c++ by creating new win32 Dynamic link library.
    One more doubt:
    How can I find functions in a already compiled DLL?
    Pls reply me..Its urgent..
    Adios..
    Prashanth Deshmukh

    Hi,
    refer these ,u will get some help
    Standard Buttons:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/webDynproABAP-ALVControllingStandard+Buttons&
    alv-pfstatus:
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_pfstatus.htm
    then how to capture that button click.
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_ucomm.htm
    http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_rowsel.htm

  • Need some quick help - fairly urgent!

    I've just taken over a new job and have been the task of finishing the new brochure for Christmas, there's not a lot to do but a lot of the measurements need changing
    This is the layout I'm dealing with..
    All the boxes have been made in Illustrator
    The text has been done in In'Design and it seems every piece of text is it's own box if that makes sense
    My question is, if I select the whole specification box - copy, paste it into Adobe Illustrator and change the text there, then paste the edited box back into In-Design, will I lose quality when it gets printed?
    I'm worried if I do it this way it may come out blurred? Or am I just worrying about nothing?

    I couldn't find an Illy file in the end and have ended up creating tables in ID to replicate what was already there!
    Didn't take very long and I guess if I didn't do it now, I'd come across the same situation next time!
    Date: Wed, 30 Nov 2011 08:48:07 -0700
    From: [email protected]
    To: [email protected]
    Subject: Need some quick help - fairly urgent!
        Re: Need some quick help - fairly urgent!
        created by Peter Spier in InDesign - View the full discussion
    There certainly are viable "quick fix" solutions proposed here, and if the dealine is looming and this file never needs to be touched again I might be tempted, but they are only postponing the pain for a file that needs periodic updates, and I wouldn't waste effort on them, myself, when that time can be put toward a proper rebuild now if that's the ultimate goal.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4054725#4054725
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4054725#4054725. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in InDesign by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Error while Fetching data from BUT0ID data its urgent

    hi all,
    SElECT SINGLE partner FROM but0id INTO l_bp
                     WHERE type EQ 'BUP008' AND
                           idnumber EQ edid4-sdata+45(10).
    this is my select statement its not working i have to fetch partner number with the help of sdata.
    when i give 69093 instead of  edid4-sdata+45(10) then i am getting the output
    when i specify edid4-sdata+45(10) then it is not working
    please tell me any one its urgent
    Thanks & regards
    Vardhan

    Hi,
    Try doing this.Take the offset of sdata and move it into a varaiable and then check the condition in the query.
    Regards,
    Sharath

  • New forum version: better search, quick reply, new...

    Hi all,
    I'm happy to let you know that we're now using the latest version of our forum software.
    You've probably noticed that there's a few design updates and changes. We in the Discussions team would love to get your feedback on any changes - but please digest the design for a few days before you decide whether you like it or not
    This new version enables a lot of new features that we will be rolling out in the next months, the most important being a mobile-optimized version. The target for that is in April.
    The bad news is that we are having some small compatibility problems on some of the websites where this forum is available, and some of the features don't work properly on them. On some, everything works pretty much as intended. See below for details.
    Here are some of the most important changes:
    1) Improved search:
    The forum search is now giving you suggestions about threads that match your keywords. Try it out and see if you can now find things faster.
    2) Better visibility for RSS:
    This is not really an update, as it's always been possible to create a RSS feed for any keyword - but now it's easier to subscribe as there's a RSS icon in the search results. This was one of my pet peeves in the previous versions and I'm happy to see this great little feature now getting the promotion it deserves.
    3) Quick reply:
    You can now reply to a post directly from the thread view. Due to the problems we have on some Nokia sites, this is disabled by default - but you can turn it on for yourself from Edit my Info -> Preferences -> Display -> Turn on Quick reply (last item on the list).
    Note that if you use this forum via the Nokia websites for Europe / UK / Australia or USA, using quick reply gives you an error message. But the post was still made and a page refresh will show it. If you click on "post" several times, you'll make duplicate posts.
    Nokia sites in Asia (nokia-asia.com) / Ireland and MEA (mea.nokia.com) do not have this problem and quick reply works better there. You can use any of these sites to access this forum.
    Also, giving kudos on those four problem sites gives an unnecessary error message. Just refresh the page and you'll see that the kudos was in fact given.
    We're sorry about these errors and try to get them resolved soonest for all sites.
    4) Get an email when someone sends you a private message
    This is pretty obvious. Too bad the email does not show the message content - or who sent it - so you'll have to login to the forum to read it, but at least you'll know you have a new PM.
    5) Personalization options
    You can now customize how this forum looks and change your preferences such as how many posts appear per page and so on. I haven't tried all the combinations so I don't even know how much freedom there is, but just try it out for yourself.
    There are a few acute issues that we are aware of, such as
    - the new green kudos button might be difficult to understand for new users
    - some fonts may be too small or to big
    - Google Chrome does not show the site correctly
    - using a phone to access the forum gives a messy design
    and we are working on these issues with the forum software provider.
    But I would love to hear your overall feedback and any ideas or complaints you may have!
    Best regards,
    vandelay + the Nokia Discussions team
    I wrote all my posts from 2005-2011 as an "Admin" for this community. I still work for Nokia as an external consultant, so my rank in all posts is now "Employee".

    Hi,
    I am a new member of this forum as well and spent a lot of time looking for more information about the problems or improvements to my specific phones. I have been searching for a place to drop some suggestions but couldn't find any. Just like MartinMiller35 suggested a few posts before, it would be lot easier and faster when the mobile product sections would break down more in to sort by device and then into the existing sections of software/suites/ music/video`s/ maps/applications etc. 
    I also agree with fender77, it would make such a difference as people would describe the problem in addition to their device better. It might be helpful if any solution working fine for phone "X " could be placed into other sections where the people are having the same problems and crying out for a solution, not aware that in another post or maybe even in a different category there is already an answer for their phone "y". 
    To avoid more (misplaced) threads, posts I suggest there could be a "tips and tricks or how to" section per phone, like the "Top Questions for..". Maybe the moderators (or anybody else who has rights can copy same solution in the multiple sections. 
    For example I`ve had problems getting my maps working on my "old" phone, I`ve been searching on "N95 8GB maps" didn't`t get me any recent solution or didn't describe the problems or state (latest info re fw or compatibility). After again a different search I`ve found a working solution but under "Ovi and Mobile Media", "Maps, Navigation and GPS..
    I saw a header that described "my problem" but it was a different phone, even from a different series, it was a solution for the Eseries (to be precise it`s the post E75 Maps updater error cannot get enough information about the phone..." ) so I started reading, not sure if I was wasting time. After a few pages I still wasn't`sure if it would also work on my phone. It would have been a lot easier and I would be more certain of a working solution if it had shown directly under the section for my phone. I know the solution is applicable for a lot other phone`s, just adding the solution into those phone`s section could reduce the number of misplaced or even frustrated posts. 
    I have been going through a lot of posts but hesitated to use or comment or answer simply just because I`m not sure if the (menu)settings or OS, fw etc. are same or compatible and I wouldn't want to misinform anybody, cause any damage and simply don`t have the time to investigate other devices specs further.
    Again for example I read about problems with N97 mini or the N97 but again I don`t know if they apply to mine N97 as I`ve had a "newer" one where a lot of "the old" problems seem to be more or less resolved. Now after having 3 N97`s returned to the store in 3 weeks time!! I have a right to change to a different device so I`m searching again. It would make my search a lot easier if i could see all the problems and solutions for the N97, the N97 mini and N900 at their own section  (to have a better comparison in case I decide to change the device, new N97 is expected to arrive to store next Monday, until then I`m searching/comparing).
    I`m also looking into nokia messaging and HTML solutions for my N95 8GB and future Nokia device (guess it will be another new, hopefully working flawlessly N97) maybe there is already an answer but I don`t know cause it is under the E72 or X6 solutions..
    I`m sorry if this isn't the or my place to make suggestions or if I suggested something that has already been used in the past and wasn't working at all.
    This forum has helped me better than the Nokia site or the Nokia Care and I hope it will keep helping us.
    Keep up the good work!!
    Thanks for taking the time to read

Maybe you are looking for

  • Making changes in a User's account, my admin's account not recognized

    Just upgraded A Quicksilver 2002 G4 to Leopard from Panther. Used Upgrade and everything worked amazingly well. I'm the admin, my wife & daughter are users. All three of us can log in using the names and passwords we have always used Only trouble is:

  • How to properly remove faulted Forte_Executor subagents?

    Hi everybody, When running distributed from the partition workshop, it often happens, after a bad application failure, that your server partition agent remains on your server in a bad state. The consequence is : - in EScript : When using "FindSubAgen

  • Renaming Originals

    Hi, Quick Question that i can't seem to get. Is it possible to batch rename original files in Aperture (Master). I am hoping to move to Aperture from ACR and can't seem to see how to batch rename originals. In Bridge I would edit then rename and hope

  • Are PS CS6 / ACR 7 compatible with Lightroom 3?

    Hi, If I launch PS CS6 from Lightroom 3.x will ACR 7 recognize that the RAW file has been handled by LR 3 and behave accordingly ? I guess that ACR 7 doesn't have a dual mode (2010 vs. 2012 process) ?

  • Working Time sub area not visiable Ess

    We are using the ESS portal (versions ERP 2005 along with ECC6) for Recording Working Time by our employees. After loading Enhancement Pack 3 (EP3) the Working Time subarea has disappeared from the Working Time area and we canu2019t figure out why.