Use APEX_ITEM. SELECT_LIST_FROM_LOV report

Hi all

I try to create an editable state.
In this report, I have a few columns to allow users to update the information. I have a problem that my program return the current values of the APEX_ITEM. SELECT_LIST_FROM_LOV in specific checked lines.

For example:

Here is the code for my report:
-------------------------

1.
SELECT apex_item.checkbox(1, h.nbt_po_seq, 'UNCHECKED') defaulted,
--apex_item.hidden(4, h.nbt_po_seq) "PO_SEQ ",
      h.po_num,
       h.po_vendor_name,
       (select d.nbt_dept_desc
          from nbt_dept d
         where h.nbt_dept_seq = d.nbt_dept_seq) "dept_name",
       
APEX_ITEM.SELECT_LIST_FROM_LOV 
    (p_idx           => 3,
    p_value         =>NBT_LE_INFO_SEQ_holder,
    p_lov  => 'NBT_LE_INFO',
    p_attributes   =>NULL,
    p_show_null    => 'YES',
    p_null_value   =>  NULL,  --'%NULL%',
    p_null_text     => NULL,
    p_item_id       => NULL,
    p_item_label    => NULL,
    p_show_extra    => 'YES') "LE_NUM"      
  FROM nbt_po h
------------------------------------------------------
2. here's my validation, just to see what return values.
DECLARE
   l_message  VARCHAR2 (4000);

BEGIN

 FOR i IN 1 .. apex_application.g_f01.COUNT LOOP
             l_message := l_message
            || '<br>'|| 'LE_NUM: ' || :P17_LE_NUM || '    '
            || 'Row ' 
            ||i || '     ' || 'f01- '|| apex_application.g_f01(i)|| '<br>'
            || 'f02- '|| apex_application.g_f02(i)||'<br>'
||  'f03- '||apex_application.g_f03(i)


        --   || 'f04- '||apex_application.g_f04(i)  ||'<br>'
           -- || 'f01_' || '#ROWNUM#' 
                    || '<br>'
            ;
 END LOOP;

 RETURN LTRIM (l_message, '<br>');
END;
-------------------------------
3. If I checked the line 3 and 5.
I can get correct ID of < b > h.nbt_po_seq < /b >, but for APEX_ITEM. Value SELECT_LIST_FROM_LOV, I'm getting rows 1 and 2, 3 and 5.

Can someone please help me and let me know how I can correctly return the values of selected line for 'APEX_ITEM. SELECT_LIST_FROM_LOV '?

Thank you
Ling

Published by: LK 14 Sep, 2012 22:52

This explains how to get the selected rows:

http://Apex.Oracle.com/pls/OTN/f?p=31517:95

Denes Kubicek
-------------------------------------------------------------------
http://deneskubicek.blogspot.com/
http://www.Apress.com/9781430235125
http://Apex.Oracle.com/pls/OTN/f?p=31517:1
http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
-------------------------------------------------------------------

Tags: Database

