Access to SQL issues for updating a numeric field

Hello world. I have a publishing page that updates some fields in a database. We just converted all access to SQL. I can update the page very well for the most part, except when I try to update the number of sales for a reason any. I don't know why. I think it has something to do with the SQL database, but I don't know what. The field is called Sales_Order_Number. When I try to enter a number in this field, I get a 500 internal server error. Here's my query I use to display information. on the action page, as well as the update of the table.

We have also updated our MX7 ColdFusion to 11. Not sure if this would make a difference or not otherwise. Can someone please? Thank you.

Andy

< CFQUERY NAME = "ShowContact" Datasource = "#application. DataSource #">"

SELECT the company Company_Name, Middle, First_Name, Last_Name.

ContactID, Contact_Num, ItemID, Item_Num, RFQID, RFQID_SPEC, Entry_Date

Of

(((Contacte LEFT JOIN RFQ_Numbers ON Contacts.ContactID = RFQ_Numbers.Contact_Num))

ON Contacts.Company = Companies.Company_Name LEFT JOIN companies)

LEFT JOIN RFQ_SPEC ON RFQ_Numbers.RFQID = RFQ_SPEC. RFQID_SPEC)

Where ItemID = #form. ItemID #.

<!- and Contacts.RFQ_Num > = 0->

ORDER BY ItemID

< / CFQUERY >

< cfset Form.RFQ_Expected_Value = ReReplace(Form.RFQ_Expected_Value,"[$,abcdefghijklmnopqrstuvwxyz]","","All") >

< cfquery Datasource = '#application. DataSource #">"

Update RFQ_SPEC

The value <!-< cfif IS Entry_Date ' "> Entry_Date = Null,". "

< cfelse > Entry_Date ='#form. Entry_Date #', < / cfif >->

M2M_Quote_Number = < cfif isDefined "(form. M2M_Quote_Number') and #form. NEQ M2M_Quote_Number #.

«"> ' #form.» M2M_Quote_Number #'.

< cfelse >

NULL,

< / cfif >

Rev ='#form. Rev #',

Standard_Part_Number ='#form. Standard_Part_Number #'.

Generic_Description ='#form. Generic_Description #'.

<!-< CFIF IsDefined ("form. GHz_Socket") > = GHz_Socket

#form. GHz_Socket #, < / CFIF >->

Received_By ='#form. Received_By_Initials #'.

Assigned_By ='#form. Assigned_By_Initials #'.

RFQ_Leader ='#form. RFQ_Leader_Initials #'.

Jsquad_Coordinator ='#form. Jsquad_Initials #'.

< cfif IS Complete_Date ' "> Complete_Date = Null,". "

< cfelse > Complete_Date =' #form.Complete_Date #', < / cfif >

Highest_Quantity_Request = < cfif isDefined "(form. Highest_Quantity_Request') and

#form. NEQ Highest_Quantity_Request #.

"" > "".

' #form. Highest_Quantity_Request #'.

< cfelse >

NULL,

< / cfif >

< cfif IS New_Custom_PO_Received_Date ' "> New_Custom_PO_Received_Date = Null,". "

< cfelse > New_Custom_PO_Received_Date ='#form. New_Custom_PO_Received_Date #', < / cfif >

Sales_Order_Number = < cfif isDefined "(form. Sales_Order_Number') and

#form. NEQ Sales_Order_Number #.

«"> ' #form.» Sales_Order_Number #'.

< cfelse >

NULL,

< / cfif >

< IsDefined ("form. CFIF Order_Request") > = Order_Request

#form. Order_Request #, < / CFIF >

Customer_Reason_Rejecting ='#form. Customer_Reason_Rejecting #'.

Budgetary_Quote ='#form. Budgetary_Quote #'.

RFQ_Expected_Value = < cfif isDefined "(form. RFQ_Expected_Value') and #form. NEQ RFQ_Expected_Value #.

«"> ' #form.» RFQ_Expected_Value #'.

< cfelse >

NULL,

< / cfif >

Possible_Status ='#form. Possible_Order #'.

<!-code as if a Sales Order Number is entered, then the State of sales field is registered as 'ordered '. If the Sales Order Number field is empty, then the field sales status will be entered regardless of the drop-down menu has been chosen item.

->

< cfif Sales_Order_Number IS not "" > Sales_Status = "ORDERED", "."

