Group report help

i want to create report in Oracle D2k (Reports 6i). Please help.
i have 3 tables.
1 master table: school with school_id primary key
2 detail tables: dept & employee with school_id foreign key in both
Now I want report like this:
1 Delhi Public School
school_id dept id dept name
1 10 chemistry
1 20 Physics
school_id Employee_id Employee_name
1 100 ABC
1 200 XYZ
2 Punjab Public Shool
school_id dept id dept name
2 10A Computers
2 20B History
school_id Employee_id Employee_name
2 A100 12ABC
2 C200 12XYZ
Please help. thanks in advance.

want to create report in Oracle D2k (Reports 6i). Please help.
i have 3 tables.
1 master table: school with school_id primary key
2 detail tables: dept & employee with school_id foreign key in both
Now I want report like this:
1 Delhi Public School
school_id dept id dept name
1 10 chemistry
1 20 Physics
school_id Employee_id Employee_name
1 100 ABC
1 200 XYZ
2 Punjab Public Shool
school_id dept id dept name
2 10A Computers
2 20B History
school_id Employee_id Employee_name
2 A100 12ABC
2 C200 12XYZ
Please help. thanks in advance.
Try below
Select report type as group above
sql query is like this :
select a.schoolid, a.schoolname, b.details
where
a.schoo.d = b.school id
for group above use scholl id
You will get what you mentioned

