Can you tell me the best practice for this scenario? We want to provide a menu item, that when the user chooses it, will provide job information. The user will enter various prompts such as selected business units, deptids, empl_status, and so on. The result should be similar to query results on the screen, with an option to download.
I could do this strictly with PS Query, but I cannot figure out how to get the complexity I need. For example, there are a few core tables - Job, Compensation, Names, and many tables joined with left outer joins - Address, Email, Phone, and a bunch of code tables to get descriptions. Moreover, we have some criteria for the jobs to choose by date that are not so straightforward.
I wrote this as a regular DB View, but doing it this way doesn't let me provide prompts to narrow down the results.
It looks to me like a Dynamic View might do what I want, but I'm not sure how to fit it in. Since the Query Viewer has the structure I want, it would be nice to embed this DV into a Query, but it does not show up on the available Records to build into a Query.
Any direction would be appreciated. It seems to me this must be a common scenario, so I hope there are ideas out there.
| Title | Under | Posted on |
|---|---|---|
| what is bursting in xmlp | PeopleSoft Technical | 09/06/2010 - 2:21am |
| Running SQR from Process Scheduler | PeopleSoft Technical | 09/04/2010 - 10:16am |
| How to run nvision report through portal | PeopleSoft Technical | 08/31/2010 - 4:45am |
| Any1 here who can help? | PeopleSoft Technical | 08/31/2010 - 2:12am |
Create a page which will have all criteria (or seach) fields and a grid to display the results.
based on the search criteria entered , populate the grid using Select method of RowSet class.
Enable the download option on the grid.
/Ashar
You can also populate the grid using RunToRowSet method of query class if you want to use the PSQuery that you have created already.
These are very good answers, but they made me realize I made a mistake. I forgot that I NEED the code to be in a Query, because users need to use the Query directly in Crystal Reports and XML Publisher.
So is there a way to do that?
Thanks in advance.
I'm not sure about doing it in PS Query. I don't have much experience with Query. May be there are someone else out there who can help you.
Post new comment