Build of custom Alert Functionality

Hi All,
I have a unique requirement. I need to create an Alerting Service in SAP BI7.0
A WAD dashboard report needs to show alerts. The alerts will be unique to individuals(users).
Overall implementation of the alerting service is based on 4 key elements:
1. Alert definition table - alert definition table could be created on BW as a master data element with      the related attributes. It will contain information on who should receive alert, Alert Condition, Alert Display Level, etc. 
2. Alert monitoring engine
3. Alert result table - this alert result table could be created on BW as ODS. It will contain information on Value of the measure associate to the alert,how the alert row should appear, who should receive alert, Dimensions value related to exception, etc.    
4. Alert summary dashboard
The conditions for alert can be coded but the problem lies in reading data from queries to backend before and after every load. Data needs to be taken from query because columns on which conditions are based are calculated in query and unique cell data cannot be accessed from reporting multiprovider. 
My issues are -
a- Can we execute all the queries automatically once after every data load cycle is complete?
b- Can we fetch latest data from queries and store in excel sheets automatically?
c- How can we customize authorization for each individual at dashboard level?
Point C can be accomplished through analysis authorization, but the problem of maintenance would crop up when number of users increase.
Please  provide your suggestions.
Regards,
Prerna

Hi,
a- Can we execute all the queries automatically once after every data load cycle is complete?
Yes you can do it using RSCRM_BAPI Tcode.
b- Can we fetch latest data from queries and store in excel sheets automatically?
Yes you can do it using RSCRM_BAPI Tcode.
In this you need to create varient or give restiction on 0CALDAY i.e. variable 0DAT-1 it is current day
c- How can we customize authorization for each individual at dashboard level?
sorry
A and B are 100% possiblebecause I did in the same way
Thanks
Reddy

