Hi
Let us quickly check how to query for Subject area report or OTBI Or Analysis report.
After creating subject area report, please use following steps to find the query
Step 1: Go to your login in Reports and Analytics page
Hi
Let us quickly check how to query for Subject area report or OTBI Or Analysis report.
After creating subject area report, please use following steps to find the query
Step 1: Go to your login in Reports and Analytics page
Hi,
Please use the following query to fetch purchase order lines attachment
SELECT
FDV.*
FROM
FND_ATTACHED_DOCUMENTS FAD,
FND_DOCUMENTS_VL FDV,
PO_LINES_ALL PLA,
PO_VERSIONS PV
WHERE
FAD.ENTITY_NAME = 'PO_LINES'
AND FAD.DOCUMENT_ID = FDV.DOCUMENT_ID
AND PLA.PO_LINE_ID = FAD.PK1_VALUE
AND FAD.CATEGORY_NAME = 'TO_SUPPLIER'
AND PK2_VALUE = PV.VERSION_ID
AND PLA.PO_HEADER_ID = PV.PO_HEADER_ID
AND NVL(PV.CO_NUM,0) = NVL(:PARAM_CO_NUM,
0)
Hello Everyone,
In this post let's us see how to fetch attachment content in BI Reports from UCM server
Let us consider fetching Attachment details of AP Invoices
Step1: In data model, Click on "New Data Set"
Hello Everyone,
Today let us see how to place multi sheets in Excel.
In the rtf document, enter required data to be shown in the First Sheet
Hi
In this post let us see how to link parameters and BIP report data set when we want to show both field and description in parameter but in data set only field is present.
Go to your datamodel and edit LOV
Sample Query: Select field||'-'||description, field from table1
This query shows the corresponding field along with description in parameter selection part but internally it returns field to the data set.
Example: P_Item: select item_number||'-'||item_description, item_number from items_table
How it is shown in parameters
Item Number : Item1-Test Item
Internally value passed will be "Item1"
Hope this helps...
Hello Everyone,
Let us see some tips that can be useful while creating or customizing a role in Oracle Fusion.
1. Before creating a custom role, search if any seeded/ Oracle provided role is close to the one you require, if you find any such go with customizing i.e., copying of seeded role and work on it. If not starting creating a new role.
Recommending to find a close role since there will be many data security policies associated with role and underlying privileges which will be difficult to find and add if working from scratch.
2. Role name can be changed at any point of time but role code cannot be changed once we save, so make sure of the role code before doing final submit.
3. Generally we don't need to touch data security policies unless the requirement is very specific. So make sure before deleting any data security policy.
4. Unnecessary Function Security Policies can be deleted.
5. In Function Security Policies, we can see few privileges are inherited other role. These privileges can be removed only if inherited roles are removed.
6. While working on Role hierarchy tab, make sure to not remove _obi roles if corresponding role is used since these might be related to running corresponding report outputs
7. Similarly do not delete any roles with _hcm and _crm if corresponding roles are used in Role hierarchy
Hi,
Following query can be used to see the values in Manage Values page.
select
fv.value,
fv.DESCRIPTION,
fv.ENABLED_FLAG Enabled,
fv.START_DATE_ACTIVE Start_Date,
fv.END_DATE_ACTIVE End_Date,
fv.SORT_ORDER,
fv.SUMMARY_FLAG Summary,
fv.FLEX_VALUE_ATTRIBUTE1 Posting_Allowed,
fv.FLEX_VALUE_ATTRIBUTE2 Budget_Allowed,
gl.Meaning Account_type,
fv.EXTERNAL_DATA_SOURCE
from
fnd_vs_value_sets fvvs
,FND_VS_VALUES_VL fv
,gl_lookups gl
where
fvvs.VALUE_SET_ID=fv.VALUE_SET_ID
and fv.FLEX_VALUE_ATTRIBUTE3 =gl.lookup_code
and gl.LOOKUP_TYPE='ACCOUNT TYPE'
Hi All, A short post to get COA Account Segment related fields. select fvvv.value, FVVV.DESCRIPTION, fvvv.ENABLED_FLAG Enabled, fvvv.STAR...