View multiple lines inside a loop

Hi all

I have a question.

My table xx_test_table has 10 columns, 3 of which are status, error_message and request_id.

Now, after some validations on querying the table with the request_id it gives 3 rows.

I have to post this in a loop. The code I used is the following.

BEGIN

SELECT COUNT (*)

IN lv_error_count

OF xx_test_table

WHERE request_id = 5920135;

IF(lv_error_count > 0) THEN

fnd_file. Put_line (fnd_file. OUT, 'xx_test_table error information Table');

FOR lv_disp_data in 1... lv_error_count LOOP

SELECT column_name,

ERROR_MESSAGE,

request_id,

table-name

BY lv_column_name,

lv_error_message,

lv_request_id,

lv_table_name

OF po_interface_errors

WHERE request_id = lv_req_id;

fnd_file. Put_line (fnd_file. OUT,' request ID: ' | lv_request_id);

fnd_file. Put_line (fnd_file. OUT,' column name: ' | lv_column_name);

fnd_file. Put_line (fnd_file. OUT, "Error Message: ' |" lv_error_message);

fnd_file. Put_line (fnd_file. OUT,' the name of the Table: ' | lv_table_name);

END LOOP;

END IF;

. This loop is inside a separate procedure and all the variables have been declared. Problem is when the API is run at the front end it illustrates TOO_MANY_ROWS exceptions to this procedure.

Is there another way to display multiple lines of data in a table when we Select in the statement?

This should make the necessary

BEGIN
       SELECT COUNT(*)
         INTO lv_error_count
         FROM xx_test_table
        WHERE request_id = 5920135;

       IF(lv_error_count > 0) THEN

          fnd_file.PUT_LINE(fnd_file.OUTPUT,'Error Information from xx_test_table Table');

          FOR rec IN ( SELECT column_name,
                              error_message,
                              request_id,
                              table_name
                         FROM po_interface_errors
                        WHERE request_id = lv_req_id
                     )
          LOOP
               fnd_file.PUT_LINE(fnd_file.OUTPUT,'Request ID:    '||rec.column_name);
               fnd_file.PUT_LINE(fnd_file.OUTPUT,'Column Name:   '||rec.error_message);
               fnd_file.PUT_LINE(fnd_file.OUTPUT,'Error Message: '||rec.request_id);
               fnd_file.PUT_LINE(fnd_file.OUTPUT,'Table Name:    '||rec.table_name);
          END LOOP;
       END IF;
END;
/

Concerning

Arun

Tags: Database