< cfelseif IS Sales_Order_Number ' "> Sales_Status ='#form." " Sales_Options #'.

< / cfif >

Additional_Comments ='#form. Additional_Comments #'.

End_Customer_Name ='#form. "End_Customer_Name #

Where ItemID = #form. ItemID #.

< / cfquery >

ALEXANDER,

Thanks, but what I discovered is that I had to change the entry for the word ordered in single quotes instead of double quotes, so the if statement now reads like this:

Sales_Status = "ordered."

Sales_Status ='#form. Sales_Options #'.

Thanks again.

Tags: ColdFusion

Similar Questions

  • When I accessed at "MS Check for updates ', error found: Code 8000FFFF, Windows Update has encountered an error that is known. How can I solve this problem?

    When I accessed at "MS Check for updates ', error found: Code 8000FFFF, Windows Update has encountered an error that is known. How can I solve this problem?

    http://support.Microsoft.com/kb/946414

    «"Error when you download updates using Windows Update or Microsoft Update: 8000FFFF"»

    Follow the information given in the above link to solve your problem.

    See you soon. Mick Murphy - Microsoft partner

  • Dynamically update a numeric field as the sum of the values of page element.

    Hello

    I am updating a numeric field on a page of the apex by summing the values of several components of the page. I have tried to follow this tutorial http://st-curriculum.oracle.com/obe/db/apex/r40/apexdynactions/apexdynactions_ll.htm, especially the part "create a Set value dynamic Action with the help of PL/SQL'.

    In the example of the tutorial, they return a value of page element P3_SAL multiplied by a multiplier determined by the case of another page. What I want to do is much more simple that I just want to add multiple values page element and then display them in a numeric field at the bottom of the page.

    so the code I tried to use based on the tutorial is in the tab: Home > Application Builder > Application 103 > Page 3 > Dynamic Action change > create / edit Action

    Set type: PL/SQL function body

    PL/SQL function body:

    BEGIN
    return: P3_ITEM1 + P3_ITEM2 + P3_ITEM3;
    END;

    Page items to submit: P3_ITEM1, P3_ITEM2, P3_ITEM3

    But it gives me an error that I need to declare identifiers, and yet it works if I use only one article and I can perform arithmetic.

    That is to say.

    BEGIN
    return: P3_ITEM1 + 1000;
    END;

    Any help would be appreciated.

    PL/SQL function body:

    BEGIN
    return: P3_ITEM1 + P3_ITEM2 + P3_ITEM3;
    END;

    Page items to submit: P3_ITEM1, P3_ITEM2, P3_ITEM3

    But it gives me an error that I need to declare identifiers, and yet it works if I use only one article and I can perform arithmetic.

    In your code, it lacks the ":" for articles P3_ITEM2 and P3_ITEM3.
    Try this:

    BEGIN
    return :P3_ITEM1+:P3_ITEM2+:P3_ITEM3;
    END;
    
  • Is there an API for updating location flex field Details?

    Hi all

    Y at - there any API to update wms locator flex field Details?

    Hello
    According to Oracle, we have below API for WMS Locator,

    -Create index API to create a new Web address (CREATE_LOCATOR)
    -Updated localization API for updating a landmark existing (UPDATE_LOCATOR)
    -Locator point Tie API to assign a component to a Web address (CREATE_LOC_ITEM_TIE)
    -Remove the Locator API to delete a guide existing (DELETE_LOCATOR)

    The APIs are part of the INV_LOC_WMS_PUB PL/SQL package. It is defined in
    $INV_TOP/patch/115/sql/INVLOCPS.pls.

    You can search * "Locator Maintenance Application Program Interface" * in Metalink or MFGAPI for more details.

    It may be useful

    Kind regards
    S.P DASH

  • convert the access &amp; quot; SQL &amp; quot; for SQL

    Sorry, I know this isn't a problem of DW, but I hope that someone out there who's good with SQL can help me quickly.

    I'm (obviously) not well versed in SQL, but I know that some access methods conform to the real SQL. I can't understand how to recreate a query that works in SQL access, so I can use it just in my Recordset.

    The "Access SQL" is:

    TURN Count (tblData.fldAnswerArray) AS CountOffldAnswerArray
    SELECT 'count' AS Expr1
    OF tblData
    WHERE (((DateValue ([fldTimeStamp])) between January 1, 2006 # and # 30 September 2006))
    GROUP BY "count".
    TblData.fldAnswerArray PIVOT;

    DW Recordset window doesn't like it, however (enter a SELECT statement from a call to a procedure...).

    With my data that looks like this:

    fldRecordID fldUserID fldQuestionID fldAnswerArray fldTimeStamp
    2086 141 134 0 06/09/2006-13:48:43
    750 65 80 1 8/23 / 2006 08:54:03
    2038 136 74 0 05/09/2006 12:51:21

    I'm trying to meet up with a record that shows how many fldAnswerArray are 0 and 1 are based on the provided date range (which will be dynamic).

    For example:

    COUNTIES 0 1 (column heads)
    ------------------------------------------
    Total 29 13 (record resulting)

    Feasible?

    The most compatible SQL, you cannot use PIVOT.
    To get the exact result you described, follow these steps:

    SELECT 'total' AS [account], AS COUNT (fldAnswerArray) - SUM (fldAnswerArray)
    [0], SUM (fldAnswerArray) AS [1]
    OF tblData
    WHERE [fldTimeStamp] BETWEEN ' 2006-01-01' AND ' 2006 - 09 - 30 23:59:59.997'

    There is no point by selecting the word "total" in the recordset object, however.
    You can add to your application. It would also be preferable if you I
    the County and the total sum of responses and answers Yes, then did the subtraction
    client to determine the number of no responses.

  • BlackBerry App issues for updating apps

    Hello

    When I opened my up it shows a popup available updated and if I click on update now it will redirect you to the world of BB and does nothing and if I open again the application even popup appears... And in the world of BB I checked in my world--> my Apps & games--> updates, showing that "you have no more updates to download" Please help me as I use app that can frequently its boring with this popup to update... and I even tried to delete app and the relocation of the BB world but no results (pop-up comes as new update available)

    Hello

    According to your description, it seems that the developer of the app has created an update, but it has not yet pushed by BBWorld. I recommend that contact you the developer of application for assistance because they are the ones who control this process. You should be able to find the contact information for them in BBWorld.

    Good luck!

  • How Adobe Reader plugin Access database SQL?

    Hello

    I want to create a plugin for Reader version 9 and higher. The plugin must Access the SQL database to retrieve information. This information is displayed to the user in the form of a list.

    The user is then asked to select an element in the list. The plugin accesses the SQL database for the information based on the data selected by the user.

    I looked in the Adobe forum, who said that ADBC is frowned upon in Acrobat 9 and is completely deleted from Acrobat X. And that Adobe Reader requires Adobe LiveCycle Reader Extensions SS3 for connection to the base. All this is related to the presentation of the form to the server. My requirement does not include the shape or form data. I just want to access SQL database from a reader plugin.

    Is this possible?

    Can someone provide me with any documentation explaining how Reader plugin can interact with the SQL Server database?

    Thank you

    Technically, there is nothing for Adobe Document. If your plug-in wants to communicate with a server for any purpose, it can do so using whatever methods API are appropriate, and what protocols applications server; It's nothing specific to the treatment of the plug-in.

    The Acrobat SDK kit is available where you the form of plug-in interface. I don't know how to follow these steps.

    You will need to describe your proposed use to Adobe when you ask for a license to create plug-ins Reader. This is not automatic and can easily be denied. So apply early.  Of course, you are free to write plug-ins for Acrobat such unlicensed.

  • Microsoft has never issued an update for the Win7 disk defragment utility?

    Microsoft has never issued an update for the Win7 disk defragment utility?  Thank you.

    Original title: Win7 updates

    To my knowledge, the Defragmenter from Windows 7 has not been maintained since the liberation.  You have a problem with it?

  • CAN´t access my files on creative cloud. "Temporarily unavailable page. We will be back soon. "' We are working quickly to resolve the problem and apologize for the delay." Check back later or visit our website for updates of status. In addition, you can

    Hello

    Since a few days I tried to access my files on web creative cloud without success. I ve had this message only:

    "Temporarily unavailable page. We will be back soon. »
    "We are working quickly to resolve the problem and apologize for the delay."
    Check back later or visit our website for updates of status.
    In addition, you can get help in forums of the creative cloud.
    Thank you for understanding! »

    (I used Google Translate)

    Help someone?

    Not sure if you've managed to solve this problem yet or not. I do not no what are the contents of your proxy script, but it's something that you (or your company) you have to solve.

  • I need issue of SQL/PLSQL for practice

    Hi all

    I need to question of SQL/PLSQL for practice; could everything on send me the URL.

    I need only the PDF file.

    Thank you
    Gregory

    Here is the link for the link of PL/SQL oracle

    http://www.Oracle.com/pls/db111/portal.portal_db?selected=5&frame=

    IN the section of SQL and PL/SQL language, there is the language Pl/SQL.. PDF reference .you can download... its preety good to start.

  • PL SQL program unit does not compile with cursor for UPDATE NOWAIT

    All,

    I am trying to use a cursor for UPDATE NOWAIT to avoid hung sessions on the shape of the front end.

    I am using a syntax such as:

    CURSOR my_cur (p_val)
    IS
    SELECT 1
    FROM my_table
    WHERE my_col = p_val
    FOR UPDATE NOWAIT.

    However, later in the procedure, when I try to refer to the cursor with the following syntax:
    (after opening/get the cursor...)

    UPDATE my_table
    SET my_col2 =: MY_BLOCK. FOO
    WHERE CURRENT OF my_cur;

    I get the following compilation error:
    Error 404 on line 140, column 30
    cursor 'MY_CUR' must be declared with to use with the CURRENT UPDATES OF

    The strange thing is that if I remove the "NOWAIT" keyword, the program unit compiles.

    If nothing else has noticed this? No workaround or patch solution? Is this a known bug?

    Thank you very much
    -Chris

    Try one

    FOR UPDATE OF ID NOWAIT;
    

    where ID is the name of a column in the table.

  • After the removal of the malware, I can't check for updates or download files of definition of

    I bought a PC with Windows XP Professional. He has been infected with 5 different Trojan horses, a backdoor and other malicious software. I cleaned the computer but found that I can't download Security Essentials definition updates or even can I search for updates by using Windows Update.  It gives an error saying that there is a problem with the network connection. Otherwise, I can access internet and download, and the only remaining issue was when Java gave me a prompt to download a update of the skipped upward same error box. While the computer has been infected, it actually blocked access to the internet and I couldn't access it at all so I think that the malware must have corrupted one or several files somewhere along the line. Unfortunately, I don't have the original XP system disk to perform an upgrade on the spot to restore the files. If anyone has ideas on how I could fix this problem before reloading the operating system, it would be much appreciated. Thank you.

    I will be reload the OS so I have my answer to this question. Please, if anyone wants to add anything don't hesitate not, but if you insist on patronising pass to the next thread to exercise your "superiority". Thank you.

    You can trust in the security of any computer used until you have formatted the HARD drive & then did a clean install of Windows. Period, end of story.

    Follow the instructions in this post of mine in another forum (to-the-letter & in order!) to restore your computer to a State safe & functional: http://aumha.net/viewtopic.php?f=62&t=44636

    If you need additional assistance with the clean install, please start a new thread in this forum: http://answers.microsoft.com/en-us/windows/forum/windows_xp-system

    Note: The computer must not be connected to the internet or local area network (i.e. other computers) in its current state. All personal data (e.g., banking online & passwords credit card) must be considered at risk, if not already compromised.

    Wish I had better news for you.  Good luck!

  • How to find the primary key columns in the tables in MS Access using SQL queries

    How to find the primary key columns in the tables in MS Access using SQL queries

    Hello

    This is the forum for Windows Vista programs related issues.

    For better assistance, please try instead the Forums in SQL Server .

    Thank you! Vincenzo Di Russo - Microsoft MVP Windows Internet Explorer, Windows Desktop Experience & security - since 2003. ~ ~ ~ My MVP profile: https://mvp.support.microsoft.com/profile/Vincenzo

  • Reports on problems and Solutions window opens at startup even if a Check for Updates says that everything is up to date.

    How can I stop this window open whenever I start my computer?  When I check, all updates have been applied.

    Download updates for Windows

    There was a problem with Windows , which leads to stop working correctly.

    Your computer may run out of updates that can help improve its stability and security.

    Go online to search for and install the Important updates and recommended.

    1. Click here to access the Windows Update Web site online

    2. In the left pane, click check for updates. If updates are found, clickview available updates.

    3. Select all important updates and then click install. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

      Note
      If you have activated the automatic update, you can not see important updates listed. If this is the case, the updates have already been downloaded to your computer.

    Hi Barbara,

    1 when was the last time it was working fine?

    2. did you of recent changes on the computer?

    It is possible that some third-party programs installed on the computer is triggering problems and solution window to pop-up at every reboot.

    I suggest that you perform a clean boot and check.

    To help resolve the error and other messages, you can start Windows Vista or Windows 7 by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    See the link below to learn more about how to clean boot.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

    Reset the computer to start as usual

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    (a) click Start, type msconfig in the search box and press ENTER.

    (b) If you are prompted for an administrator password or for confirmation, type your password or click on continue.

    (c) under the general tab, click the Normal startup option, and then click OK.

    (d) when you are prompted to restart the computer, click on restart.

    If the previous step fails, then check the event viewer for the cause of the issue and after return with details.

    What are the information contained in the logs of the event (Event Viewer)?

    http://Windows.Microsoft.com/en-us/Windows-Vista/what-information-appears-in-event-logs-Event-Viewer

    I hope this helps!

    Halima S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • A clean installation of Win7 Pro 64 Bit OS SP1 maintains the search for updates. (Error 0 x 80070005 windows update)

    Hi, I recently formatted my HD and clean installed with an older version of Win7 Pro SP1 x 64 OS, I more than a week now looking online for help, but nothing is. Windows Update appears to hang "search for updates". I don't presume that my Pc is virus free because of a clean install, so I'm not sure that Microsoft stopped providing updates for older versions of windows or not. I also tried to upgrade to OS 64-bit win10 everything works fine with the installation until it reaches "search for updates" which also hangs and does not download updates, I tried Microsoft stand-alone install also but who doesn't either. I also tried running "Microsoft Genuine Diagnostics Tool" results are lower. I also tried to reset the Windows Update components by running the Fixit on the Microsoft Web site and found a windows "0x80070005" error code also known as "access denied." Something to do with registry permissions I think. A boot minimum, then run the Microsoft fixit would fix the issue im having with windows update.

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 0
    Validation caching Code online: n/a, hr = 0xc004f012
    Windows product key: *-* - J8D7P - XQJJ2-GPDD4
    The Windows Product Key hash: xgsndMkYdJsYmUng0qIJ/thx + HI =
    Windows product ID: 00371-868-0000007-85580
    Windows product ID type: 1
    Windows license Type: customer KMS
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {D44961EE-568B-4FC6-B51E-981DBB1CD854} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_gdr.130828 - 1532
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program may Explorer\iexplore.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->
    [File mismatch: C:\Windows\system32\wat\watadminsvc.exe[Hr = 0 x 80070003]
    [File mismatch: C:\Windows\system32\wat\npwatweb.dll[Hr = 0 x 80070003]
    [File mismatch: C:\Windows\system32\wat\watux.exe[Hr = 0 x 80070003]
    [File mismatch: C:\Windows\system32\wat\watweb.dll[Hr = 0 x 80070003]

    Other data-->
    Office details: {D44961EE-568B-4FC6-B51E-981DBB1CD854}1.9.0027.06.1.7601.2.00010100.1.0.048x 64*-*-*-*-GPDD400371-868-0000007-855801S-1-5-21-1087864644-422261814-3637204619Sony Corporation,VGN-NW20ZF_SAmerican Megatrends Inc.. R1120Y4 20090820000000.000000 + 00078273707018400F808090409GMT Standard Time(GMT+00:00)03SonyVAIO109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, channel OEM_COA_SLP
    Activation ID: da22eadd-46dc-4056-a287-f5041c852470
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00186-070-609068-02-2057-7601.0000-1132016
    Installation ID: 004325707365832462776320612120051821367526898801433780
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    The machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: 8HQ4G
    License status: licensed
    Remaining Windows rearm count: 3
    Trust time: 22/04/2016-15:11:40

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: n/a
    Beyond: 0 x 0000000000000000
    Event time stamp: n/a
    ActiveX: Not registered - 0 x 80040154
    The admin service: not registered - 0 x 80040154
    Output beyond bitmask:

    --> HWID data
    Current HWID of Hash: MgAAAAEAAgABAAEAAAACAAAAAwABAAEA6GHQDahwMsF6f/L7fFhwzM5H2I9StVgwRso =

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes
    Windows marker version: 0 x 20001
    OEMID and OEMTableID consistent: Yes
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    APIC Sony VAIO
    Sony VAIO FACP
    HPET Sony VAIO
    MCFG Sony VAIO
    SLIC Sony VAIO
    SSDT Sony VAIO
    SSDT Sony VAIO

    Thanks for reading, I hope that I can help.

    That's what I mean. I have the same problem with 64-bit pro, will not update.

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 0
    Validation caching Code online: n/a, hr = 0xc004f012
    Windows product key: *-* - RJWKM - Y6PV6-CR7RM
    The Windows Product Key hash: SRZsdIYS6CpEsZWlRj0xAK + lu7Y =
    Windows product ID: 00371-OEM-9306901-72473
    Windows product ID type: 8
    Windows license type: COA SLP
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {2CED0979-9400-46F3-9CD9-FCF1FA92D0EE} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0 x 00000009
    Build lab: 7601.win7sp1_rtm.101119 - 1850
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->
    [File mismatch: C:\Windows\system32\wat\watadminsvc.exe[Hr = 0 x 80070003]
    [File mismatch: C:\Windows\system32\wat\npwatweb.dll[Hr = 0 x 80070003]
    [File mismatch: C:\Windows\system32\wat\watux.exe[Hr = 0 x 80070003]
    [File mismatch: C:\Windows\system32\wat\watweb.dll[Hr = 0 x 80070003]

    Other data-->
    Office details: {2CED0979-9400-46F3-9CD9-FCF1FA92D0EE}1.9.0027.06.1.7601.2.00010100.1.0.048x 64*-*-*-*-CR7RM00371-OEM-9306901-724738S-1-5-21-2259824567-3186212045-3302517234Hewlett-PackardHP Compaq 6000 Pro MT PCHewlett-Packard786 2 v01.0920090825000000.000000 + 00019B83207018400F804090409Mountain Standard Time(GMT-07:00)03HPQOEMSLIC PCB109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, channel OEM_COA_SLP
    Activation ID: da22eadd-46dc-4056-a287-f5041c852470
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00186-069-072473-02-1033-7601.0000-1132016
    Installation ID: 021651786504077183699192165165181901040413365080891641
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    The machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: CR7RM
    License status: licensed
    Remaining Windows rearm count: 3
    Time to trust: 23/04/2016 08:27:41

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: n/a
    Beyond: 0 x 0000000000000000
    Event time stamp: n/a
    ActiveX: Not registered - 0 x 80040154
    The admin service: not registered - 0 x 80040154
    Output beyond bitmask:

    --> HWID data
    Current HWID of Hash: MgAAAAEABAABAAIAAAABAAAAAQABAAEA6GHyAox4yOsGGhQD3MyGCYCfIhU801jNRso =

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes
    Windows marker version: 0 x 20001
    OEMID and OEMTableID consistent: Yes
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    APIC COMPAQ EAGLLAKE
    FACP COMPAQ EAGLLAKE
    HPET COMPAQ EAGLLAKE
    MCFG COMPAQ EAGLLAKE
    ASF! COMPAQ EAGLLAKE
    TCPA COMPAQ EAGLLAKE
    SLIC SLIC PCB HPQOEM

Maybe you are looking for

  • How recover/restore a mail account

    Accidentally deleted an e-mail account. The account is a Verizon/Yahoo account. Need details on that directory (ies) to recover. Thank you.

  • Re-create the default factory system image...

    Hello My company has HP computer we get from our suppliers. It is labelled "Windows 7"on the box." PC currently has Windows XP operating system. We believe that the seller bought this computer under Win 7 and then he downgraded to XP in order to put

  • Error starting Satellite Pro C855 1TC - backup does not work

    Hello My laptop went curput 2 days after I made a return to the top.Came up with an error code: oxc00000fI tried to use the backup disc, but ask to delete everything on a hard drive which I did notI have all my photos there, etc. I tried all other op

  • Satellite M115-S3094 - white stripes on matrix

    Did you ever have any white stripes on your matrix? I'have you have this problem... I don't know what to do? Please help me...

  • My computer has a HDMI "in" port?

    I'm in College and just brought my xbox and a new laptop (product name: HP ENVY TS m6 Sleekbook) and I was trying to connect via a cable HDMI is anyway I could use on my laptop screen to play my xbox360?