Master/Master Matrix Report

May I know is it possible to create a Master/Master matrix report? The example given in the Reports Documentation shows Master/Master Tabular reports only and I have been attempting to create a Matrix one but without success. Thank You.
Cheers,
Tan

I have never come across a two query M:M matrix report. Just out of curiosity, what is your requirement that would make that necessary?
Metalink provides a couple of different ways to do matrix reports (including the 1 query and 3 query methods) but I haven't seen anything to the effect of what you are describing.
Regards,
Steve

Similar Messages

  • Vendor master analysis report

    hi,
    what is vendor master analysis report? and how to create it?

    Hi
    This link may be useful
    http://help.sap.com/saphelp_47x200/helpdata/en/8d/b97fd2414511d188fc0000e8322f96/frameset.htm

  • 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

  • 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

  • Best Practice for Master Data Reporting

    Dear SAP-Experts,
    We face a challenge at the moment and we are still trying to find the right approach to it:
    Business requirement is to analyze SAP Material-related Master Data with the BEx Analyzer (Master Data Reporting)
    Questions they want to answer here are for example:
    - How many active Materials/SKUs do we have?
    - Which country/Sales Org has adopted certain Materials?
    - How many Series do we have?
    - How many SKUs below to a specific season
    - How many SKUs are in a certain product lifecycle
    - etc.
    The challenge is, that the Master Data is stored in tables with different keys in the R/3.
    The keys in these tables are on various levels (a selection below):
    - Material
    - Material / Sales Org / Distribution Channel
    - Material / Grid Value
    - Material / Grid Value / Sales Org / Distribution Channel
    - Material / Grid Value / Sales Org / Distribution Channel / Season
    - Material / Plant
    - Material / Plant / Category
    - Material / Sales Org / Category
    etc.
    So even though the information is available on different detail  levels, the business requirement is to have one query/report that combines all the information. We are currently struggeling a bit on deciding, what would be the best approach for this requirement. Did anyone face such a requirement before - and what would be the best practice. We already tried to find any information online, but it seems Master data reporting is not very well documented. Thanks a lot for your valuable contribution to this discussion.
    Best regards
    Lukas

    Pass a reference to the parent into the modal popup. Then you
    can reference anything in the parent scope.
    I haven't done this i 2.0 yet so I can't give you code. I'll
    post if I do.
    Oh, also, you can reference the parent using parentDocument.
    So in the popup you could do:
    parentDocument.myPublicVariable = "whatever";
    Tracy

  • Master Data Report

    Hi,
    I want to create a master data report which contains just charactristics no key figures.
    For excample I want to show which client has which type of rate.
    How can I do this?
    Everytime I get an error message that I have to determine a key figure in the report.
    THanks
    Johannes

    Thanks I understand that I have to use a workaround like this.
    But can I display characterisitc values in the query like a key figure value?
    Customer | Rate
    Client 1    | AAA
    Client 2    | BBB
    Clinet 3    | AAA
    Thanks
    Johannes

  • 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
    -------------------------------------------------------------------

  • 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

  • Withholding tax master data report changes in SAP FI

    Hi All,
    In our client according to new audit requirements improvements have to be done for the withholding tax report. According to the the requirements changes only functionality has to be added to the main selection screen of the withholding tax master data report.
    Changes only functionality has to be added to the selection screen of the report, the report has to display changes made to the tax master data with in a range of period, this was achieved easily by making program changes. Only issue now is when we do it in development client its showing us properly but when we do it in production it is not working because when ever we do any configuration changes we do it in the development client and transport it to production client so the changes done to any configuration with respect to WHT are not recorded in the production environment as they are transported from development client.
    So, we are unable to achieve this in production client, please help me out with this issue.
    Tthanks in advance

    hi
    i need field
    withholding tax exemption no, exemption from date, todate, Exemption reason, 
    as a master data it is saved in vendor master data > withholding tax accounting
    but i need where it is saved in transaction data.
    thanks

  • 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>

  • 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

  • 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 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

  • Master Detail Report - Multiple Queries

    We are calling a BI Publisher report from Application Express (3.2.1.00.12). In Apex I have 3 report queries for 1 report layout.
    This is a sample of the .XML:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <DOCUMENT>
    <DATE>06/04/2010</DATE>
    <USER_NAME>KELLYF</USER_NAME>
    <APP_ID>20080618</APP_ID>
    <APP_NAME>SIS Express</APP_NAME>
    <TITLE>STUDENT_PROFILE</TITLE>
    <P507_YEAR>1AD004DBEE904C32B6F6C0D7183BA735</P507_YEAR>
    <P507_REPORT_ORDER>LAST_NAME</P507_REPORT_ORDER>
    <P507_REPORT_ORDER2>FIRST_NAME</P507_REPORT_ORDER2>
    <P507_REPORT_ORDER3>%25null%25</P507_REPORT_ORDER3>
    <P507_REPORT_ORDER4>%25null%25</P507_REPORT_ORDER4>
    <P507_OWNER>SIS_EXPRESS</P507_OWNER>
    <P507_DISPLAY_YEAR>2008-2009</P507_DISPLAY_YEAR>
    <P507_DISPLAY_REPORT_NAME>Student Profile</P507_DISPLAY_REPORT_NAME>
    <P507_APP_USER>KELLYF</P507_APP_USER>
    <P507_RESIDES_ONLY>Y</P507_RESIDES_ONLY>
    <P507_DISPLAY_SCHOOL_NAME>Century High School</P507_DISPLAY_SCHOOL_NAME>
    - <REGION ID="31792926982400622">
    - <ROWSET1>
    - <ROWSET1_ROW>
    <STUDENT_ID_LABEL>ID#</STUDENT_ID_LABEL>
    <STATE_STU_ID_LABEL>State ID#</STATE_STU_ID_LABEL>
    <STUDENT_NAME_LABEL>Student</STUDENT_NAME_LABEL>
    <GRADE_LEVEL_LABEL>Grade</GRADE_LEVEL_LABEL>
    <COUNSELOR_LABEL>Counselor</COUNSELOR_LABEL>
    <HOMEROOM_LABEL>Homeroom</HOMEROOM_LABEL>
    <SEX_LABEL>Sex</SEX_LABEL>
    <ETHNIC_LABEL>Ethnicity</ETHNIC_LABEL>
    <BIRTH_DATE_LABEL>Date of Birth</BIRTH_DATE_LABEL>
    <SPECIAL_ED_LABEL>Special Ed</SPECIAL_ED_LABEL>
    <ACTIVE_LABEL>Active</ACTIVE_LABEL>
    <SCHOOL_LABEL>School</SCHOOL_LABEL>
    <YEAR_LABEL>Year</YEAR_LABEL>
    <CLUSTER_CODE_LABEL>Cluster</CLUSTER_CODE_LABEL>
    <BIRTH_PLACE_LABEL>Place</BIRTH_PLACE_LABEL>
    <YR_OF_GRAD_LABEL>Year of Graduation</YR_OF_GRAD_LABEL>
    <PREVIOUS_SCHOOL_LABEL>Previous School</PREVIOUS_SCHOOL_LABEL>
    <PRIMARY_LANGUAGE_LABEL>Primary Language</PRIMARY_LANGUAGE_LABEL>
    <HOME_LANGUAGE_LABEL>Home Language</HOME_LANGUAGE_LABEL>
    <GENERIC_ALERT_LABEL>Alert</GENERIC_ALERT_LABEL>
    <CITIZENSHIP_CODE_LABEL>Citizenship Code</CITIZENSHIP_CODE_LABEL>
    <CONTACT_REL_DESC_LABEL>Relation</CONTACT_REL_DESC_LABEL>
    <CONTACT_NAME_LABEL>Last Name</CONTACT_NAME_LABEL>
    <PHONE_LABEL>Phone#</PHONE_LABEL>
    <PHONE_DESCRIPTION_LABEL>Phone Description</PHONE_DESCRIPTION_LABEL>
    <EMERGENCY_PHONE_LABEL>Emergency Phone</EMERGENCY_PHONE_LABEL>
    <EMERGENCY_DESCRIPTION_LABEL>Emergency Description</EMERGENCY_DESCRIPTION_LABEL>
    <WORK1_PHONE_LABEL>Work Phone</WORK1_PHONE_LABEL>
    <WORK1_DESCRIPTION_LABEL>Work Phone Description</WORK1_DESCRIPTION_LABEL>
    <WORK2_PHONE_LABEL>2nd Work Phone</WORK2_PHONE_LABEL>
    <WORK2_DESCRIPTION_LABEL>Work Phone 2 Description</WORK2_DESCRIPTION_LABEL>
    <CELL_PHONE_LABEL>Cell Phone</CELL_PHONE_LABEL>
    <CELL_DESCRIPTION_LABEL>Cell Description</CELL_DESCRIPTION_LABEL>
    <CELL2_PHONE_LABEL>2nd Cell Phone</CELL2_PHONE_LABEL>
    <CELL2_DESCRIPTION_LABEL>Cell Phone 2 Description</CELL2_DESCRIPTION_LABEL>
    <CONTACT_EMAIL1_LABEL>Primary Email</CONTACT_EMAIL1_LABEL>
    <CONTACT_EMAIL2_LABEL>Secondary Email</CONTACT_EMAIL2_LABEL>
    <CAN_PICK_UP_STUDENT_LABEL>Can Pick Up Student</CAN_PICK_UP_STUDENT_LABEL>
    </ROWSET1_ROW>
    </ROWSET1>
    - <ROWSET2>
    - <ROWSET2_ROW>
    <GROUP_FIELD>D0056</GROUP_FIELD>
    <STUDENT_ID>D0056</STUDENT_ID>
    <STATE_STU_ID>11223</STATE_STU_ID>
    <STUDENT_NAME>Abarquez, Janelle Beatrice</STUDENT_NAME>
    <GRADE_LEVEL>10</GRADE_LEVEL>
    <COUNSELOR_NAME>Cahill C</COUNSELOR_NAME>
    <HOMEROOM>100</HOMEROOM>
    <SEX>F</SEX>
    <ETHNIC>Black / African American (02)</ETHNIC>
    <BIRTH_DATE>10/02/1993</BIRTH_DATE>
    <SPECIAL_ED>004</SPECIAL_ED>
    <ACTIVE>Active</ACTIVE>
    <SCHOOL>001</SCHOOL>
    <SCHOOL_YEAR>2008</SCHOOL_YEAR>
    <YR_OF_GRAD>2012</YR_OF_GRAD>
    <PREVIOUS_SCHOOL>004</PREVIOUS_SCHOOL>
    <PRIMARY_LANGUAGE>French (FRA)</PRIMARY_LANGUAGE>
    <HOME_LANGUAGE>English (ENG)</HOME_LANGUAGE>
    <BIRTH_PLACE>Toms River, NJ United States</BIRTH_PLACE>
    <CITIZENSHIP_CODE>B</CITIZENSHIP_CODE>
    <GENERIC_ALERT>Student has an extreme allergy to peanuts, carries an epi-pen.</GENERIC_ALERT>
    <CLUSTER_CODE>7th Grade Team 4 (7D)</CLUSTER_CODE>
    <PRIORITY>1</PRIORITY>
    <CONTACT_RELATION />
    <CONTACT_REL_DESC>Parents</CONTACT_REL_DESC>
    <CONTACT_NAME>Mr. & Mrs. Ricardo and Janelyn Abarquez</CONTACT_NAME>
    <ADDRESS_LINE1>2334 MAIN STR</ADDRESS_LINE1>
    <ADDRESS_LINE2 />
    <ADDRESS_LINE3 />
    <PHONE>(732) 444-4587</PHONE>
    <PHONE_DESCRIPTION>DKDK OEO RA EPO IRAP RAP RPRIA PAIRPIEP A FIPE P</PHONE_DESCRIPTION>
    <PHONE_UNLISTED />
    <EMERGENCY_PHONE />
    <EMERGENCY_DESCRIPTION />
    <EMERGENCY_UNLISTED />
    <CELL_PHONE />
    <CELL_DESCRIPTION />
    <CELL_UNLISTED />
    <CELL_EXTENSION />
    <CELL2_PHONE />
    <CELL2_DESCRIPTION />
    <CELL2_UNLISTED />
    <CELL2_EXTENSION />
    <WORK1_PHONE />
    <WORK1_DESCRIPTION />
    <WORK1_UNLISTED />
    <WORK1_EXTENSION />
    <WORK2_PHONE />
    <WORK2_DESCRIPTION />
    <WORK2_UNLISTED />
    <WORK2_EXTENSION />
    <CONTACT_EMAIL1 />
    <CONTACT_EMAIL2 />
    <CAN_PICK_UP_STUDENT>Can Pick Up Student</CAN_PICK_UP_STUDENT>
    <MON_PICK_UP />
    <TUE_PICK_UP>Tuesday</TUE_PICK_UP>
    <WED_PICK_UP>Wednesday</WED_PICK_UP>
    <THU_PICK_UP>Thursday</THU_PICK_UP>
    <FRI_PICK_UP>Friday</FRI_PICK_UP>
    <SAT_PICK_UP>Saturday</SAT_PICK_UP>
    <SUN_PICK_UP>Sunday</SUN_PICK_UP>
    <RELATION_RESIDES>Residence</RELATION_RESIDES>
    </ROWSET2_ROW>
    - <ROWSET2_ROW>
    <GROUP_FIELD>600</GROUP_FIELD>
    <STUDENT_ID>600</STUDENT_ID>
    <STATE_STU_ID>600600</STATE_STU_ID>
    <STUDENT_NAME>LaMantia, Andrew</STUDENT_NAME>
    <GRADE_LEVEL>09</GRADE_LEVEL>
    <COUNSELOR_NAME>Morgan L</COUNSELOR_NAME>
    <HOMEROOM>100</HOMEROOM>
    <SEX>M</SEX>
    <ETHNIC>White (01)</ETHNIC>
    <BIRTH_DATE>01/29/2000</BIRTH_DATE>
    <SPECIAL_ED />
    <ACTIVE>Active</ACTIVE>
    <SCHOOL>001</SCHOOL>
    <SCHOOL_YEAR>2008</SCHOOL_YEAR>
    <YR_OF_GRAD />
    <PREVIOUS_SCHOOL />
    <PRIMARY_LANGUAGE />
    <HOME_LANGUAGE />
    <BIRTH_PLACE />
    <CITIZENSHIP_CODE />
    <GENERIC_ALERT>this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert this is a test alert</GENERIC_ALERT>
    <CLUSTER_CODE>7th Grade Team 2 (7B)</CLUSTER_CODE>
    <PRIORITY>1</PRIORITY>
    <CONTACT_RELATION />
    <CONTACT_REL_DESC>Parents</CONTACT_REL_DESC>
    <CONTACT_NAME>Mr Christopher Kopacko</CONTACT_NAME>
    <ADDRESS_LINE1>176 Colonial Dr</ADDRESS_LINE1>
    <ADDRESS_LINE2>Lakewood, NJ 08701</ADDRESS_LINE2>
    <ADDRESS_LINE3 />
    <PHONE>(732) 999-9999</PHONE>
    <PHONE_DESCRIPTION>DKDK OEO RA EPO IRAP RAP RPRIA PAIRPIEP A FIPE P</PHONE_DESCRIPTION>
    <PHONE_UNLISTED />
    <EMERGENCY_PHONE />
    <EMERGENCY_DESCRIPTION>393A I FA IUFQOI UR9U4Q TUAUAI;RU 04509 5QQ540 405</EMERGENCY_DESCRIPTION>
    <EMERGENCY_UNLISTED />
    <CELL_PHONE>(732) 777-7779</CELL_PHONE>
    <CELL_DESCRIPTION />
    <CELL_UNLISTED />
    <CELL_EXTENSION />
    <CELL2_PHONE>(732) 666-6660</CELL2_PHONE>
    <CELL2_DESCRIPTION />
    <CELL2_UNLISTED />
    <CELL2_EXTENSION />
    <WORK1_PHONE>(732) 555-5550</WORK1_PHONE>
    <WORK1_DESCRIPTION />
    <WORK1_UNLISTED />
    <WORK1_EXTENSION />
    <WORK2_PHONE>(732) 444-4440</WORK2_PHONE>
    <WORK2_DESCRIPTION />
    <WORK2_UNLISTED />
    <WORK2_EXTENSION />
    <CONTACT_EMAIL1>[email protected]</CONTACT_EMAIL1>
    <CONTACT_EMAIL2>[email protected]</CONTACT_EMAIL2>
    <CAN_PICK_UP_STUDENT>Can Pick Up Student</CAN_PICK_UP_STUDENT>
    <MON_PICK_UP>Monday</MON_PICK_UP>
    <TUE_PICK_UP>Tuesday</TUE_PICK_UP>
    <WED_PICK_UP>Wednesday</WED_PICK_UP>
    <THU_PICK_UP>Thursday</THU_PICK_UP>
    <FRI_PICK_UP>Friday</FRI_PICK_UP>
    <SAT_PICK_UP>Saturday</SAT_PICK_UP>
    <SUN_PICK_UP>Sunday</SUN_PICK_UP>
    <RELATION_RESIDES>Residence</RELATION_RESIDES>
    </ROWSET2_ROW>
    </ROWSET2>
    - <ROWSET3>
    - <ROWSET3_ROW>
    <SIB_GROUP_FIELD>D0056</SIB_GROUP_FIELD>
    <SIB_STUDENT_ID>D0055</SIB_STUDENT_ID>
    <SIB_STUDENT_NAME>Abarquez, Johanna Andrea IV</SIB_STUDENT_NAME>
    <SIB_GRADE_LEVEL>11</SIB_GRADE_LEVEL>
    <SIB_BIRTH_DATE>06/09/1992</SIB_BIRTH_DATE>
    <SIB_SCHOOL>005</SIB_SCHOOL>
    </ROWSET3_ROW>
    - <ROWSET3_ROW>
    <SIB_GROUP_FIELD>600</SIB_GROUP_FIELD>
    <SIB_STUDENT_ID>CHS09010</SIB_STUDENT_ID>
    <SIB_STUDENT_NAME>Abbot, Donna</SIB_STUDENT_NAME>
    <SIB_GRADE_LEVEL>10</SIB_GRADE_LEVEL>
    <SIB_BIRTH_DATE>08/15/1990</SIB_BIRTH_DATE>
    <SIB_SCHOOL>011</SIB_SCHOOL>
    </ROWSET3_ROW>
    - <ROWSET3_ROW>
    <SIB_GROUP_FIELD>600</SIB_GROUP_FIELD>
    <SIB_STUDENT_ID>CHS09010</SIB_STUDENT_ID>
    <SIB_STUDENT_NAME>Abbot, Donna</SIB_STUDENT_NAME>
    <SIB_GRADE_LEVEL>09</SIB_GRADE_LEVEL>
    <SIB_BIRTH_DATE>08/15/1990</SIB_BIRTH_DATE>
    <SIB_SCHOOL>001</SIB_SCHOOL>
    </ROWSET3_ROW>
    - <ROWSET3_ROW>
    <SIB_GROUP_FIELD>600</SIB_GROUP_FIELD>
    <SIB_STUDENT_ID>CHS09010</SIB_STUDENT_ID>
    <SIB_STUDENT_NAME>Abbot, Donna</SIB_STUDENT_NAME>
    <SIB_GRADE_LEVEL>09</SIB_GRADE_LEVEL>
    <SIB_BIRTH_DATE>08/15/1990</SIB_BIRTH_DATE>
    <SIB_SCHOOL>002</SIB_SCHOOL>
    </ROWSET3_ROW>
    </ROWSET3>
    </REGION>
    </DOCUMENT>
    One Student prints on a page (rowset2). I need to print data from rowset3 for each student, (group field = sib_group_field).
    How do I accomplish this?

    [email protected] wrote:
    I finally have gotten a chance to try this and it seemed to be working pretty well. Problem is when the xml file is large 14,246 KB, I get an error box with the following after about 2 minutes.
    ConfFile: C:\Program Files\Oracle\BI Publisher\BI Publisher Desktop\Template Builder for Word\config\xdoconfig.xml
    Font Dir: C:\Program Files\Oracle\BI Publisher\BI Publisher Desktop\Template Builder for Word\fonts
    Run XDO Start
    Template: C:\Temp\STU_SCHEDULE_PRINT.rtf
    RTFProcessor setLocale: en-us
    FOProcessor setData: I:\Application_Express\reports\stu_schedule_print_hampton.xml
    FOProcessor setLocale: en-us
    Under my processes there is a javaw.exe process eating up all my cpu, then after about 11 minutes the report will display.
    I see there is the data template version, but we are calling the report from APEX using apex_util.download_print_document and I do not know how to implement the data template in APEX.Hi,
    were you able to resolve this error? (Not the master detai report-multiple quesries, but the error you quoted in this post)
    My xml file is of *30,613KB* size.
    Even I am getting the same error when I try the preview the report through Template Builder
    and also, My original report is giving me a blank report. I have a standalone Bi Publisher environment which gathers data through SQL statement.
    How did you handle this?

