I am attempting to create a cascading parameter that allows the user to select a name from a database and then print a transcript of the courses that person has taken. the courses are in a different table which I will eventually link but for now I'm keeping it very simple.
I use a command to select records from the db; it selects only the first initial of the last name, the first three letters of the last name, the student full name and the course code of the course taken.
with a cascading parameter using the data above, the user first selects the first initial of the last name and then the first three letters of the last name and then the student name from the list of students for that combination. the command specifies that the student must have taken courses with us since the beginning of 2010.
when I run a simple list of the students with the command to select records from the file, I get all of the records that I expect.
but, using the cascading parameter to select an individual student - first initial, then first three letters and finally student name - for which to print the transcript, some of the records are missing. the first three letters of the last name just aren't in the list.
I use the cascading parameter to overcome the problem of maximum 500 records in a select list which I understand to be a limitation.
I'm thinking that it may still have something to do with the 500 record limitation but I can't figure out what it might be or how to get around it.
As always, thank you for your time and assistance.
kim
I use a command to select records from the db; it selects only the first initial of the last name, the first three letters of the last name, the student full name and the course code of the course taken.
with a cascading parameter using the data above, the user first selects the first initial of the last name and then the first three letters of the last name and then the student name from the list of students for that combination. the command specifies that the student must have taken courses with us since the beginning of 2010.
when I run a simple list of the students with the command to select records from the file, I get all of the records that I expect.
but, using the cascading parameter to select an individual student - first initial, then first three letters and finally student name - for which to print the transcript, some of the records are missing. the first three letters of the last name just aren't in the list.
I use the cascading parameter to overcome the problem of maximum 500 records in a select list which I understand to be a limitation.
I'm thinking that it may still have something to do with the 500 record limitation but I can't figure out what it might be or how to get around it.
As always, thank you for your time and assistance.
kim