Archive for the ‘Technical’ Category
The advantages of the use of Application Package PeopleCode
Recently we had to make quite some customizations in Vanilla PeopleCode in the ePerformance module of HCM. In this case we decided to use an Application Package. We decided to put all our code for the modifications in a class. This worked out quite elegant.
We created a component object in the PostBuild PeopleCode of the Component.
Example:
import KP_EP_FUNCTIONS:BonusSheetCalc;
&oBonusSheetCalc = create KP_EP_FUNCTIONS:BonusSheetCalc(&sBonusStat);
In the private section we could put all the variables, which we would put normally as component variables. Example:
private
instance boolean &bBnsMtxChg;
instance boolean &bEditStat;
instance Rowset &rsBnsShtTgtDpt;
Then at every piece of PeopleCode where we need to use one of the methods, we only needed to put the declaration of the component object and all the defined methods and variables are then available:
Component object &oBonusSheetCalc;
&oBonusSheetCalc.SavePreChange(EP_APPR.PERIOD_BEGIN_DT, &PushButton);
There is a disadvantage though. If you are working in a project with several people, then only person can work on the Application Package at a time.
Fusion Applications: Extending the Domain with Oracle Internet Directory
In my previous post I created the Oracle WebLogic Server Administration Console and Oracle Enterprise Manager Fusion Middleware Control. In this post I will configure Oracle Identity Directory (OID) and extend this domain with OID. Furthermore I will seed the Identity Store and Policy Store with data to be used by Oracle Access Manager.
OPN Provides Fusion Learning Center Access to Partners
As of August 15, 2011 Oracle PartnerNetwork provided hundreds of Oracle Fusion Applications self-paced learning assets to partners!
Yes, it is true, with this Oracle has shown to be commited to deliver Fusion Applications as a serious part of the Oracle stack and not just a hype as many skeptics would like to position a Apps wich they have not seen yet.
Fusion Learning Center can be accessed through the following link.
Way to go Oracle!
Fusion Applications: Creating the WebLogic Server Domain for Identity Management
In my previous post I had configure Oracle HTTP server and an Apache LoadBalancer to handle all HTTP(s) traphic for IDM. In this post I will create the Oracle WebLogic Server Administration Console and Oracle Enterprise Manager Fusion Middleware Control. Later on we will extend this domain by adding Oracle Fusion Middleware components such as Oracle Identity Manager and Oracle Access Manager. Furthermore in this post we will configure Oracle HTTP server to handle HTTP(s) traphic for the Administration Server and Enterprise Manager through the loadbalancer.


PeopleTools and Oracle 11g installation issues
Until now I was used to installing PeopleSoft on SQLServer 2005/2008 or Oracle 9i/10g. For this particular installation, PeopleTools 8.51 on a Unicode Oracle 11g database, I ran into two issues I never ran into before. Luckily fixes were easy, but finding a solution usually takes a lot of time.