Maybe you are looking for

  • Reading variable from another class

    If you have two java classes both inside the same java package. And you declared a variable for example String bob; bob = "hello world?"How would you make it so that the other file could then output this value System.out.print(bob);Would you have to

  • My capture tool is suddenly not working!

    Hope someone can help me with this. I have been capturing and editing several projects over the last several months without any problems whatsoever using Final Cut Express 4. Now suddenly today it says it cannot initialize video deck. So I cannot con

  • WebService with managed server as target is also available on 7001

    I deployed a EAR file which has a webservice module (WAR file) on to a managed server using wldeploy ANT task. ANT task is run from my machine and Weblogic Server is on a different machine. The managed server is listening on 8005 port. <wldeploy acti

  • JNI, invocation-API, JNI_CreateJavaVM

    Hi, I want to compile 'invoke.c' from the internet and get a compiler-error. Does anybody know, what to do? Thanks Ully c-code: #include "jni.h" jint res; JavaVM *jvm; JNIEnv *env; JDK1_1InitArgs vm_args; res=JNI_CreateJavaVM( &jvm, &env, &vm_args );

  • Maintenance schedule in PAM03 Planning table

    Hi, I have read in SAP help that the maintenance planned for vehicles can be seen in PAM03 planning table. But there is no further information on how to get this. Kindly provide your valuable suggestions. Thanks&Regards, Pavan