Difference in WHERE clause VO and java class!

Hello!

I have VO:
SELECT ADokumenti.A_DOKUMENTI_PK, 
       ADokumenti.APRAKSTS, 
       ADokumenti.DOKUMENTA_TIPS, 
       ADokumenti.DOKUMENTS, 
       ADokumenti.FAILA_VARDS, 
       ADokumenti.PASES_DATI_ID, 
       ADokumenti.PIEVIENOSANAS_DATUMS
FROM A_DOKUMENTI ADokumenti
WHERE ADokumenti.DOKUMENTA_TIPS = 'image/jpeg' or ADokumenti.DOKUMENTA_TIPS = 'image/gif' or ADokumenti.DOKUMENTA_TIPS = 'image/png'
When I put the value of VO in java class
 vo.setWhereClause("A_DOKUMENTI_PK="+imageId); 
WHAT result would be? Only java put where clause, or both?

If one clause of java, and then how to add this: «A_DOKUMENTI_PK = "+ imageId vo?»

Best regards, Debuger!

Debuger,

That's why I suggested that you create a view named criteria (with a variable binding) at design time. At runtime, you set the value of the variable binding and apply the criteria to view. The first link in the documentation I gave explains you quite well.

You must use bind variables for five reasons:

(1) performance
(2) performance
(3) performance
(4) performance
and
(5) performance.

Oh and

(6) avoid errors of insufficient memory in the shared the database pool.

John

Tags: Java

