Value of the parameter after throwing a custom exception

I have a procedure that has a type as a parameter to record input/output. I just get a recording member, read a description depending on whether the value of an array and assign this description to another Member of the record. I use this description where I call the procedure.

The problem is; When I up a custom in this procedure, the value attribute that exception is lost so I can't use it. How can I solve this problem?

Example:

CREATE OR REPLACE PACKAGE IN THE PCKG_TEST
REC (RECORD TYPE IS
A TANK,
B VARCHAR2 (24).
C NUMBER);

WITH SOME EXCEPTIONS;

(MANIPULATION) PROCEDURE
r IN OUT REC
);

END PCKG_TEST;

CREATE OR REPLACE PACKAGE BODY PCKG_TEST AS
(MANIPULATION) PROCEDURE
r IN OUT REC
) AS
BEGIN

r.A : = « Y » ; -< assignment is lost when the exception is thrown.

IF RA = 'Y' THEN
RAISE THE EXC;
END IF;

END;

END PCKG_TEST;

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

DECLARE
R PCKG_TEST. REC;
BEGIN

BEGIN
R.A : = « A » ;
PCKG_TEST. MANIP (R);
EXCEPTION
WHEN PCKG_TEST. EXC THEN
DBMS_OUTPUT. PUT_LINE (' 2 A :'||) R.A); -< Here is 'A' no 'Y '.
LIFT;
WHEN OTHERS GO BACK THEN;
END;

EXCEPTION
WHEN PCKG_TEST. EXC THEN
DBMS_OUTPUT. PUT_LINE (' 3 A :'||) R.A);
LIFT;
WHILE OTHERS THEN
RETURN;
END;

user11701280 wrote:
The problem is; When I up a custom in this procedure, the value attribute that exception is lost so I can't use it. How can I solve this problem?

The problem is because, by default, oracle goes in most of the values by copying them, so when an exception occurs the last part of the procedural process that copy of back again once does not.

To specify in the case otherwise you can use the NOCOPY statement within your parameters, which will lead to any change in the procedure to have a direct effect on the parameter passed in with the parent...

SQL> ed
Wrote file afiedt.buf

  1  CREATE OR REPLACE PACKAGE PCKG_TEST AS
  2    TYPE REC IS RECORD (
  3      A CHAR,
  4      B VARCHAR2(24),
  5      C NUMBER);
  6    EXC EXCEPTION;
  7    PROCEDURE MANIP(r IN OUT NOCOPY REC);
  8* END PCKG_TEST;
SQL> /

Package created.

SQL> ed
Wrote file afiedt.buf

  1  CREATE OR REPLACE PACKAGE BODY PCKG_TEST AS
  2    PROCEDURE MANIP(r IN OUT NOCOPY REC) AS
  3    BEGIN
  4      r.A := 'Y'; -- /

Package body created.

SQL> DECLARE
  2    R PCKG_TEST.REC;
  3  BEGIN
  4    BEGIN
  5      R.A := 'A';
  6      PCKG_TEST.MANIP(R);
  7    EXCEPTION
  8      WHEN PCKG_TEST.EXC THEN
  9        DBMS_OUTPUT.PUT_LINE('2A:'||R.A); --< Here A is 'A' not 'Y'
 10        RAISE;
 11      WHEN OTHERS THEN RETURN;
 12    END;
 13  EXCEPTION
 14    WHEN PCKG_TEST.EXC THEN
 15      DBMS_OUTPUT.PUT_LINE('3A:'||R.A);
 16      RAISE;
 17    WHEN OTHERS THEN
 18      RETURN;
 19  END;
 20  /
2A:Y
3A:Y
DECLARE
*
ERROR at line 1:
ORA-06510: PL/SQL: unhandled user-defined exception
ORA-06512: at line 16
SQL>

Tags: Database

