Search This Blog

Sunday, August 28, 2016

Creating new types for Document of Records in HRMS R12.

Creating new types for Document of Records in HRMS R12.
1.
Create New Record ex: HPPT_INFO , HVISA_INFO under DOCUMENT_CATEGORY

2.

3.

4.

5.
Check the Document of records in HRMS and upload documents.

Wednesday, August 17, 2016

Oracle Apps R12 HRMS to run Payroll only for current Employees using Assignment Set


Give name and Payroll > Save
Click Criteria>
Num : 1
Database Item : &PER_PERSON_TYPE
Operator : '= '
Value/Database Item: Employee

Save ...

Oracle Apps R12 Query to view users attached to Financial Modules



SELECT count(distinct FU.USER_ID)FINANCE_USERS
--select last_logon_date ,FU.USER_NAME,RESPONSIBILITY_ID, RESPONSIBILITY_APPLICATION_ID,FNDG.DESCRIPTION
from FND_USER_RESP_GROUPS_DIRECT FNDG,
FND_USER FU
WHERE fu.user_id= FNDG.USER_ID
--and fu.user_id = 2605
and RESPONSIBILITY_APPLICATION_ID in (200,222,260,140,101)
--and last_logon_date > to_date('01-jun-2016')  --enable if you want to see only recent employees.
--Payables,Receivables,Cash Managament, Assets,General Ledger

Monday, August 15, 2016

Oracle HRMS R12 Element Entry from Self Service using (ICD) Individual Compensation Distribution.

Element Entry from Self Service using (ICD) Individual Compensation Distribution.

  1. Add Responsibility HR Professional V4.0 to the user.
  2. Go to the Responsibility HR Professional V4.0 and click Individual Compensation Distributions Function.
  3. Click Quick Setup
  4. Select your element in the Element Type Field.
  5. Click Create
  6. Note down the Planid which appears once created.
  7. Register the function and add in Employee Self-Service Menu.
Function properties:
Function: FUJ_ICD_AD
Type: SSWA jsp function
Parameters: pAMETranType=SSHRMS&pAMEAppId=800&pProcessName=HR_ADV_INDIVIDUAL_COMP_PRC&pItemType=HRSSA&pCalledFrom=FUJ_ICD_AD&PLANTYPE=1
    HTML Call:
OA.jsp?akRegionCode=HR_CREATE_PROCESS_TOP_SS&akRegionApplicationId=800&OAFunc=FUJ_ICD_AD   

Note: PLANTYPE=1 is derived from step6.

  1. Add function to the Menu  ‘AE Self Service Functions Custom’ if AE Legislation else go to step 9.
  2. Add the function to below Menu’s if needed  
1. Personal Actions Menu (optional)
2. Manager Actions Menu (optional)
3. Global Self Service Functions Custom
10.   Check the DFF ‘Ben ICD Developer DF’ which is created auto , whether  freezed or not, else enable freeze and save.

Another DFF ‘Add'l Element Entry Info.’ Freeze and save.
 
11. (Optional not tested)  if we have more plantypes then use personalization to show only 1 plan type in the self service page by adding your structure created in step 10 in the page Flex: (EleInpValFF) .

       

1.
2.

3.

4.

5.
6.
11

Monday, August 8, 2016

OAF/SSHR Customizations on vo, am, co to view , print and delete

1.

BEGIN
JDR_UTILS.LISTCUSTOMIZATIONS('/oracle/apps/per/selfservice/absence/server/AbsenceReplacedByLovVO');
END;

2.
copy the link from 1 and paste in 2,  

begin
  jdr_utils.printdocument('/oracle/apps/per/selfservice/absence/server/customizations/site/0/AbsenceReplacedByLovVO');
end;


3.
to delete the customization enter the output from 2 and paste it in 3

begin
 jdr_utils.deletedocument('/oracle/apps/per/selfservice/absence/server/customizations/site/0/AbsenceReplacedByLovVO');
end;