Similar Questions

  • apex_item.select_list_from_lov - nothing returned if select list is disable

    I try to use a selection list in a report. I want that some lines have their disabled selection list (based on a flag online brought back). I did it as follows:
    apex_item.select_list_from_lov(
                 18,col_val,'LOV_DEPARTMENTS','class="my_cselectlist_lass" ' ||
                 DECODE(table_flag,'Y','disabled=true',NULL),'NO',NULL,NULL
               ) ret_sel,
    However - if I do this, then lists of selection that are disabled do not return a line in apex_application.g_f18. Is this right? It seems more like a limitation than a function for me. Is that this is the case, then is it possible that I can get around that, while always keeping the disabled selection list?

    Hello:

    Disabled form elements are never submitted to the server. This is standard behavior of HTML form.
    You can use a bit of javascript to re - activate selection disabled lists before you submit your form and make sure as well as the table of 'f_xx' has values for each selection list

    CITY

  • How to view a box horizontally using APEX_ITEM. CHECKBOX2

    With the help of the following api APEX_ITEM.checkbox2 query:

    SELECT APEX_ITEM.CHECKBOX2(1,empno,'CHECKED') "Select" FROM emp ORDER BY 1 

    which returns 14 rows of boxes to the bottom of the page. In the attributes column, I put this column "Standard report Column.

    With a setting up a checkbox element in Oracle APEX, you can specify the 'number of columns box' for say 5 and have a set of 5 displayed horizontally returned check boxes.

    How can I get this scenario using my query above, APEX_ITEM.checkbox2 inorder to view these 14 boxes in a group of 5 horizontally - is it possible?

    Thank you.

    Tony F. says:

    First of all I am trying to achieve based on my previous answer is, using classic SQL report data, specifically, two columns of this report, I want to create two regions box, using the distinct values of these two columns and have those initially active.

    that is to say:

    The data returned in the report for these two columns (for example report returned 200 lines):

    COL_NUM of separate data on 200 lines = 1,2,3,5,7

    COL_ITEMS of separate data on 200 lines = A, B, D

    So now using these two columns with their distinct values, I want to dynamically create these two regions mentioned above, horizontal and side by side box:

    Nums: [ X ] 1  [ X ] 2  [ X ] 3  [ X ] 5  [ X ] 7                                                Items: [ X ] A  [ X ] B  [ X ] D

    Use these check boxes, I also need to be able to determine out of these two regions of the checkbox, checked those that the user can uncheck several checkboxes.

    I do not see why you should use separate regions / apex_item.checkbox2 to do. Why it can't be done using the checkbox objects and LOVs?

  • Tabular of Autocomplete Ajax does not work in SQL query using apex_item.text.

    Hello

    Is it possible to use the search function that is used in, Dennis Kubicek example, section tabular ENAME of Autocomplete Ajax
    in a query sql using apex_items?

    Request line:
    apex_item.text (17, xp.part_nr, null, null,'onfocus = "f_register (this);) 'autocomplete 'off' = ') PART '.

    In a first time, I followed the example by adding «onfocus = "f_register (this);"autocomplete = "off" in the attributes of the element in the report field.»
    It did not work... so tried to add computers in the attirbutes of the apex_item parameter.
    But it still doesn't work. No errors are given, it does not.
    Could someone help me please?

    THX!
    Astrid

    Of course, it is. I just tested it in this example:

    http://HTMLDB.Oracle.com/pls/OTN/f?p=31517:178

    with an element created using apex_item package and it works.

    If you have access to my Idée, you look at the source.

    Denes Kubicek
    ------------------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    ------------------------------------------------------------------------------

  • Using APEX_ITEM in SQL performance issues?

    Hello

    I was wondering if using APEX_ITEM.* in your SQL source for a report would give some performance issues? I expect the report to bring a little more than 3000 documents. When I developed it it was working fine but we had 150 cases or so, but now we have migrated demand during our test the page system will take about 2 minutes to load. Here is my SQL to create the report:

    Select distinct
    initcap (MPa.pa_name) | ' (' || sd. DESIGNATION_CODE | ')' site.
    FRC. REPORT_DESCRIPTION report_category,
    MF. Function FEATURE_DESC
    decode (cmf. SELECTED_FOR_QA, 'Y', 'X', ' N ',' ') QA,.
    () apex_item.select_list_from_query
    21,
    CPF. ASSIGN_TO,
    «Select ss.firstname | "» '' || SS. Surname d, ss. STAFF_NUMBER r
    of snh_staff ss,.
    snh_management_units smu,
    m_pa_snh_area psa
    where ss. MU_UNIT_ID = EMS. UNIT_ID
    and smu. UNIT_ID = psa. UNIT_ID
    and ss. CURRENTLY_EMPLOYED = "Y"
    and psa. SCM_LEAD = "Y"
    and psa. MAIN_AREA = "P"
    and psa.PA_CODE = ' | MPa.pa_code,
    NULL,
    '' YES. ''
    NULL,
    (' ') assign_to,.
    () apex_item.select_list_from_query
    22,
    Decode (to_char (cpf.planned_fieldwork, ' DD/MM /'),)
    30/06 /', 'Q1 ' | TO_CHAR (planned_fieldwork, 'YYYY'),
    30/09 /', 'T2 ' | TO_CHAR (planned_fieldwork, 'YYYY'),
    31/12 /', 'Q3 | TO_CHAR (planned_fieldwork, 'YYYY'),
    31/03 /', 'T4 ' | TO_CHAR (planned_fieldwork-365, "YYYY").
    TO_CHAR (cpf.planned_fieldwork, "YYYY")),
    ' select r d,
    of CM_CYCLE_Q_YEARS') planned_fieldwork,.
    () apex_item.select_list_from_query
    23,
    Decode (to_char (cpf.planned_cmf, ' DD/MM /'),)
    30/06 /', 'Q1 ' | TO_CHAR (planned_cmf, 'YYYY'),
    30/09 /', 'T2 ' | TO_CHAR (planned_cmf, 'YYYY'),
    31/12 /', 'Q3 | TO_CHAR (planned_cmf, 'YYYY'),
    31/03 /', 'T4 ' | TO_CHAR (planned_cmf-365, "YYYY").
    TO_CHAR (cpf.planned_cmf, "YYYY")),
    ' select r d,
    of CM_CYCLE_Q_YEARS') planned_cmf,.
    () apex_item.select_list_from_query
    24,
    CPF.monitoring_method_id,
    "(Select METHOD, MONITORING_METHOD_ID from cm_monitoring_methods where active_flag ="Y"') monitoring_method,
    (apex_item). Text
    25,
    CPF.pre_cycle_comments,
    15,
    255,
    "title =" '. CPF.pre_cycle_comments |' » ',
    'annualPlanningComments '.
    || TO_CHAR (cpf. Comment PLAN_MON_FEATURE_ID)),
    (apex_item). Text
    26,
    TO_CHAR (cpf. CONTRACT_LET, 'MON-DD-YYYY'),
    11,
    (11) contract_let,
    (apex_item). Text
    27,
    TO_CHAR (cpf. CONTRACT_REPORT_PLANNED, 'MON-DD-YYYY'),
    11,
    (11) contract_report,
    (apex_item). Text
    28,
    CPF. ADVISOR_DATA_ENTRY,
    11,
    (11) advisor_entry,
    CMS.complete_percentage | ' ' || status of CMS. Description,
    (apex_item). Text
    29,
    TO_CHAR (cpf. RESULT_SENT_TO_OO, 'MON-DD-YYYY'),
    11,
    (11) result_to_oo,
    CPF. PLAN_MON_FEATURE_ID,
    CMF. MONITORED_FEATURE_ID,
    mpa.PA_CODE,
    MPF. SITE_FEATURE_ID
    of fm_report_category ERS,
    m_feature mf,
    m_pa_features mpf,
    m_protected_area mpa,
    snh_designations sd,
    cm_monitored_features FMC,
    cm_plan_mon_features FCP,
    cm_monitoring_status cms,
    cm_cycles cc,
    msa m_pa_snh_area,
    snh_management_units smu,
    ssa snh_sub_areas
    where frc. REPORT_CATEGORY_ID = mf. REPORT_CATEGORY_ID
    and mf. Feature_code = mpf. FEATURE_CODE
    and mpa.PA_CODE = mpf.PA_CODE
    and mpa. DESIGNATION_ID = sd. DESIGNATION_ID
    and the mpf. SITE_FEATURE_ID = FCM. SITE_FEATURE_ID
    and CME. MONITORED_FEATURE_ID = cpf. MONITORED_FEATURE_ID
    and cms. MONITORING_STATUS_ID = FCM. MONITORING_STATUS_ID
    and cc. CYCLE # = FCM. CYCLE #.
    and msa.PA_CODE = mpa.PA_CODE
    and msa. UNIT_ID = EMS. UNIT_ID
    and msa. SUB_AREA_ID = ass. SUB_AREA_ID
    and cc. CURRENT_CYCLE = 'Y '.
    and msa. MAIN_AREA = 'P '.
    and msa. SCM_LEAD = 'Y '.
    and the mpf. INTEREST_CODE in (1,2,3,9)
    and ((nvl (: P6_REPORTING_CATEGORY, 'TOUT') = 'ALL'))
    and to_char (frc. FCA_FEATURE_CATEGORY_ID) = case nvl (: P6_BROAD_CATEGORY, 'ALL') when "ALL" then to_char (frc. (FCA_FEATURE_CATEGORY_ID) else: P6_BROAD_CATEGORY end)
    or (nvl (: P6_REPORTING_CATEGORY, 'ALL')! = 'ALL')
    and to_char (mf. REPORT_CATEGORY_ID) = case nvl (: P6_REPORTING_CATEGORY, 'ALL') when "ALL" then to_char (mf. REPORT_CATEGORY_ID) else: P6_REPORTING_CATEGORY end))
    and ((nvl (: P6_SNH_SUB_AREA, 'TOUT') = 'ALL'))
    and to_char (msa. UNIT_ID) = case nvl (: P6_SNH_AREA, 'ALL') when "ALL" then to_char (msa. (UNIT_ID) else: P6_SNH_AREA end)
    or (nvl (: P6_SNH_SUB_AREA, 'ALL')! = 'ALL')
    and to_char (msa. SUB_AREA_ID) = case nvl (: P6_SNH_SUB_AREA, 'ALL') when "ALL" then to_char (msa. SUB_AREA_ID) else: P6_SNH_SUB_AREA end))
    and ((nvl (: P6_SITE, 'TOUT')! = 'ALL'))
    and mpa.PA_CODE =: P6_SITE)
    or nvl (: P6_SITE, 'ALL') = 'ALL')

    As you can see I have 9 calls the APEX_ITEM API and when I get out them the works of report that I expect.

    Has anyone else ran into this problem?

    We're currently on APEX: 3.0.1.00.08 and using Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64 bit, Production database.

    Thanks in advance,
    Paul.

    Try to remove all except one of the calls apex_item.select_list_from_query, and then rewrite this one to use subquery factoring. Now compare at the same time for the same query with and without subquery factoring. In addition, 500 lines is a realistic number that you expect someone to change?

  • Text in the drop-down list used in the report

    Hello

    I want to use in my report, the text of the index selected in the combobox. Unfortunately, the variable for a ComboBox is L1, not as text T1. So, when I want to insert text in the report, I cannot write @L1 @ because it appears in the index, not the text.

    For example

    ComboBox1

    0 Red 1 green 2 yellow

    and if I choose 1. Green

    I want to put 'green' as a text in my report. I can't call as a variable because the variable L1 is not text.

    How can I do this? Please

    Hi andrea11hr,

    You can use a table for the exchange of information. Please take a look at the attached example

    Greetings

    Walter

  • Save the customized using MS Office report Express VI filename

    When my program creates a report, I want to save it as a serial number, defined in the report.  I want to use MS Office report Express VI to do this, but unfortunately it only allows you to save the file name as time and/or incremental number.

    Hi jliu317,

    In the meantime that warn you the moderator to move your thread, here is my solution. (Correct me if I'm wrong)

    In MS Office Report, there is a block diagram entry named path to save the report. That is where you can save your report in Word (.doc) or Excel (.xls) under the name of file custom as serial number, as shown below.

    http://zone.NI.com/reference/en-XX/help/370274G-01/lvoffice/ms_office_report/

    I hope this helps.

    EE - Lim-

  • Getting error messgae"problem connecting to the Windows Error Reporting Service. Please try again later! "when you use the error report feature

    Original title: error report function

    When I use the error report feature a warning appears "problem connecting to the Windows Error Reporting Service. Please try again later! »

    It started some time ago and I have plenty of backup errors.

    Using W7

    Hi John,.

    I suggest running Disk Cleanup and selecting Remove all the Windows Error Reporting log files by selecting the checkbox and then click OK:
    Check if you are then able to start the Windows Error Reporting Service.
  • Using APEX_ITEMS in an anonymous block PLSQL region

    Hi all

    I would like to know how you can use apex_items in a block anonymous region.

    I tried, but I get the text instead of display the element.

    Example is this

    select c001 product_id, c002 product_name, c003 in_stock ,APEX_ITEM.TEXT(1,c004) counted
    from apex_collections
    where collection_name = 'PRODUCTS'
    order by c002
    

    But I get this accordingly to the c004 column.

    < input type = "text" name = "f01" size = "20" maxlength = value "2000" = "804" / >

    Hey guys, I found it. I used the sys.htf.escape_sc with the APEX_ITEMS tag. I just removed and it works now.

    Thank you

    GhanaApexDeveloper

  • Use the dynamic report with BI Publisher parameters

    Are there tips for reports in BI Publisher? For example, I would use the same report for one person or many people. This would mean that where clause should be added when it is for the individual and is not necessary for the entire population. I don't see a way to dynamically build the report using "Report queries" in the shared components.
    It is easy to build a sql query based on various selection criteria in the Source to a pagethat of the region then gets displayedd on the page but I don't see a lot of flexibility in creating a report with BI Publisher at the Apex.

    How about from the collections?

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Apress.com/9781430235125
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • Report to show SQL used in a report

    I create a set of quality reports using the views of the apex.
    I would like to create a report to verify the sql code used in conventional reports, but can't seem to find the correct view to use.
    If it was an interactive report I would use the SQL_QUERY column in the APEX_APPLICATION_PAGE_IR view, but this does not seem to exist for conventional reports

    Help appreciated.

    Gus

    Gus C wrote:
    I create a set of quality reports using the views of the apex.
    I would like to create a report to verify the sql code used in conventional reports, but can't seem to find the correct view to use.
    If it was an interactive report I would use the SQL_QUERY column in the APEX_APPLICATION_PAGE_IR view, but this does not seem to exist for conventional reports

    You can use the APEX_APPLICATION_PAGE_REGIONS data dictionary view. There is a field called "REGION_SOURCE" - just filter for the appropriate type of area.

    Help appreciated.

    Really? What is Re: validate Date and time? If you want to see the real recognition for help given, why not give points ' fix/useful' to positions that you have helped to solve your problem, according to the introduction forum post:

    >
    * It is considered good etiquette to the responses of reward with points (as "useful" - 5 pts - or 'correct' - 10pts).
    >

    Have a brief look at the list of recently answered questions, you do not seem to attribute useful points, even when you have to say explicitly (paraphrase) "thanks for your help. Maybe is a thing of failover - maybe you subscribe to the doctrine of Mr. Rose but, hey if it helps get you your question answered and it literally costs you nothing but a few seconds of effort, why not throw us a BONE by assigning a point in time?

  • Clear the check box to a report using APEX_ITEM. CHECKBOX

    Hi friends,

    I try to view my report with a checkbox control whose value of the column as "Y" or "n" in the table.
    My query is as below:
    SELECT APEX_ITEM.CHECKBOX(1,advertised,'disabled=disabled;' ||DECODE(advertised,'Y','CHECKED', 'UNCHECKED')) "Advertised Flag"
       FROM xyz;
    Report shows all checkboxes unchecked and UNCHECKED regardless of the value of column ANNOUNCED (Y or N).
    Any suggestions that I am doing wrong in the query.

    Thank you
    Raj.

    Well,.

    1. you have not said that

    2. remove the CASE and you will get all of the disabled.

    3. your code was wrong about the input parameters for the apex_item.checkbox function.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • Error buffer using APEX_ITEM

    I have this query on a report of the apex:

    Select APEX_ITEM. TEXT (1, ATRIBUTO, 30) 'attributes '.
    ATRIBID
    , VALOR 'real value '.
    APEX_ITEM. SELECT_LIST_FROM_QUERY (2
    ATRIB_VLR_ID
    ,' choose VALOR
    ID
    of ATRIBBVAL
    where ATRIB_ID = ' | ATRIBID | »
    order of valor') "answers".
    of APEX_TEMP
    where PRODUCT =: P3_PRODUCT
    and APP_SESSION =: APP_SESSION.

    I have a lot of products that query runs reasonable.
    But I also have a group of products that when I want to run, it gives the error:

    error report:
    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    When I reduce the number of lines of response (see example below) in the SELECT_LIST_FROM_QUERY the error does not occur.

    Select APEX_ITEM. TEXT (1, ATRIBUTO, 30) 'attributes '.
    ATRIBID
    , VALOR 'real value '.
    APEX_ITEM. SELECT_LIST_FROM_QUERY (2
    ATRIB_VLR_ID
    ,' choose VALOR
    ID
    of ATRIBBVAL
    where ATRIB_ID = ' | ATRIBID | »
    and rownum < = 90
    order of valor') "answers".
    of APEX_TEMP
    where PRODUCT =: P3_PRODUCT
    and APP_SESSION =: APP_SESSION.

    Any sugestion to help me?

    In this case, the apex I use is 3.2.1 and 11.2.0.1.0 data base.

    The apex_item.select_list_from_query method returns a VARCHAR2 value that has a maximum of 4000 bytes size when it is retrieved in a SQL query.

    Pass to the apex_item.select_list_from_query_xl method returns a CLOB value up to 32 KB.

  • Name of the TDMS file for use in Diadem report

    I received a large number of TDMS files collected with Signal Express 2014 and all of these files are called voltage.tdms in several subfolders, when I opened a sample of these files in Diadem I see that they have unique names in the field title properties voltage.tdms and so I would like to use this in a report model that I created. What I failed to find it is an easy way to capture the value of this title and put it in my report model, there is a variable called ChnDataFileName name, but it gives me "voltage.tdms", I don't see any of these variables to extract the field title, anyone know how to access this field?

    Hi ADobson

    The easiest way is to drag & give up the property from the data of the report portal. Then you will get something like

    Title: @Data.Root.Properties ("title"). Value @.

    Hope that helps

    Winfried

  • conversion of the error of date / time when using easy excel reports

    I export a 2D array to an excel file using Excel reports easy vi. I have no problem with that. My data has a number of areas with different formats (text and date/time). My problem is the following:

    * some (in other words, not all data is in the same worksheet) the veiled values of date/time to mm/dd/yyyy format whereas they should be in mm/dd/yyyy (is the excel format it is y in!). Essentially, I have 30/09/2008 (September 30, 2008) in a cell. After ticks on Oct. 1, it will display the date as, 01/10/2008. Excel thinks that this date is in the format dd/mm/yyyy.

    This is a known error in earlier versions of Excel (2002), in particular when you convert a .csv, .xls file. The solution, it was not to add "Local: = True ' at the end of the vba command string (see here: MS Knowledge Base). Here, in LabView I'm not sure how to proceed.

    I tried to change the format of the column in question to the 'text' by calling an Excel Macro in LabView, but do you think I can find the vba command to do? No, not so much.

    LabView saves the Excel file in 97-2003 format (I use MSOffice 2007) and I wonder if the version they are using does not consider the time correction, as described in the knowledge base (or if it applies).

    Any suggestions, I'd love to hear from you.

    Kind regards

    David.

    Hi LaRisa,.

    I was able to find the cell Format Excel set vi and successfully change the format of the value of the cell. It wasn't until I had found the vi that I realized that I've been down this road before. Change the format after the table has been created does not change values dd and mm switching that has already occurred. However, if I did before I "created the table" (or vi Excel table) and set the format to be '@' then it displays the string like 'Text' in the Excel file. That's nice. I can control what cell, row, or column to format now. If I want to be in a date format then I must apply the Format of cell vi after the easy Excel table vi.

    It sounds like a stupid race around me...

Maybe you are looking for

  • Touchpad cursor gets hard to control "woozy"

    Recently, I went back to using my Mac Pro 2009 after using a Macbook to the past two years for most. I upgraded to El Capitan first, and I decided to start a new account because I've been migrating the same account for 20 years. So all is cool enough

  • R61i initialize &amp; problems deleting files

    I am trying to repair a Lenovo R61i laptop is my daughter's computer. The computer has Type 8932-CTO on the bottom. It was a Vista machine which has been changed to XP factory. It does not start. Only, it displays the first page of Lenovo and goes to

  • VPN internet connection hangs after disconnection with tunnel of private clients

    I have to use a customer Cisco VPN (private tunnel) and due to the company safety Windows Remote Desktop.  This stop my normal internet access and the limit to a public internet connection "unidentified".  After that I closed the Office remotely Win

  • HP Officejet Pro 8500 A910g impression - but never does

    Printer model:HP Officejet Pro 8500 A910g Operating system:MS Windows XP Media Center Edition, V 2002, Service Pack 3 Method of connection:Wireless residential gateway AT & T U-Verse Description of the problem: Network printer not printing after the

  • Request BIOS password

    What is my Bios password? It says key 91059266