Process Scheduler changing the custom date format to default date format.Workaround:
Go to Process Schduler -> Processes ->
Open the your crystal process definition
Go to Overrude options tab and Append the following to the Parameter List.
-LX0
![]() |
|
| |
| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
| « Feb | ||||||
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | 31 | |
Process Scheduler changing the custom date format to default date format.Workaround:
Go to Process Schduler -> Processes ->
Open the your crystal process definition
Go to Overrude options tab and Append the following to the Parameter List.
-LX0
(SQR 4045) Function or operator ‘dateadd’ requires date argument. The above error will show up if you use dateadd function in SQR and didn’t declare the variable as date. use the following example. declare-variable
date $sunday
end-declare
….let $date1 = dateadd($sunday,’minute’,1)
1. Where do you do the development in PeopleSoft ?.
A. Using Application Designer.2. How do you trace in PeopleSoft ?.
A. When you go to 3-tier login screen you will see a link for Trace, there you will specify the trace settings.
3. How do you run an SQR in PeopleSoft ?.
A. You can run in 2 ways
i) On client side using SQRWIN.exe
ii) On Server using Process Scheduler (Process Scheduler is also called as Batch Server).
4. How do you run an online job or process in PeopleSoft ?.
A. You can run using a Run Control page, once you click the run button it will submit the job to Process Scheduler. to check the status of submitted job click on Process Monitor link.
5. How do you check the process status in peoplesoft ?.
A. go to PeopleTools -> Process Scheduler -> Process Monitor.
6. How do you design a query in PeopleSoft ?.
A. Can be designed in 2 ways
i) Open App Designer then PeopleTools - > Query
ii) Login into 3-tier then go to Reporting Tools -> Query -> Query Manager.
7. What do you need to do to see a table in query designer ?.
A. Table needs to be added to a Tree to see the table.
8. How do you convert Panels to Pages ?.
A. Add all the Panels to a project and login to 3-tier (web) and go to PeopleTools -> Utilities -> Administration -> Convert Panels to Pages.
9. What are Translate values ?.
A. Transalate values will be assigned to fields where you will have a common 3 character values for example Federal ID filed could have values like SSN , TIN .
10. What is a Prompt Table ?.
A. Prompt table is used to prompt the valid values for a specific filed on a page. Prompt table can be a view or a table.
11. What are the major section in an SQR ?.
A. The main section is Begin-Program and End-Program, Begin-Procedure and End-Procedure.
12. How do you write a SQL statement in an SQR ?.
A. for select BEGIN-SELECT and END-SELECT for other BEGIN-SQL and END-SQL.
13. How do you debug an SQR program ?.
A. By putting Display and Show statements in the program and then check the out put file or use debug statement.
14. What output extension does the SQR will have if you run it from a client ?.
A. It can be .spf or .lis based on the SQR flag set.
15. What kind of out put you can get when you run from web (3-tier) ?.
A. It can be PDF, HTML, e-mail , LIS etc..
16. What is report repository ?.
A. Once the process scheduler finishes processing it will post the out put files to Report repository.
17. What is Report Manager ?.
A. Report manager can be used to see the reports in the report repository.
18. How do you see the newly created Component in the 3-tier menu.
A. You need to register the component by using Application Designer.
Objective:
Developer needs to include all his objects when they modified and saved into the project.Method:
The following method shows you how to insert an object automatically into a project when you modified and saved or deleted.
1. Open Application Designer.
2. Click on Tools - > Options
3. Under Insert Definition into Project, select ‘When definition is modified ….’ Option.
4. Under Related Definitions options, select ‘Prompt user to pick ….’ Option.
5. Click OK.
I got the following error, when I tried to run a barcode report to PDF ouput type.Crystal Reports Print Engine error text: Error in File d:\pt8.44tst\crw\eng\po003.rt:
Operation not yet t:
Operation not yet implemented. %6 %7 %8 %9 (65,30)
Message Set Number: 65
Message Number: 30
Message Reason: Crystal Reports Print Engine error text: Error in File d:\pt8.44tst\crw\eng\po003.rt:
Operation not yet t:
Operation not yet implemented. %6 %7 %8 %9 (65,30)
Resolution:This was causing because crystal reports is not able to export the barcode fontware (wasp) we are using to a PDF. To workaround be either use a different barcode fontware which is compatinle with Acrobat or choose different output type, when you submit the process to Process Scheduler.
I felt that having upgrade compare reports produced in CSV or HTML format was a greatest help to the entire team. It will be very easy keep track of decision made for each and every object and possibly put some comments about the upgrade action taken.
You need tweak the regedit setting on the PC where you run the compare report in the following way.
1. Click on Start Menu - > Run
2. Type Regedit

3. Click on HKEY_CURRENT_USER

4. Click on Software

5. Click on PeopleSoft - > PeopleTools -> Release8.40

6. Click on PSIDE

7. Right Click on PSIDE and Select New DWORD value and create the following DWORD values.
UpgHtmlOutput - for HTML output
UpgTextOutput - for tab delimited text
UpgCsvOutput - for comma delimited CSV output

8. Double click on the DWORD and Set each value to 1 that you want to create reports for. To turn off, set value to 0, or delete the entry.

9. Now run the compare reports and you will have your compare reports in HTML , CSV or Text format files in the same directory as it was for PRT files.
Â