Similar Messages

  • Help! Matrix Group Report

    Hi All,
    My tables are
    Petty_cash_voucher P :- voucher_date,terminal_id,currency_code,account_code, amount
    Terminal_master T :- terminal_id,terminal_station_code
    Ledger_codes L :- account_code,account_description,accound_main_head_code
    Account_main_heads :-
    Account_main_head_code, Main_head_description
    im looking for a MATRIX WITH GROUP REPORT should look like this
    1st group : CURRENCY
    2nd Group : Main_head_description
    Row field is : account_description
    Column field is : Terminal_town_code
    Matrix CELL is : total_amount.
    here i should see all my terminal_towns though the transactuons existed or not for that day. letssay there are 22 terminals, but today i have 2 terminals only transactions, but i need to see 22 as columns with NULL values. and for ledgers, main_heads what ever existed only. Ex: i have 100 ledgers with 20 Main heds, but there is 2 only transactions happend, i should see 2 group by main_head with 2 terminsla having values remiaing termils with null values.
    i wrote the query like this , but it is not giving all terminal codes , giving only values existed.
    SELECT
    P.currency_code,
    T.terminal_town_code,
    P.account_code,
    L.account_description,
    MH.account_main_head_description,
    SUM(P.amount) total_amount
    FROM
    terminal_master T,
    petty_cash_voucher_master P,
    ledger_accounts L,
    account_main_heads MH
    WHERE
    T.terminal_id = P.account_to_terminal (+)
    AND
    L.account_code (+) = P.account_code
    AND
    MH.account_main_head_code (+) = L.account_main_head_code
    AND
    P.voucher_date (+) > = '16-jun-05'
    AND
    P.voucher_date (+) < = '16-jun-05'
    GROUP BY
    P.currency_code,
    T.terminal_town_code,
    P.account_code,
    L.account_description,
    SH.account_main_head_description.
    Thanks in advance.

    Posting twice is not going to get you an answer quicker - post some insert statements with actual data, the results you are seeing, and the results you expect!
    You'll find most people are more than willing to help, but this is less a reports issue, and more a sql issue. So if you want a quick response, you must give as much information as you can!

  • NEED HELP IN MATRIX WITH GROUP REPORT

    Dear All,
    I need small help in MATRIX WITH GROUP REPORT In Report Builder Test Report
    In my report, having periods as rows and location as columns as shown below,
    1) LOC-A
    JAN-10 FEB-10
    ITEM-GROUP -1 1 2
    ITEM-GROUP-2 3 4
    ITEM-GROUP 3 5 6
    2) LOC- B
    MAR-10 APR-10
    ITEM-GROUP -1 7 8
    ITEM-GROUP-2 9 10
    ITEM-GROUP-3 11 12
    But comming to my requirement, the periods should be in fix in matrix as shown below
    1) JAN-10 FEB-10 MAR-10 APR-10
    LOC-A
    ITEM-GROUP -1 1 2
    ITEM-GROUP-2 3 4
    ITEM-GROUP 3 5 6
    LOC- B
    ITEM-GROUP -1 0 0 7 8
    ITEM-GROUP-2 0 0 9 10
    ITEM-GROUP-3 0 0 11 12
    I am unable to get this kind of output format
    Please kindly waiting for reply from our team....
    Regards
    krishna.P

    For the periods, create a seperate dummy query and then use it as column group in the multi query matrix.

  • Borders in Matrix with Group Report  Missing in Web view

    Please help.
    I have a matrix with group report. When it is viewed in Report Builder live preview is fine, but when I preview in web I got two problem
    Problem 1 - preview as HTML
    No borders? all my cell borders, frame borders gone missing.
    Problem 2 - preview as HTML CSS
    The borders are there, but some data in the matrix report displayed wrongly.
    For example, the data is "01 APR 2000 1800 - 20 APR 2000 2000", what is showing in the web view is actually
    "01"
    "APR"
    2000
    1800
    i.e., is broken down into few lines.
    Can anyone please help. Btw I am using Oracle Report 6i.
    Thanks.
    Joshua

    For Simple HTML output, you can only get horizontal lines out of Reports. You will lose all vertical lines as well as other graphical objects (eg: polygons, polylines, etc.) This is because these objects are not supported natively within HTML.
    However, for HTMLCSS, you should be able to get a lot closer since rectangles are supported. Though again; polygons, polylines, etc. are not supported.
    Not sure what is happening to your text, possibly an issue with browser settings or you may need to reduce the font size in Reports to get what you want.
    As has already been suggested, for better WYSIWYG output for the web from Reports, PDF is the way to go.

  • How to create Matrix with Group report layout in xml

    Hi,
    i would be glad if anyone could tell me How to create Matrix with Group report layout in xml?
    Here i am attaching the required design doc
    below is the code
    select COST_CMPNTCLS_CODE,
    -- crd.RESOURCES,
    NOMINAL_COST,
    cmm.COST_MTHD_CODE,
    -- crd.COST_TYPE_ID,
    gps.period_code
    -- ORGANIZATION_ID
    from CM_RSRC_DTL crd,
    gmf_period_statuses gps,
    CM_MTHD_MST cmm,
    CR_RSRC_MST crm,
    CM_CMPT_MST ccm
    where gps.period_id = crd.PERIOD_ID
    and crd.cost_type_id = cmm.cost_type_id
    and crd.RESOURCES = crm.RESOURCES
    and crm.COST_CMPNTCLS_ID = ccm.COST_CMPNTCLS_ID
    and gps.period_code in (:p_period1, :p_period2, :p_period3)
    group by COST_CMPNTCLS_CODE, cmm.COST_MTHD_CODE, gps.period_code,NOMINAL_COST
    order by 1,2,3,4.
    The o/p of the report shoud be as given below
              Period-1     Period-2     Period-3     Period-4
    COMPONENT                         
    LABOUR - DIRECT                         
         Actual     1     2     3     4
         Actual Rate     10     10     10     10
         Standard Rate                    
         Var%                    
    DEPRICIATION-DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    OVERHEAD - DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    LABOUR - IN DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    Thanks in advance

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

  • Summary Report help

    Although my summary report indicates the total responses received for comments, it does not show the actual comments. I used a forms central template, perfect for what I need, however I really need the comments to be visable in the report. help please.

    Can you please send me screenshot with the problem ([email protected]) so i can understand the problem better.
    Currently the Summary Report tab only show fields added in the Design tab, so if you've added comments field directly in the Response tab you would not be able to display in the Report tab.
    But you should be to see all comments in the View Response tab.
    Thanks
    Roman

  • PCA Group Report in New GL

    Hello Experts
    If I use the  new GL with PCA, My profit center report and profit center group report which node shall I check  it (FI OR CO ) ?
    Because no profit center document is generating  so we will not get any profit center group report in controlling module
    At the same time  we don’t have any PCA group  report in FI module
    Please suggest me  If I am wrong please correct me.
    Thanks
    Venkat Sri

    Hi VS
    You need to draw your reports from within the New GL only..
    I think in most of the New GL reports starting with S_PL0, you will have the option to enter the From and To range
    Additionally, in FGI3 / FKI3 / FDI3 reports, you can create a SET (GS01) and use it in the form definition.. The SET is as good as your PC group
    Nevertheless, there is a workaround  - If you use SEGMENT in the PC master data, that will also serve the purpose to group the PCs (Though Segments are not meant just for that)
    Br. Ajay M

  • Oracle Report Help

    Hello,
    I am new to Oracle and sql. I am working on the Oracle
    Reports. Can anyone suggest me where will be the best place to
    get help on this. Any suggestions will be appriciated.
    Thanks
    Sam

    Hi Sam..
    I'm also quite new in field of Oracle Reports, I have already
    had experience in Oracle Database Server. I think you may refer
    to the Oracle Reports help coming with your s/w, that's good for
    first understanding. Then.. I just find out that this forum is
    also helpful with many nice and "willing to help" people.
    Well... wish you all the best and go ahead with your new job!!
    kr,
    daniel

  • Report help does not work

    We have generated a headstart online helpfile belhelp.htm
    All works fine when using online help with forms: the help text uses help context id and bookmarks in het htm file.
    Altough help text for all reports is generated in belhelp.htm, following errors and restrictions occur:
    1. URL = http:10.1.10.0:7778/hsd65-help//hsd65-help/belhelp.htm is wrong. It should be http:10.1.10.0:7778/hsd65-help/belhelp.htm. How can I resolve this issue?
    2. report help does not use bookmarks. Although help context id's are generated in the module defined in design editor, the button 'report help' in the report launch form does not use the bookmark. When I add a bookmark manually it works, eg http:10.1.10.0:7778/hsd65-help/belhelp.htm#BM919000000

    This is a known bug that was fixed in Headstart patch 6.5.2.1, available through the supplement option. There are also a small number of other bugs related to reports that are fixed in patch 6.5.2.2, also available through the supplement option.
    If you do not already have the supplement option, you can purchase it through your Oracle Consulting representative or through the Oracle store.
    Regards,
    Lauri

  • Conditional Display Of Headings on Grouped Report

    I have a grouped report in 2 seperate tables. I want to print the values of 'H1' and 'H2' (which are my headings for 'Group:' and 'Name:') only 1 time per page. The grouped data needs to print on every occurance. How do I do that?
    Group: 1 Name: Bob
    ___001
    ___002
    ______2______Tom
    G
    H1 GROUP_FIELD H2 NAME
    F SECTION PERIOD E
    E
    G= <xsl:for-each-group select="DOCUMENT/REGION/ROWSET2/ROWSET2_ROW" group-adjacent="GROUP_FIELD">

    try this
    you can say it as display it as header of the table & repeat on top of every page in table row properties.
    And the H1 and H2 is in the loop, so it would ideally repeat for all the instances of row.
    May be we can limit for only one time, and not as one time on every page.
    in that too, you have value which is changing next to the H1 and H2.
    so it is adding little more confusion to your requirement.
    alternatively send me the xml and template and existing sample output.

  • Motion crashing in Mavericks - Is Problem Report Helpful?

    Motion is repeatedly crashing today running under Mavericks. Is the Problem Report helpful to users in determining what is causing the problem?
    Here is some of the info from the report. Is this interpritable by humans (or animators)?
    At the top it mentions that Thread 5 crashed:
    Crashed Thread:  5
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000018
    Then at the Thread 5 section it says:
    Thread 5 Crashed:
    0   libobjc.A.dylib                         0x00007fff8574d097 objc_msgSend + 23
    1   com.apple.CoreFoundation                0x00007fff914b1f41 CFDictionaryGetValue + 145
    2   com.apple.CoreFoundation                0x00007fff91518b93 __CFRunLoopRun + 1763
    3   com.apple.CoreFoundation                0x00007fff91518275 CFRunLoopRunSpecific + 309
    4   com.apple.AppKit                        0x00007fff91f761ce _NSEventThread + 144
    5   libsystem_pthread.dylib                 0x00007fff91c20899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff91c2072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff91c24fc9 thread_start + 13
    Then a little lower, this is stated.
    Thread 5 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff7791b3d5  rbx: 0x000060800034b4d0  rcx: 0x000000000000a303  rdx: 0x000000000000a303
      rdi: 0x000000000000a103  rsi: 0x00007fff92800d31  rbp: 0x000000011f979f20  rsp: 0x000000011f979ed8
       r8: 0x0000000007000006   r9: 0x00000000ffffffff  r10: 0x00007fff92800d31  r11: 0x0000000000000000
      r12: 0x000000000000a200  r13: 0x000000011f979fb0  r14: 0x000000000000a303  r15: 0x000000000000a103
      rip: 0x00007fff8574d097  rfl: 0x0000000000010206  cr2: 0x0000000000000018
    Logical CPU:     3
    Error Code:      0x00000004
    Trap Number:     14

    It would probably be more useful if you include the following when you post these:
    What exactly are you doing when you hit this crash? Giving details always helps, when people post details I usually try the steps if they provided them.
    Paste the full thread, including the header.  Sometimes someone will catch details like the OS or app version being out of date, or the application has been moved to a location it should not be (burried inside multiple folders).
    Make sure you submit the crash to Apple!   Any time I hit a crash I always submit a the report with an explanation of what I was doing.

  • Problem: Building an Across Group Report

    Hello all,
    I have an Across Group Report, but can't create a design / layout what i want (explained more detail as shown on the images).
    Current report when it's running:
    http://img259.imageshack.us/img259/750/01before.jpg
    The final layout that what i want:
    http://img9.imageshack.us/img9/1723/02after.jpg
    Environments:
    - Oracle Developer Reports 10g R2
    - Oracle Database 10gR2
    Anyone have an idea?
    Thanks.
    Best regards,
    Rob

    Hi,
    Can you please attached your layout Formate. Given Link is not working

  • When I try an update I-tunes the software tells me the older version of Apple Software Update cannot be removed. Contact your technical support group. Help!!!

    When I try an update I-tunes the software tells me the older version of Apple Software Update cannot be removed. Contact your technical support group. Help!!!

    Download the Windows Installer CleanUp utility from the following page (use one of the links under the thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Group Policy Helper tool not working properly

    Hello,
    I`m using IE 9 on a x64 Win 7 enterprise PC with ZCM 10.3.4.
    When Im logging into ZCC and start to configure a "windows group policy" the group policy helper tool starts and begins to download the policy.
    Then the gpedit.msc appears i get the popup "group policy settings imported successfully" immediately. This popup should certainly come up, when i close the gpedit.msc to import the changed policy setting.
    But so i always get an empty policy for upload.
    Any hints what`s wrong with it?!

    Originally Posted by andreas_karl
    Hello,
    I`m using IE 9 on a x64 Win 7 enterprise PC with ZCM 10.3.4.
    When Im logging into ZCC and start to configure a "windows group policy" the group policy helper tool starts and begins to download the policy.
    Then the gpedit.msc appears i get the popup "group policy settings imported successfully" immediately. This popup should certainly come up, when i close the gpedit.msc to import the changed policy setting.
    But so i always get an empty policy for upload.
    Any hints what`s wrong with it?!
    IE 9 is not supported, you need to stay on IE8 until 11.2 is released (15 march).
    Thomas

  • Group policy helper and Folder Redirection

    I've installed windows7/32 bit to use the Group policy helper. Now I can use this tool.
    I want to use the Group policy helper to redirect folders as descripted in Managing Roaming User Data Deployment Guide.
    In this documentation a folder redirection management snap.in is used. Can I somehow include this in the grouppolicy helper in ZCC11?
    I want to redirect the user folders to their homedirectory. We have about 500 Students and I can't configure every login so I hope to solve the problem using the group policies.
    (with zen7 and XP we configure the default local user to move desktop and user files to NetWare Home directory.)

    This still works..........
    http://www.novell.com/coolsolutions/tools/14324.html
    On 7/27/2011 7:56 AM, Alix wrote:
    >
    > I've installed windows7/32 bit to use the Group policy helper. Now I can
    > use this tool.
    >
    > I want to use the Group policy helper to redirect folders as descripted
    > in 'Managing Roaming User Data Deployment Guide'
    > (http://technet.microsoft.com/de-de/l...9(WS.10).aspx).
    >
    > In this documentation a folder redirection management snap.in is used.
    > Can I somehow include this in the grouppolicy helper in ZCC11?
    >
    > I want to redirect the user folders to their homedirectory. We have
    > about 500 Students and I can't configure every login so I hope to solve
    > the problem using the group policies.
    >
    > (with zen7 and XP we configure the default local user to move desktop
    > and user files to NetWare Home directory.)
    >
    >
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Knowledge Partner
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

Maybe you are looking for

  • My Apple TV 2 is working great but-

    I really want to add some radio stations to it. Apparently, the list of stations that comes up is on an Apple server and is static. But I question this because on my list of stations is an obscure radio station that I had found on my own and that I h

  • Converted .wmv to .mov will no longer play in quicktime

    I have converted .wmv to .mov using the quicktime 7.6.4 save as feature and saved them to an external WD hard drive. They have been playing fine for months until yesterday, now i have a black quicktime screen, no sound or audio as the file plays, all

  • Oracle 10g ora 12560 and ora 12514 errors

    i am a new oracle user. and i have some problems i installed 10g then, when i was creating a database, i received an error messagge "ora-12560", therefore i cancelled creating database. i run sqlplus, i received error messagge again but this messagge

  • Package javax.servlet does not exist, package javax.servlet.http does not

    Dear All, I am a newbie to JAVA. I installed JDK1.6.0_04, then NetBeans IDE 6.0 I tried compiling an example servlet, but got this error message: package javax.servlet does not exist, package javax.servlet.http does not exist I tried locating these p

  • No audio is coming from my subwoofer, X-fi Platnum edit

    No audio is coming from my subwoofer, instead its coming from the center speaker. This was in the diagnostics test for my speaker set up. But, in the THX Surround Sound setup, I would get audio out of the subwoofer, like it should be. I have double c