How to Test Delivered PeopleSoft Web Service using SoapUI

How to Test Delivered PeopleSoft Web Service using SoapUI
Prerequisites Download SoapUI from http://www.soapui.org/ SoapUI is an open-source web service testing application for service-oriented architectures (SOA) and representational state transfers (REST). It's simplicity and easy to use interface allows developers and testers to quickly test PeopleSoft...

How to Access PeopleSoft Browser-Based Shortcuts and App Designer Shortcuts

How to Access PeopleSoft Browser-Based Shortcuts and App Designer Shortcuts
PeopleSoft applications offer set of keyboard shortcuts to interact with your PeopleSoft application more quickly and easily. These shortcuts are classified into two categories: hot keys and access keys. To get these shortcuts, Navigate to any PeopleSoft online page and press Shift+Ctrl+K key combo. You...

How to use .Bat File to clear PeopleSoft App Designer Cache in Local Machine

How to use .Bat File to clear PeopleSoft App Designer Cache in Local Machine
Have you ever noticed a folder in your local system which created by PeopleSoft App Designer to Cache your PeopleSoft database object information? To give bit of a background, in users local machine PeopleSoft Configuration Manager automatically store database objects in cache files the first time...

Can we Add Attachments That user to files with names longer than 64 characters in PeopleSoft?

Can we Add Attachments That user to files with names longer than 64 characters in PeopleSoft?
I have seen that some forums developers ask above question often. As delivered by PeopleSoft there are no way (not that I know of) we can add attachments with file name longer than 64 characters. This is a limitation which is coming from AddAttachement peoplesoft built-in function. If you...

How to use MsgGet and MsgGetExplainText in a MessageBox via PeopleCode

How to use MsgGet and MsgGetExplainText in a MessageBox via PeopleCode
Most often when we want to show a message we use MsgGet function in PeopleCode and use Message Catalog to substitutes the values of the parameters into the text message. MsgGet(message_set, message_num, default_msg_txt [, paramlist]) where paramlist is an arbitrary-length list of parameters...

Message cannot be changed. Message referenced in runtime tables

Message cannot be changed. Message referenced in runtime tables
FYI, instead of writing whole post of how to fix the problem, I will redirect you to the correct location so that you know next time where to go; http://peoplesoft.wikidot.com/message-referenced-in-runtime-tables http://www.compshack.com/peoplesoft/integration-broker/message-cannot-be-changed-message-referenced-runtime-tables-doc-id-660 Another...

How to show a list of restricted file types to the user (based on File Extension List)

How to show a list of restricted file types to the user (based on File Extension List)
In my previous two posts I mentioned that we can use File Extension List to created (or store) a list of file extensions. This File Extension List can be used to reject or accept list of file types for users when uploading files to the PeopleSoft system. To refresh, please read following Posts if you...

How to sort Grid Columns using PeopleCode

How to sort Grid Columns using PeopleCode
PeopleSoft Grids are most common form of data display control and they display fields in spreadsheet like format. Often, we need to provide custom sort for grid columns in various situations. This can be achieved easily by using Sort Method in Rowset PeopleCode class. However, there are few things...

How to know Scrum in 10 minutes

How to know Scrum in 10 minutes
If you are a wondering about knowing of bits and pieces of Agile based development methodologies you may have already heard these buzz words such as Agile, Scrum, Kanban, Burndown charts, Sprints etc.. Then you will be amazed about this little video I used to watch and quickly learn about Scrum concepts...

Software Testing: A Culture of Quality

Software Testing: A Culture of Quality
One of the leading tenets of Agile software development is to always maintain a shippable product. Doing so allows a steady flow of code from the development team out to the user base.  Regular releases out to your customer base gives users the ability to provide feedback on the software to drive...

How to use Message Catalog pop-up in PeopleSoft Pages

How to use Message Catalog pop-up in PeopleSoft Pages
Popups are common in web pages and they are handy to display additional information about a field or information for a subset of users. For example, you can create a popup to display information about a types of files which are accepting for a file upload process. Another example would be to show...

How to Know Your PeopleSoft PeopleTools Version (for Beginners)

How to Know Your PeopleSoft PeopleTools Version (for Beginners)
There are few ways you can check PeopleTools version of your PeopleSoft Application. In this post we will look at most common ways to check the PeopleTools version. Method 1: Via App Designer You can check PeopleTools version using app designer, by Clicking Help > About PeopleTools...  Method...

How to Compile your PeopleCode Program

How to Compile your PeopleCode Program
In PeopleTools App Designer there is an option to compile all PeopleCode programs which are stored in the database or in a project to check for errors. When you do that it compile every PeopleCode program. Apart from finding errors in the program, one advantage of compiling the program through...