OBIEE Impact Analysis – What if I delete a column from RPD, what are the reports that are being affected?
08MAY
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Oracle Business Intelligence Presentation Services Configuration File --> <WebConfig xmlns="oracle.bi.presentation.services/config/v1.1"> <ServerInstance>
select g.display_name as 'Choice Group',
c.display_name as 'Choice',
e.name as 'Event',
mi.timewindow_start as 'Start',
mi.timewindow_end as 'End',
mi.state as 'Model Status',
m.name as 'Model Name',
mi.count_total,
mi.count_positive,
mi.quality
from RTDApp a
inner join RTDStudy s on s.id=a.study_id
inner join RTDModel m on m.study_id=s.id
inner join RTDModelInstance mi on mi.model_id=m.id
inner join RTDEvent e on mi.event_id=e.id
inner join RTDChoice c on c.id=mi.choice_id
inner join RTDChoiceGroup g on c.choicegroup_id=g.id
where a.name='CrossSell'
order by m.name,
g.display_name,
c.display_name,
mi.timewindow_start
select a.name 'Attribute Name',
p.predictiveness 'Predictiveness',
c.display_name 'Choice Name',
mi.timewindow_start as 'Start',
mi.timewindow_end as 'End',
mi.state as 'Model Status'
from RTDApp app
inner join RTDChoice c on c.app_id=app.id
inner join RTDStudy s on s.id=app.study_id
inner join RTDModel m on m.study_id=s.id
inner join RTDModelInstance mi on mi.model_id=m.id and mi.choice_id=c.id
inner join RTDEvent e on mi.event_id=e.id
inner join RTDPredictiveness p on p.model_instance_id=mi.id
inner join RTDAttribute a on a.id=p.attribute_id
where app.name = 'CrossSell'
and c.display_name = 'Credit Protection'
and e.name = 'Purchased'
and m.name = 'OfferAcceptance'
and 7 > (select count(*)
from RTDPredictiveness p2
where p2.model_instance_id = p.model_instance_id
and p2.predictiveness > p.predictiveness)
order by mi.timewindow_end desc,
p.predictiveness desc
For example:
<WebExpression name="batchNumber" usequotes="false">
<messageKey>kmsgMktgWebExprBatchNumber</messageKey>
<default>1</default>
</WebExpression>
<WebExpression name="DNISNumber" usequotes="false">
<messageKey>kmsgMktgWebExprDNISNumber</messageKey>
<default></default>
</WebExpression>
<WebExpression name="fileCounter" usequotes="false">
<messageKey>kmsgMktgWebExprFileCounter</messageKey>
<default></default>
</WebExpression>
<WebExpression name="CampaignCreatedBy" usequotes="false">
<messageKey>kmsgMktgWebExprCampaignCreatedBy </messageKey>
<default></default>
</WebExpression> </WebExpressions>
Save the XML file.
Open the translation file for the language(s) you are using.
The English file is located in:
\installroot\SiebelAnalytics\Web\App\Res\l_en\messages\marketingwebexpressionmessages.xml (10g) or <OBI Install Root>\Oracle_BI1\bifoundation\web\msgdb\l_en\messages\marketingwebexpressionmessages.xml (11g)
Add the display caption that you want to appear to the user with the English user interface. Add the expression at the end of the file using the same XML syntax. Be sure to reference the ‘messageKey’ you entered in step 2 in the other XML file.
For example:
<WebMessage name="kmsgMktgWebExprSplitDetails">
<TEXT>Split Details</TEXT>
</WebMessage>
<WebMessage name="kmsgMktgWebExprTokenNumber">
<TEXT>Token Number</TEXT>
</WebMessage>
<WebMessage name="kmsgMktgWebExprWaveID">
<TEXT>Wave Id</TEXT>
</WebMessage>
<WebMessage name="kmsgMktgWebExprCampaignCreatedBy">
<TEXT>Campaign Created By Name</TEXT>
</WebMessage> </WebMessageTable>
</WebMessageTables>
Save the XML file.
FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = NO and change its value to YES.<Catalog> <UpgradeAndExit>false</UpgradeAndExit> </Catalog>Comment out the <UpgradeAndExit> line and add an extra line in this section as in the following example:
<Catalog> <!--UpgradeAndExit>false</UpgradeAndExit--> <UpdateAccountGUIDs>UpdateAndExit</UpdateAccountGUIDs> </Catalog>
opmnctl command with the parameters stopall and startall. You can use the parameter status to verify process status throughout.opmnctl commands, see "Using the OPMN command line to Start and Stop Oracle Business Intelligence System Components" in Oracle Fusion Middleware System Administrator's Guide for Oracle Business Intelligence Enterprise Edition.FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES to NO and restart the Oracle BI Servers.<Catalog> <UpgradeAndExit>false</UpgradeAndExit> <!--UpdateAccountGUIDs>UpdateAndExit</UpdateAccountGUIDs--> </Catalog>