Updating HTML code dynamically and calling a URL

Hi All,
I have the following requirement -
Consider the below HTML code:
In the above code, the URL >>
https://secure3.i-doxs.net/nytimes/BillaccessView.asp has to be called and this should PICK UP the values from the above code - For example: Client and ABCCO. In other words, the page that is going to be displayed by specifying the URL should use the values that are dynamically generated and specified in the above code. 
Please let me know if you have any inputs on how to achieve this.
Best Regards,
Rajeev

Hi there ,
i have a solution for your problem as follows :
Do not mention the action in form tag ; do it as follows .
if you have a submit button then use following code in onclick even of submit as onClick="do_this()"  else use onsubmit="do_this()" in <form > tag .
Include the following <script> </script> in Head element .
the JS function do_this should be as follows :
<Script language="JavaScript">
function do_this()
   var w_ele;
   w_ele = document.getElementById('CLIENT') ;
   w_client = w_ele.value ; // this will give u the name entered in client text field ie. ABCCO in this case.
var w_url = "https://secure3.i-doxs.net/nytimes/BillaccessView.asp?w_clien="+ w_client ;
  w_form = document.getElementByID('FRM_MAIN');
  w_form.action = w_url ;
/*this will call the url as "https://secure3.i-doxs.net/nytimes/BillaccessView.asp?w_client=ABCCO" */
</script>
NOTE :
you need to define ID property for form and text element . currently you have used juse name property .
in the w_url , before' ? ' the name of the parameter in which you want to capture the dynamic client value in target should appear ( i have used w_client just as an example)
so modifications needed in ur HTML as :
<FORM name="frmMain"  id="FRM_MAIN" method="POST">
and
<TD> First Name: </TD><TD><INPUT type="text" id="CLIENT" name="Client" value="ABCCO" size="50" maxlength="32"></TD>
I am sure this will solve ur problem as i have done the same thing. if not then feel free to mail me at [email protected]
do reward me points if found useful.

