Ask the Experts – 15
|
I would like to find out what tables that needed to be converted over for activity and history Absence Management. Also I’d like to know if there is feature for EE can perfrom a cancelation action on his/her request, instead of manager has to do it.
Thanks for posting your question!
Tables used for Tracking Absence History: ABSENCE_HIST ABS_HIST_DET ABS_HIST_CERT
Here are Self Service Access Details:
Thanks
|
||||||
|
|
||||||
|
I have a requirement in PeopleSoft CRM. Is there any way to achieve this.
Thanks for posting your question!
Below are the Steps to achieve this:
§ VIP Customers related Transaction should be tracked by o Having a Row Level Security access like Dept Security using Tree Manager o Having a Separate Audit System o Having a FIELD to identify the VIP Transaction in Target Records § Separate ROLE should be created and the same should be assigned to those Concerned Users. § Based on above steps, Business Logic should be written to show VIP Transactions. If the criteria are not satisfied for the incoming Users, we need to hide to those transactions. § Business Logic can be done either by using Component Search Record or by internally writing a code at Component level
Thanks
|
||||||
|
|
||||||
|
I am still wondering as why we can’t have SQL and CALL Action in a single STEP in an Application Engine.
Also can I know about any site/repository which describes PeopleSoft GL Set Up.?
Thanks for posting your question!
§ Both SQL and CALLSECTION are mutually exclusive Actions. This is basically to avoid Lock.
Say for example: We execute some DML transaction on Table T1 in SQL action (This is the first Action in a Step of Application Engine Section). If we are trying to do some DML transaction again on Table T1 using Call Section action, this will create a Lock on table T1.
Main Program Section Calc Main Program
§ Since PS is creating a separate Database Session for these Actions, it is difficult to maintain COMMIT / ROLLBACK transaction controls.
Basic steps for PS HRMS GL Set Up
Main Menu > Set Up HRMS > Product Related > Payroll for
For more Info: PeopleBook has provided a separate section for setting up GL related Interface tables and as well for Integration of Payroll with GL.
Thanks Kannappan Krishnan
|
Comments:1;

January 28th, 2009 at 1:30 am
AE Step:
Action 1: SQL on Table T1
Action 2: CallSection on Table T1
Within an AE STEP, the actions execute in a sequential order.
So, Only after completion of the SQL Action,
The Call Section should execute.
So, how does a lock occur?