Similar Questions

  • Difference between an ActionScript file and ActionScript class

    Hello

    Could you get it someone please let me know what is the difference between a file Action and the Action Script class

    On the Flex Builder it offers the possibility to create an ActionScript file as well as
    an ActionScript class.

    Can someone please let me know what is the difference between these two?


    Thanks in advance.

    Kiran,

    ActionScript file is basically something that you can include in your mxml file is similar as you write the code in the tag. Where class actionscript will behave as an object for which you can create the new instance.

    Ankur Arora

    Project Manager (Flash and Flex)

    http://flashdeveloper.blogspot.com

    http://www.Ankur-Arora.com

  • When the external program C and Java Class loaded in a schema

    Hi all
    I understand that both an external C program and a Java class are loaded after two of them are called in the PL/SQL environment, once they are published and loaded into shared libraries. Is this correct?

    Best regards
    Val

    An external procedure is never loaded into a schema. Oracle calls the external program.

    A Java class that is part of a Java stored procedure, however, is charged as a PL/SQL procedure is created - at compile time.

    Justin

  • difference between JDeveloper, Oracle Forms and Java SE and EE

    1. I want to know what is the difference between Oracle Forms, JDeveloper, Java SE and EE
    2. is it true that Oracle Forms can produce only a desktop application. To create the web application, we have JDeveloper?
    3 Java SE can only make application office. EE only can make web applications?
    4. to make custom forms and paste it to the E-Business Suite R12, what tool do we use? Oracle Forms, JDeveloper, or Java SE or EE?

    Can someone help me with this? I intend to make a custom process externally because there are some processes that cannot be addressed by E-Business Suite R12. I want to know what tool to develop this custom application and whether to integrate the custom for existing E-Business Suite application. Thank you

    1. I want to know what is the difference between Oracle Forms, JDeveloper, Java SE and EE

    Oracle Forms is a tool of Rapid Application Development (RAD) used to create an Application that interacts with an Oracle database.
    JDeveloper is an integrated development (IDE) environment to create applications based on Java.
    Java is a programming language. The SE (Standard Edition) and EE (Enterprise Edition) are just different editions of Java (very basic definition).

    2. is it true that Oracle Forms can produce only a desktop application. To create the web application, we have JDeveloper?

    The latest version of Oracle Forms No. only supports the web deployment. Old version (6.0 and lower) were traditional Client/Server.

    3 Java SE can only make application office. EE only can make web applications?

    Wrong again. To see the difference between the two, visit www.java.com.

    4. to make custom forms and paste it to the E-Business Suite R12, what tool do we use? Oracle Forms, JDeveloper, or Java SE or EE?

    Above all, Oracle Forms, but you can also develop extensions customized by using JDeveloper and the EBS Self Service Framwork. As indicated above, Java SE and EE are not tools, but a language.

    Can someone help me with this? I intend to make a custom process externally because there are some processes that cannot be addressed by E-Business Suite R12. I want to know what tool to develop this custom application and whether to integrate the custom for existing E-Business Suite application. Thank you

    Before starting to build custom to the Enterprise Oracle Business Suite (EBS) extensions I highly suggest that find you a job working firstly with EBS so you can learn the framework of EBS and how the various parts work together. Also, I recommend that consult the library of Documentation of Oracle Applications . Oracle is very clear on how to add customizations to the EBS.

    Craig...

  • Impossible when setting header a Where Clause in ViewImpl.java

    Hello

    I have no application of the ADF with header lines Vo link display and association and developed a method in HeaderViewImpl.java and made the shuttle in the interface client view and I ask that when loading the page through the links page-> executable files, but it gives error

    'Impossible '.

    When the page runs, cannot understand why it gives an error? no idea please.

    Kind regards

    Peyrot

    Peyrot,

    What you are calling the same method inside. Who will end up in an infinite loop.

    The code must be

    public void setWhereClause(String InqNumber){
           super.setWhereClause("PERCOSTING_NUMBER =2 ");
    }
    

    I don't understand the use of this method.

    Why must you this method? Where do you call it?

    See you soon

    AJ

  • drop the class java and java source

    Hello

    When I ask user_objects get some java source class and java objects

    Select * from user_objects where object_type like '% of JAVA;

    How to drop these java source and java class of the database objects

    I tried to use the following command

    Drop java class /4a524d89_AutoTransliteratorPk

    travel AutoTransliteratorPkg java source

    But I get the error ORA-29501: invalid or missing Java source, class or resource name

    Please someone help me drop these items

    Thank you
    Saaz

    java originally all in capitals or was it exactly AutoTransliteratorPkg. If its exactly AutoTransliteratorPkg then try this

    drop the java source 'AutoTransliteratorPkg '.

  • Add where clause dynamically

    Hi Experts,

    I have a VO with query like select * ministries dept, emp where dept.dept_id = emp.dept_id group... by order of dept.dept_id employees

    At runtime, I need to add where clause with (and in dept.dept_id (select dept_id from table2))

    I tried to use the vo.setWhereClause () method. But it does not work

    Is there another solution?

    I use Jdeveloper 12.1.3

    Thanks in advance.

    There are various possible solutions for this. You can either use setQuery that defines the entire sql statement. However, you then need to delete where condition adding yourself too.

    Or you use viewCriteria as explained in this blog http://www.ahsanscorner.com/content/2015-11-16-1942-simulating-sql-clause-adf-viewcriteria-api.

    Another approach is described by this blog Jet binary: using bind variable for SQL statements with the paragraph who uses a SQL table to build the in clause.

    Timo

  • Cannot run a «BUSINESS...» WHEN ' with a date in a WHERE CLAUSE condition

    Hello

    I need to check for a condition and date according to the date, he would check a set of host names or the other game... so I thought I could write something like this in the WHERE clause:

    AND HOST_NAME IN

    (

    CASE

    WHEN TO_DATE (: StopDate, 'MON-DD-YYYY') > = TO_DATE ('22 - DEC - 2015 "," DD-MON-YYYY ') THEN

    ('SERVERNAMEA', 'SERVERNAMEB', 'SERVERNAMEC') ON THE OTHER

    ("SERVERNAME1", "NAMESERVER2", "SERVERNAME3")

    END

    )

    I get the following:

    ORA-00907: lack of right parenthesis

    00907 00000 - "lack the right parenthesis.

    But there is no missing parentheses!

    If I take the case... when... end, and run the host_name in ('SERVERNAMEA', 'SERVERNAMEB', 'SERVERNAMEC') (separately, they run fine)...

    I also tried:

    AND

    (

    CASE

    WHEN TO_DATE (: StopDate, 'MON-DD-YYYY') > = TO_DATE ('22 - DEC - 2015 "," DD-MON-YYYY ') THEN

    HOST_NAME IN ('SERVERNAMEA', 'SERVERNAMEB', 'SERVERNAMEC') ELSE

    HOST_NAME IN ('SERVERNAME1","NAMESERVER2","SERVERNAME3")

    END

    )

    the error I get is:

    ORA-00905: lack of keyword

    00905 00000 - 'lack the key word'

    What keyword miss me?

    Post edited by: c75d2e42-06a0-4eb1-a576-5652edcbfbe8

    Hello

    c75d2e42-06a0-4eb1-A576-5652edcbfbe8 wrote:

    It was a typo when transferred to the Oracle forum... the version of Oracle is: PL/SQL version 10.2.0.3.0 (10 G)

    I also used IF the statement and that has not worked (in error "missing parenthesis") which I'm sure is a matter of "syntax"... I did not know that the CASE statement returns the value single only, so it's probably the problem.  Is it possible to re - write this?

    ...

    IF only works in PL/SQL.  It does not in SQL, even if that SQL is embedded in PL/SQL.

    There are many ways to re - write the condition.  And here's one:

    AND ((host_name IN ('SERVERNAMEA', 'SERVERNAMEB', 'SERVERNAMEC')

    AND TO_DATE (: StopDate, "MON-DD-YYYY") > = TO_DATE ('22-DEC-2015', "MON-DD-YYYY")

    )

    OR (host_name IN ('servername1","Nameserver2","SERVERNAME3")

    AND TO_DATE (: StopDate, "MON-DD-YYYY")<  to_date="" ('dec-22-2015', ="">

    )

    )

    If: StopDate can be NULL, it must be a bit more complicated.

    You can also use nested, such as CASE expressions

    AND THE CASE

    WHEN TO_DATE (: StopDate, "MON-DD-YYYY") > = TO_DATE ('22-DEC-2015', "MON-DD-YYYY")

    WHILE CASE

    WHEN host_name IN ('SERVERNAMEA', 'SERVERNAMEB', 'SERVERNAMEC')

    AND THEN 'OK '.

    END

    OTHER CASES

    WHEN host_name IN ('servername1","Nameserver2","SERVERNAME3")

    AND THEN 'OK '.

    END

    END = 'OK '.

    I wonder if this in your application is the best way, however.  If SERVERNAMEA was put into service on December 22, maybe that that fact should be recorded in a table.  If you have a table with 1 row per server, you can consider adding 2 columns DATE to show when the server was first and last used.  Then, rather than use a WHERE clause to test servers appropriate, you could do an inner join.

  • How to pass values from a Java class to a class of JavaFX?

    Hi Forum,
    I get nuts on this problem:
    I designed a program with Java and JavaFX classes. JavaFX classes handle the GUI and Java classes mix program logic. I think that's the way it is supposed to be. My program calculates something, so in my JavaFX GUI, I have a button to run this calculation. It's not a problem to call the start function calculation (which is in my Java class) on click of a button. But now I want to display the result of this calculation in my GUI. I can't just simply pass the result to my class of JavaFX GUI. I tried to import the JavaFX class in my Java class to call a set function, but I can't import them with the import statement. So my question is, how do I make the results to my GUI? What is the right way to do it?
    I hope someone can help, thanks in advance :)

    Two ways, either:

    -your JavaFX class asks the Java class for the result once the task completed in exactly the same way he instantiated to start the task. Of course, you should regularly check the completion of the task (a mere PauseTransition).

    - or your JavaFX class implements a Java INTERFACE and your Java class accepts (whether through the method or constructor) a variable of type of this interface. For example, you can set a reference to the subject of JavaFX itself in the Java object using the interface.
    When the task is completed, your Java class calls a method defined in the INTERFACE to set the result in the object of JavaFX.

    In addition, JavaFX 1.3.x provides an API to start asynchronous and be notified when a task is completed in the javafx.async package that allows you to run the task of basic Java (you mind that the class is named...) JavaTaskBase, see also the RunnableFutre interface) in a separate thread.

  • Difference-conditions (join and a Where Clause)

    Hi people,

    I need to clearly agree on what a difference exactly when we put any condition in INNER JOIN and the WHERE Clause.

    I have tried both way and found the same results. Even in the statistics Plan not much differences.  Any help would be appreciated.

    As:

    1 here, I use filter store in the join condition - Inner

    "SELECT i., Gl * Sc1.Item I.

    Inner Join Sc1.Part P

    On P.Part_Id = I.Part_Id

    Inner Join Sc1.Location Gl

    On Gl.Location_Id = I.Location_Id

    And Gl.Location_Id in (1767, 1747,202,1625)

    Inner Join Sc1.Condition C

    On C.Condtion_Id = Gl.Condition_Id

    Where I.Inactive_Ind = 0

    And I.Condition_Id! = 325

    2. here I use filter store in Where clause-

    SELECT i., Gl * Sc1.Item I

    Inner Join Sc1.Part P

    On P.Part_Id = I.Part_Id

    Inner Join Sc1.Location Gl

    On Gl.Location_Id = I.Location_Id

    Inner Join Sc1.Condition C

    On C.Condtion_Id = Gl.Condition_Id

    Where I.Inactive_Ind = 0

    and I.LOCATION_ID in (1767, 1747,202,1625)

    And I.Condition_Id! = 325

    Thank you

    Mark



    Hello

    MarkCooper wrote:

    Hi guys,.

    To reply to all - I understand.

    1. its good practice to use conditions / filter (except CLAUSE) in the WHERE Clause rather Inner join? bon ?

    2. now, in my previous example. We could use the location code in where clause as it was in the two tables.

    What is the best practice to use the code to location here ( 1 /2) ?

    1. here I use filter store in the Inner join condition ( guess the location code is not in the article table)).

    "SELECT i., Gl * Sc1.Item I.

    Inner Join Sc1.Part P

    On P.Part_Id = I.Part_Id

    Inner Join Sc1.Location Gl

    On Gl.Location_Id = I.Location_Id

      And Gl.Location_Id in (1767, 1747,202,1625)

    Inner Join Sc1.Condition C

    On C.Condtion_Id = Gl.Condition_Id

    Where I.Inactive_Ind = 0

    And I.Condition_Id! = 325

    2. here I use filter store in Where clause (assume that the location code is not in the article table)-

    SELECT i., Gl * Sc1.Item I

    Inner Join Sc1.Part P

    On P.Part_Id = I.Part_Id

    Inner Join Sc1.Location Gl

    On Gl.Location_Id = I.Location_Id

    Inner Join Sc1.Condition C

    On C.Condtion_Id = Gl.Condition_Id

    Where I.Inactive_Ind = 0

      And Gl.Location_Id in (1767, 1747,202,1625)

    And I.Condition_Id! = 325

    Thank you

    If location_id isn't in the item table, then the join condition

    On Gl.Location_Id = I.Location_Id

    will cause an error.

    Once more, it should not affect results or performance if a condition like

    Gl.Location_Id in (1767, 1747,202,1625)

    is in the clause or the WHERE clause.  No matter if it is be a column called location_id in any other table, or if the same column Gl.Location_Id is used in other conditions.

    As this condition only refers to a table (GI), I recommend you put it in a WHERE clause, just to make the code clearer.

    Yet once, this applies only to the inner joins, not for outer joins and not to CONNECT BY queries.

  • Java class to connect to Oracle Database Express Edition11g and URL

    Can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?

    I'm just starting to learn Java and with it, learn how to use the Oracle Database Express Edition11g and with it the Oracle SQL Developer...

    At this point, I have the Express Edition is installed and the SQL Developer installed and were able to establish a connection and to run a query and get a result.

    I use Eclipse for JAVA.  I have a work of class that performs a query on a database/table in MySQL.

    So now I'm eager to make the same use as the database Oracle Database Express Edition11g engine.

    And this means that two different versions of JAVA that I need to get the right to be able to do.

    The first is the value of the url variable.

    I now like

    String url = "jdbc:oracle:thin:@localhost";

    then

    Class.forName ("oracle.jdbc.OracleDriver");

    and then

    Connection connection = DriverManager.getConnection (url);

    The thing I'm puzzled on is in the URL where I 'localhost' was supposed to be the term generic and not so much as the text, you should use.

    I see in Web sites like 3 connection to Oracle Database XE

    and decrease example 3-2 by specifying the URL of database using the XE Client Setup

    There I see

    JDBC:driver_type: [username/password] @[//]host_name[: port] [XE]]

    And just what is and what is not is explained here.  So what I ended up with was

    String url = "jdbc:oracle:thin:@localhost";

    So if it was just a text to rest for a name I wonder just such a value or name might really where.

    I noticed that view that an app called "Oracle JDeveloper" has been used to create the values.   I don't have such a thing, or at least I don't think I do.

    Do I need?

    I have Oracle SQL DEVELOPER, where I used the following to connect to the database of the XE.

    My choice for Oracle's SQL Developer Help

    Name of connection: Connection1

    User name: Rod

    Password: myOracle11

    Host name: localhost

    Port: 1521, which is the default value

    SID: xe

    Above so I have to host name set to localhost

    Can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?

    1. I do nothing

    2. While wouldn't you say it

    3. no results from the earlier assignment.

    I asked "'can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?" "

    I showed the choice that I used in SQL Developer to connect to the schema.  And I was wondering, now that I had done this case those are the values that I could use in the Java class that I wrote.  The web site in the first post of this thread showed connection but he was using JDeveloper and SQL Developer.

    So I was wondering if the connection that I made using SQL Developer would do the same trick, and if I could use the values I did there.

    I'm happy to announce that YES, The values used to connect using SQL Developer work exactly like JDeveloper.

    So, given that in SQL Developer for Hostname I chose the value "localhost" "Rod" Username and password "myOracle11".

    I did the following JAVA CLASS that worked:

    package VC_2_9;

    Java for COBOL - copyright 1999 Doke & Hardgrave programmer

    import java.sql. *;

    public class DataBaseDemoOracle

    {

    Public Shared Sub main (string args [])

    {

    String CUST_LAST_NAME;

    / * String url = "jdbc:mysql://localhost/visualcafe";                     */

    String url = "JDBC: thin: @localhost';"

    / * String sqlQuery = "SELECT Name, SSNo, address, telephone OF THE customer;    */

    String sqlQuery = "SELECT CUST_LAST_NAME FROM DEMO_CUSTOMERS";

    //                                               |||||||||||||||

    Try

    {

    Class.forName ("oracle.jdbc.OracleDriver");

    Connection connection = DriverManager.getConnection (url, "Rod","myOracle11" ");

    Statement statement = aConnection.createStatement ();

    ResultSet rs = aStatement.executeQuery (sqlQuery);

    Boolean more = rs.next ();

    (more)

    {

    CUST_LAST_NAME = rs.getString (1);

    /* */

    System.out.println ("name:" + CUST_LAST_NAME);

    more = rs.next ();

    }

    RS. Close();

    aStatement.close ();

    aConnection.close ();

    }

    catch (ClassNotFoundException e)

    {System.out.println ("Exception caught" + e) ;}}

    catch (SQLException e)

    {If (e! = null)}

    {System.out.println ("SQLException taking" + e);}

    e = e.getNextException ();

    } / / end of while loop

    } / / end of capture

    } / / main end

    } / / end DataBaseDemoOracle.java

  • Know Java classes and subclasses

    I m working with Forms & Report 10 gr 2.

    I m working with Forms & year Report 1,997. Normally, I flip between different application 8 or 9. My applications now appear a bit old-fashioned. Looking to solve this problem, I found an article by Grant Ronald, I think well know in this forum and it solved me a question that I post here. In this article Grant said:

    Extend the user interface forms
    So, how can you achieve the balance to give your
    Application Forms of the makeover to match the 21
    century without having to embark on an extensive program of
    refurbishment or recycling of the user?
    The answer lies in the architecture of Oracle Forms.
    For a form that runs via a browser, application the
    the user interface is rendered as a Java applet. This Java applet
    includes a number of officials of the Java classes
    each of the components of UI forms made. Magic
    lies in the fact that, since each component of the interface user is, indeed,
    a Java class, it can be subclassed. This means that you can
    create your own component that does all the
    component base, but with your own code to change
    the functionality or appearance.

    Really a piece of gold, in this regard, it will give you the key can change the forms look & feel.

    But, now, come the questions, how can I do this? How do I know what forms of using classes to display a button for example, what I need to do for subclasses?
    is there an example or documentation that can help me? If yes ¿where? One of the gurus can give me some links to explore this?

    Thank you & considers everyone.

    Look at this.

    http://fdtool.free.fr/LAF/doc/Oracle_Forms_Look_and_Feel_project.htm

    It is not supported by Oracle, but is widely used. All support for its use will come from its web page.

  • Where can I download the latest version which allows images and java script off?

    Because of my connection is often slow, I have the option to turn off "automatically download images" and Java script. 23 Firefox doesn't have these options. Where can I download version 22 or whatever the latest version is that these permitted options?

    Thank you

    There is also settingsanity

  • Try adding conditions to clause "and" stored in the table for the where clause, unknown syntax

    I am trying to add additional segments to the 'where' clause, and I don't know exactly how to proceed. I am currently using another table to search for keywords and sometimes there aren't everything. I use this table containing the key words to search the description and associate a symbol with a path.

    The code loops through the keywords with the keywords most associated and try to find links to a symbol then excludes those and search for symbols that correspond to those with less keywords and all. I am able to do this with 6 queries and manually changing the arguments, but I want to loop together so that if the changes need to be made in the future, I won't need to go digging in the code.

    Thanks, but that's ok. I already have a solution for this.

  • Small design on the points of view and a Where Clause Board...

    Hi all...  I just want to check Im doing things right, and he is not a better way to do this...

    Running APEX 4.2.5 and XE 11.2

    Ive built my application around a community of users who have access to certain groups of data...  Ive designed so that there are views and then transparent filter the data of a given user. for example, the view below seamlessly that users can see the filters depending on which application they use, they can see more specifically, what are the features and finally, what group they are actually in.

    Create view ENTITIES like)

    Select * from t_entities t

    where exists (select 1

    of application_groups ag

    where ag.object_name = 'ENTITIES '.

    and ag.object_id = t.entity_id

    and ag.group_name = 'CASH FLOW')

    and exists (select 1 from entity_users EU

    where eu.username = nvl (v ('APP_USER'), USER) / * APEX APPLICATION USER * /.

    and eu.entity_id = t.entity_id)

    and it exists (select 1 from entity_group_members for example

    where eg.entity_group = v('G_ENTITY_GRP_ID') / * ENTITY_GROUP * /.

    and eg.entity_id = t.entity_id)

    )

    The overall costs when I run the explain command is very low (23 or almost), so I think that its an effective way of filtering... However, out of 300 entities or greater, the vast majority of users (75%) can see 75% of data...  Also, I need to create another view to filter another set of data with 2000 records. one with the view in place, 95% of the staff will see 95% of the data and only 10% of the staff see the other 10%...

    I note that its faster when a member of a group brings back only a tiny part of the data compared to the other way around... This is why Im asking before implementing another view of the same type.

    So, on my question. Is there a better way to do this, or the query should be on there head with a WHERE clause does NOT EXIST (xxxxx! = yyyyy)) or soemthing else ther is quite that Ive missed...

    The only other comment is that Im using the upper table "APPLICATION_GROUPS" for more than one type of object (i.e. entities and entity accounts banking..) y at - it no merit in separaitng the two into two tables?

    Thank you very much

    Richard

    Hi Richard,

    Miss me a lot of information but:

    I think that your design could be allowed. It seems a little too mat, maybe, but I think this could work.

    It is important to have the good indexing and use compression of index:

    On application_groups (object_name, the GroupName, groupname) compresses

    IT compresses to entity_users (username, entity_id)

    On the entity_group_members (entity_group, entity_id) compress

    I think v as v ('G_ENTITY_GRP_ID') is a user-defined function? If so, if possible, set the deterministic and uses result_cache.

    Consider partitioning application_groups type (= object_name?)