Similar Messages

  • How to update Tr code FB02   and update the field reference key1 (bseg-xref

    Can any body
    help me how to update   Tr code   fb02
    and  update the field  reference  key1 (bseg-xref1)  with the interest amount
    calculated.
    Below i have  written My  program  flow logic
    The program should read the open items i.e debit items in the customer account,
    Based on the  invoice date and customer payment terms  calculate the due date and then the  interest should be  calculated on that item based on the due date.
    Use the  transaction  fb02  and update the field  reference  key 1 (BSEG-xref1)
    with the interest amount calculated
    Only  consider  customers whose  interest indicator  knb1-vzskz = 'vk'.
    Interest is to be  calculated for every  30  days
    at the rate of  1% .please see example below.
    Document date is 01.01.2007
    for amount  1000SGD   payment  term  7  days
    It becomes  due  on  08.01.2007
    until  06.02.2007 you should not  consider  for calculation of interest
    SGD  on   7.02.2007 run you can consider this  item for interest calculation

    Hi Robert,
    Thanks for answering.
    I am looking at Ref 2 should flow automatically to clearing document from the accounitng document for billing.
    Ex: Billing document is created and accounted. Ref 2 is AB
    Now when receipt is accounted for this biling document this AB should flow automatically to Ref 2 field.
    Thanks
    NNS.

  • Mappimg and updation in bdc 'session ' and 'call transaction' methods

    What will happen if error record comes while updating in session method and call transaction method.

    Hi,
    If any error comes in Session method U can find that error in SM35->Log
    and updste again database for those enteries
    In cll transaction Method U have to handel error manually . for this u have to use structure BDCMSGCOL and Table T100.
    Regards
    Gaurav

  • Error while updating data using session and call transaction method

    Hi all,
        i have to update data using MM01 transaction from flat file to database.i have used both session method and call transaction method to do that.in both the methods data has been transferred from internal tables to screens but while updating the data that is by clicking the ok-code at the end of the transaction iam getting a dialogue box stating
       SAP EXPRESS DOCUMENT "UPDATE WAS TERMINATED" RECEIVED FROM AUTHOR "SAP".
      please tell whether the problem lies and solution for that.
                                       thanks and regards.

    hi,
    check your recording.check whether u saved your material no in recording or not.
    once again record the transacton mm01.
           MATNR LIKE RMMG1-MATNR,
           MBRSH LIKE RMMG1-MBRSH,
           MTART LIKE RMMG1-MTART,
           MAKTX LIKE MAKT-MAKTX,
           MEINS LIKE MARA-MEINS,
           MATKL LIKE MARA-MATKL,
           BISMT LIKE MARA-BISMT,
           EXTWG LIKE MARA-EXTWG,
    these are the fields which u have to take in internal table.
    this is the record which i took in my flatfile.use filetype as asc and hasfieldseperator as 'X'.
    SUDHU-6     R     ROH     MATSUDHU     "     001     7890     AA
    i did the same.but i didn't get any error.

  • Creating parameters dynamically and calling a procedure but strange issue

    Okay I have the following program that is calling a procedure(data_compare_utility)[pasted below] and data_compare_table_setup table definition and data(isert scripts) are pasted below :
    DECLARE
    --FP_OLD_TABLE VARCHAR2(200);
    --FP_NEW_TABLE VARCHAR2(200);
    --FP_DATA_COMPARE_ID NUMBER(10) := 1;
    --FP_RESTRICTION_CLAUSE VARCHAR2(500) := 'WHERE W_INSERT_DT >= TO_DATE(''01/JAN/2012'',''DD/MON/YYYY'') OR W_UPDATE_DT >= TO_DATE(''01/JAN/2012'',''DD/MON/YYYY'')';
    --FP_RESTRICTION_CLAUSE_4_INS VARCHAR2(500) := 'WHERE W_INSERT_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''') OR W_UPDATE_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''')';
    cursor c_data_compare_table_setup
    is
    select table_name, old_schema_name, new_schema_name, data_compare_id, restriction_clause, restriction_clause_ins from DATA_COMPARE_TABLE_SETUP;
    r_of_data_compare_table_setup c_data_compare_table_setup%rowtype;
    Lv_args_4_data_compare_utility varchar2(500);
    BEGIN
    --FP_OLD_TABLE := 'BIAPPS_11.RAHUL_EMPLOYEES';
    --FP_NEW_TABLE := 'RAHULKALRA.RAHUL_EMPLOYEES';
    open c_data_compare_table_setup;
    Loop
    fetch c_data_compare_table_setup into r_of_data_compare_table_setup;
    exit when c_data_compare_table_setup%NOTFOUND;
    --exec RAHULKALRA.P_COMPARE_DATA_UTILITY
    Lv_args_4_data_compare_utility := ''''||r_of_data_compare_table_setup.OLD_SCHEMA_NAME||'.'||r_of_data_compare_table_setup.TABLE_NAME||''','''||r_of_data_compare_table_setup.NEW_SCHEMA_NAME||'.'||r_of_data_compare_table_setup.TABLE_NAME||''','||r_of_data_compare_table_setup.DATA_COMPARE_ID||','''||r_of_data_compare_table_setup.RESTRICTION_CLAUSE||''','''||r_of_data_compare_table_setup.RESTRICTION_CLAUSE_INS||'''';
    P_COMPARE_DATA_UTILITY(Lv_args_4_data_compare_utility);
    commit;
    End Loop;
    dbms_output.put_line('rahul');
    dbms_output.put_line(''''||r_of_data_compare_table_setup.OLD_SCHEMA_NAME||'.'||r_of_data_compare_table_setup.TABLE_NAME||''','''||r_of_data_compare_table_setup.NEW_SCHEMA_NAME||'.'||r_of_data_compare_table_setup.TABLE_NAME||''','||r_of_data_compare_table_setup.DATA_COMPARE_ID||','''||r_of_data_compare_table_setup.RESTRICTION_CLAUSE||''','''||r_of_data_compare_table_setup.RESTRICTION_CLAUSE_INS||'''');
    --P_COMPARE_DATA_UTILITY('BIAPPS_11.RAHUL_EMPLOYEES','RAHULKALRA.RAHUL_EMPLOYEES',1,'WHERE W_INSERT_DT >= TO_DATE(''01/JAN/2012'',''DD/MON/YYYY'') OR W_UPDATE_DT >= TO_DATE(''01/JAN/2012'',''DD/MON/YYYY'')','WHERE W_INSERT_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''') OR W_UPDATE_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''')');
    --P_COMPARE_DATA_UTILITY('BIAPPS_11.RAHUL_EMPLOYEES','RAHULKALRA.RAHUL_EMPLOYEES',1,'WHERE W_INSERT_DT >= TO_DATE(''01/JAN/2012'',''DD/MON/YYYY'') OR W_UPDATE_DT >= TO_DATE(''01/JAN/2012'',''DD/MON/YYYY'')','WHERE W_INSERT_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''') OR W_UPDATE_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''')');
    close c_data_compare_table_setup;
    END;
    Procedure : compare_data_utility:
    CREATE OR REPLACE procedure RAHULKALRA.p_compare_data_utility(fp1_old_table in varchar2, fp2_new_table in varchar2, fp3_data_compare_id in number, fp4_restriction_clause in varchar2, fp5_recrtiction_clause_4_ins in varchar2)
    as
    Lv_common_column_names varchar2(2000);
    Lv_primary_column_name varchar2(50);
    Lv_insert_data_compare_log varchar2(2000);
    --Lv_counter number(10);
    Lv_row_id_for_data_compare_log number(10);
    Lv_old_table_record_count number(10);
    Lv_old_table_rec_cnt_query varchar2(200);
    Lv_new_table_record_count number(10);
    Lv_new_table_rec_cnt_query varchar2(200);
    begin
    select max(row_id) into Lv_row_id_for_data_compare_log from data_compare_log;
    Lv_old_table_rec_cnt_query := 'Select count(*) from '||fp1_old_table||' '||fp4_restriction_clause;
    dbms_output.put_line(Lv_old_table_rec_cnt_query);
    execute immediate Lv_old_table_rec_cnt_query into Lv_old_table_record_count;
    Lv_new_table_rec_cnt_query := 'Select count(*) from '||fp2_new_table||' '||fp4_restriction_clause;
    execute immediate Lv_new_table_rec_cnt_query into Lv_new_table_record_count;
    dbms_output.put_line(fp5_recrtiction_clause_4_ins);
    if (Lv_row_id_for_data_compare_log is null)
    then
    Lv_row_id_for_data_compare_log := 1;
    else
    Lv_row_id_for_data_compare_log := Lv_row_id_for_data_compare_log + 1;
    end if;
    Lv_insert_data_compare_log := 'insert into data_compare_log values('||Lv_row_id_for_data_compare_log||',''comparing data for '||fp1_old_table||' and '||fp2_new_table||''','''||fp1_old_table||''','''||fp2_new_table||''',TO_DATE('''||to_char(sysdate,'DD-MON-YY HH24:MI:SS')||''',''DD-MON-YY HH24:MI:SS''),'||fp3_data_compare_id||','||Lv_old_table_record_count||','''||'Select count(*) from '||fp1_old_table||' '||fp5_recrtiction_clause_4_ins||''','||Lv_new_table_record_count||','''||'Select count(*) from '||fp2_new_table||' '||fp5_recrtiction_clause_4_ins||''')';
    dbms_output.put_line(Lv_insert_data_compare_log);
    execute immediate Lv_insert_data_compare_log;
    commit;
    -- tested : dbms_output.put_line(Lv_insert_data_compare_log);
    Lv_common_column_names := f_fetch_common_column_names(fp1_old_table,fp2_new_table,fp3_data_compare_id);
    -- tested : dbms_output.put_line(Lv_common_column_names);
    Lv_primary_column_name := f_extract_pkey_column_names(fp1_old_table, fp2_new_table);
    dbms_output.put_line(Lv_primary_column_name);
    p_compare_data(fp1_old_table,fp2_new_table,Lv_common_column_names,Lv_primary_column_name,fp4_restriction_clause,fp3_data_compare_id);
    end;
    CREATE TABLE RAHULKALRA.DATA_COMPARE_TABLE_SETUP
    TABLE_ID NUMBER(10),
    TABLE_NAME VARCHAR2(100 BYTE),
    OLD_SCHEMA_NAME VARCHAR2(100 BYTE),
    NEW_SCHEMA_NAME VARCHAR2(100 BYTE),
    RESTRICTION_CLAUSE VARCHAR2(500 BYTE),
    RESTRICTION_CLAUSE_INS VARCHAR2(500 BYTE),
    DATA_COMPARE_ID NUMBER(10)
    Insert into DATA_COMPARE_TABLE_SETUP
    (TABLE_NAME, OLD_SCHEMA_NAME, NEW_SCHEMA_NAME, DATA_COMPARE_ID, RESTRICTION_CLAUSE, RESTRICTION_CLAUSE_INS)
    Values
    ('W_CHNL_TYPE_D', 'BIAPPS_11', 'RAHULKALRA', 1, 'WHERE W_INSERT_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''') OR W_UPDATE_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''')', 'WHERE W_INSERT_DT >= TO_DATE(''''''''01/JAN/2012'''''''',''''''''DD/MON/YYYY'''''''') OR W_UPDATE_DT >= TO_DATE(''''''''01/JAN/2012'''''''',''''''''DD/MON/YYYY'''''''')');
    Insert into DATA_COMPARE_TABLE_SETUP
    (TABLE_NAME, OLD_SCHEMA_NAME, NEW_SCHEMA_NAME, DATA_COMPARE_ID, RESTRICTION_CLAUSE, RESTRICTION_CLAUSE_INS)
    Values
    ('RAHUL_EMPLOYEES', 'BIAPPS_11', 'RAHULKALRA', 1, 'WHERE W_INSERT_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''') OR W_UPDATE_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''')', 'WHERE W_INSERT_DT >= TO_DATE(''''''''01/JAN/2012'''''''',''''''''DD/MON/YYYY'''''''') OR W_UPDATE_DT >= TO_DATE(''''''''01/JAN/2012'''''''',''''''''DD/MON/YYYY'''''''')');
    I am facing the following error for this command when I call P_compre_data_utility procedure from my anonymous block:
    P_COMPARE_DATA_UTILITY(Lv_args_4_data_compare_utility); -- the error is pasted below
    if I do a dbms_output.put_line(Lv_args_4_data_compare_utility) and then copy paste its output and call P_COMPARE_DATA_UTILITY, the procedure is getting executed, here is that command :
    P_COMPARE_DATA_UTILITY('BIAPPS_11.RAHUL_EMPLOYEES','RAHULKALRA.RAHUL_EMPLOYEES',1,'WHERE W_INSERT_DT >= TO_DATE(''01/JAN/2012'',''DD/MON/YYYY'') OR W_UPDATE_DT >= TO_DATE(''01/JAN/2012'',''DD/MON/YYYY'')','WHERE W_INSERT_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''') OR W_UPDATE_DT >= TO_DATE(''''01/JAN/2012'''',''''DD/MON/YYYY'''')');
    Error:
    ORA-06550: line 27, column 7:
    PLS-00306: wrong number or types of arguments in call to 'P_COMPARE_DATA_UTILITY'
    ORA-06550: line 27, column 7:
    PL/SQL: Statement ignored
    Question : just want to know whats wrong with : P_COMPARE_DATA_UTILITY(Lv_args_4_data_compare_utility);
    please help me.
    Regards
    Rahul

    Mac_Freak_Rahul wrote:
    Hi All,
    I am really sorry, my head is so aching since I am not a regular plsql coder and to save my life I need to write this code for data comparison between 2 tables .. further sorry about calling p_data_compare utility stupidly : P_COMPARE_DATA_UTILITY(Lv_args_4_data_compare_utility);
    I am calling it now using :
    execute immediate 'exec P_COMPARE_DATA_UTILITY('||Lv_args_4_data_compare_utility||')';If you are sure the call works then, exec would not work since it is a SQLPLUS command.
    try
    execute immediate 'BEGIN P_COMPARE_DATA_UTILITY(''||Lv_args_4_data_compare_utility||''); END;';
    PS: I can manually give table names to my utility , just need 60 tables to compare but would be great if I can work it out this eay.
    2) I can sound very stupid since my head is aching I am not a regular plsql coder but from now on I would be one, please helpJust for your sake, to Compare 60 tables (Supposing you just want to verify count of records), you are writing an entire procedure; You might have completed this activity by now doing the manual way. By taking this way, you are investing time to generate a correct code (as you just mentioned not being a regular plsql developer) you are stuck with some un-identifiable issues.
    As an alternate way, I would suggest you to export the data, after ordering, into a spreadsheet and then validate. Also, since it looks like you are comparing the data in the same database between schemas, you can also use the SQL Navigators Data Compare utility and there are many more readily available in market.
    I would wish you the best if you still prefer taking the approach.

  • Windows Update Error Code 80070663 and 64C

    I am running x64 Vista on an HP Pavillion dv9000 laptop.
    I was cleaning up my desktop when I saw a Word doc I didn't recognize.  I tried to open it and got a Windows Installer window saying "Preparing to Install".  I have an activated, legal version of Microsoft Office 2007.  This is the first time
    I've seen that window pop up.  I let it try to install whatever it's trying to install and it comes up with an error: "This update package could not be opened.  Verify that the update package exists and that you can access it, or contact the application
    vendor to verify that this is a valid Windows Installer update package."  I am the administrator on this computer.  I have full access to all files.
    This prompts me to start Windows Update to see if that will fix it.  That's where the error codes come in.  The windows updates: "Microsoft .NET Framework 3.5 Family Update (KB959209) x64" and "Security Update for Microsoft Visual C++ 2008 Service
    Pack 1 Redistributable Package (KB2538243) yielded the error codes 80070663 and 64C.
    I noticed when I press Start, the power button occasionally says "Installs Updates then Shuts Down".  I didn't click it because I had work open I needed to work on later.  Then when I left the computer and came back, the power button didn't have
    the shield on it that said "Installs Updates then Shuts Down".  I shut down my computer anyway and it didn't install any updates, and this is where I'm at.  I've retried installing the updates via Windows Update and it still shows the original error
    codes.
    I've researched this error and came across Microsoft Fix It, downloaded as: "MicrosoftFixit.wu.LB.137269729445221149.2.1".  I've run it and it did not solve the problem.
    Please help,
    Jake

    Jake, did you ever find a solution to your problem? I'm afraid I can't help if you didn't, but I'm experiencing the same problem.
    I also run Vista and had no problems until recently when I had an installation failure on 12th April 2014 for the same two updates:
    Microsoft .NET Framework 3.5 Family Update (KB959209) x86 - (Installation status: Failed. Error details: Code 80070663)
    Security Update for Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package (KB2538243) - (Installation status: Failed. Error details: Code 64C)
    I don't know whether it's these updates that caused the problem or an earlier update that has stopped these updates been installed.  The PC is generally working but Word & Excel don't load any more. I get a 'Preparing to install' popup follwed by
    the message: 'This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.'
    If you did find a solution or any one else knows of one then I'd be very grateful.
    Dave.

  • Windows Updates Error Codes 80070308 and 80070643

    Recently I have a problem with windows updates patches for this month (June 2014).  I updated 10 computers (at office), 9 of them have either the error codes 80070308 and/or 80070643.  I tried to disable the Symantec Endpoint, used the Microsoft
    .NET Framework Repair Tool to fix the .Net Framework related error but still have failure.  I can still finish all the failed patches by rescanning the PC than install them; however; I still have 40 PCs need to be patched.  How do I prevent
    the installation failure, all the PCs have no problem at last month.  Any suggestion, many thanks.

    Hi,
    If your computer is having problems finding and installing operating system update, I suggest to
    try the windows update troubleshooter.
    To run a Windows Update troubleshooter:
    http://windows.microsoft.com/en-US/windows7/Open-the-Windows-Update-troubleshooter
    An automatic troubleshooter is available that fixes some problems with Windows Update, and it might resolve this error for you
    http://windows.microsoft.com/en-us/windows/troubleshoot-problems-installing-updates#1TC=windows-7
    this error can appear when installing updates for Microsoft Office 2003,
    to fix Windows update with error code:80070643:
    http://windows.microsoft.com/en-us/windows/windows-update-error-80070643#1TC=windows-7
    If your computers are in a domain environment and get updated by a WSUS server, I suggest to update the group policy with the command “gpupdate /force”.
    Meanwhile, if it doesn’t help, please upload the Windowsupdate.log at: C:\Windows, this will give detail error information for further support.
    Regards
    Wade Liu
    TechNet Community Support

  • Adding HTML code corrupts (and destroys) site

    I was informed by Apple support that iWeb does not support adding HTML to your page (even though I did so in the Forms widget), and that the code corrupted my page (causing all kinds of font issues, blurry images, and wacky layout errors). They said I would have to rebuild the page from scratch (I have already spent hours building an intensive website that is now useless). I am skeptical that all these iWeb problems (font changes, wrong colors, layout chaos, blurry fonts, etc.) are caused by HTML code, so if anyone has any more info I would appreciate it. I am ready to throw iWeb in the garbage and go back to Dreamweaver MX!!! Thanks.

    not totally comfortable posting links to the site (its a business site and not mine)... if you search around for iWeb problems you will find many people having the same issues... when i tried fixing my original page (after deleting the page with the problematic code) the problems still occurred... when i redid the page completely the problems stopped happening (at least for now)... I was told by the Applecare person that the code had completely infested/corrupted the entire site and that it could not be fixed... that I would have to completely recreate the site again... what doesn't make sense is that such a glaring, fundamental problem on such a basic program goes ignored by such a powerful, inventive, flourishing company... disappointing to see all the issues/bugs that get officially ignored on these forums...

  • Updates error codes U4M1I208  and U44M1I216

    hi, i have the 'design and web premium'  when i try to update my progammes i get these messages      

    Hi cshellcorn,
    Regarding the error code: U44M1I210: I would like to share the following
    This  Error Code: U44M1I210 means failed to extract/un-mount patch ZIP/DMG file.
    Could you please restart your machine and try installing this update again. 
    These links have valuable steps:
    http://helpx.adobe.com/creative-suite/kb/error-u44m1i210-installing-updates-ccm.html
    http://forums.adobe.com/thread/1095895
    Please let me know in case you still face this problem.
    Regards,
    Rajshree

  • Update Error Codes: U44M1P6 and U44M1P7  Why? Fix?

    How do I complete online update installations when these error codes are returned for Adobe Photoshop 13.0.5 and Extension Manager 6.0.5 Update, respectively?
    Wayne

    Try following the instructions given in the kb document : http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-upda tes-ccm.html
    Regards,
    Jatin Dembla

  • Unable to install Windows 8 updates error code 0x800736B3 and 0x80246007.

    Hi
    I am having issues with the Asus Transformer tablet/laptop TX300CA.
    It comes with Windows 8 Pro.
    After downloading windows 8 updates, it doesn't want to install all of the software updates.
    I received an error code such as 0x800736B3.
    Can anyone help???
    Is there methods to solve this issues???

    Andre,
    Can't do that now. The owner is giving up with Microsoft and stick with his trusty MAC OS X!
    His Asus Transformer TX300CA indeed have Windows 8.1 driver support. I did check with ASUS website.
    However I did many tests base on Microsoft Support Knowledge base.
    I even try the Microsoft Fix it. It too didn't work.
    The Asus Transformer TX300CA is using Windows 8 Pro OEM version.
    There is a possibility that his Windows 8 is corrupted.
    I try to find the  "C:\Windows\winsxs\poqexec.log". No where to be found.
    The strange part is The ASUS Transformer TX300CA cannot install any updates patches of Windows 8!!!
    I come to know that many people are having this issues regardless which laptop brand they are using.
    However I did it with ease on a Lenovo laptop.
    The process of having upgrading to Windows 8.1 via Windows Apps Store is very tedious and long process. It's very very slow. Not unless you have a High Broadband speed.
    It's very time consuming. It's not a good method of upgrading to Windows 8.1.
    My Suggestion to Microsoft to release a FREE DVD upgrade disc to all of it's customers.
    You have to bare in mind that not everyone in the world is using a High Speed Broadband network.
    In some country they still using a clunky old 24,33.6,56K modem.
    How are they going to do the 3.8GB of upgrade to Windows 8.1. It will take them months to complete the tasks.

  • Client not updating - Error Code # 0x80244023 and 0x801901f8

    Hello All,
    We have a Windows server (2008) which is not pulling updates from WSUS server. It has two NICs - one is public and another is configured with
    172.x.x.x range for Admin use (this is for WSUS communication with no DNS setup).
    See logs below,
    2014-05-07        13:05:50:089     916      1410     Misc     
    ===========  Logging initialized (build: 7.6.7600.256, tz: +0800)  ===========
    2014-05-07        13:05:50:089     916      1410     Misc     
      = Process: C:\Windows\system32\svchost.exe
    2014-05-07        13:05:50:089     916      1410     Misc     
      = Module: c:\windows\system32\wuaueng.dll
    2014-05-07        13:05:50:089     916      1410     Service *************
    2014-05-07        13:05:50:089     916      1410     Service ** START
    **  Service: Service startup
    2014-05-07        13:05:50:089     916      1410     Service *********
    2014-05-07        13:05:50:091     916      1410     Agent   
      * WU client version 7.6.7600.256
    2014-05-07        13:05:50:092     916      1410     Agent   
      * Base directory: C:\Windows\SoftwareDistribution
    2014-05-07        13:05:50:092     916      1410     Agent   
      * Access type: Named proxy
    2014-05-07        13:05:50:092     916      1410     Agent   
      * Default proxy: proxy:8083
    2014-05-07        13:05:50:093     916      1410     Agent   
      * Network state: Connected
    2014-05-07        13:05:50:520     916      1410     DtaStor Default service
    for AU is {00000000-0000-0000-0000-000000000000}
    2014-05-07        13:05:50:531     916      1410     DtaStor Default service
    for AU is {9482F4B4-E343-43B6-B170-9A65BC822C77}
    2014-05-07        13:05:50:539     916      1410     Agent   
    WARNING: Failed to read the service id for re-registration 0x80070002
    2014-05-07        13:05:50:539     916      1410     Agent   
    WARNING: Missing service entry in the backup data store; cleaning up
    2014-05-07        13:06:01:251     916      1594     Report  
    CWERReporter::Init succeeded
    2014-05-07        13:06:01:251     916      1594     Agent   
    ***********  Agent: Initializing Windows Update Agent  ***********
    2014-05-07        13:06:01:253     916      1594     Agent   
    ***********  Agent: Initializing global settings cache  ***********
    2014-05-07        13:06:01:253     916      1594     Agent   
      * WSUS server: http://172.16.74.28
    2014-05-07        13:06:01:253     916      1594     Agent   
      * WSUS status server: http://172.16.74.28
    2014-05-07        13:06:01:253     916      1594     Agent   
      * Target group: (Unassigned Computers)
    2014-05-07        13:06:01:253     916      1594     Agent   
      * Windows Update access disabled: No
    2014-05-07        13:06:01:253     916      1410     Report  
    ***********  Report: Initializing static reporting data  ***********
    2014-05-07        13:06:01:253     916      1410     Report  
      * OS Version = 6.1.7601.1.0.196626
    2014-05-07        13:06:01:253     916      1594     DnldMgr           
    Download manager restoring 0 downloads
    2014-05-07        13:06:01:253     916      1410     Report  
      * OS Product Type = 0x0000000A
    2014-05-07        13:06:01:260     916      1594     AU       
    ###########  AU: Initializing Automatic Updates  ###########
    2014-05-07        13:06:01:261     916      1594     AU       
      # WSUS server: http://172.16.74.28
    2014-05-07        13:06:01:261     916      1594     AU       
      # Detection frequency: 1
    2014-05-07        13:06:01:261     916      1594     AU       
      # Approval type: Pre-install notify (Policy)
    2014-05-07        13:06:01:261     916      1594     AU       
      # Auto-install minor updates: Yes (Policy)
    2014-05-07        13:06:01:261     916      1594     AU       
      # Will interact with non-admins (Non-admins are elevated (Policy))
    2014-05-07        13:06:01:384     916      1410     Report  
      * Computer Brand = VMware, Inc.
    2014-05-07        13:06:01:384     916      1410     Report  
      * Computer Model = VMware Virtual Platform
    2014-05-07        13:06:01:390     916      1410     Report  
      * Bios Revision = 6.00
    2014-05-07        13:06:01:390     916      1410     Report  
      * Bios Name = PhoenixBIOS 4.0 Release 6.0    
    2014-05-07        13:06:01:390     916      1410     Report  
      * Bios Release Date = 2012-07-09T00:00:00
    2014-05-07        13:06:01:390     916      1410     Report  
      * Locale ID = 1033
    2014-05-07        13:06:01:392     916      1594     AU       
    Successfully wrote event for AU health state:0
    2014-05-07        13:06:01:392     916      1594     AU       
    Initializing featured updates
    2014-05-07        13:06:01:392     916      1594     AU       
    Found 0 cached featured updates
    2014-05-07        13:06:01:392     916      1594     AU       
    Successfully wrote event for AU health state:0
    2014-05-07        13:06:01:395     916      1714     Report  
    WARNING: Failed to open event cache file at C:\Windows\SoftwareDistribution\EventCache\{1EDE8AC5-7759-45EC-9747-C62989CBAEF4}.bin for reading with hr = 80070002.
    2014-05-07        13:06:01:396     916      1714     Report  
    WARNING: Failed to open event cache file at C:\Windows\SoftwareDistribution\EventCache\{EEE2278A-AE78-4886-96CF-5C5946BA8699}.bin for reading with hr = 80070002.
    2014-05-07        13:06:01:396     916      1594     AU       
    Successfully wrote event for AU health state:0
    2014-05-07        13:06:01:396     916      1594     AU       
    AU finished delayed initialization
    2014-05-07        13:06:01:397     916      1594     AU       
    Triggering AU detection through DetectNow API
    2014-05-07        13:06:01:397     916      1594     AU       
    Triggering Online detection (non-interactive)
    2014-05-07        13:06:01:397     916      1410     AU       
    2014-05-07        13:06:01:397     916      1410     AU       
    ## START ##  AU: Search for updates
    2014-05-07        13:06:01:397     916      1410     AU       
    2014-05-07        13:06:01:399     916      1410     AU       
    <<## SUBMITTED ## AU: Search for updates [CallId = {177B400D-42A5-46EB-8588-A6F107FF3C77}]
    2014-05-07        13:06:01:399     916      1714     Agent   
    2014-05-07        13:06:01:399     916      1714     Agent   
    ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-05-07        13:06:01:399     916      1714     Agent   
    2014-05-07        13:06:01:399     916      1714     Agent   
      * Online = Yes; Ignore download priority = No
    2014-05-07        13:06:01:399     916      1714     Agent   
      * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation'
    and RebootRequired=1"
    2014-05-07        13:06:01:399     916      1714     Agent   
      * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-05-07        13:06:01:399     916      1714     Agent   
      * Search Scope = {Machine}
    2014-05-07        13:06:01:399     916      1714     Setup   
    Checking for agent SelfUpdate
    2014-05-07        13:06:01:400     916      1714     Setup   
    Client version: Core: 7.6.7600.256  Aux: 7.6.7600.256
    2014-05-07        13:07:03:952     916      1714     Misc     
    WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x801901f8
    2014-05-07        13:07:03:952     916      1714     Misc     
    WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x801901f8
    2014-05-07        13:07:22:828     916      1714     Misc     
    WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x801901f8
    2014-05-07        13:07:22:828     916      1714     Misc     
    WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x801901f8
    2014-05-07        13:09:02:845     916      1714     Misc     
    WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x801901f8
    2014-05-07        13:09:02:845     916      1714     Misc     
    WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x801901f8
    2014-05-07        13:10:02:451     916      1714     Misc     
    WARNING: WinHttp: SendRequestToServerForFileInformation failed with 0x801901f8
    2014-05-07        13:10:02:451     916      1714     Misc     
    WARNING: WinHttp: ShouldFileBeDownloaded failed with 0x801901f8
    2014-05-07        13:10:02:451     916      1714     Misc     
    WARNING: DownloadFileInternal failed for http://172.16.74.28/selfupdate/wuident.cab: error 0x801901f8
    2014-05-07        13:10:02:452     916      1714     Setup   
    WARNING: SelfUpdate check failed to download package information, error = 0x80244023
    2014-05-07        13:10:02:452     916      1714     Setup   
    FATAL: SelfUpdate check failed, err = 0x80244023
    2014-05-07        13:10:02:452     916      1714     Agent   
      * WARNING: Skipping scan, self-update check returned 0x80244023
    2014-05-07        13:10:02:452     916      1714     Agent   
      * WARNING: Exit code = 0x80244023
    2014-05-07        13:10:02:452     916      1714     Agent   
    2014-05-07        13:10:02:452     916      1714     Agent   
    **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-05-07        13:10:02:452     916      1714     Agent   
    2014-05-07        13:10:02:452     916      1714     Agent   
    WARNING: WU client failed Searching for update with error 0x80244023
    2014-05-07        13:10:02:453     916      ae8       AU       
    >>##  RESUMED  ## AU: Search for updates [CallId = {177B400D-42A5-46EB-8588-A6F107FF3C77}]
    2014-05-07        13:10:02:453     916      ae8       AU       
      # WARNING: Search callback failed, result = 0x80244023
    2014-05-07        13:10:02:453     916      ae8       AU       
      # WARNING: Failed to find updates with error code 80244023
    2014-05-07        13:10:02:453     916      ae8       AU       
    2014-05-07        13:10:02:454     916      ae8       AU       
    ##  END  ##  AU: Search for updates [CallId = {177B400D-42A5-46EB-8588-A6F107FF3C77}]
    2014-05-07        13:10:02:454     916      ae8       AU       
    2014-05-07        13:10:02:457     916      ae8       AU       
    Successfully wrote event for AU health state:0
    2014-05-07        13:10:02:457     916      ae8       AU       
    AU setting next detection timeout to 2014-05-07 06:08:08
    2014-05-07        13:10:02:457     916      ae8       AU       
    Successfully wrote event for AU health state:0
    2014-05-07        13:10:02:458     916      ae8       AU       
    Successfully wrote event for AU health state:0
    2014-05-07        13:10:02:463     916      1714     Report  
    CWERReporter finishing event handling. (00000000)
    2014-05-07        13:10:07:452     916      1714     Report  
    REPORT EVENT: {E1B169E2-C0FC-4D33-A70B-41F76CB362B9}            2014-05-07 13:10:02:452+0800  1          148       101      
    {D67661EB-2423-451D-BF5D-13199E37DF28}      1            80244023          SelfUpdate        
    Failure   Software Synchronization            Windows Update Client failed to detect with error 0x80244023.
    2014-05-07        13:10:07:462     916      1714     Report  
    CWERReporter::HandleEvents - WER report upload completed with status 0x8
    2014-05-07        13:10:07:463     916      1714     Report  
    WER Report sent: 7.6.7600.256 0x80244023 D67661EB-2423-451D-BF5D-13199E37DF28 Scan 101 Managed
    2014-05-07        13:10:07:463     916      1714     Report  
    CWERReporter finishing event handling. (00000000)
    I verified through Nslookup and found WSUS server IP and name does not resolved. However, the download manager window is opening up while accessing
    - http://172.16.74.28/selfupdate/wuident.cab from server browser.
    Please help.

    2014-05-07        13:06:01:395     916      1714     Report   WARNING: Failed to open event cache file at C:\Windows\SoftwareDistribution\EventCache\{1EDE8AC5-7759-45EC-9747-C62989CBAEF4}.bin
    for reading with hr = 80070002.
    This type of error is quite often symptomatic of a corrupted WUA datastore.
    2014-05-07        13:07:03:952     916      1714     Misc      WARNING: WinHttp: SendRequestToServerForFileInformation failed with
    0x801901f8
    The 0x801901F8 is an HTTP 504 -- "request timed out waiting on a gateway".
    2014-05-07        13:06:01:253     916      1594     Agent      * Target group: (Unassigned Computers)
    2014-05-07        13:06:01:261     916      1594     AU          # Detection frequency: 1
    When using Server-Side Targeting, this value should be at least 2 hours. Based on the above three observations, I recommend the following response:
    Verify that the routing table is correct and that requests for 172.16/16 are actually leaving on the correct NIC.
    Change the Detection Frequency to at least 2 hours (until you fix the communication issue it might as well be 22 hours!).
    Run wuauclt /resetauthorization /detectnow.
    If the 0x80070002 error persists, do the following:
    Stop the Windows Update service.
    Rename %windir%\SoftwareDistribution to SoftwareDistribution.OLD.
    Start the Windows Update service.
    Run wuauclt /resetauthorization /detectnow and observe the results. If the issue is resolved, copy the ReportingEvents.log from SoftwareDistribution.OLD back to the new SoftwareDistribution.
    If the issue is not resolved, post that detection event for further analysis.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Windows update error code 80072EFD and 80244018

    An error occured while checking for new updates from my laptop
    WindowsUpdate_80072EFD" "WindowsUpdate_dt000
    WindowsUpdate_80244018" "WindowsUpdate_dt000
    Help me with this error. i try to solve by using Microsoft TechNet but still cannot solve the problem, Also i try all the link that appear still cannot solve. Help me please..

    Hi,
    Have you tried this link?
    Windows Update error 80072efd
    http://windows.microsoft.com/en-in/windows/windows-update-error-80072efd#1TC=windows-7
    And for error 80244018, in addition to solutions mentioned in the first reply, you can also try this, in start button, type "services.msc", enter, locate "Background intelligent Transfer Services" and "Windows Update", stop these two services, then
    clear C:\Windows\SoftwareDistribution folder,  restart the two services.
    Regards
    Yolanda Zhu
    TechNet Community Support

  • Need HTML code to call template from an existing web template

    Hi all,
    Can someone help me with a HTML code which can call another web template from a field of a table.
    I have a web template which includes table as web item.The template when executed displays the data of query view in the form of table.One of the field in the table is Europe.Now my requirement is when i click on that field Europe,it should open up another template which is present in the system.
    Please provide me with a HTML code which can do this.
    Regards,
    Suchitra

    Hi all,
    Can someone help me with a HTML code which can call another web template from a field of a table.
    I have a web template which includes table as web item.The template when executed displays the data of query view in the form of table.One of the field in the table is Europe.Now my requirement is when i click on that field Europe,it should open up another template which is present in the system.
    Please provide me with a HTML code which can do this.
    Regards,
    Suchitra

  • How to shorten the HTML code name when it's a hyperlink?

    Hi there,
    I'm trying to make all of my hyperlink html codes short and to the point. If you go to one of my site pages http://tinyurl.com/pj5rqz then roll your curser over the Download PDF and then roll it over the pictures them selves. You'll see that there is redundancy in the names and their all different. I'd like the code to simply read Best of Flowers 2. Is that possible? What do I need to do?
    Thanks.

    Hi RagnaRock,
    You can use the following form, hope it helps you.
    Regards,
    Ozcan.
    form get_data_from_url using iv_url type clike changing iv_data type string.
    DATA: HTTP_CLIENT TYPE REF TO IF_HTTP_CLIENT .
      clear  iv_data.
      CALL METHOD CL_HTTP_CLIENT=>CREATE_BY_URL
           EXPORTING
            URL                = IV_URL
    *          PROXY_HOST         = '10.1.1.1'
    *          PROXY_SERVICE      = '1234'
    *       SSL_ID             =
           IMPORTING
             CLIENT             = HTTP_CLIENT
           EXCEPTIONS
             ARGUMENT_NOT_FOUND = 1
             PLUGIN_NOT_ACTIVE  = 2
             INTERNAL_ERROR     = 3
             OTHERS             = 4.
      CHECK SY-SUBRC = 0.
      CALL METHOD HTTP_CLIENT->SEND
        EXCEPTIONS
          HTTP_COMMUNICATION_FAILURE = 1
          HTTP_INVALID_STATE         = 2.
      CHECK SY-SUBRC = 0.
      CALL METHOD HTTP_CLIENT->RECEIVE
        EXCEPTIONS
          HTTP_COMMUNICATION_FAILURE = 1
          HTTP_INVALID_STATE         = 2
          HTTP_PROCESSING_FAILED     = 3.
      CHECK SY-SUBRC = 0.
      iv_data = HTTP_CLIENT->RESPONSE->GET_CDATA( ).
    endform.                    "get_data_from_url
    Edited by: Ozcan Gurdal on Aug 11, 2010 4:07 PM