Similar Messages

  • Do Report Builder support custom SQL Functions

    Hi All,
    I’m new to SSRS Report builder. I had written a SQL query which executes really well when I run in Management Studio. I tried to put that same query in new report to everyone can easily access.  I build the DataSource and connection successfully tested. 
    At the time of creating new Dataset, I pasted same query and that’s where I got stuck.
    Is it possible to add custom SQL Functions in the Report Builder SSRS?
    The Syntax of method is as follow
    Create Function [dbo].[ufn_Sqlstatement]( @str as varchar(max)) RETURNS varchar(max)
    Thanks in Advance

    You do not need to put the create function script into the query. It only needs to be executed once. Instead, run it on the database server. Then, simply call the function from your query:
    SELECT dbo.ufn_SQLstatement('select * from table')

  • Build customized search functionality

    Hi,
    I have atleast 1000 documents to be uploaded into the portal content areas.I have to build the customized search functionality for the user to be able to search for docs in specified categories.
    How do I go abt that.
    Thanx
    -Vipul

    Items should indeed appear on category page soley because you have set the the category of the item. You can't upload an item to the category page directly.
    So if you've set the category of the item and it's not on the category page we need to think about why that might be happening. The first possibility is that they portlets on the category page (since category pages are just pages with custom search portlets automatically showing the results). By default the portlets will be cached in webcache. However the cache headers should mean that the portlets are only cached for 10 minutes. That would be the first thing to consider I think.

  • Custom XPath function & customize XPath expression builder

    Hi,
    I have made several custom XPath functions and apparently it is not possible to customize the UI and add these functions to the XPath expression builder.
    Could someone confirm this ?
    Thanks

    Nobody knows the answer?
    I just have the same question.

  • Custom Alert Email Templates Issue - List Alerts emails not using customized XML alert template

    I have recently customized the XML alerts template (AlertTemplates.xml) for our site collection in SharePoint 2010 to exclude specific fields in the email when users who have subscribed to a list using the "Alert Me" feature.  I
    have renamed the custom alerts XML file and loaded the custom template in the following directory (%ProgramFiles%\Common Files\Microsoft Shared\Web server extensions\14\TEMPLATE\XML) and
    restarted IIS.  Once users subscribe to the alerts using the list using the "alert me" function they received the customized email as intended. 
    We needed to auto-subscribe users to the email alerts so what I did was used a powershell script to add users to the alert subscriptions using the script shown in below:
    Import-Csv D:\Temp\filename.csv | ForEach-Object{
    $webUrl=$_.WebUrl
    $listTitle=$_.List
    $alertTitle=$_.AlertTitle
    $subscribedUser=$_.SubscribedUser
    $alertType=$_.AlertType
    $deliveryChannel=$_.DeliveryChannel
    $eventType=$_.EventType
    $frequency=$_.Frequency
    $oldAlertID=$_.ID
    $web=Get-SPWeb $webUrl
    $testAlert = $web.Alerts | WHERE { $_.ID -eq $oldAlertID }
    IF ($testAlert) {
    $web.Alerts.Delete([GUID]$oldAlertID)
    Write-Host Old alert $oldAlertID deleted. -Foregroundcolor Cyan
    $list=$web.Lists.TryGetList($listTitle)
    $user = $web.EnsureUser($subscribedUser)
    $newAlert = $user.Alerts.Add()
    $newAlert.Title = $alertTitle
    $newAlert.AlertType=[Microsoft.SharePoint.SPAlertType]::$alertType
    $newAlert.List = $list
    $newAlert.DeliveryChannels = [Microsoft.SharePoint.SPAlertDeliveryChannels]::$deliveryChannel
    $newAlert.EventType = [Microsoft.SharePoint.SPEventType]::$eventType
    $newAlert.AlertFrequency = [Microsoft.SharePoint.SPAlertFrequency]::$frequency
    if($frequency -ne "Immediate"){
    $AlertTime=$_.AlertTime
    $newAlert.AlertTime=$AlertTime
    $newAlert.Update()
    Write-Host Created $newAlert.Title for $subscribedUser . -Foregroundcolor Cyan
    } ELSE {
    Write-Host Alert $alertTitle for $subscribedUser already done. Moving on. -Foregroundcolor Magenta
    When I ran the script and added the users and restarted the service, all users who were auto-subscribed via this method would get the email without the customizations that were done in the custom template.  All users who manually subscribed to the list
    using the "Alert Me" function would get the customized email. 
    Does anyone know why users who manually subscribe would get the custom email alert and why users who were auto-subscribed using the powershell script do not get the custom email alert?

    Hi  ,
    According to your description, my understanding is that users who were auto-subscribed using the PowerShell script do not get the custom email alert.
    For your issue, it can be caused by the auto-subscribed alert email which is generated by PowerShell script is  using OOTB alert template. You can add the following script into your script for setting
    the alerts’ alert email template:
    $contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
    $AlertsTemplateCollection =new-object Microsoft.SharePoint.SPAlertTemplateCollection($contentService)
    $newAlert.AlertTemplate = $AlertsTemplateCollection["YOUR_UNIQUE_TEMPLATE_NAME_VALUE"]
    Reference:
    http://sadomovalex.blogspot.com/2012/03/one-problem-with-updating-alert.html
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • Help for custom Partner Function

    Hi,
    I'm on SRM 5.0 ECS.
    I create two custom partner function and now I need to add they a search help.
    How can I do this?
    I will take data from R3, but I know how to build a search help, I need to know how give it to the partner function.
    thanks
    enzo

    I solved.

  • Customized Alert using 'Validation'

    Dear Experts,
    I am configuring somecustomized alerts to be sent to Supplier. These alerts are related to any change in Schedule Agreement.
    Current setup:
    ·         Alerts are active for New SA creation (default 0023) and  also when updating SA, we are getting alerts in Alert monitor for all the Release numbers but under alert type 7034 (exception validation for SA)
    Requirement:
    Alerts need to get generated only if the Schedule Line is in Firm Zone and not in Forecast
    for e.g.
    A new schedule line appears in the Firm Period (2 different cases : a Forecast schedule line has become firm, or a totally new schedule line has been added)
    A schedule line in the Firm Period has been deleted not due to goods receipt complete
    An existing schedule line quantity or Del. Date  has been modified and,
    After a Goods Reception has been completed, the received schedule lines are deleted from the portal on the reception of the new release. This functional case must not generate an alert.
    Work done:
    I have created a customized Alert type 9070. Under Release and also activated the same with all other functional configuration. This alert code is also visible in SNC supplier View (alert Monitor), though failing to categorized the generated alerts under 9070.
    Dear Experts may I get some help on how I can make these alerts to get generated and sent under 9070?
    I am not aware if  we can use other two methods (PPF n Reporting), if so how?

    Hi MJ,
    this si more specific requirement and my client dont want too many alerts and hance done wanna use Standard 0023 or 24  but we have created a  customized Alert Type 9070 and assigned it to Type "Release"
    though I can see th  new customised Alert 9070 in alert monitor search option but if i am searching by Selecting "Release" i am not getting 9070 in the list.
    i saw there is a BAdi Implemented SCMB/BOL_VALFRMWR which is calling method "VALIDATE"
    but some how it is not working for my Customized Alert 9070. I am looking for some techinical (ABAP) help for the required customization int he implimented BAdI

  • Custom Java Function in BI Publisher

    Hi -
    Is it possible in BI Publisher to create a custom java function and call this function in RTF template?
    Thank You

    I was able to test it using Template Builder for MSWord , but when I try to upload it in BI Publisher Server, I am encountering error.

  • SALERT_CREATE -custom alert creation for validation

    Hi,
    I have done one scenario,in which i have used the custom alert creation calling the SALERT_CREATE function module from my udf.That is doing fine but now i have an understanding problem that, in the udf we need to use one RFC receiver comm channel,what is the use of that.As the function module we access is already present in PI server itself.
    In case of RFC lookup when we access RFCs from remote server there we need one RFC receiver comm channel..that is valid but why in this case.
    Can anyone please clarify me.
    Cheers,
    Abhishek.

    Solved itself.

  • Oracle HRMS 11.5.10.2 Custom Alert on Leave

    Hi there
    I have to create a Custom Alert in Oracle HRMS on Specefic Leaves.
    What Step need to be followed?
    """******Process Detai****l""""""
    • Oracle Custom Alert should be created. Which will fire each time when the leave APPROVED in OTL by the authorized person.
    • Email should be sent to the specefic group of people.
    """************l""""""
    Any help Appritiated.
    Thanks
    Discoverer

    Oracle EBS(11i and r12) does not provide you any web services.
    Most of the code is in Pl/sql or C.
    The next version of applications Fusion apps would have readily available web services which can be used to integrate with 3rd party solutions.
    For now, you will either have to write your own Webservices(wrapper on top of Pl/sql APIs) or somehow connect to the EBS database.
    There would be seeded pl/sql APIs/functions for most of the absences stuff.
    Cheers,
    Vignesh

  • ALERT FUNCTIONALITY IN SAP

    We need an ALERT functionality is SAP, just like it happens when a new mail comes in on Outlook.This ALERT MESSAGE must inform us whenever a new Z transaction is created on Table TSTC.
    Any Ideas????

    You could create a custom table to basically replicate a list of all the Z transactions.  You should maintain this manually. 
    Then have a program that runs every so often (once an hour if you're really paranoid, once a day would probably be sufficient) that compares the two tables.  The program could send you an e-mail or a page or something if it finds a discrepancy.

  • Custom alert for ASA Secondary Status

    Hello All.
    Here is our dilemma.
    We need a custom alert.  Something that will trigger an alert if our secondary ASA goes to a "Secondary - Failed" state.
    If  the primary is active and secondary is in a failed state, we may never  know until traffic tries to fail to the secondary and is
    unable to do so because it is in a bad state.
    We  are not looking to see if the secondary firewall goes down nor if it  becomes the primary from a failure of the primary, but if
    anything changes the secondary status.
    To put another way, if the line from "show standby" shows "Secondary - Failed"
    we need to know about it because it means redundancy is broken.
    We need to know if this line changes from this status:
    Other host: Secondary - Standby Ready
    I believe there is a monitor in Orion for the load balancers called something like "not
    standby hot" designed for the same thing.  Basically we need the same type of
    monitor for the firewalls.
    Any ideas on how to go about making this happen????
    All of the posts I have discovered relating to this topic only cover alerts/notifications on whether a pair of devices go from
    active to standby and vice versa.
    Is this even possible with the OID's on the ASA's?
    cfwHardwareInformation
    cfwHardwareStatusValue
    cfwHardwareStatusDetail
    cfwBufferStatInformation
    Posts we've already covered:
    http://thwack.solarwinds.com/message/132423#132423
    http://thwack.solarwinds.com/message/29931#29931
    http://thwack.solarwinds.com/message/85319#85319
    http://thwack.solarwinds.com/docs/DOC-170819
    http://thwack.solarwinds.com/message/171653#171653
    http://thwack.solarwinds.com/docs/DOC-118692
    http://thwack.solarwinds.com/message/29931#29931
    https://supportforums.cisco.com/docs/DOC-1295
    http://thwack.solarwinds.com/message/71089#71089
    Thank you in advance,
    Todd

    Hi,
    One option is to use standard AuditTrail functionality on that field, then you'll have the entire chronological history for the field to work the periodic alert logic from.
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Building a custom button

    I've been using LiveCycle off and on for a couple of weeks now. One question that has come up several times - is it possible to build a custom graphic button?
    I can't find a way to import an image into an existing LiveCycle button. I've tried putting in an image and then positioning an invisible button over top of it. This is clumsy at best.
    I'm now wondering if I would need to build a custom object. Is the the correct way to do this?
    Any help is much appreciated.

    In regards to my previous message # 5 posted within this thread:
    Please Note!
    I was able to get the "Download Sample [pdf] form in the Tracking Mouse Clicks to work using Acrobat Professional 7.05 but it did not populate the textfield1 properly in Acrobat Professional 8.1.0 causing this message in debug.
    oBtnRect has no properties
    12:XFA:form1[0]:#subform[0]:Button1[0]:clickException in line 12 of function top_level, script XFA:form1[0]:#subform[0]:Button1[0]:click
    oBtnRect has no properties
    12:XFA:form1[0]:#subform[0]:Button1[0]:click
    I submitted a comment letting Stefan know of the issue. Messages go through a moderation process.
    Any thoughts?
    Thanks
    Pam

  • Custom alert for ical

    The old method doesn't seem to work.
    How do I create a custom alert sound for ical on my mac????

    Hi,
    Depending from your Role, for Exmample IC Manager:
    -> Process Modeling
    First Step for Creating the Alert:
    -> Create Alert
    -> New
    Second Step:
    -> Create Rule Polici
    There you define the Conditions and the Actions
    so the Alert is coming up the IC. You can test it and have to release it.
    Read C78 CRM Interaction Center Building Block Configuration Guide;
    there you will find an easy example an Page 59.
    Andreas

  • How to Implement custom share functionality in SharePoint 2013 document Lib programmatically?

    Hi,
    I have created custom action for Share functionality in document library.
    On Share action i'm showing Model pop up with Share form with addition functionality.
    I am developing custom share functionality because there is some addition functionality related to this.
    How to Implement custom share functionality in SharePoint 2013  document Lib pro-grammatically?
    Regards,
    - Siddhehswar

    Hi Siddhehswar:
    I would suggest that you use the
    Ribbon. Because this is a flexible way for SharePoint. In my project experience, I always suggest my customers to use it. In the feature, if my customers have customization about permission then i can accomplish this as soon
    as possible. Simple put, I utilize this perfect mechanism to resolve our complex project requirement. Maybe we customize Upload/ Edit/ Modify/ Barcode/ Send mail etc... For example:
    We customize <Edit> Ribbon. As shown below.
    When user click <Edit Item>, the system will
    render customized pop up window.
    Will

Maybe you are looking for