Maybe you are looking for

  • Laptop HP model red Flyer 15-f: windows, used laptop model 10 15-f272wm

    I am a novice with this topic, pc and tech stuff more, so forgive me if I'm doing this wrong. I bought a used HP laptop, or is it now called "specifications"? Connected, wifi came on no problem. I don't have any book or document info. No doubt cause

  • Newbie question - Core 1 exercise 7-1

    Hi all I started to learn the LabVIEW and I'm taken Core 1 online training. So far, everything is going well, but today I encountered a problem and I can't find a solution. The question concerning the year 7-1, figure 7-4. I open the block diagram an

  • HP Pavilion G7-2341dx: issue of diagnostic Pavilion G7-2341dx code

    OK, I have a Pavilion G7-2341dx laptop. I had a problem with the USB ports for ever and nothing I tried worked and I did all that on the net to attempt a solution without success. I did all the registry stuff, consumption patterns, selective suspend,

  • com surragate not working___

    Remember - this is a public forum so never post private information such as numbers of mail or telephone! Ideas: You have problems with programs Error messages Recent changes to your computer What you have already tried to solve the problem

  • HP Office Jet 4500 do not print due to error on paper, there is paper in the printer.

    I get an error that says I need to add the document to the printer.  The printer is full of paper.  I deleted the printer and re-installed, I closed the printer down several times, I rebooted several times.  I can put a paper on pc and press copy and