Maybe you are looking for

  • How to get Goods Receipt Quantity?

    Hi, I have Production Order data in AUFK and AFPO(AUFNR, AUART and MATNR etc.)  I want to get "Good Receipt(GR) quantity for the movement type '101'/'102' ",  "Material Cost with Movement type '261/262" and "Standard Price" for that material. In MSEG

  • Upgrade Windows 8 Pro (VL) to Windows 8.1 Pro or Ent (VL)

    Hello, I have Windows 8.0 Pro from VL, and I would like to upgrade to Windows 8.1 either Pro or Ent from VL.  I downloaded both versions from VLC, but every time I start the installation, it just does nothing.  It says - Preparing - all the way to 98

  • Help with Transitions...  targets="*" ?

    I search through the helps and docs but couldn't find what i was looking for. I was wondering if ther is another or an easyer way to tell multiple targets what to do... Imagine that I have a 'Main' state and when you click an 'About' button, the 'Abo

  • BIg Start-Up Problems Macbook

    I had some sound problems with Quicktime earlier today so I decided to reinstall it. For reinstalling my MacBook needed to restart, but now it keeps restarting. It goes on and then it looks like its starting up but it doesn't go any further than the

  • Swf not working when moved to other folder....

    Hi all... i have created a simple flex project that does not use any server technology...  i have then used acitonscript to dynamically set up my end points and channels for a simple remote object which calls a java class on a tomcat local server. al