Similar Questions

  • View multiple lines of phone in the form of columns

    Oracle 9i

    I have the tables

    visitors
    ID name
    __ ________________
    1 John boy
    Beautiful lady 2

    Phone
    Phone to cust
    __ ___ ____________
    1 1 555-555-5555
    2 1 666-666-6666
    3 2 222-222-2222
    4 2 999-999-9999


    I want to see
    Customer telephone1 telephone2
    __________ ___________ ____________
    John Boy 555-555-5555 666-666-6666
    Beautiful lady 222-222-2222 999-999-9999

    I searched all morning, I can't find a simple way to do this (assuming there is one).

    Published by: user6751911 on October 17, 2011 09:21

    Published by: user6751911 on October 17, 2011 09:22

    Hello

    Welcome to the forum!

    This is called a Pivot . Exactly how do depends on your version of Oracle and your needs (for example, the order of output on each line is important?)
    See "how to convert lines to the columns" in the FAQ forum:
    SQL and PL/SQL FAQ

    Whenever you have a problem, please post CREATE TABLE and INSERT statements for some examples of data. Since this is your first post, I'll do it for you:

    CREATE TABLE     customers
    ( id      NUMBER     PRIMARY KEY
    , name       VARCHAR2 (10)
    );
    
    INSERT INTO customers (id, name) VALUES (1, 'John Boy');
    INSERT INTO customers (id, name) VALUES (2, 'Lady Bele');
    
    CREATE TABLE     phone
    ( id      NUMBER     PRIMARY KEY
    , cust       NUMBER
    , phone       VARCHAR2 (20)
    );
    
    INSERT INTO phone (id, cust, phone) VALUES (1, 1, '555-555-5555');
    INSERT INTO phone (id, cust, phone) VALUES (2, 1, '666-666-6666');
    INSERT INTO phone (id, cust, phone) VALUES (3, 2, '222-222-2222');
    INSERT INTO phone (id, cust, phone) VALUES (4, 2, '999-999-9999');
    

    This helps clarify what is exactly the problem, and it allows people to test their ideas.

    Here's a way to rotate these data using Oracle 9:

    WITH   got_r_num  AS
    (
         SELECT     c.id
         ,     c.name
         ,     p.phone
         ,     ROW_NUMBER () OVER ( PARTITION BY  c.id
                                   ORDER BY          p.phone
                                 )        AS r_num
         FROM    customers  c
         JOIN     phone        p  ON  c.id  = p.cust
    )
    SELECT       name
    ,       MIN (CASE WHEN r_num = 1 THEN phone END)     AS phone1
    ,       MIN (CASE WHEN r_num = 2 THEN phone END)     AS phone2
    FROM       got_r_num
    GROUP BY  id, name
    ;
    

    This also works in versions greater than 9, but from Oracle 11.1, you can use SELECT... Function PIVOT.

    Output:

    NAME       PHONE1               PHONE2
    ---------- -------------------- --------------------
    John Boy   555-555-5555         666-666-6666
    Lady Bele  222-222-2222         999-999-9999
    

    This allows to display up to 2 phone numbers per client. If you have 3, then add

    ,       MIN (CASE WHEN r_num = 3 THEN phone END)     AS phone3
    

    SELECT main clause. If you could have 4 numbers by cusotmner or 5, or any fixed number, continue to add columns as phone3 above to SELECT main clause.
    If you don't know how amny phone numbers a customer might have, but that you want to view all the, then swivel can be difficult. See the thread below for some ideas on this subject:
    Re: County report and the sum of the number of rows by multiple columns

    Published by: Frank Kulash, October 17, 2011 12:40
    Added example data and example

  • view multiple lines in the advanced table

    Hi all

    I have a requirement. I created advancedtable. When the page loads, to display 4 rows at a time. Can anyone please help how to achieve this req

    Kind regards
    Murali

    Hello

    Write the code below in AM that will create 5 blank lines in the advanced table.

    xxVOImpl voImpl = getxxLineVO1();
    voImpl.setWhereClause ("1 = 2");
    voImpl.executeQuery ();
    for (int i = 1; i)<=5>
    {
    Line = voImpl.createRow ();
    voImpl.insertRow (row);
    row.setNewRowState (Row.STATUS_INITIALIZED);
    row.setAttribute ("column1", i);
    row.setAttribute ("column2", "XYZ");
    }

    Kind regards
    Mary

  • Schedule iteration five FOR lines inside a timed loop...

    Take a look at the attached code simply run five different but identical TO the lines inside a single loop timed.

    It is interesting to note the timings of each loop iteration FOR: 1,1,2,3,0 milliseconds. The most curious is the moment of the last loop, which for the most part indicates 0! Not only this, if you remove the fifth loop, the fourth a bed 0.

    I can't understand this behavior? Also if LV deals in parallel different loops why should there be a gradual increase in the synchronisation of successive loops?

    Thanks for any help.

    First, 0.2 ms is not statistically significant, you must increase the number of iterations by another factor of 10, at least.

    A quick loop uneducated wait FOR will grab the CPU for much more than one iteration, so regardless of the loop is first online will repel the other loops and run until LabVIEW decides to switch to another loop. The number of cores CPU do you have?

    You can force a release after each iteration by placing a 0ms wait inside each loop FOR. While all time will be significantly longer because of the overhead of increased switching, all loops will be now around the same time.

    You can also read this for more information.

    I don't know that anyone else can provide more details in the jargon of right. I don't know the correct terms for all this.

  • tasks timed inside the loop

    I have a program that has multiple tasks, and I want to work at different frequencies inside the loop.  I wonder what is the most effective way to do this?

    I read on several tasks running button push-based or events, but have not found much of the timed tasks.

    Is the loop timed the best way to go with this?  Have a loop timed for each required task?

    I have attached a vi corrupt that shows what I'm trying to do.

    I'm sure there is an easy solution, but want to find more effective this way.

    Thank you

    For a simple task like this, just turn the loop at the faster pace, you need and perform other tasks to integer multiple of it.

    Here's a simple project (LV 8.6)

    (Of course you have serious problems with stolen memory, as you grow berries of infinite sizes in the uninitialized shift registers. Which must be fixed too).

  • Baudrate configuration change VISA inside a loop

    Hello

    In my application, I read a value of load cell using the serial port. I use VISA configuration serial port to initialize the port (9600. 8, none, 1, None).

    Last week, I changed my computer and since then, I have problems with the configuration of VISA. In a few lines, the baud rate change to 1200, so I can't get the value of the cell.

    I already checked COM1 configuration in my OS and everything seems fine.

    I have no idea what happening, someone could help me. Thank you

    Ignacio

    Thanks for your reply. I understand that it seems poitnless but I prefer to keep VISA configuration inside the loop to allow a user to reconfigure the handle during execution. In any case, I'll look for other ways to do better.

    The solution was to remove the block 'VISA close' as you suggest. Thanks again

  • Display multiple lines of data collection defined by the user in an e-mail message

    I created a collection defined by the user that displays several lines of data. I created a custom rule and have linked this collection set by the user to this rule and configure an e-mail action. Variable Seveity, I have defined it in the rule to contain the column values. But it will only contain the first line of data. How can I display multiple lines of data in the alarm itself as well as the e-mail? Any help is appreciated.

    The example query in the collection defined by the user is less;

    Select the type, status, queuename, count (*) from PSAPMSGPUBHDR

    Union

    Select the type, status, queuename, count (*) from PSAPMSGPUBCON

    Union

    Select the type, status, queuename, count (*) from PSAPMSGSUBCON

    Result:

    Number of status type Queuename

    -------                 ----------------------                        ----------                           -------------

    HDR profil_utilisateur error 1

    PUB                  PERSON_BASIC                    New                                 4

    PUB WORKFORCE_SYNC error 1

    -3 rows

    I have defined the variables of gravity and the alarm message is something like this; (It is fetching only the first row of data) how do I loop through to get all the rows of data and display it in the message of alarm/email (alert) action must be written of the groovy script code to achieve this goal? If Yes can you please provide me examples?

    Alarm message:

    "Request message queue is:

    Type: @UDC_type

    QueueName: @UDC_queuename

    Status: @UDC_status

    County: @UDC_count

    Thanks in advance

    JAI

    Hi Jay,.

    fine I could help you. Please mark the thread as "Answered" when the issue has been resolved and do not hesitate to open a new thread for questions.

    Concerning

    Jochen

  • Problem with drag and drop multiple lines of ListView

    I work on an example application with 2 views of list that is the players and the team and implement drop and drop as players can be deposited to one list to the other. Everything works as expected when there is selection unique model is enabled in the source list view. However, if I have activated several model selection and drag 2 or more lines of source target list view list view, see the following exception after that the decline is over.

    Exception:

    java.lang.IllegalArgumentException: only objects serializable or ByteBuffer can be used as data with the format of data [subListPlayers]

    at com.sun.javafx.tk.quantum.QuantumClipboard.putContent(QuantumClipboard.java:513)

    at javafx.scene.input.Clipboard.setContent(Clipboard.java:230)

    (1) what should be the DataFormat used to be able to drag and drop multiple lines? Looks like we don't have for the type of object, so I created the following which does not solve the problem.

    private DataFormat dataFormat = new DataFormat ("subListPlayers");

    (2) I made changes to support serialization on the data object that seems no more to solve the problem. Tried by implementing the interface Serializable, as well as the implementation of the Externalize interface.

    Can someone Guide please if there is an easy way to implement this behavior?

    Code:

    
    

    public class player

    {

    private String name;

    public player (String name)

    {

    myIdName = name;

    }

    public String getName()

    {

    return the name.

    }

    public void setName (String name)

    {

    myIdName = name;

    }

    @Override

    public boolean equals (Object o)

    {

    If (this == o) return true;

    If (o == null | getClass()! = o.getClass ()) return false;

    A player = o (player);

    If (name! = null? name.equals (player.name): player.name! = null) return false;

    Returns true;

    }

    @Override

    public int hashCode()

    {

    return the name of! = null? name.hashCode (): 0;

    }

    }

    SerializableAttribute public class JavaFXDnDApplication extends Application

    {

    private final static ListView < drive > playersListView = new ListView < drive > ();

    private final static ObservableList < drive > /playerslist is FXCollections.observableArrayList ();.

    private final static ListView < drive > teamListView = new ListView < drive > ();

    private final static GridPane rootPane = new GridPane();

    private DataFormat dataFormat = new DataFormat ("subListPlayers");

    Public Shared Sub main (String [] args)

    {

    Launch (args);

    }

    @Override

    public void start (point primaryStage)

    {

    primaryStage.setTitle ("Drag and Drop Application");

    initializeComponents();

    initializeListeners();

    buildGUI();

    populateData();

    primaryStage.setScene (new scene (rootPane, 400, 325));

    primaryStage.show ();

    }

    Private Sub initializeListeners()

    {

    playersListView.setOnDragDetected (new EventHandler < MouseEvent >)

    {

    @Override

    public void handle (event MouseEvent)

    {

    System.out.println ("setOnDragDetected");

    Dragboard dragBoard = (TransferMode.MOVE) playersListView.startDragAndDrop;

    ClipboardContent content = new ClipboardContent();

    content.putString (playersListView.getSelectionModel () .getSelectedItem () .getName ());

    Content.put (dataFormat, playersListView.getSelectionModel () .getSelectedItems ());

    dragBoard.setContent (content);

    }

    });

    teamListView.setOnDragOver (new EventHandler < DragEvent >)

    {

    @Override

    public void handle (DragEvent dragEvent)

    {

    dragEvent.acceptTransferModes (TransferMode.MOVE);

    }

    });

    teamListView.setOnDragDropped (new EventHandler < DragEvent >)

    {

    @Override

    public void handle (DragEvent dragEvent)

    {

    String player = dragEvent.getDragboard () .getString ();

    ObservableList < drive > drive = dragEvent.getDragboard () .getContent (dataFormat) (< drive > ObservableList);

    String player = dragEvent.getDragboard () .getString ();

    teamListView.getItems () .addAll (New Player (player));

    playersList.remove (new Player (player));

    dragEvent.setDropCompleted (true);

    }

    });

    }

    Private Sub buildGUI()

    {

    rootPane.setGridLinesVisible (true);

    rootPane.setPadding (new Insets (10));

    rootPane.setPrefHeight (30);

    rootPane.setPrefWidth (100);

    rootPane.setVgap (20);

    rootPane.setHgap (20);

    rootPane.add (playersListView, 0, 0);

    rootPane.add (teamListView, 1, 0);

    }

    Private Sub populateData()

    {

    () playersList.addAll

    New Player("Adam"), New Player("Alex"), Player ("Alfred") New Player("Albert") new,.

    New Player("Brenda"), New Player("Connie"), Player ("Derek") new new Player ("Donny").

    Player ("Lynne") new, New Player ("Myrtle"), Player ("pink") New Player("Rudolph") new,.

    Player("Tony") new, New Player ("Trudy"), Player ("Williams") New Player ("Zach") new

    );

    playersListView.setItems (playersList);

    }

    Private Sub initializeComponents()

    {

    playersListView.setPrefSize (250, 290);

    playersListView.setEditable (true);

    playersListView.getSelectionModel () .setSelectionMode (SelectionMode.MULTIPLE);

    playersListView.setCellFactory (new reminder < < drive > ListView, ListCell < drive > > ())

    {

    @Override

    public call for ListCell < drive > (ListView < drive > playerListView)

    {

    return again ListCell < drive >)

    {

    @Override

    protected void updateItem (player, boolean b)

    {

    super.updateItem (reader, b);

    If (player! = null)

    {

    setText (player.getName ());

    }

    }

    };

    }

    });

    teamListView.setPrefSize (250, 290);

    teamListView.setEditable (true);

    teamListView.getSelectionModel () .setSelectionMode (SelectionMode.MULTIPLE);

    teamListView.setCellFactory (new reminder < < drive > ListView, ListCell < drive > > ())

    {

    @Override

    public call for ListCell < drive > (ListView < drive > playerListView)

    {

    return again ListCell < drive >)

    {

    @Override

    protected void updateItem (player, boolean b)

    {

    super.updateItem (reader, b);

    If (player! = null)

    {

    setText (player.getName ());

    }

    }

    };

    }

    });

    }

    }

    
    

    Yes, it is a pain. I filed https://javafx-jira.kenai.com/browse/RT-29082 earlier. Go ahead and vote in favour if you're inclined...

    I think that the problem in your case, it is the observable list provided by MultipleSelectionModel.getSelectedItems () is not serializable. So even if you make your player Serializable class, the list is not. The first thing I would try, I think, is to make player implements Serializable and pass in an ArrayList instead of the observable list. If you can do

    content.put(dataFormat, new ArrayList(playersListView.getSelectionModel().getSelectedItems()));
    

    and

    List player = (List) dragEvent.getDragboard().getContent(dataFormat);
    teamListView.getItems().addAll(player);
    

    If it does not, a solution is simply to store the "slipped" into a property list:

    final ListProperty draggedPlayers = new SimpleListProperty();
    //...
    // Drag detected handler:
    content.putString("players");
    draggedPlayers.set(playersListView.getSelectionMode().getSelectedItems());
    
    // Drag dropped handler:
    if (dragboard.hasString() && dragboard.getString().equals("players")) {
         teamListView.getItems().addAll(draggedPlayers.get());
         draggedPlayers.set(null);
    }
    
  • merge multiple lines in a row (but multiple columns)

    How to merge multiple lines in a row (but several columns) effectively.

    For example

    IDVal IDDesc Id_Information_Type Attribute_2 Attribute_3 Attribute_4 Attribute_5 Attribute_1 IdNum
    23 asdc 1 location USA NM ABQ four seasons 87106
    23 asdc 1 Stats 2300 91.7 8.2 85432
    23 asdc 1 Audit 1996 June 17 1200
    AAFC 65 2 location USA TX AUS Hilton 92305
    65 AAC 2 Stats 5510 42.7 46 9999
    AAFC 65 2 Audit 1996 July 172 1100


    where different attributes mean different for each Information_type.
    For example, for Information_Type = location
    Attribute_1: countries
    Attribute_2: State and so on.


    For example, for Information_Type = Stats
    Attribute_1 designates the Population
    Attribute_2: percentage of ethnicity American and so on.

    I want to create a view that shows as below:

    IDVal IDDesc IDNum country state city hotel ZipCode American Population % other % area Audit year Audit AuditMonth Type AuditTime
    23 asdc 1 USA NM ABQ reviews 87106 2300 91.7 46 85432 1996 June 17 1200
    AAFC 65 2 USA TX AUS Hilton 92305 5510 42.7 46 9999 1996 July 172 1100


    Thank you

    Hello

    This is called pivoting . The FAQ forum has a section on this subject: {message identifier: = 9360005}

    I hope that answers your question.
    If not, post your best attempt, as well as some examples of data (CREATE TABLE and INSERT, only relevant columns instructions) and also publish outcomes from these data. (See you the desired results, but they are very difficult to read because they are not formatted. Use \.

     tags, as described in the forum FAQ, below.)
    Explain, using specific examples, how you get the results you want from the data given.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).  This is always important, but especially so with pivots.
    See the forum FAQ {message:id=9360002}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
    
  • Convert a single column into multiple lines

    Hi people,

    I have a task to display a single column into multiple lines (for use in LOV)

    For Ex:

    The column consistes of value such as 98,78,67,68,34,90. -It's a unique column values where none of the values can be ' number that is separated by commas

    Then we must view it as

    98
    78
    67
    68
    34
    90
    -under the number of lines (no lines can be ' do not number).

    Thanks in advance

    Try this...

    SQL> ed
    Wrote file afiedt.buf
    
      1  select regexp_substr('98,78,67,68,34,90', '[^,]+',1,level) Value
      2    from dual
      3*   connect by level <= regexp_count('98,78,67,68,34,90',',') + 1
    SQL> /
    
    VALUE
    -----------------
    98
    78
    67
    68
    34
    90
    
    6 rows selected.
    

    Thank you!

  • Call a select stmt with multiple columns inside another column

    Hi all

    I have a question about the appeal of a select statement, which is to have multiple columns inside another select statement.

    I know that we can use inline views to retrieve data from another table within a query as shown below.

    SELECT (SELECT dname FROM dept WHERE deptno = e.deptno), deptno, sal FROM emp e;

    Now, I'm going to pull the loc also column within the same view of inline. But oracle is not allowing me to do the same thing.

    Is there a way we can achieve the same thing because I don't want to hit the area two times table each time for each emp record.

    Appreciate your valuable suggestions.

    Thank you
    Madhu K.

    Maybe just a simple outer join?

    select ut.subscriberid
          ,ut.unitid
          ,ut.install_date
          ,nvl(tuh.hardwaretype, 'NO_HW')
    from   tt_unit ut
    left   join tt_unit_hwtype tuh
    on     tuh.unitid = ut.unitid
    where  trunc(ut.install_date) >= V_CONST_PROG_START_DT;
    
  • How to build a table inside a loop

    Hello world

    I have a fundamental question on labview. I would like to create a table in a loop 'for' in this way:

    inside the loop, if a condition named 'A' is true, then I add a new value to the first column of the table.  Otherwise, I have create a new column and start adding values in this column when the condition 'A' is checked, etc.

    I put an example of a VI when the 'A' condition is "improving the loop + 1 is not divisible by 5" and the values in the tables are to increase the loop + 1. The loop stops when the increment = 25.

    In this example, I have a single column with the values [1 2 3 4 6 7 8 9 11 12 13 14 16 17 18 19 21 22 23 24]

    while I wish I had a table of 5 columns:

    1 6 11 16 21

    2 7 12 17 22

    3 8 13 18 23

    4 9 14 19 24

    Note that this is just an example. More generally, the table may contain columns of different lengths.

    Thanks for your response

    Andrew

    Try to watch this VI I wrote, it takes a 1 d array and puts it into a 2D array based on a threshold. I think it's a pretty good example on how to insert a table of works. I hope it helps

  • multiple lines of text on a command button

    Is it possible to get multiple lines of text on a command button.  Instead of a large button with the text "start the Test System".  I would like a big button with 3 lines.

    Beginning

    Test

    System

    If you change the label of the button control in IUR editor you can split the text into lines with Ctrl + Enter.

    If you programmatically set the label, "\n" code integration in the text of the label.

    Both methods work for all types of control, not only for the command buttons.

  • multiple inputs and nested loop problem

    Hello world

    I'm using Labview 2009.

    I want to change the value of a variable by using the wheel or keyboard.

    So I downloaded a button and the screws of the keyboard that suits my needs of multi-rotation forum.

    These two screws are running inside a WHILE loop. Because I would be constantly updating the variable I will run my main screw that houses these two screws also looped a WHILE.

    Problem is that while loop within a while loop I couldn't run my main VI because of this problem.

    I tried in 2ways

    1 including them as an auxiliary in my main VI but as the two screws screw contains a few other variables inside of the inside while loop that LabVIEW displays error as auxiliary screws will not work

    2. I also tried to copy paste the two screws as it is in my main screw but could end up only in a lot of errors.

    How to deal with this problem of nested while loops?

    Please guide me.

    Kind regards

    Maury

    You make a mistake of data flow. The outer loop can turn only if all of the code that he has completed. The structure of the event cannot complete because inside while loop has not finished, and if inside so that the loop ends, the loop cannot turn because the structure of the event stalls. You can only go to the next iteration after all both have completed, from the mess.

    All you need to do to incorporate ALL the code inside the structure of the event. Attached, it's a simple project (LV 9.0), modify as necessary.

    See if it makes sense for you. (there are a few minor bugs probably)

  • How to stop a flat sequence (or timed sequence) which is inside a loop for

    The problem is this, I have a loop that repeats 10 times and inside this loop, I have a flat sequence (or timed sequence) with four images, each of this chassis to evaluate a different condition of a vector that I introduce.

    What I woud like for example is:

    I'm a fifth County of the loop for and in the case that part 2 does not meet the condition, the sequence of dish (or timed sequence) stops and starts the loop again but this time for the number of number 6.

    I would appreciate your response.

    You can't stop a sequence structure.  This is how they are made.

    What you should consider to get rid fo structures sequence and to change a state machine architecture.  There are many examples in LabVIEW, as well as on the Forums.  The big advantage of the state machine is that at the end of each State, it examines the conditions and determines which State then run. And that is exactly the description of the problem you are experiencing.

    Lynn

Maybe you are looking for

  • How to backup / copy all photos to icloud on external hard drive?

    -J' I 20 000 photos stored in iCloud -I want to copy/save all THE photos of my external hard drive 2T & store in a separate file for custody. How can I accomplish this? Thank you Zerna.

  • Pictures taken on went iPad

    PPictures I took with my iPad disappeared

  • With the help of COM server to call testing in TestComplete

    Hello I use the adapter COM call testing in TestComplete.  I could always successfully and run the first test using the call sequence, but when I try to call the second test with a different calling sequence, I get the message "Cannot start another i

  • protect solutions

    Recently, I contacted HP to help me with a new configuration of the printer.  After visiting a few minutes, I have quoted me a computer engineer (Solutions of Myotech) who reported that they work for HP.  Does anyone know if Myotech solutions, in fac

  • Microsoft Flight Simulator 9 installation problem (2004)

    When I do a custom load on my Dell pc and then run the program, create a flight, fly, save it, then escape out, close the program, remove the 4 disc and try running the program again, he keeps asking to insert disk 4.  How can I solve this problem?