Oracle Fusion
This blog is related to Oracle Fusion
Creating and working with Infolets
Add Barcode in oracle fusion Reports
Hi Everyone,
In this post let us see how to add Barcode in Oracle Fusion RTF Templates and setups to be done to reflect in the report output.
Step1: Check if "Code 128" font is available in MS Word.
There are many fonts that support barcode, for this blog, we are using "Code 128"
Follow the steps to get the file, so it can be installed
Goto the following path: C:\Program Files\Oracle\BI Publisher\BI Publisher Desktop\Template Builder for Word\fonts
Copy the highlighted file 128R00.rtf and install it.
Step2: Once we have required font, goto your rtf and insert the tag and select the font as Code128.
Sample xml:
Inserted field in rtf
Now change font to Code 128
Step3: Upload the rtf in required report
Step4: If Code 128 is not available in Oracle ERP, follow these steps to install so that when users run the report the see the Barcode
Login > goto Reports and Analytics > under username > Administration>Manage BI Publisher > Font Mappings
"Upload Fonts" under "Manage Custom Fonts"
This is how it looks:
Then add this uploaded Font under RTF Templates > Add Font Mapping
Base Font: Code 128, Select Target Font: 128R00.TTF and click Apply
So thats it , now report is ready to be tested with barcode
Query to fetch COA Account Fields
Hi All,
A short post to get COA Account Segment related fields.
select
fvvv.value,
FVVV.DESCRIPTION,
fvvv.ENABLED_FLAG Enabled,
fvvv.START_DATE_ACTIVE Start_Date,
fvvv.END_DATE_ACTIVE End_Date,
fvvv.Sort_Order,
fvvv.SUMMARY_FLAG Summary,
fvvv.FLEX_VALUE_ATTRIBUTE1 Allow_Posting,
fvvv.FLEX_VALUE_ATTRIBUTE2 Allow_Budgeting,
gl.Meaning Account_type
from
fnd_vs_value_sets fvvs
,FND_VS_VALUES_VL fvvv
,gl_lookups gl
where
fvvs.VALUE_SET_CODE=valueset_name --pass required valueset name
and fvvs.VALUE_SET_ID=fvvv.VALUE_SET_ID
and fvvv.FLEX_VALUE_ATTRIBUTE3 =gl.lookup_code
and gl.LOOKUP_TYPE='ACCOUNT TYPE'
Query to fetch AR Receipts Application reference — Oracle Fusion
Select
acra.RECEIPT_NUMBER TRX_NUMBER,
HZ.PARTY_NAME CUSTOMER_NAME,
(Select listagg(apsa1.trx_number,’;’) within group (order by RECEIVABLE_APPLICATION_ID)
from
ar_payment_schedules_all apsa1,
AR_RECEIVABLE_APPLICATIONS_ALL ARAA
where
araa.APPLIED_PAYMENT_SCHEDULE_ID=apsa1.PAYMENT_SCHEDULE_ID
and araa.cash_receipt_id=acra.cash_receipt_id
and araa.display=’Y’
) Application_Reference
from
AR_CASH_RECEIPTS_ALL Acra,
AR_PAYMENT_SCHEDULES_ALL apsa ,
HZ_CUST_ACCOUNTS hca,
HZ_PARTIES HZ
where
acra.CASH_RECEIPT_ID = apsa.CASH_RECEIPT_ID(+)
and acra.PAY_FROM_CUSTOMER=hca.cust_account_id
and hca.party_id=hz.party_id
Query for PPM Project Status #PPM #Projects
Hi,
In this post let's see how to fetch Project Status in Oracle Fusion.
Tables used:
PJF_PROJECTS_ALL_VL
Query:
Select PPST.PROJECT_STATUS_NAME
from
PJF_PROJECTS_ALL_VL PPAV
PJF_PROJECT_STATUSES_TL PPST
where 1=1
AND PPST.LANGUAGE=USERENV('LANG')
AND PPA.PROJECT_STATUS_CODE=PPST.PROJECT_STATUS_CODE
Query to get PPM Project Manager name in Oracle Fusion
Hi,
In this post lets see how to fetch Project Manager name of a given project in Oracle Fusion
List of Tables used:
PJF_PROJECTS_ALL_VL
PJF_PROJECT_PARTIES
PJF_PROJ_ROLE_TYPES_TL
PER_PERSON_NAMES_F_V
Query:
Select
ppnfv.full_name as Project_manager
from
PJF_PROJECTS_ALL_VL ppav
PJF_PROJECT_PARTIES ppp
PJF_PROJ_ROLE_TYPES_TL pprtl
PER_PERSON_NAMES_F_V ppnfv
where 1=1
AND ppav.project_id = ppp.project_id
AND ppp.RESOURCE_SOURCE_ID=ppnfv1.person_id
AND ppnfv1.name_type='GLOBAL'
AND ppp.project_role_id = pprtl.project_role_id
AND pprtl.PROJECT_ROLE_NAME ='Project Manager'
Error while customizing reports in Oracle Fusion
Hi
In this post lets see one of the common issue while Customizing standard reports in Oracle Fusion.
Issue:
You don't have enough privilege to customize report. Please check the permission for the custom folders.
Creating and working with Infolets
Infolet: It is a small interactive interface to see key info Key Points to note: 1. It can have 3 views : Front , Back and Expanded so max ...
-
Hi, In this post lets see how to fetch Project Manager name of a given project in Oracle Fusion List of Tables used: PJF_PROJECTS_ALL_VL PJ...
-
Hi This blog is regarding exporting custom roles from an instance. Step 1: Goto setup and maintenance > Click on Manage Implementation P...
-
Hi Everyone, In this post let us see how to add Barcode in Oracle Fusion RTF Templates and setups to be done to reflect in the report outpu...
-
Hi This blog is in continuation to the post "Exporting custom roles along with Data Security Policies". Please check it before th...
-
Showing Sample Query for Bursting Bursting is used for mailing or faxing or sending report details to others through any media Steps for Bu...