Similar Questions

  • How to get the value of the parameter to form of oracle from the html page

    Hello



    I want to know that is it possible to grab the value of the parameter of the html page and display on my oracle ACTIVE form.



    Kind regards
    Raza

    Pass the parameter in the HEART

    as

    hrtest/dev60cgi/ifcgi60.exe? Form=LOGIN_FORM_Para.FMX&width=1000&height=700&userid=123/123@test&otherparams=Pakistan=Allah ".

    Set a: PARAMETER. PAKISTAN on form

    and write after outbreak

    BEGIN
    If: PARAMETER. PAKISTAN = "ALLAH" then
    message ('HO ALLAH AKBAR');
    message ('HO ALLAH AKBAR');
    message(:Parameter.) PAKISTAN | ("AKBAR HO');
    message(:Parameter.) PAKISTAN | ("AKBAR HO');
    on the other
    message ("INSH' |: PARAMETER.") (PAKISTAN);
    message ("INSH' |: PARAMETER.") (PAKISTAN);
    end if;

    END;

    Kind regards

    Khurram Altaf

  • value of the parameter

    package Testen;

    public class average
    {
    public double average (int zahlen)
    {
    System.out.println (Zahlen);
    back numbers;
    }


    /**
    *
    @param args
    */
    Public Shared Sub main (String [] args)
    {
    Average average = new Durchschnitt();
    }
    }

    I would like to test a method with a parameter in JDeveloper10g
    Where can I put in the value of the parameter "zahlen" before the race?

    After running, I get the following messages:
    [13: 55:04] successful compilation: 0 errors, 0 warnings.
    Testen.Durchschnitt
    Process has finished with exit code 0.

    Argh so bad with this Java code, I almost give up ;)

    Please do not use average so many times (class name, method name, but not a constructor, the variable name).

    package Testen;
    
    public class Durchschnitt
    {
    public double do(int zahlen)
    {
    System.out.println(zahlen);
    return zahlen;
    }
    
    /**
    *
    * @param args
    */
    public static void main(String[] args)
    {
    Durchschnitt d= new Durchschnitt();
    double retval = d.do(**put your value for zahlen here**)
    }
    }
    

    but so many uses of Durchshnitt make it so difficult to understand what you really want to do.

    John

  • Data mining - error on the insertion of the TREE_TERM_MINPCT_MODE value in the parameter array

    Hello

    In Data mining when I tried to insert some values into the parameter array. I get the error by trying to introduce TREE_TERM_MINPCT_MODE in the table.

    The model who was on trial for create was decision tree.

    BEGIN

    INSERT INTO DT_CA_SETTINGS_TEST (SETTING_NAME, SETTING_VALUE) VALUES

    (dbms_data_mining. TREE_TERM_MINPCT_MODE, to_char (1));

    END;

    Error report:

    ORA-06550: line 3, column 22:

    PLS-00302: component 'TREE_TERM_MINPCT_MODE' must be declared.

    ORA-06550: line 3, column 22:

    PL/SQL: ORA-00984: column not allowed here

    ORA-06550: line 2, column 4:

    PL/SQL: SQL statement ignored

    06550 00000 - "line %s, column % s:\n%s".

    * Cause: Usually a PL/SQL compilation error.

    * Action:

    Thank you
    Srikanth.

    Hello

    BEGIN

    INSERT INTO DT_CA_SETTINGS_TEST (SETTING_NAME, SETTING_VALUE) VALUES

    (dbms_data_mining. TREE_TERM_MINPCT_NŒUD,to_char (1));

    END;

    This isn't 'Mode' his 'NŒUD '.

    Run now.

    See you soon...

  • How to write the condition with the value of the parameter

    Hello
    I'm working on siebel BI publisher report. I am able to display the value of the parameter in the report.

    Now, I wanted to do something logical based on the value of the parameter.

    for example: If the user changes the value of the parameter then I have to call A submodel if user don't past not any value then it should not display A submodel

    can someone tell me how to write that above logic?

    If the parameter exists then MODEL of APPEAL one another do not call MODEL A

    Kind regards
    JAG


    Dial a submodel

  • Display of a user name, but the sending in the value of the parameter username

    Hello

    I have a parameter named User and I need the column of user names from the drop-down list, but I need to send the value of username corrsponding to my settings. Please let me know if there is a way for this publisher of BI in.

    Thank you
    DY

    When you create a list of values for the parameter, your sql should have two columns in the select statement:

    Select user_name as name, user_id ID
    from table_name

    Name appears but user_id is returned. -Change the sql as required.

    Create the User_ID parameter (let's say it's ID), then use the created list.

    In your datamodel, you can filter by User_ID as: select * from table where user_id =: User_ID

    Hope that helps.
    Bipuser

  • Getting the value of the parameter

    Hello
    I use Reports6i.
    I have a parameterized report, say the parameter: P_nat, have the list of values as
    Select nat_code,nat_name from Nationality_Master;
    The values are as
     IND-Indian
     PAK- Pakisthani
     etc...
    in the query, I want the values like IND, PAK etc, so I take: P_nat.
    Report also I want to show the selected value of the parameter, but here, I want the values like Indian, Pakisthani etc... Take: P_nat gives only the code.
    Is it possible to get the value?

    Thank you

    Hello
    For a full description, create a user setting more (for ex: p_desc) and in the outbreak of the APRES-PARAMETRE-FORM reports, use the code below...

    SELECT nat_name
    INTO :p_desc
    FROM Nationality_Master
    WHERE nat_code = :p_nat;
    

    and in the layout of your reports, use the P_DESC parameter to display the full description.

    -Clément

  • UDI-00014: invalid value for the parameter, "remap_tablespace".

    Hi all

    Windows 2003 Server
    Oracle 10g

    I'm doing a reorg, so I droped and recreated the schema. No w I want to import my datapump schema export, but it gives me an error:
    UDI-00014: invalid value for the parameter, "remap_tablespace".

    Here is my script:
    Impdp patterns of name of user and password = siebel directory = dpdir dumpfile = logfile schema_exp.dmp = schema_imp.log remap_tablespace = SBL_DATA:SBL_DATA, SBL_INDEX:SBL_INDEX State 60

    What I'm doing wrong, it makes me crazy, please help

    Published by: user11211037 on December 6, 2009 00:54

    Syntax and Description

    SCHEMAS = schema_name [,...]

    If you have the IMP_FULL_DATABASE role, you can use this parameter to perform a schema mode import by specifying one single schema other than your own or a list of schemas to import. First, schemas were created (if they do not already exist), including the system and the role of subsidies, the history of password and so on. Then all the objects contained in the imported patterns. Unprivileged users can only specify their own schemas. In this case, no information about the schema definition is imported, only the objects it contains.

    Hope you are clear.

    Concerning
    Asif Kabir

    -Mark your answer as correct/useful.

  • Need to display negative amounts, amounts positive based on the value of the parameter.

    Hi all

    I have a requirement in rdf as follows:

    I have two or three lines of the SELECT statement. An amount column having both negative and and postivie values.

    Based on the value of the parameter I need to take these records.

    Say, if the value of the parameter = "Credit amount", then I have to choose the records, the amount column value is negative.

    If the value of the parameter = "Debit amounts" then I have to choose the records, which the column value is positive.

    If the parameter Value = "All", then I must take all records, including both positive and negative.

    Please suggest how to achieve this scenario.

    Thank you
    Abdul

    In your where clause to add the following
    and ((& paramètre = "Débit" et montant > 0) or)
    (& parameter = 'Crédit' and the amount<0)>
    (& parameter = 'All'))

    Hope that answers your question
    Sandeep Gandhi
    Independent consultant
    513-325-9026.

  • Can not stop the process after throwing the error in the OPS

    Dear Experts,

    I am oaf extension co page. I want to stop the process when getting the error after click on apply. I have written logic for error message

    if(vRowCount!= 0)

    {

    pageContext.writeDiagnostics (this, "vrowcoun t! 0 ", 1);

    throw new OAException ("xxThe number already exists", OAException.ERROR);

    }

    It throws the error as an exception, so that it continues the process. I would through error message and stop the process.

    Could someone explain to me how can I solve this problem?

    JDeveloper version: 10.1.3.3.0

    Thanks in advance.

    Here's the code extended co.

    package xxxpai.oracle.apps.ar.hz.components.address.webui;

    import java.sql. *;

    Import oracle.apps.ar.hz.components.address.webui.HzPuiAddressCreateUpdateCO;

    Import oracle.apps.fnd.common.MessageToken;

    Oracle.apps.fnd.framework import. *;

    Import oracle.apps.fnd.framework.server.OADBTransaction;

    Import oracle.apps.fnd.framework.webui.OADialogPage;

    Import oracle.apps.fnd.framework.webui.OAPageContext;

    Import oracle.apps.fnd.framework.webui.beans.OAWebBean;

    Import oracle.apps.fnd.framework.webui.beans.message.OAMessageLovInputBean;

    public class xxHzPuiAddressCreateUpdateCO extends HzPuiAddressCreateUpdateCO

    {

    public xxHzPuiAddressCreateUpdateCO()

    {

    }

    ' Public Sub processRequest (pageContext OAPageContext, OAWebBean webBean)

    {

    super.processRequest (pageContext, webBean);

    }

    ' Public Sub processFormRequest (pageContext OAPageContext, OAWebBean webBean)

    {

    If (PageContext.GetParameter ("Apply")! = null)

    {

    OAApplicationModule am2 = pageContext.getRootApplicationModule ();

    Connection con = pageContext.getApplicationModule (webBean) .getOADBTransaction () .getJdbcConnection ();

    pageContext.writeDiagnostics (this, "entered button1", 1);

    OAViewObject arvo = (OAViewObject) am2.findViewObject ("HzPuiPartySiteVO");

    String abtype = null;

    int vRowCount = 0;

    OAMessageLovInputBean vLOV = (OAMessageLovInputBean) webBean.findChildRecursive ("partySiteInformation0");

    If (vLOV! = null)

    {

    abtype = vLOV.getValue (pageContext) m:System.NET.SocketAddress.ToString ();

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("xxx view object is not null, abtype") .append (abtype) m:System.NET.SocketAddress.ToString (), 1);

    }

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("attribute is") .append (abtype).append("_").toString(), 1);

    Try

    {

    String s1 = (new StringBuilder()).append("").toString ().append("SELECT_no_active_plots_FROM_XXPAI_REF_PLOTS_CONTRCT_VW_where_ref_number_=").append (abtype);

    PreparedStatement vpreparedsatement = con.prepareStatement (s1);

    ResultSet vresultset = vpreparedsatement.executeQuery ();

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("Select is instruction") .append (s1) m:System.NET.SocketAddress.ToString (), 1);

    If (vresultset. Next())

    {

    vRowCount = vresultset.getInt (1);

    pageContext.writeDiagnostics (this, "vRowCount value is" + vRowCount, 1);

    vresultset. Close();

    vpreparedsatement. Close();

    }

    }

    catch (System.Exception e)

    {

    throw OAException.wrapperException (e);

    }

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("vRowCount xxxx") .append (vRowCount) m:System.NET.SocketAddress.ToString (), 1);

    If (vRowCount! = 0)

    {

    pageContext.writeDiagnostics (this, "vrowcoun t! 0 ", 1);

    throw new OAException ("xxThe number already exists", OAException.ERROR);

    }

    }

    super.processFormRequest (pageContext, webBean);

    }

    }

    Hi, I found the solution, I used chips by using the following code.

    MessageToken chips [] = {new MessageToken("ATTRIBUTE3","abtype")};

    OAException errorMessage = new OAException("AR","XX_CUSTOMER_PAGE",tokens,OAException.ERROR,null);

    pageContext.putDialogMessage (errorMessage);

    pageContext.writeDiagnostics(this,_(new_StringBuilder()).append ("xxx before you throw new OAException') .append (vRowCount) m:System.NET.SocketAddress.ToString (), 1);

    pageContext.writeDiagnostics (this, "error message is" + errorMessage, 1);

    pageContext.forwardImmediately ("OA.jsp?page=/oracle/apps/ar/cusstd/acctSite/webui/ArAcctSiteOverviewPG",

    NULL,

    OAWebBeanConstants.KEEP_MENU_CONTEXT,

    NULL,

    NULL,

    true,

    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);

    But, here, I want to update the record already exists, its getting eror

  • Value of the element after replacing the automated process of line does not?

    Greetings!

    I have a standard process of line automated filling in the fields on my current form after the header. Certain values that I need to replace by calculations from the data in other tables. If right after the line, I inserted another process for this. The results are actually stored in the database, but does not reach the customer. Why? Somehow it seems, once the line is completed, the html elements are not affected more during the processing of the page.

    So I resolved to set certain values with a call ajax after the page is loaded, but which actually is not the best way to do this.

    In coordination with the question: what is the difference between the headings of before and after? I looked in the documentation, but wrong in details. Myself I havn't found no difference between the two.

    I hope you can help me get clarity on who and how to implement the calculation as well as the shape of line.

    Thanks a lot and best regards,

    Tobi

    Hi TobiP,

    If your item has as the Type of Source database column, and I think you do since your using an automatic process of line Fetch, in the properties of the element, you'll find a region called 'Source '. If the Source value or expression is not null and the Source is set to "Always replace the value that exists in the session state", then the value of the source will be taken from what you put as the source and ignore session state values defined by other processes. Assign to this "only when there is zero current value in session state" to use the session as a source value.

    Kind regards

    Joni

  • default value of the parameter date problematic SYSDATE

    Hello

    I finally discovered why a report of problems, but have no solution to the problem.

    After the first run of the report and MORE (DESKTOP is no problem), I can open is no longer the LOV for any of the settings. The LOV icon is available, but nothing happens when you click it.

    Now, I know the problem is a specific condition based on a date parameter.

    The State is testing a date field against a setting that is based on NONE and has a default value of today. If I use effective dates in the setting I have no problem. If I use today or SYSDATE, then I can only run the report once. After that I can't choose any LOV in any of the settings. If I change the today or SYSDATE to a real, date is well again.

    The State of origin that was used was based on a calculated field due2 defined as: DECODE (:due,'TODAY',SYSDATE,TO_DATE(:due,'DD/MM/YY'))

    I tried to change the condition of:

    date field < = TO_DATE(:due,'dd/mm/yyyy')

    but also causing problems if I used SYSDATE or today in the parameter.

    I then tried to change the calculated field to due2:
    Decode (:due,'TODAY',to_date(sysdate,'dd/mm/yyyy'),to_date(:due,'DD/mm/YY'))
    but it does not work.

    Any suggestions?

    Thank you.
    Leah

    Hi Lea,.
    Try using 'CASES' instead of 'Decode' in your state:

    -case when: due = trunc (sysdate) then 'Today'
    of other end TO_DATE(:due,'DD/MM/YY')

    Maybe it will solve your problem.

    Note that this is problematic, because if the user enters an invalid date you will probably get an error.

    I could do this a bit different...
    1. create an optional parameter based on the date (so that I'll have the calendar)
    2 create a condition where the parameter is empty, it will use SYSDATE.
    for example:
    =: due
    OR (: due is null AND = trunc (sysdate))

    Tamir

  • order by clause based on the value of the parameter

    Hello

    I use reports 6i with db 10 g

    I need to create a report sorted in the order of four fields. There is a field selection parameter which should come first in the order by clause.

    IE the user has available to display the report in a sorted order selected

    Assume that the four fields are emp_id, name, dept_id desig.

    If the user selects dept_id, then the order by clause should be in order of dept_id emp_id, name, desig

    Please help solve this scenario.

    Thank you

    Hi Clement,.

    Use the query as follows:

    select column_name1, column_name1, ....
    from  table_name
    &order_by_clause
    

    Now in the trigger AFTER-PARAMETER-SHAPE has the order by clause below according to requirements:

    if :sort_column = dept_id then
    
      :order_by_clause := 'order by dept_id,emp_id,name,desig';
    
    else
    
      :order_by_clause := 'order by emp_id, dept_id, name,desig';
    
    end if;
     
    

    Here's sort_column setting user who will be selected by the user, provide the list of values for it.

    Hope this helps

    Best regards

    Arif Khadas

  • Value of the parameter is not displayed when moving from page of the dialog box

    Hello

    The question I face, is that I have a backup button with the logic in the PFR in which I call a page of dialogue that has an OK button. I give the floor to press ok another page. I need to capture a XXParty parameter that I put in the CO LIC key but is not displayed in the central of the PR of the other page that is called when you press the OK button. Probably I'm missing something very small. Any help would be greatly appreciated. Thank you


    SAVE BUTTON controller LIC... (Call the dialog box and the parameter)
    =============================================
    If (SaveButton! = null)
    {am.invokeMethod ("addNotes", params);  Transaction record.
    System.out.println ("save backwards");
    Try to build your own Page of dialogue here...
    String MainUrl = "OA.jsp?page=xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG & retainAM = Y;
    OAException descMesg = new OAException ("XXTSA", "XX_KSMS_SAVED_NOTES");
    OAException instrMesg = new OAException ("FND", "FND_CANCEL_ALERT");

    DialogPage OADialogPage = new OADialogPage (OAException.INFORMATION, descMesg, null, MainUrl, null);
    OK button to send back the values of the PartyID for CO of the ShipperOverview Page.
    System.out.println ("The party ID is" + left); It is displayed.
    dialogPage.setPostToCallingPage (true);
    java.util.Hashtable formParams = new java.util.Hashtable (1);
    formParams.put ("XXParty", out); Part definition ID in XXParty.
    dialogPage.setFormParameters (formParams);
    pageContext.redirectToDialogPage (dialogPage);


    Partial code in the process asks in the called ShipperOverview Page of the dialog box's OK button
    ====================================================
    super.processRequest (pageContext, webBean);
    Am = (OAApplicationModule) pageContext.getApplicationModule (webBean) OAApplicationModule;
    String XXId = pageContext.getParameter ("XXParty"); Try to recover part ID here of page of the dialog box.
    System.out.println ("The PartyID is" + XXId);

    Salvation;

    Try one of these two options.

    1. pass the value of the part directly in the URL & get it 2nd co:
    String MainUrl = 'OA.jsp?page=xxksms/oracle/apps/imc/ksms/webui/ShipperOverviewPG&retainAM=Y&XXParty="+Party;

    2. After selecting the button ok in the dialog box get the parameters in CO 1 himself then using URL forward, send them to CO 2

    If (SaveButton! = null)
    *{*
    * //Your code... *.
    *//..............*
    *//............*

    Default OAException = new OAException ("XXABCD", "XXABCD_GNO_DELETE_WARNING");
    DialogPage OADialogPage = new OADialogPage (OAException.WARNING, default, null, "","");
    dialogPage.setOkButtonItemName ("DeleteYesButton");
    dialogPage.setOkButtonToPost (true);
    dialogPage.setPostToCallingPage (true);
    String lineId = pageContext.getParameter ("lineId");
    Hashtable ht = new Hashtable();
    HT.put ("lineId", lineId);
    HT.put ('actor', actor);
    HT.put ("empId", empId);
    dialogPage.setFormParameters (ht);
    pageContext.redirectToDialogPage (dialogPage);

    *}*

    * combination else if (pageContext.getParameter ("DeleteYesButton")! = null) {*}
    String lineId = pageContext.getParameter ("lineId");
    String = pageContext.getParameter ("actor") actor;
    Var empId = pageContext.getParameter("empId");
    HashMap formParams = new HashMap (1);
    formParams.put ("lineId", lineId);
    formParams.put ('actor', actor);
    formParams.put ("empId", empId);
    pageContext.forwardImmediately ("OA.jsp?page=/xxx/oracle/apps/xxabcd/appraisal/webui/DrillDownPG",
    NULL, KEEP_MENU_CONTEXT,
    NULL, formParams, true,
    ADD_BREAD_CRUMB_NO);
    *}*

    --
    GsrC

  • ORA-06550 assign the value to the parameter

    Hi trying to assign the date quarter to a variable and get this error message, how can I assign a value to this parameter to PL/SQL:

    declare

    Neighborhood varchar (2);

    Start

    Select to_char (sysdate, 'YYYY-Q') in double shifts;

    dbms_output.put_line (Quarter);

    end;

    [Error] Execution (05:42): ORA-06550: line 2, column 42:

    PLS-00201: identifier 'vQUARTER' must be declared.

    ORA-06550: line 2, column 50:

    PL/SQL: ORA-00904: invalid identifier

    ORA-06550: line 2, column 3:

    PL/SQL: SQL statement ignored

    ORA-06550: line 3, column 26:

    PLS-00201: identifier 'vQUARTER' must be declared.

    ORA-06550: line 3, column 5:

    PL/SQL: Statement ignored

    your error message refers to vQUARTER, which is not listed in your code example.

    In addition, quarter is 2 characters such as defined in your code, but you ask to 6 characters in there, for example, 2016-1

Maybe you are looking for

  • Pavilion Notebook 15-ab216nz: bus controller driver series universal (usb) and network controller

    I'm looking for a (usb) universal serial bus controller driver for my Pavilion for computer laptop 15-ab216nz as well as the network controller

  • Problem of double event?

    Hello I need someone to help to understand and help solve this problem. I received a tree on the main panel of top-level, the tree and the Committee have a right-click event. The event, then run a menupopup and two menus are loaded on the main table.

  • Windows server 2008 r2 file permissions

    Hi all I'm working on a project where I need to dynamically create files. As these files are created dynamically, these are 'owned' by user created. The same user that I can read, write these files. But if I try to access these files to other user ac

  • Windows rescue team

    HelloI received a call from a woman attached to a team called Windows Rescue team. When I told her off the coast, she threatened to unplug my internet because I have a few worms and malware that infect other computers and they got my CSL of Windows c

  • Update error 652 silverlight (kb982926)

    I have NEED of HELP INSTALLATION UPDATE for SILVERLIGHT (kb982926) UNKNOWN ERROR SAID PLEASE HELP MY PC WILL NOT PLAY FLV.