Showing posts with label Enterprise Component. Show all posts
Showing posts with label Enterprise Component. Show all posts

Thursday, June 8, 2017

PeopleSoft Fluid Forms and Approval Builder Video Feature Overview

Organizations today are moving towards a greener existence, by eliminating unnecessary emails and approval flows outside the system. The Fluid Forms and Approval Builder, with its guided step-by-step navigation, drag and drop capabilities, and ability to preview across multiple device sizes, helps to easily automate processes. The Forms and Approval Builder is delivered with Enterprise Components and is available to all PeopleSoft implementations.

Check out the video feature overview below:


Thursday, March 2, 2017

The new PeopleSoft HCM Fluid Approvals Video Feature Overview



PeopleSoft Fluid Approvals enables you to view all of your approvals in one place with an intuitive, configurable user interface. You can approve, deny or pushback individual or multiple transactions using a desktop, laptop or mobile device.


Friday, September 16, 2016

PeopleSoft FSCM Fluid Approvals Video Feature Overview

PeopleSoft Fluid Approvals enables you to add or view comments, view attachments, perform line level approvals, view chartfields or accounting information, drag and drop fields to approval pages with Page Composer and more.


Wednesday, April 16, 2014

What the heck is going on with my (Approval Workflow Engine) AWE????

Yes, that is the question that has been haunting me for the past 24 hours.  AWE is not working!

The symptoms are:
1. I am getting errors below when initiating any AWE.
  • "Optimistic lock exception at %1.  Please refresh the page try the same operation again. (18081,1009) EOAW_CORE.Utils.OnExecute  Name:ThrowOptimisticLockException  PCPC:19812  Statement:511The problem also occurs when the counter in the table EOAW_IDS is incorrect."
  • at Approval process instance (Id = 'JobOpening', Definition ID = 'BYU_Hiring_Mgr_Recruiter', Effective date '1901-01-02', Thread id '48213') (18081,1056):10:1, Step nbr 1 (18081,1058) EOAW_CORE.ENGINE.DefStepInst.OnExecute  Name:Activate  PCPC:9660  Statement:143
2. Status monitor shows old workflow steps.

After poking around some codes and debugging them, I finally found that USERINST_ID and STEPINST_ID counter in the EOAW_IDS table are out of sync with the transactional tables: EOAW_USERINST and EOAW_STEPINST.

So, here is the solution:

Update ps_eoaw_ids set eoawcounter = (Select max(eoawstep_instance) + 1 from PS_EOAW_STEPINST) where eoawcountername = 'STEPINST_ID';

Update ps_eoaw_ids set eoawcounter = (Select max(eoawustep_inst_id) + 1 from PS_EOAW_USERINST) where eoawcountername = 'USERINST_ID';