Binds in Master/Detail Reports: Problems and Solutions

I've been trying to use bind variables in the master report of master/detail reports with multiple detail reports; but, I've been getting a problem with the detail reports not displaying data.
Here's a sample sequence of events:
1) Select the master/detail report under User Defined Reports.
2) Connect to a DB (if necessary).
3) Enter any value(s) for the bind(s) for the master report.
4) Select a row in the master report.
5) The currently selected detail report displays column names and data.
6) Select a different detail report.
7) Nothing displays except column names.
8) Select a different detail report.
9) Nothing displays except column names.
10) Click the currently selected row in the master report.
11) Now the current selected detail report displays (column names and) data.
I have found that if, I am more selective with my bind variable names, I can get things to work as expected.
First, let me show an example of some SQL that was giving me problems.
Master Report:
select distinct OWNER
from SYS.ALL_OBJECTS
where (OWNER like :OWNER or :OWNER is NULL)
Detail Reports:select *
from SYS.ALL_OBJECTS
where OWNER = :OWNER
and OBJECT_TYPE = 'INDEX'replacing 'INDEX' with other values for the other detail reports.
(I did have this problem with other SQL too but hopefully this SQL will run on everyone's DB.)
The first solution I found was to change the name of the bind in the master to something like OWNER_BIND.
The second solution I found was to change the master to
select distinct OWNER as POWNERand change the detail reports to
where OWNER = :POWNERAnother solution might be to adjust the bind variable names' case, but I didn't look at that.
While I was trying different things to get this to work, one of the goofy things that SQL Developer did was add <binds>s to the <query>s of the detail reports in my UserReports.xml. IIRC, it even did this to a master/detail report that I was not editing. So, if you run into this problem, you might want to open your UserReports.xml and clean it up by hand. (Actually, that might be good advice for other problems too.)
Tip: I've had other problems with my User Reports such as disappearing reports; so, not only do I regularly make copies my UserReports.xml, I also save report(s) into separate XML files and use Tools > Preferences... > Database > User Defined Extensions to add REPORT-type extensions to SQL Developer. (Kris Rice talked a bit about REPORT-type extensions in this blog entry: http://krisrice.blogspot.com/2006/11/xml-extension-points-reports.html)
FYI: I'm using sqldeveloper-1.1.2.2579 on Windows XP w/ SP2. The DB is Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production.

Here is the complete XML exported from a problem report. If you want to use this, save it as an XML file then import that file from within SQL Developer (ie, right-click on User Defined Reports and choose Import).
Notice that there are <binds>s on the detail reports. They don't belong there; only the one on the master report belongs. (The <binds> is specified by the Binds tab when creating a report. They are for prompting the user for value(s) and you cannot do that in child reports.) Even if I removed the <binds>s from the detail reports before importing the XML file, I still see the problem. SQL Developer also ends up putting them back. I think that it might happen to each detail report individually as it is visited when using (ie, not editing) the master/detail report.
<?xml version="1.0" encoding="UTF-8" ?><displays><display id="" type="" style="Table" enable="true">
     <name><![CDATA[Sad]]></name>
     <description><![CDATA[]]></description>
     <tooltip><![CDATA[]]></tooltip>
     <drillclass><![CDATA[null]]></drillclass>
     <CustomValues>
          <TYPE>horizontal</TYPE>
     </CustomValues>
     <query>
          <sql><![CDATA[select distinct OWNER as OWNER
from SYS.ALL_OBJECTS
where (OWNER like :OWNER or :OWNER is NULL)]]></sql>
          <binds>
               <bind id="OWNER">
                    <prompt><![CDATA[OWNER (like)]]></prompt>
                    <value><![CDATA[NULL_VALUE]]></value>
               </bind>
          </binds>
     </query>
     <display id="null" type="Detail" style="Table" enable="true">
          <name><![CDATA[INDEX]]></name>
          <description><![CDATA[]]></description>
          <tooltip><![CDATA[]]></tooltip>
          <drillclass><![CDATA[null]]></drillclass>
          <CustomValues>
          </CustomValues>
          <query>
               <sql><![CDATA[select *
from SYS.ALL_OBJECTS
where OWNER = :OWNER
and OBJECT_TYPE = 'INDEX']]></sql>
               <binds>
                    <bind id="OWNER">
                         <prompt><![CDATA[OWNER]]></prompt>
                         <tooltip><![CDATA[OWNER]]></tooltip>
                         <value><![CDATA[NULL_VALUE]]></value>
                    </bind>
               </binds>
          </query>
     </display>
     <display id="null" type="Detail" style="Table" enable="true">
          <name><![CDATA[PACKAGE]]></name>
          <description><![CDATA[]]></description>
          <tooltip><![CDATA[]]></tooltip>
          <drillclass><![CDATA[null]]></drillclass>
          <CustomValues>
          </CustomValues>
          <query>
               <sql><![CDATA[select *
from SYS.ALL_OBJECTS
where OWNER = :OWNER
and OBJECT_TYPE = 'PACKAGE']]></sql>
               <binds>
                    <bind id="OWNER">
                         <prompt><![CDATA[OWNER]]></prompt>
                         <tooltip><![CDATA[OWNER]]></tooltip>
                         <value><![CDATA[NULL_VALUE]]></value>
                    </bind>
               </binds>
          </query>
     </display>
     <display id="null" type="Detail" style="Table" enable="true">
          <name><![CDATA[PACKAGE BODY]]></name>
          <description><![CDATA[]]></description>
          <tooltip><![CDATA[]]></tooltip>
          <drillclass><![CDATA[null]]></drillclass>
          <CustomValues>
          </CustomValues>
          <query>
               <sql><![CDATA[select *
from SYS.ALL_OBJECTS
where OWNER = :OWNER
and OBJECT_TYPE = 'PACKAGE BODY']]></sql>
               <binds>
                    <bind id="OWNER">
                         <prompt><![CDATA[OWNER]]></prompt>
                         <tooltip><![CDATA[OWNER]]></tooltip>
                         <value><![CDATA[NULL_VALUE]]></value>
                    </bind>
               </binds>
          </query>
     </display>
     <display id="null" type="Detail" style="Table" enable="true">
          <name><![CDATA[SEQUENCE]]></name>
          <description><![CDATA[]]></description>
          <tooltip><![CDATA[]]></tooltip>
          <drillclass><![CDATA[null]]></drillclass>
          <CustomValues>
          </CustomValues>
          <query>
               <sql><![CDATA[select *
from SYS.ALL_OBJECTS
where OWNER = :OWNER
and OBJECT_TYPE = 'SEQUENCE']]></sql>
               <binds>
                    <bind id="OWNER">
                         <prompt><![CDATA[OWNER]]></prompt>
                         <tooltip><![CDATA[OWNER]]></tooltip>
                         <value><![CDATA[NULL_VALUE]]></value>
                    </bind>
               </binds>
          </query>
     </display>
     <display id="null" type="Detail" style="Table" enable="true">
          <name><![CDATA[TABLE]]></name>
          <description><![CDATA[]]></description>
          <tooltip><![CDATA[]]></tooltip>
          <drillclass><![CDATA[null]]></drillclass>
          <CustomValues>
          </CustomValues>
          <query>
               <sql><![CDATA[select *
from SYS.ALL_OBJECTS
where OWNER = :OWNER
and OBJECT_TYPE = 'TABLE']]></sql>
               <binds>
                    <bind id="OWNER">
                         <prompt><![CDATA[OWNER]]></prompt>
                         <tooltip><![CDATA[OWNER]]></tooltip>
                         <value><![CDATA[NULL_VALUE]]></value>
                    </bind>
               </binds>
          </query>
     </display>
</display>
</displays>

Similar Messages

  • Master detail report - problem

    In the master detail form, detail record should be displayed vertical. Yes i did it. But adding row another vertical record below the existing one getting displayed. instead of that vertical records should be placed horizontally or any point of time new record or last record should be placed as one so that i can able to see the master record and the last record in single screen without moving arrow keys. is it possible

    OPTION-I
    MASTER-----------------DETAIL1----------------DETAIL2----------------DETAIL3
    MATERIALCODE------ORDERNO---------------ORDERNO--------------ORDERNO
    ----------------------------QUANTITY-------------QUANTITY-------------QUANTITY
    OPTION-II (prefered)
    MASTER-----------------DETAIL3----------------DETAIL2----------------DETAIL1
    MATERIALCODE------ORDERNO---------------ORDERNO--------------ORDERNO
    ----------------------------QUANTITY-------------QUANTITY-------------QUANTITY
    As you have shown multiple form using different region. New Blank record should always be adjacent immediate to master.

  • Problem in Master detail report

    Hi Team,
    I want to generate a master detail- report on table employees(empno,ename,sal,jobid,deptno,deptname,dept_mobileno,dept_pincode).
    The report should be display in the format which is shown in the image present at URL:- http://www.uploadup.com/di-DC37.jpg
    For each unique combination of columns (empno,ename,sal,jobid) , i want to display the detailed records ( more than one ) (deptno,deptname,dept_mobileno,dept_pincode).
    Please see the image present at URL :- http://www.uploadup.com/di-DC37.jpg
    Please help me on this how to edit templates for my requirement and what sql query is required to solve this problem.
    Thanks and Regards,
    Rajendra Yadav

    913508 wrote:
    Hi Team,Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your profile with a real handle instead of "913508".
    You'll get a faster, more effective response to your questions by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s)
    I want to generate a master detail- report on table employees(empno,ename,sal,jobid,deptno,deptname,dept_mobileno,dept_pincode).
    The report should be display in the format which is shown in the image present at URL:- http://www.uploadup.com/di-DC37.jpg
    For each unique combination of columns (empno,ename,sal,jobid) , i want to display the detailed records ( more than one ) (deptno,deptname,dept_mobileno,dept_pincode).
    Please see the image present at URL :- http://www.uploadup.com/di-DC37.jpg
    Please help me on this how to edit templates for my requirement and what sql query is required to solve this problem.Thanks for making the effort to create the demo screenshots, they're helpful but with APEX we're fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    Please create sample tables and data on apex.oracle.com and post guest developer credentials for your workspace here.
    +{message:id=9816577}+ covers a similar problem.

  • Master-detail reports in SqlDeveloper

    Hello,
    I recently read this article by Sue Harper.
    www.oracle.com/technology/oramag/oracle/07-may/o37sql.html
    I am using Sqldeveloper for a little while now, but never created a user-defined report.
    This morning I read this article about it, and I am really thrilled.
    The problem is: I cannot get a master-detail report to work.
    I followed the instructions:
    Master query:
    select a.master_column
    from not_important a
    The type of the detail report is "DETAIL" and I refer to the master-column like this : where blabla = :MASTER_COLUMN
    I Tried:
    * changing caption of the bind variable.
    * adding a column alias in the master query
    * changing type to child
    nothing works
    Tried it in sqldeveloper: 1.5.4 and 1.1.2.25
    neither work.
    Of course I am missing the obvious. Can somebody please point out, what I am doing wrong.
    Regards.

    I finally figured out, what I was doing wrong.
    I tested my report with a single master-record by pressing the detail run-button (>) immediately after the report openend, WITHOUT first actually selecting this single master record with my mouse.
    So when I hit the detail run-button (>) Oracle returned with a "All Rows Fetched: 0". So I never realized I was actually querying with a NULL value in the bind variable.

  • Master Detail Report for PDF Printing

    Dear All,
           While trying to create a master detail report using Oracle APEX 4.2 and BI Publisher. I tried creating report queries and report layout following the below mentioned steps.
    CREATE TYPE emp_row AS OBJECT (
      EMPNO NUMBER(4),
      ENAME VARCHAR2(10),
      JOB VARCHAR2(9),
      MGR NUMBER(4),
      HIREDATE DATE,
      SAL NUMBER(7,2),
      COMM NUMBER(7,2)
    CREATE TYPE emp_tab AS TABLE OF emp_row;
    CREATE TYPE dept_row AS OBJECT (
      DEPTNO NUMBER(2),
      DNAME VARCHAR2(14),
      LOC VARCHAR2(13),
      EMP_LIST emp_tab
    SELECT SYS_XMLAGG (
      SYS_XMLGEN(
      dept_row(
      d.deptno, d.dname, d.loc,
      CAST(MULTISET(SELECT e.empno, e.ename, e.job, e.mgr, e.hiredate, e.sal, e.comm
      FROM emp e
      WHERE e.deptno = d.deptno) AS emp_tab)
      SYS.XMLGENFORMATtYPE.createFormat('DEPT')
      ) AS "XML_QUERY"
    FROM dept d
    WHERE d.deptno = 10;
    Though the above steps generates xml output while trying to generate in APEX it says unsupported datatype. Tried using DBMS_LOB as well no luck. Any inputs will be quite helpful. Should there be any other way to incorporate master detail report printing in APEX kindly advise.
    Thanks
    Ahmed

    Hi Ahmed_Jed,
    Ahmed_Jed wrote:
    Thanks Kiran for your prompt response. I tried following the steps already using this link (How To Create a Master-Detail PDF Report) somehow the detail record was not getting processed perhaps was trying to generate xml data using the above query. Any other reference will be highly appreciated.
    Regards
    Ahmed
        Well the problem lies here:
    SELECT SYS_XMLAGG (
      SYS_XMLGEN(
      dept_row(
      d.deptno, d.dname, d.loc,
      CAST(MULTISET(SELECT e.empno, e.ename, e.job, e.mgr, e.hiredate, e.sal, e.comm
      FROM emp e
      WHERE e.deptno = d.deptno) AS emp_tab)
      SYS.XMLGENFORMATtYPE.createFormat('DEPT')
      ) AS "XML_QUERY"
    FROM dept d
    WHERE d.deptno = 10;
        The Report Query itself generates XML data (in the required BI Publisher format). So, no need to generate it like this.
        As you are using table functions your query should be of the type:
    SELECT EMPNO
                , ENAME
                , JOB
                , MGR
                , HIREDATE
                , SAL
                , COMM
        FROM TABLE ( EMP_PKG.GET_EMPLOYEES ( :PXX_DEPTNO ))
        where EMP_PKG.GET_EMPLOYEES is packaged table function which returns the Object Table of type EMP_TAB mentioned above.
        When you test the above Report Query with sample DEPTNO, it will generate the sample XML, which you can use to generate Report Layout in RTF format using BI Publisher Desktop.
        Hope this helps!
    Regards,
    Kiran

  • Group above master/detail report; page break causes repeat of master frame

    Hi
    I have a a group above master/detail report; when there is a page break part way through the master frame it causes the whole master frame to be repeated on the next page. I don't want this to happen, I just want the remainder of the master frame to be displayed on the next page. any ideas?
    TIA

    Hi
    I've tried switching the "Page Protect" to No at the page level and the "Print Object On" is set to "First Page" but it doesn't solve the problem. The whole master frame is repeated on the next page when a page break occurs part way through. The master/detail Repeating Frame "Print Object On" is set to "Last Page".
    Any other ideas?
    TIA

  • Master-Detail Report

    Hi Gurus,
    I am trying to implement master-detail report in single window without navigating to other window in OBI 10g by following the below link
    http://108obiee.blogspot.in/2010/02/obiee-master-detail-requests-navigation.html
    but i am facing problem in creating iframe column and including that column in the report
    Can we achieve this requirement in OBI 10g if yes please suggest me how can we do this.
    Thanks,

    Hi Muram,
    For implementing Master-detail for the product report when we click on Prod-Cat from master report(Year, Prod-Cat, Tot-Sales) it as to show the detail report (Prod-SubCat,Tot-Sales) in the same window without navigation to the other window for this scenario I implemented the steps as per the below URL which was send in the previous post.
    http://obiee10grevisited.blogspot.in/2012/05/master-detailed-report-on-same-page.html
    but I am facing problem in 5th,6th,7th steps could you please suggest me on these.
    1>First I created master report with columns (Year, Prod-Cat, Tot-Sales)
    2>Second I created detail report with columns(Prod-SubCat,Tot-Sales)
    3>I have created two prompts Year and Prod-Cat
    4>Now in the dashboard page I kept prompts and two reports in separate sections
    5>To build intermediate report for validation which columns I have to take in that report and what I have to give in the fx.
    6>In the detail report sections in the edit dashboard how to give the reference to the intermediate report and how to make the report not visible at the initial view of the user.
    7>In the main report how to give the navigation to the same page which consist of main and detail report together we can navigation either main report or detail report how we can navigation which consist of both.
    Thanks,
    Rafi
    Edited by: Rafi.B on Aug 29, 2012 11:42 AM

  • Master Detail Report + Tab navigation error

    Hello All,
    I built a master detail report and included a standard tab set. I built it with the wizard. When tabbing from the report page there is no problem. When tabbing from the associated master detail page you always get "web page not found" with this in the address bar-"http:///apex/wwv_flow.accept". I understand why you would not want to tab out from this type of page. Can anyone point me in the right direction to remove the tabs from view on this page. All my attempts want to remove the tabs at the application level. I am using the one level tab page template. Thanks ...

    Wayne,
    If you can put your application on apex.oracle.com and tell me how I can see this problem, that might be easiest. Just need your workspace name and application ID (plus instructions).
    Scott

  • Repeating  field values per paage in Master Detail Report

    I know there are lots of threads about repeating fields values across pages but not seem to work that I have tried and I was looking for a simple resolution to my problem.
    I have a master detail report like:
    Deptno: 10 Dname: Accounting
    Empno Surname Job Sal
    1234 Smith Clerk 1000
    1235 Jones Clerk 1200
    Deptno: 20 Dname: Research
    Empno Surname Job Sal
    2234 Smith Clerk 1000
    2235 Jones Clerk 1200
    etc. The employee data is displayed in a Word table.
    Now if I use the standard emp/dept tables (with only 14 employees) the report paginates properly and I see one department per page and the corresponding employees per page. I have used the <?split-by-page-break: ?> tag. A sample of the rtf file is:
    <?for-each:dept?>Dept: <?deptno?> Name: <?dname?>
    TABLE of EMPS (via insert -> table ->advanced etc)
    <?split-by-page-break: ?>
    <?end for-each?>
    Everything works fine but if I then apply a larger xml file to this rtf where the number of employees spill over onto another page the deptno and the dname do not print before the table when I want them to.
    I have tried putting things into Word headers, using the <?start:body?> tag and a couple of other ways (like @section). Could someone be quite explicit about the steps I need to follow (rather than just say put it in a header) to make sure that if the employees spill over the page the deptno and dname will display. I don't know if its made more difficult because I have multiple departments but any help would be appreciated.

    I sent a template to Chris who was able to solve the problem.
    The change that he made was from:
    <?for-each:dept?>Dept: <?deptno?> Name: <?dname?>
    TABLE of EMPS (via insert -> table ->advanced etc)
    <?split-by-page-break: ?>
    <?end for-each?>
    to:
    Dept: <?deptno?> Name: <?dname?>
    <?start:body?><?for-each@section:dept?>
    TABLE of EMPS (via insert -> table ->advanced etc)
    <?end for-each?><?end body?>
    That is, he used the start and end body tags and the section attribute and took out the <?split-by-page-break: ?> tag. I put back in the split page tag on the template he gave me but it gave me an extra page each time the department changed. So maybe you can really only use one of the other.
    Regardless, Chris sorted it out for me, so thanks.

  • Master /Detail create problem

    hi,everyone:
    Firstly to say sorry for my bad English.
    Now I have a question:
    I'm working in JDeveloper 10.1.3 .The model layer is SessionEJB /Toplink ,and the view layer is JSF. I have a data structure :
    HrUnit : Master
    HrHuman : detail
    HrKnowledge : detail
    the <HrHuman>'s PRIMARYKEY is <ID>,and the <HrKnowledge>'s FOREIGN KEY is <RYID>.
    and I want to make a page to insert a new row on <HrKnowledge>. I drag the <hrKnowledgeCollectionIterator> into the page as <ADF Creation Form>, the page run fine.
    next step, I make <persistEntity> binding to the <submit button> and the parameters(entity) is
    ${bindings.hrKnowledgeCollectionIterator.currentRow.dataProvider}.
    when i run the page , i get a wrong . i get the SQL in the <Unit of work > is
    "INSERT INTO HrUnit ....."
    i create a direct mapping for the detail's foreginkey in toplink,and when i "rebuild" the map ,it gives me a warning. This warning affect my custom code in EJB,it can't work correctly. So i can't use this way in my question.
    Re: Master /Detail  create problem
    I beg your help.
    Thanks. and very very thanks.

    Hi,
    I am not an expert in TopLink, but it appears to me that the TopLink model is causes your problems not ADF. There is a TopLink forum here on OTN that could give you a helping hand on this issue.
    The following tutorial explains the use of TopLink in ADF
    http://www.oracle.com/technology/obe/obe1013jdev/10131/10131_adftoplink/master-detail-edit_page_adf_toplink.htm
    Frank

  • Master Detail Report Export to Excel/CSV

    Hello,
    Does anybody know how one may export a master detail report page - master is a html region, detail is a report region export to a csv file.
    The only option I found i the layout and pagination - export csv option, but this generates just the report region...
    Is there any possiblility to export the report as shown on screen to csv?
    Thanx
    Johann

    Hi,
    Limit the range of data to be exported and check any row missing.
    Thanks & Regards,
    Nagarajan

  • My iSight is not working on my Macbook Pro. What are the possible problems and solutions?

    My iSight is not working on my Macbook Pro. What are the possible problems and solutions?

    Hello Douglas,
    Thank you for the details of the issue you are experiencing with the built-in iSight camera on your MacBook Pro.  I recommend the following steps for this issue:
    Important: Follow these instructions in order. Test the camera between steps to see if the issue is resolved.
    Built-in iSight cameras
    These steps are for iSight cameras that are built into a computer, such as the iMac G5 (iSight) or later, the MacBook, or MacBook Pro.
    See if the issue is application-specific.
    Try another application (iSight works with applications like iChat, PhotoBooth, and iMovie HD 6) to see if the iSight camera exhibits the same behavior in all applications. If it only happens in one application, try reinstalling that application.
    See if the issue is user-specific.
    Test your iSight camera in another user account. If the issue only occurs in one user, the issue would be isolated to user settings.
    Find out if the computer recognizes the iSight
    Check System Profiler (in the Utilities folder, inside the Applications folder). Under the USB header, check to see if the iSight camera is detected.
    Reset SMC or PMU
    Reset your computer's SMC or PMU, and then check System Profiler again. (SMC reset instructions for iMac G5 (iSight), Intel-based iMacs; PMU reset instructions for MacBook and MacBook Pro.)
    If your built-in iSight camera is still not behaving correctly after trying all these steps, you may need to contact Apple or an Apple-Authorized Service Provider for service.
    You can find the full article here:
    How to Troubleshoot iSight
    http://support.apple.com/kb/ht2090
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • CD-DVD ( Optical Drives ) Common Problems and Solutions

    CD/DVD Common Problems…
    Dear friends, I have noticed that many laptop users suffering from some common problems. cd/dvd ( Optical Drive ) problems are one of them.. so here I am trying to collect and make available solutions related to cd/dvd drives . Almost all solutions are already advised in previous posts but these are  all are in one post. We all are here for sharing problems and solutions. I always appreciate all corrections and additions. In first look optical drive problems seems like hardware problem. These problems have hardware/software both possibility so I request to administrator, to make available this post in both ( hardware – software  ) sections. I put only solution links to save forum’s valuable space.
    CD-DVD drive called  an OPTICAL DRIVE.
    CD-DVD discs called A MEDIA
    There are 2 possibilities for optical drives problems.
    Widows based problems
    Hardware based problems
    First here are windows based few common problems
    All windows based solutions are from Microsoft Corporation.
    Your CD drive or DVD drive is missing or is not recognized by Windows or other programs - Windows XP...
    Symptom:Your CD drive or DVD drive is missing or not recognized by Windows or other programs, so you cannot play or access a CD or DVD
    The CD drive or the DVD drive does not work as expected on a computer that you upgraded to Windows V...
    Symptom : You upgrade a computer to Windows Vista or install Windows Vista Service Pack 1 or you install or uninstall applications that have a CD/DVD filter driver.
    When you restart the computer, the CD drive or DVD drive no longer works as expected
    Your CD or DVD drive cannot read or write media
    Symptoms : Your CD or DVD Drive does not read or write and is shown as disabled
    The media in your CD or DVD drive cannot be read
    The media cannot be written to by your CD or DVD drive
    You receive one of the following errors:
    A class specific or device specific driver is missing or corrupt
    A CD or DVD drive cannot be found or is not connected
    The CD or DVD drive is experiencing a problem that prevents it from working properly
    The CD or DVD drive is not accessible via an assigned drive letter
    How to troubleshoot common problems that occur when a Windows XP-based computer cannot read a CD or ...
    Symptoms:
    The disc label does not appear in Windows Explorer.
    The contents of the disc do not appear in Windows Explorer.
    When you insert the disc in the drive or when your computer tries to read the disc,the computer stops responding.
    You cannot eject the disc from the drive.
    The computer takes a long time to read the disc.
    CD drive or DVD drive errors may cause unexpected program crash in Windows XP
    Symptom : Error
    "Program_name has caused and error and must be closed. We apologize for the inconvenience. If you were in the middle of something, the information you were working on might be lost. Please tell Microsoft about this problem. We have created an error report that you can send to help us improve rogram_name. We will treat this report as confidential and anonymous. To see what data this error report contains, click here."
    You cannot write to a DVD-RAM disc that is in a DVD-RAM/CD-RW combination drive
    Symptom : "The disc in the drive is not a writable CD or it is full. Please insert a blank, writable CD into drive D:\, or insert a disc with enough free space to hold all the files you have selected for writing to CD. "
    DVD-RW Drive Appears in My Computer as a DVD-R Drive
    Symptom : "If your computer has a DVD-RW (digital video disc rewritable) optical drive, the DVD-RW icon may not appear in My Computer. Instead, your DVD-RW optical drive may appear as a DVD-R (digital video disc recordable) icon."
    Windows XP does not recognize a DVD-RW disc
    Symptom : When you insert a DVD-RW disc into the DVD drive of a Microsoft Windows XP-based computer, Windows XP does not recognize the disc. For example, you do not see any files on the disc.
    You may also experience this problem with DVD-RW discs that have been formatted as VD-VR. Some consumer DVD recorders use the DVD-VR format.
    CD-R drive or CD-RW drive is not recognized as a recordable device
    Symptom : When you try to burn data to a CD-R or a CD-RW, you do not have the option to send data to the CD drive.
    When you view the properties of the CD-R drive or the CD-RW drive, you notice that the Recording tab is not displayed in the CD Drive (drive_letter: ) Properties dialog box, where drive_letter is the letter of the CD-R drive or CD-RW drive.
    Note To view the CD Drive (drive_letter: ) Properties dialog box, click Start, click My Computer, right-click the CD drive that you want, and then click Properties.
    Additionally, you may receive the following error message:
    There is no disc in the drive. Please insert a writable CD into drive.
    CD-ROM Drive May Not Be Able to Read a UDF-Formatted Disc in Windows XP
    Symptom : Your computer cannot read some or all files on CDs or DVDs that were recorded through the use of the Optical Storage Technology Association (OSTA) Universal Disk Format (UDF) file system standard. Symptoms may include:
    The disc is not recognized at all and shows up as empty.
    Error messages such as "The file or directory is corrupt and unreadable" appear when you try to access files in Windows Explorer.
    Some portions of a DVD-video may not function correctly
    How to troubleshoot issues that occur when you write data to a CD-R or CD-RW optical disc in Windows...
    Symptoms :issues that occur if you write data to CD-R and CD-RW optical discs and how to troubleshoot issues with CD-R and CD-RW drives.
    These are most common issues related to optical drivers.
    Tomorrow will try to explain hardware possibilities.
    All friends suggestions and correction are highly advisable..

    I upgraded to W7 and everything works fine except two things.
    I followed the
    http://h30434.www3.hp.com/t5/Operating-systems-and-software/Windows7-Upgrade-Guide-for-dv6000-dv9000...
    process and still have the problem DVD not under device manager
     DVD spins when booting but after W7 splash screen no longer functions, it did work prior to upgrade.
    I have seen many listed problems but no solution. my device is a TS-L632N and based on the most recent drivers i can find still not working. I looked in the registry and it is not listed under cdrom or
    {4D36E965-E325-11CE-BFC1-08002BE10318}
    there are no upper or lower filters

  • Master details report/form

    Hi Friends,
    I want to create a Master-Detail report/form.
    I have one Master Table and it has 3 Detail tables.
    Example:
    Master Table: Members
    Detail Tables: Contributions
                   Loans
                   Benefit ClaimsI want to show when I click on a specific Member in the report edit , I can make entry/update to all
    the 3 detail tables. And not going each entry separately.
    Is this design requirement good?
    Thanks a lot

    You can look here on how to create multiple detail tables:
    http://htmldb.oracle.com/pls/otn/f?p=31517:163
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Master Detail Report using Report Query

    I am using APEX Report Query component to try and create a mater/detail report with BI plug-in. The Report Queries doesn't give you mush flexibility as each query is independent of the other. I'm trying to see if I need to create 2 queries or 1 AND what option would let me create a master detail report like so in BI Desktop:
    Employee: Bob ID:100 Dept: HR
    Jobs
    Job 1
    Job 2
    Job 3
    Employee: Tom ID:200 Dept: ACCt
    Jobs
    Job 1
    Job 2
    Job 3
    Option1.
    I could combine the Employee Job info with the Employee info, but that would report the Employee info for every Employee Job. I didn't think that was good.
    <Rowset1_Row>
    <EMPID>
    <NAME>
    <DEPT>
    <JOB>
    </Rowset1_Row>
    Option 2.
    I could create 2 queries. The 1st getting all of the Empoyee info. The 2nd getting all of the Employee jobs.
    <Rowset1_Row>
    <EMPID>
    <NAME>
    <DEPT>
    <JOB>
    </Rowset1_Row>
    <Rowset2_Row>
    <EMPID>
    <JOB>
    </Rowset2_Row>
    <Rowset2_Row>
    <EMPID>
    <JOB>
    </Rowset2_Row>
    Any advice?
    Edited by: bobmagan on Jun 1, 2009 5:29 AM

    Can you check for the settings please.
    Thanks and Regards
    Riyas

Maybe you are looking for

  • External Hard Drive + 2 Pc's ( home & office)

    It would really be great to be able to change the location where the library files are saved (for example in ITunes music directory). The lack of this option is very inconvinient for people who are using mobile hard drives and 2 or more pc's (I have

  • Sync  Error in PDA

    Hi all Getting a new error in the PDA Error:    Synchronization started • Connection set up (without proxy) to:     http://<server>:50000/meSync/servlet/meSync?~sysid=mi1& • Connection to server failed. • Error: cannot connect (java.io.FileNotFoundEx

  • Help setting up back navigation button by label name.

    Newbie back for some gems of wisdom. I am trying to get forward and back buttons to advance the user along the timeline by label name. I got the forward button to work, but can't seem to find the right code tweakage to get the back button to work. He

  • Can I upgrade my e9150t front panel 2 usb from 2.0 to 3.0?

    I have an e9150t about 5 or so years old.  I just added a USB 3.0 card to it.  Can I somehow upgrade or swap out the front panel top left 2 usb slots with 3.0? Thanks

  • How to enforce a check before deleting a transaction

    Hi, We want to restrict the deletion of order based on status . Eg: When the status of the order is Inprocess , deletion should be aborted with error message. Is there a BAdi to achieve this? Thanks, Shaik