HR_TMW_DB_UPDATE_TEVENT - storing failure records

Hi all,
How can we store records which are not processed  (insertion and updation
failures)
by the function module HR_TMW_DB_UPDATE_TEVENT .
any sample code available  ?
regards
senthil

Hi all,
How can we store records which are not processed  (insertion and updation
failures)
by the function module HR_TMW_DB_UPDATE_TEVENT .
any sample code available  ?
regards
senthil

Similar Messages

  • Bdc failure record

    Hi experts,
      i want to show the failure records in my BDC program,
    could any one give me a solution for this with out going to sm35 tcode
    thanks in advance
    karthik

    Hi
    You can populate an internal table with all failed records, and display them at the last.
    But, in order to process these records, correct the error and make it through into SAP, you need to a create a session with all these records, so that, they are processed in foreground, and errors corrected.
    Regards
    Raj

  • Storing a record set into an array

    Hello Again,
    Yet another road block in my destination to completing my program. I wanted to create a MultiColumn Combobox and needed to store my Database values into an array so I get get them into the Combobox. I'm having trouble getting this code to work properly. It seems that the the combobox wont accept the variable items maybe because it is outside the scope? I tried to move the code around to get it to work but it don't.
    here is the code.
    package pms;
    import java.awt.*;
    import javax.swing.*;
    import java.sql.*;
    public class Test3 extends JFrame {
        public static void main(String[] args) {
            new Test3();
        public Test3() {
            Container c = getContentPane();
            c.setLayout(new BorderLayout());
            c.setBackground(Color.gray);
            DBConnection db = new DBConnection();
            try {
                Connection conn = DriverManager.getConnection(db.connUrl);
                Statement sql = conn.createStatement();
                ResultSet rs = sql.executeQuery("SELECT * FROM Referrals ORDER BY Referral_Text");
                while (rs.next()) {
                    Item[] items = {
                        new Item(rs.getString(2), rs.getString(2)),};
                JComboBox jcb = new JComboBox(items);
                //Close connections.
                rs.close();
                sql.close();
                conn.close();
            } catch (SQLException e) {
                e.getStackTrace();
            jcb.setPreferredSize(new Dimension(24, 24));
            jcb.setRenderer(new ItemRenderer());
            c.add(jcb, BorderLayout.NORTH);
            setSize(200, 100);
            setLocationRelativeTo(null);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setVisible(true);
    // The items to display in the combobox...
        class Item {
            String itemName = "";
            String itemValue = "";
            public Item(String name, String value) {
                itemName = name;
                itemValue = value;
    // The combobox's renderer...
        class ItemRenderer extends JPanel implements ListCellRenderer {
            private JLabel nameLabel = new JLabel(" ");
            private JLabel valueLabel = new JLabel(" ");
            public ItemRenderer() {
                setOpaque(true);
                setLayout(new GridLayout(1, 2));
                add(nameLabel);
                add(valueLabel);
            public Component getListCellRendererComponent(
                    JList list,
                    Object value,
                    int index,
                    boolean isSelected,
                    boolean cellHasFocus) {
                nameLabel.setText(((Item) value).itemName);
                valueLabel.setText(((Item) value).itemValue);
                if (isSelected) {
                    setBackground(Color.black);
                    nameLabel.setForeground(Color.white);
                    valueLabel.setForeground(Color.white);
                } else {
                    setBackground(Color.white);
                    nameLabel.setForeground(Color.black);
                    valueLabel.setForeground(Color.black);
                return this;
    }Thanks!

    He is telling you that there are two problems with your code.
    The first is that you are declaring the items array inside the while loop, which means its scope is too limited - it can't be accessed by the JComboBox which is declared later.
    The second is that you are recreating the items array for every record in your ResultSet. This implies that for every new record, the item(s) already stored will be removed from memory and replaced by the values of the latest record, leading to a single option for your combo box.
    Try instead creating an ArrayList object that you initialise right before the loop, and add items to it's collection as you move along. Then pass that ArrayList to the JComboBox in this way:
              try {
                   Connection conn = DriverManager.getConnection(db.connUrl);
                   Statement sql = conn.createStatement();
                   ResultSet rs = sql
                             .executeQuery("SELECT * FROM Referrals ORDER BY ReferItemText");
                   ArrayList<Item> items = new ArrayList<Item>();
                   while (rs.next()) {
                        items.add(new Item(rs.getString(2), rs.getString(2)));
                   JComboBox jcb = new JComboBox(items.toArray());
                   // Close connections.
                   rs.close();
                   sql.close();
                   conn.close();
              } catch (SQLException e) {
                   e.getStackTrace();
              }

  • Need help on storing persistance records in J2EE JSP application

    Hi,
    I want to store a hashtable of info with about five attributes (id, name, username, date) in a persistent state in JSP order to not always call the database. I am either going to use session or request objects.
    My question is if it's a good idea to store the hashtable with 2000 records just to avoid the database connection or should I just stick with using database connection using connection pooling? Thanks.
    Mkie

    Well it seems to be having a heavy session if you keep 2000 records Hashtable I think, I would have gone with a serialized to a file or database so that to handle more no. of sessions as well as persistant information. Anyway if you put the data in session object if server crashes you loose data of every active session :(
    Just a thought !!

  • If I download the latest itunes will it affect songs I have stored from records or tapes?

    If I download the latest or recent iTunes upgrades will they affect music I have downloaded from albums or tapes I own?

    No.  Your iTunes media is stored completely independent from the iTunes application.

  • Records storing in FND_MENU_ENTRIES_TL Table in different Order

    Hi,
    FND_MENU_ENTRIES_TL Table storing the records FND_MENU_ENTRIES_TL_N1(MENU_ID,PROMPT,LANGUAGE) wise in R12. But whereas in 11i, records stored in the Order of FND_MENU_ENTRIES_TL_U1(MENU_ID,ENTRY_SEQUENCE,LANGUAGE).
    I am confused, whether i need to recreate the index in R12, so the records will get store MENU_ID,ENTRY_SEQUENCE,LANGUAGE Order wise.
    Could any one please suggest me how to resolve this problem.
    Thanks,
    Praba T

    Duplicate post.
    Sorting Problem in FND_MENU_ENTRIES_TL Table
    Sorting Problem in FND_MENU_ENTRIES_TL Table

  • How to do the Record Level commit in DB Adapter

    Hi,
    I am using Oracle JDeveloper 11.1.1.6.0 and SOA server 11.1.1.6
    Problem Description_
    I am fetching multiple records using File Adapter in BPEL process, After Fetching I am writing those records in Database using Database Adpter.
    If any error records comes the database adpater rollback the complete transaction and none of the records is inserted into the Database.
    **Can anyone please tell me how to do the record level commit in Database Adapter so that All the success records can be inserted into the database except the Failure record*.*
    I dont want to call the Database adpater in loop multiple times to insert each record as it hampers the performance.
    Thanks in Advance
    Sunil

    I believe you are polling a file and inside the BPEL, inserting the records into the database using the database adapter.
    so according to your requirement you can do any one of the following things...
    1. Instead of using the database adapter for inserting the record, you can call a Stored Procedure which it takes the record fields as input and it inserts the record into the table and does a commit at the end. when you follow this approach, make sure your data source is defined as Non-XA, otherwise you will face some errors.
    2. If you are using the database adapter insert operation only, inside the BPEL, for the partnerlink of the database adapter, go to the properties and for the property "idempotent", give a value of false.
    by doing this, what happens means, after calling the database adapter from BPEL through the invoke activity, the transaction is committed and from the next activity i mean after the invoke, a new transaction will be started but it will use the same thread though
    3. If you are using the database adapter insert operation only, inside the BPEL, for the partnerlink of the database adapter, go to the properties and for the property "NonBlockingInvoke", give a value of true.
    by doing this, what happens means, the database adapter insert operation will happen in a separate transaction and it will be committed, inside the BPEL after the invoke activity, a new thread and transaction will be started
    4. Also, if you are using the database adapter insert operation, don't follow the steps as mentioned in either 2 or 3, you can simply put a dehydrate activity after the invoke activity.
    According to your requirement, all the four approaches works. But my personal feeling, don't go for 4, instead 1 is better, 2 or 3 is also good.
    Hope this helps,
    N

  • How to append DB records using OdiSqlUnload tool

    Hi
    Can any one please help me on how to append DB records using OdiSqlUnload tool.
    Work Scenario: I created a loop in a package and want to stored error records into xls file. I tried, but it is storing only recent record got failed
    Any sugession or help on OdiSqlunload tool
    Thanks
    Phani

    Hi Guru,
    I tried It is storing last record but I want to store all failure records (which are in a loop) into excel file
    Please help me
    Thanks
    Phani
    Edited by: Phanikanth on Jul 15, 2010 8:25 PM

  • Getting Problem after Deleting a record from Record Store

    I am trying to create a simple application for mobile device. This application storing some records. I used RMS for this. These records i show in a list. But i tried to show list of records after deleting any record then list shows only prior records of deleted records n then shows exception as
    Recordsjavax.microedition.rms.InvalidRecordIDException
    The code i written as follows
    For storing data
    public void storeExercise(String EName, String Etime)
    try
    //System.out.println("AAAA");
    recordstore = RecordStore.openRecordStore("Test3",true);
    catch (Exception error)
    //System.out.println("EEEE");
    System.out.println("Exception"+error);
    try
    byte[] outputRecord;
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    DataOutputStream outputdataStream = new DataOutputStream(outputStream);
    outputdataStream.writeUTF(EName);
    outputdataStream.writeUTF(Etime);
    outputdataStream.flush();
    outputRecord = outputStream.toByteArray();
    recordstore.addRecord(outputRecord, 0, outputRecord.length);
    outputStream.reset();
    outputStream.close();
    outputdataStream.close();
    zlist.append(EName+Etime, null);
    display.setCurrent(zlist);
    catch (Exception error)
    System.out.println("Exception in writing Records"+error);
    for getting records
    public void getExercise(ZimList zlist)
    this.zlist = zlist;
    try
    //System.out.println("AAAA");
    recordstore = RecordStore.openRecordStore("Test3",true);
    //recordstore.closeRecordStore();
    catch (Exception error)
    //System.out.println("EEEE");
    System.out.println("Exception"+error);
    try
    //System.out.println("Hello");
    String Ename = null;
    String Etime = null;
    byte[] byteInputData = new byte[100];
    ByteArrayInputStream inputStream = new ByteArrayInputStream(byteInputData);
    DataInputStream inputDataStream = new DataInputStream(inputStream);
    for (int x=1; x<= recordstore.getNumRecords() ; x++ )
    System.out.println("Record Id ="+x);
    //if (x != InvalidRecordID)
    recordstore.getRecord(x, byteInputData, 0);
    Ename = inputDataStream.readUTF();
    Etime = inputDataStream.readUTF();
    inputStream.reset();
    Final = Ename + Etime;
    System.out.println("Insert" + Final);
    zlist.insert(x-1,Final,null);
    inputStream.close();
    inputDataStream.close();
    //recordstore.closeRecordStore();
    catch (Exception error)
    System.out.println("Exception in Reading Records"+error);
    /*if (recordstore.listRecordStores() != null)
    try
    recordstore.deleteRecordStore("My Record Store");
    catch (Exception error)
    System.out.println("Exception"+error);
    And for deleting records I write
    public void deleteExercise(int index)
    try
    //System.out.println("AAAA");
    recordstore = RecordStore.openRecordStore("Test3",true);
    //recordstore.closeRecordStore();
    catch (Exception error)
    //System.out.println("EEEE");
    System.out.println("Exception"+error);
    if (recordstore.listRecordStores() != null)
    try
    byte[] byteInputData = new byte[100];
    ByteArrayInputStream inputStream = new ByteArrayInputStream(byteInputData);
    DataInputStream inputDataStream = new DataInputStream(inputStream);
    for (int x=1; x<= recordstore.getNumRecords() ; x++ )
    recordstore.getRecord(x, byteInputData, 0);
    if (x == index)
    recordstore.deleteRecord(index);
    //x--;
    inputStream.reset();
    break;
    inputStream.close();
    inputDataStream.close();
    catch (Exception error)
    System.out.println("Exception in Deleting Records"+error);
    Please Help me bcz i am new in j2me development n having no experience

    Ok ...
    When you add records in you store, the J2ME implementation create an ID.
    In the database, there is a list like that with ID <--> ]byte[ ]
    You can get back a record with a this ID.
    When you delete a record, it deletes the row. Lets say you have stored 3 records and that the ID are 1, 2, 3 ... if you delete the second one, then you have still in the database IDs 1 and 3.
    That's why you have this exception : you are iterating with an ID 1, 2, 3, 4, 5 ... if one is delete there is no reorganization. (If you add an other record, it could be stored with ID 2).
    To read all the records, you should get a list of existing IDs. Take a look at the API. Here is a piece of code, that you work but I have not tested :
    RecordStore rs;
    RecordEnumeration re = rs.enumerateRecords(null, null, false);
    while (re.hasNextElement()) {
      String str = new String(re.nextRecord());
      System.out.println("Record: " + str);         
    } Hope it will help you.
    Regards

  • Using a dynamic table variable in a stored procedure

    SQL Server can do this where you declare a table variable and insert / modify / delete rows in that table without it ever being actually ON the database.
    Can Oracle do this?
    I know I can do things like pass in a unique user id, create the table in the procedure with the user ID appended, etc ...
    but this procedure is going to be accessed via two modes, a batch job as well as online. The batch job may run this procedure 500 times.
    What I'm trying to is figure out a way to return a recordset of errors that occured in the job, simple, 3 lines like so:
    LineNumber NUMBER,
    Severity VARCHAR(10),
    Error_Msg VARCHAR(200)
    is there any 3 dimensional way of storing these records when the errors occur, then returning them as a select statement at the end of the procedure?
    Thanks,

    Why not create a table
    CREATE TABLE error_log (
      job_id  NUMBER,
      line_number NUMBER,
      severity VARCHAR2(10),
      error_msg VARCHAR2(200)
    CREATE SEQUENCE seq_error_log_job_id
      START WITH 1
      INCREMENT BY 1
      CACHE 100;In your procedure, you would get a new job_id from the sequence, insert whatever records you want in the error log table using that job_id and then return a REF CURSOR where you select from the error_log table using the job_id.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How do I manage dates in a stored procedure

    Hey folks,
    I have a table like this:
    STUDENT
    ID INT
    NAME VARCHAR
    REGISTRATION_DATE DATETIME
    create table student (ID int, NAME varchar, REGISTRATION_DATE datetime)
    Insert into student (ID, NAME, REGISTRATION_DATE)
    values
    (1, 'NAME1', '2014-11-10 06:00:00.000'),
    (2, 'NAME2', '2014-11-11 06:00:00.000'),
    (3, 'NAME3', '2014-11-12 06:00:00.000'),
    (4, 'NAME4', '2014-11-13 06:00:00.000'),
    (5, 'NAME5', '2014-11-14 06:00:00.000')
    I have the following store procedure
    CREATE PROCEDURE TRGetMsgTksByBIdDIdPIdAMsreDte
    @REGISTRATION_DATE DATETIME = NULL
    AS
    SET NOCOUNT ON
    SELECT *
    FROM STUDENT
    WHERE REGISTRATION_DATE = @REGISTRATION_DATE
    RETURN 0
    GO
    My problem has to do with date formats and specifically with localizations (sometimes it is saved as MM-DD-YY, others DD-MM-YY, and it does not correspond with the parameter. How can I solve this problem WITHOUT having to apply a format conversion inside
    the WHERE clause? (because when I use a function inside the WHERE, the index created for this column is invalidated and the query takes longer and longer when the DB gets bigger and bigger)
    Thanks,
    Marco

    Hello Marco,
    What is important here is the source of your table's data.  When loading the table with data, your source date values must have a clean, consistent format.  
    For example, if the following two rows represent December 7th, depending on your SQL Server installation / localization, only ONE row will be correct.  The other will be inserted as July 12th.  
    INSERT INTO student (ID, NAME, REGISTRATION_DATE)
    VALUES
    (1, 'Name1', '12/7/2014'),
    (2, 'Name2', '7/12/2014')
    In other cases, the INSERT statement may fail altogether because the date string won't "fit" the localization settings.  For example "25/12/2014" won't fit into a USA-localized SQL Server (there is no such thing as month 25).  "US
    English" is SQL Server's default localization, by the way, and requires dates to be entered with any variation of "month/day/year," or better, in the international format "year/month/day."
    Once your data is cleanly loaded into the table, you can use various string formats in your stored procedure's input parameter, but keep in mind your SQL Server's localization.  All of the following execution statements will work for a query of December
    7th on a US SQL Server installation:
    exec TRGetMsgTksByBIdDIdPIdAMsreDte '12/7/2014'
    exec TRGetMsgTksByBIdDIdPIdAMsreDte '2014-12-7'
    exec TRGetMsgTksByBIdDIdPIdAMsreDte 'December 7, 2014'
    TIP:
    Be careful when querying fields with the "datetime" format.  In your stored procedure, records in the table might be filtered out if they include time information, and if your input parameter fails to specify the exact time.
    A better way might be to change your input parameter datatype to "date" instead of "datetime," then inside the stored procedure, transfer the original input parameter value to start and end datetimes to match the table's datatype.
    Example:
    CREATE PROCEDURE TRGetMsgTksByBIdDIdPIdAMsreDte
    @REGISTRATION_DATE DATE
    AS
    SET NOCOUNT ON
    DECLARE @DATETIME_START DateTime,
    @DATETIME_CUTOFF DateTime
    SELECT @DATETIME_START = @REGISTRATION_DATE -- SQL Server will implicitly expand the input's "date" format into "datetime" type representing midnight of the given date.
    SELECT @DATETIME_CUTOFF = DATEADD(day, 1, @REGISTRATION_DATE) -- the cutoff for the next day
    SELECT *
    FROM STUDENT
    WHERE REGISTRATION_DATE >= @DATETIME_START
    AND REGISTRATION_DATE < @DATETIME_CUTOFF
    RETURN 0
    GO
    The above code will ensure that any index on "REGISTRATION_DATE" is being used (field REGISTRATION_DATE and @DATETIME_START, @DATETIME_CUTOFF are of the same datatype).  The above code will also ensure that if records are stored with time
    information (eg. '12/7/2014 10:30:00'), that they don't get filtered out when the input parameter @REGISTRATION_DATE = '12/7/2014' (implicitly midnight).
    Hope this helps.
    Tuan

  • Condition records will be stopre in which table

    Hi Gurus,
    Freight,discount,Taxes condition types are maintaining in pricing procedure. whenever we run the transaction above condtions will trigger and calulate the based on the order quantity.After that this amount will be stored in particular table.
    In which table that amount will be stored
    Prem

    Condition records are stored in KONH and KONP.
    You need to extract the values using teh joint
    KONH-KNUMH = KONP-KNUMH.
    There are also other tables for scales like KONM, KONW. But KONH and KONP are the basic ones.
    Rewrd if thsi helps you

  • Error Record with Same Key

    Can anyone help me out with a master data load failure.
    My request goes off red and the message looks somehow like "Record filtered in advance as error records with the same key exist", "Filter out new records with same key". I have already checked the duplicate handle record setting in DTP. Still why am i getting this error.
    Would appreciate if some one could suggest me in this.

    Hello Shridevi M ,
    When I execute my DTP, I get a master data load failure : "Record filtered in advance as error records with the same key exist" . It's the same as you get. Please tell me how did you solved this probelm?
    Thanks in advance,
    Abdellatif

  • Archive and metadata in Records Management

    Hi,
    Can you advise if it's possible to archive Digital Personnel File contents which is stored in Records Management? We've got a requirement to archive Digital Personnel File contents (HCM Processes and Forms (Adobe) and other stored office documents) with metadata. Is it at all possible to define metadata in Records Management?
    Best regards,
    Jukka

    Hi Jukka,
    HCM Processes and Forms already use RM for persisting the data. I believe there are cases & documents created for these processes & forms in RM.
    Please have a look at the archiving solution for cases & records for the same. They are available from the sdn link of RM. I have also posted news item on http://www.sdn.sap.com/irj/sdn/nw-ecm stating the upload of the archiving cookbooks. 
    The catch as I see for you is that you will need to know how the processes & forms are stored in RM by HCM & then use the correct archiving solution for those objects.
    Thanks & Regards,
    Pragya

  • Use Formule on FORM with REPORT - result stored at table

    Hi all,
    What is the best solution for?
    I have region with FORM WITH REPORT on the same PAGE.
    Values stored at table INFO with column ID, MYDATE, TIME_START_HOUR, TIME_START_MIN, TIME_END_HOUR, TIME_END_MIN, SUM1, SUM2
    ITEMS on the form:
    P1_ID (hidden)
    P1_MYDATE (date picker)
    P1_TIME_START_HOUR (select list)
    P1_TIME_START_MIN (select list)
    P1_TIME_END_HOUR (select list)
    P1_TIME_END_MIN (select list)
    P1_SUM1 (hidden)
    P1_SUM2 (hidden)
    After user fill in MYDATE, TIME_START_HOUR, TIME_START_MIN, TIME_END_HOUR, TIME_END_MIN then I need proces for calculation SUM1 en SUM2. Result stored (one record) at table INFO.
    Report shows all columns. User had possibility to update the record
    Formule:
    Select
    (CASE
    when to_char(mydate,'DY','nls_date_language=dutch') in ('ZA','ZO')
    THEN substr(to_timestamp (mydate||':'||TIME_END_HOUR||':'||TIME_END_MIN ||':00','DD-MM-YY:HH24:MI:SS') -
    to_timestamp (mydate||':'||TIME_START_HOUR||':'||TIME_START_MIN ||':00','DD-MM-YY:HH24:MI:SS') -
    (interval '00 00:00:00' day to second)
    ,12,5)
    ELSE '08:00'
    END) SUM1,
    (CASE
    when to_char(mydate,'DY','nls_date_language=dutch') in ('ZA','ZO')
    THEN substr(to_timestamp (mydate||':'||TIME_END_HOUR||':'||TIME_END_MIN ||':00','DD-MM-YY:HH24:MI:SS') -
    to_timestamp (mydate||':'||TIME_START_HOUR||':'||TIME_START_MIN ||':00','DD-MM-YY:HH24:MI:SS') -
    (interval '00 04:00:00' day to second)
    ,12,5)
    ELSE '04:00'
    END) SUM2
    FROM INFO
    where id=:ID
    What is the best way for the calculation: computation or processes or etc? The calculation after or before user push button(New:create button of Update:Apply Changes)?
    How to fill the answer (SUM1 and SUM2) at table INFO?
    Thanks Walter

    I have something similar I use:
    DECLARE
      str_day      VARCHAR2(10);
      dt_indx      DATE;
      db_dt_indx   VARCHAR2(20);
      str_st_tm    VARCHAR2(20);
      dt_st_tm     DATE;
      db_st_tm     VARCHAR2(20);
      str_ed_tm    VARCHAR2(20);
      dt_ed_tm     DATE;
      db_ed_tm     VARCHAR2(20);
      shft_flag    NUMBER;
    BEGIN
      str_day    := :P1050_DATE_MM || '/' || :P1050_DATE_DD || '/' ||  :P1050_DATE_YYYY;
      dt_indx    := to_date(str_day, 'MM/DD/YYYY');
      db_dt_indx := to_char(dt_indx, 'MM/DD/YYYY');
      str_st_tm  := str_day || ' ' || :P1050_TIME_IN_HH || ':' || :P1050_TIME_IN_MI || ' ' || :P1050_TIME_IN_AM;
      dt_st_tm   := TO_DATE(str_st_tm, 'MM/DD/YYYY HH:MI AM');
      str_ed_tm  := str_day || ' ' || :P1050_TIME_OUT_HH || ':' || :P1050_TIME_OUT_MI || ' ' || :P1050_TIME_OUT_AM;
      dt_ed_tm   := TO_DATE(str_ed_tm, 'MM/DD/YYYY HH:MI AM');
      --Alter date if night shift
      SELECT NVL(:P1050_NIGHT_FLAG,0) into shft_flag from dual;
      IF dt_ed_tm < dt_st_tm THEN
        dt_ed_tm := dt_ed_tm + 1;
      END IF;
      db_st_tm   := to_char(dt_st_tm + shft_flag,'MM/DD/YYYY HH:MI AM');
      db_ed_tm   := to_char(dt_ed_tm + shft_flag,'MM/DD/YYYY HH:MI AM');
    end;You'll need to modify it for your page variables.

Maybe you are looking for

  • Lightroom 5.4. Edit options are greyed out. I tried reset warnings already.

    Hi, I just added a bigger harddrive and reinstalled Lightroom 5.4. Now,  2 of 3 edit options are greyed out. No access to plug-ins or external editors for original files.(NEF's) I tried reset warnings already.

  • N86 8MP... ANY GENIUS PLZ HELP

    i HAVE ONE PROBLEM WITH N86 8MP, WHENEVER I M GOING TO OVI STORE OR EMAIL OR ANY OTHER APPLICATION ACCESSING NETWORK CONNECTION, MY PHONE STARTS RELOADING AND RESTARTS ITSELF. pLZ HELP WHAT IS PROBLEM AND HOW TO SOLVE IT. DR.MUKHTAR ALI. [email prote

  • HT4539 How do I listen to my purchases music?

    How do I listen to my purchased music on my I pad 2?

  • ANGRY BIRDS - NO PLAY BUTTON

    I had Angry Birds 1.2.1 version working fine on my Nokia N8 then I buy it again (as the update did not work) but the 1.5.3 version is not working. There is NO PLAY BUTTON on the main screen. My device is configured to Portuguese language and I do kno

  • Itunes - Music Sync

    My iphone doesn't want to sync with the music on my itunes. Please help