Login
Register

Home

Trainings

Fusion Blog

EBS Blog

Authors

CONTACT US

Fusion PayRoll
  • Register

Oracle Gold Partners, our very popular training packages, training schedule is listed here
Designed by Five Star Rated Oracle Press Authors & Oracle ACE's.

webinar new

Search Courses

Business Requirement

Oracle has already delivered a lot of BIP Reports in the Fusion Instance, However during a course of implementation it is a common requirement to develop new ones.

Content

There are few common steps involved they are :

  1. Create a SQL Query which comprises of DB Tables ( that exist in Fusion Schema).

We have a SQL Query which is as below :

select  A.person_number,

       A.full_name,

       A.legal_employer,

       A.business_unit,

       A.department,

       A.absence_plan_name,

       A.adjustment_type,

       A.adjustment_reason,

       A.value,

       A.procd_date accrual_entry_date

from

(

select apaed.per_accrual_entry_dtl_id,

      apaed.per_accrual_entry_id,

      apaed.enterprise_id,

      apaed.value,

      apaed.type,

      apaed.created_by,

      apaed.creation_date,

      apaed.last_updated_by,

      apaed.last_update_date,

      apaed.last_update_login,

      apaed.person_id,

      apaed.pl_id,

      apaed.procd_date,

      apaed.per_event_id,

      apaed.legal_employer_id,

      apaed.assignment_id,

      apaed.per_absence_entry_id,

      apaed.per_plan_enrt_id,

      apaed.work_term_asg_id,

      DECODE(apaed.type,'ADJOTH',ADD_MONTHS(procd_date,6),NULL) proposed_expiration_date,

      papf.person_number,

      ppnf.full_name,

      paam.organization_id,

      dept.name  department,

      paam.legal_entity_id,

      legal_employer.classification_code         legal_emp_classification_code,

      legal_employer.name                        legal_employer,

      paam.business_unit_id,

      business_unit.classification_code          bu_classification_code,

      business_unit.name                         business_unit,

      absence_plan.name        absence_plan_name,

      flvt.meaning             adjustment_type,

    adj_reason.meaning            adjustment_reason

 FROM anc_per_acrl_entry_dtls apaed

 JOIN fnd_lookup_values_tl flvt

      ON (flvt.lookup_type = 'ANC_ACCRUAL_ENTRY_TYPE'

      AND flvt.lookup_code = apaed.type

      AND flvt.language = 'US')

 JOIN per_all_people_f papf

      ON (apaed.person_id = papf.person_id

      AND TRUNC(sysdate) BETWEEN papf.effective_start_date and papf.effective_end_date)

 JOIN per_person_names_f ppnf

      ON (ppnf.name_type = 'GLOBAL'

      AND ppnf.person_id = apaed.person_id

      AND TRUNC(SYSDATE) BETWEEN ppnf.effective_start_date and ppnf.effective_end_date)

 JOIN per_all_assignments_m paam

      ON (paam.assignment_id = apaed.assignment_id

      AND paam.person_id = apaed.person_id

      AND paam.primary_assignment_flag = 'Y'

      AND paam.assignment_type = 'E'

      AND TRUNC(SYSDATE) between paam.effective_start_date and paam.effective_end_date)

LEFT OUTER JOIN

( SELECT flvt1.lookup_code,

flvt1.meaning

FROM fnd_lookup_values_tl flvt1

WHERE flvt1.lookup_type = 'ANC_ABS_PLAN_OTHER_REASONS'

AND flvt1.language = 'US'

) adj_reason

ON (apaed.adjustment_reason = adj_reason.lookup_code)

 LEFT OUTER JOIN

     ( SELECT hauft.organization_id,

              hauft.NAME

         FROM HR_ORG_UNIT_CLASSIFICATIONS_F houcf,

              HR_ALL_ORGANIZATION_UNITS_F haouf,

              HR_ORGANIZATION_UNITS_F_TL hauft

        WHERE haouf.ORGANIZATION_ID = houcf.ORGANIZATION_ID

          AND haouf.ORGANIZATION_ID = hauft.ORGANIZATION_ID

          AND haouf.EFFECTIVE_START_DATE BETWEEN houcf.EFFECTIVE_START_DATE AND houcf.EFFECTIVE_END_DATE

          AND hauft.LANGUAGE = 'US'

          AND hauft.EFFECTIVE_START_DATE = haouf.EFFECTIVE_START_DATE

          AND hauft.EFFECTIVE_END_DATE = haouf.EFFECTIVE_END_DATE

          AND houcf.CLASSIFICATION_CODE = 'DEPARTMENT'

          AND TRUNC(SYSDATE) BETWEEN hauft.effective_start_date AND hauft.effective_end_date

      ) dept

      ON (paam.organization_id = dept.organization_id)

 LEFT OUTER JOIN

      (SELECT hauft.organization_id,

              hauft.NAME,

              houcf.classification_code

         FROM HR_ORG_UNIT_CLASSIFICATIONS_F houcf,

              HR_ALL_ORGANIZATION_UNITS_F haouf,

              HR_ORGANIZATION_UNITS_F_TL hauft

        WHERE haouf.ORGANIZATION_ID = houcf.ORGANIZATION_ID

          AND haouf.ORGANIZATION_ID = hauft.ORGANIZATION_ID

          AND haouf.EFFECTIVE_START_DATE BETWEEN houcf.EFFECTIVE_START_DATE AND houcf.EFFECTIVE_END_DATE

          AND hauft.LANGUAGE = 'US'

          AND hauft.EFFECTIVE_START_DATE = haouf.EFFECTIVE_START_DATE

          AND hauft.EFFECTIVE_END_DATE = haouf.EFFECTIVE_END_DATE

          AND houcf.CLASSIFICATION_CODE = 'HCM_LEMP'

          AND TRUNC(SYSDATE) BETWEEN hauft.effective_start_date AND hauft.effective_end_date

       ) legal_employer

       ON (paam.legal_entity_id = legal_employer.organization_id)

 LEFT OUTER JOIN

      (SELECT hauft.organization_id business_unit_id,

              hauft.NAME,

              houcf.classification_code

         FROM HR_ORG_UNIT_CLASSIFICATIONS_F houcf,

              HR_ALL_ORGANIZATION_UNITS_F haouf,

              HR_ORGANIZATION_UNITS_F_TL hauft

        WHERE haouf.ORGANIZATION_ID = houcf.ORGANIZATION_ID

          AND haouf.ORGANIZATION_ID = hauft.ORGANIZATION_ID

          AND haouf.EFFECTIVE_START_DATE BETWEEN houcf.EFFECTIVE_START_DATE AND houcf.EFFECTIVE_END_DATE

          AND hauft.LANGUAGE = 'US'

          AND hauft.EFFECTIVE_START_DATE = haouf.EFFECTIVE_START_DATE

          AND hauft.EFFECTIVE_END_DATE = haouf.EFFECTIVE_END_DATE

          AND houcf.CLASSIFICATION_CODE = 'FUN_BUSINESS_UNIT'

          AND TRUNC(SYSDATE) BETWEEN hauft.effective_start_date AND hauft.effective_end_date

       ) business_unit       

       ON (paam.business_unit_id = business_unit.business_unit_id)

        LEFT OUTER JOIN

       (SELECT aapf.absence_plan_id,

               aapft.NAME

          FROM anc_absence_plans_f_tl aapft,

               anc_absence_plans_f    aapf

         WHERE aapft.absence_plan_id = aapf.absence_plan_id

           AND aapf.plan_status = 'A'   -- added to pick only Active Absence Plans

           AND trunc(SYSDATE) BETWEEN aapf.effective_start_date AND aapf.effective_end_date

           AND trunc(SYSDATE) BETWEEN aapft.effective_start_date AND aapft.effective_end_date

           AND aapft.language = 'US'

       ) absence_plan

       ON  apaed.pl_id  = absence_plan.absence_plan_id

       where pl_id = absence_plan.absence_plan_id

and apaed.value <> 0    

order by apaed.person_id,apaed.procd_date asc

) A

