Posts

Showing posts from August, 2019

SQL to get Time Card Required Information in Fusion HCM

SELECT     papf.person_number,     paaf.assignment_number,     pasgf.time_card_req FROM     per_all_people_f           papf,     per_periods_of_service     ppos,     per_all_assignments_f      paaf,     pay_payroll_assignments    ppa,     pay_pay_relationships_dn   pprd,     pay_assigned_payrolls_dn   papd,     pay_assigned_payrolls_f    pasgf WHERE     ppos.person_id = papf.person_id     AND paaf.person_id = ppos.person_id     AND paaf.period_of_service_id = ppos.period_of_service_id     AND paaf.assignment_id = ppa.hr_assignment_id     AND papd.payroll_term_id (+) = ppa.payroll_term_id     AND ppa.payroll_relationship_id = pprd.payroll_relationship_id     AND paaf.work_terms_assignment_id = ppa.hr...

User Account in Oracle Fusion HCM

Image
Configuration for User Account: 1.        Set up for automatic User Account Creation. Go to FSM --> Manage Enterprise HCM Information --> This set up will ensure that user accounts are created automatically for person. 1.        User Name generation method. This set up is done in Security Console. Go to Tools -->  Security Console -->  User Categories This will ensure if work email address is there in the Worker.dat file while loading worker information – this will create user account by default which is same as the person’s work email address. However, this will be pending status as we need to Send Pending LDAP Requests to reflect the user name. Post successful completion of ESS job “Send Pending LDAP Requests” the user account will be reflected as person’s work email address. In case there is no work email addre...