already done that..but still can't...the student id still redundant..is the any condition to do that?
Main Topics
Browse All TopicsHi expert...
i've some problem with my system that using oracle forms 9i.i don't know how to describe my problems but i've attach images for reference.after doing data block and relationship,i've got layout design such image attach.as u can see, the data is redundant and i what is appear in type column will appear as title.fyi,all the data is in the same table.i really need help coz the due is coming...
example layout that i want:
Coursework Final Exam Quiz
--------------------------
D1234567 45 70 5
D1234567 45 70 5
D1234567 45 70 5
D1234567 45 70 5
...
...
...
...
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
select sm_studentId, count(case when upper(sm_dtdist_typ) = 'COURSEWORK' then 1 else 0 end) as Coursework,
count(case when upper(sm_dtdist_typ) = 'FINAL_EXAM' then 1 else 0 end) as Final_Exam,
count(case when upper(sm_dtdist_typ) = 'QUIZ' then 1 else 0 end) as quiz
from your_table
group by sm_studentId
you want like this or any other way pls give the example/....
Business Accounts
Answer for Membership
by: HenkaPosted on 2009-11-03 at 00:02:24ID: 25726825
You can do this:
set "Number of items displayed" property of Sm Dtldist Type item to 1 and put this item above another items.
That is all.