where person_number = nvl(:pPersonNumber,person_number)

and   legal_employer = nvl(:pLegalEmployer,legal_employer)

and   business_unit = nvl(:pBusinessUnit,business_unit)

and   procd_date >=  nvl(:pCalculationDate,procd_date)

and   department = nvl(:pDepartment,department)

and   full_name = nvl(:pPersonName,full_name)

and   absence_plan_name = nvl(:pAbsencePlanName,absence_plan_name)

 

Navigate to the screen as shown:

 

Under Published Reporting -> Data Model

Create a New Data Set (of SQL Query type)

Give a Name to Data Set (for this example say PersonAbsenceAccrualEntryDetails_ds):

You would need to take special care while selecting Data Source (Logic Below):

  1. If you are Building Finance reports use : ApplicationDB_FSCM

  2. If you are Building HCM reports use : ApplicationDB_HCM

  3. If you are Building CRM Reports use : ApplicationDB_CRM

For this example we use ApplicationDB_HCM

Depending on the number of Parameters( Bind Variables) used a Popup window will appear :

Click OK. Give a Name to the Parameters as shown below

Parameter Details :

Data Model is created. Now we need to check the data retrieved.

. Create List of Values for Parameters.

List OF VALUES

LOV SQL Section

This Section shows all the SQL which are used for LOV Creation.

Legal Employer LOV SQL

Business Unit LOV SQL

Department LOV SQL

Absence Plan LOV SQL

Person Name LOV SQL

View Data :

Click on ‘Save As Sample Data’:

Create Report

 

                                                                                                     Click on Create Report

Click Next and Follow Train Stops :

Create Table

Drag and Drop fields and the Final Report output will look like :

 

 

Supporting Documents:

You may get this Report to your environment by archiving the below files:

 

PersonAbsenceAccrualEntryDetails.xdm.catalog

 

PersonAbsenceAccrualEntryDetailsReport.xdo.catalog


Ashish Harbhajanka

Comments   

0 #1 ameblo.jp 2022-02-11 14:31
If some one needs expert view on the topic of blogging and site-building after that i suggest him/her to pay a quick visit this website, Keep up
tthe nice work.

Here iss my blolg post - キャットアイ スピードメーター (ameblo.jp: https://ameblo.jp/jidoosa/)
Quote
0 #2 ameblo.jp 2022-02-15 21:29
I just like thhe helpful info you provide in your articles.
I'll bookmark your blog and check again here frequently.
I'm relatively sure I'll be told lots of new stuff proper right here!

Good luck for the next!

Feel free to visit mmy website; しまむら 長久手 - ameblo.jp: https://ameblo.jp/jidoosa/,
Quote
0 #3 ameblo.jp 2022-02-21 21:37
Hello there! Do you use Twitter? I'd like to follow you if that
would be ok. I'm undoubtedly enjoying your blog and look forward to new
posts.

Here is my web blog: ベンツ b180 価格 (ameblo.jp: https://ameblo.jp/jidoosa/)
Quote
0 #4 ameblo.jp 2022-02-26 01:50
Asking questions are genuinely nice thing if you are not understanding
anything fully, however this paragraph gives good understanding even.

Feel free to visit my homepage: 覇気tシャツ - ameblo.jp: https://ameblo.jp/collection-design -
Quote
0 #5 pbn 2022-05-12 14:09
My spouse and I stumbled over here coming from a different web page and
thought I may as well check things out. I like what I see so i am just
following you. Look forward to finding out about your web page again.
Quote
0 #6 newses 2022-05-12 14:35
It's an amazing article designed for all the web people;
they will take benefit from it I am sure.
Quote
0 #7 pbn 2022-05-13 22:11
Superb site you have here but I was wondering if
you knew of any community forums that cover the same topics talked about in this article?
I'd really love to be a part of online community where I can get feedback from
other knowledgeable individuals that share the same
interest. If you have any recommendations , please let me
know. Thanks a lot!
Quote
0 #8 news blog 2022-05-15 10:04
If you are going for best contents like me, simply go to see this web page every day for the reason that it presents feature contents, thanks
Quote
0 #9 SEO lists 2022-05-15 12:09
You're so awesome! I do not suppose I've truly read through anything like
this before. So wonderful to discover someone with a
few genuine thoughts on this subject. Seriously.. thank
you for starting this up. This website is something
that is required on the internet, someone with a bit
of originality!
Quote
0 #10 qituerow 2022-07-03 14:12
http://slkjfdf.net/ - Oxukoh Uqerio rxp.bdin.apps2f usion.com.ooz.d n http://slkjfdf.net/
Quote
0 #11 wivojox 2022-07-03 15:02
http://slkjfdf.net/ - Ilubog Ijixeko tih.fghs.apps2f usion.com.xtc.k m http://slkjfdf.net/
Quote
0 #12 yimigqubeye 2022-07-03 20:49
http://slkjfdf.net/ - Ipezeruj Afuifzzij tzu.bxjk.apps2f usion.com.aqn.l n http://slkjfdf.net/
Quote
0 #13 ribcecurecune 2022-07-03 21:19
http://slkjfdf.net/ - Unaneqoqa Ogohuuco ksy.prdx.apps2f usion.com.xjv.r f http://slkjfdf.net/
Quote
0 #14 ekaceoolo 2022-07-04 00:29
http://slkjfdf.net/ - Umapewe Urcvuto lvn.ohxi.apps2f usion.com.pix.c p http://slkjfdf.net/
Quote
0 #15 ikunejsi 2022-07-04 01:23
http://slkjfdf.net/ - Isoduhu Ihusovaca ifm.hrrx.apps2f usion.com.wcu.q y http://slkjfdf.net/
Quote
0 #16 my blog 2022-08-08 11:19
Great post. I was checking continuously this blog and I'm inspired!
Very useful info specifically the last part :) I
care for such information much. I used to be seeking this particular
info for a long time. Thanks and best of luck.
Quote
0 #17 my blog 2022-08-08 23:07
Thanks for every other magnificent post. The place else may just
anyone get that kind of information in such a perfect
manner of writing? I have a presentation next week, and I am at
the look for such info.
Quote
0 #18 my blog 2022-08-22 11:32
I have read so many posts on the topic of the blogger lovers however this
paragraph is actually a good paragraph, keep it up.
Quote
0 #19 my blog 2022-08-25 06:27
Hello there, You have done a great job. I will definitely digg it and personally recommend
to my friends. I'm confident they will be benefited from this website.
Quote
0 #20 my blog 2022-09-15 21:25
Yesterday, while I was at work, my sister stole my apple ipad and tested to see if it can survive a 30 foot
drop, just so she can be a youtube sensation. My iPad is now destroyed and she has 83 views.
I know this is entirely off topic but I had to share it with someone!
Quote
0 #21 my blog 2022-09-17 16:18
I appreciate, result in I found just what I used to
be having a look for. You have ended my 4 day long hunt! God Bless you man. Have
a nice day. Bye
Quote

Add comment


Security code
Refresh

About the Author

Ashish Harbhajanka

 

Oracle Fusion HCM Techno Functional Consultant with overall 10 years of Experience in software industry with 5 years in EBS HRMS and rest 5 in Fusion HCM.

My areas of intesrest in Fusion HCM include :

a) Inbound Outbound Integration using FBL/HDL or BIP/HCM Extracts.

b) Fast Formula

c) BIP Reports

d) OTBI Reports

e) RESTFUL API / Web Service Call

f) Functional Setup

g) End to End Testing

h) Regression Testing

i) Preparing COnfiguration Workbooks

j) Creating Speed Solutions

k) Preparing User Guides

l) UPK

........

Search Trainings

Fully verifiable testimonials

Apps2Fusion - Event List

<<  Apr 2024  >>
 Mon  Tue  Wed  Thu  Fri  Sat  Sun 
  1  2  3  4  5  6  7
  8  91011121314
15161718192021
22232425262728
2930     

Enquire For Training

Fusion Training Packages

Get Email Updates


Powered by Google FeedBurner