How to alert based on precentage?

Hi All,
I've table like below. Now i've to create an alert based on the Percentage column.
If the value is -ve Red and +ve Green. For now i've done it by taking <0 is Red and >0 as Green.
I don't know if this approach is right or not.
The percentage is calculated manually here. First I've fetched the previous days Charged Usage Minutes in a Variable and then calculated percentage using the below formulae.
Formulae used for Previous Day Mins:
=RelativeValue([Charged Usage Minutes];([Event Start Date]);-1)
Formulae used for Percentage:
=If
  IsNull([Prev Day Mins])
  Then
  (((([Charged Usage Minutes]-[Prev Day Mins])/[Charged Usage Minutes])*100)+"%")
  Else
   (((([Charged Usage Minutes]-[Prev Day Mins])/[Prev Day Mins])*100)+"%")
Can you suggest any other approach that can be applicable here?
Regards,
Naren Vema

Hi naren,
No need to append *100+"%", it makes numbers as text. instead you can use percentage in Format Number.
For alerts Show Trend Icon/Arrows in webi as per conditions

Similar Messages

  • How can we display Alerts based on Exceptions in BI7

    Hi,
    <b>How can we display Alerts based on Exceptions in BI7?</b> My requirement is a dashboard kind of scenario where the alerts will be displayed using WAD in Portal.
    In 3.5, we used to schedule the alerts from the Reporting Agent and display that using the Alert Webitem in Web Application Designer. But I couldn't find the Reporting Agent and the Alert Webitem in BI7. I would like to know how we can do Exception Reporting in BI7. I appreciate your suggestions/comments. Thanks in advance.
    Regards
    Hari

    Hi,
    Please go through this link:
    bw 7.0
    Regards,
    Habeeb

  • HOw to get an Alert based on a Query

    I currently have a maintenance plan in place that does a backup, re-indexing, etc..  If a task fails, it sends me an email alert.  I would like to add a "T-SQL Statement Task" that will execute a query and send me an email alert based
    on the results of the query.
    For example:   Select Cast(case when count(inventory.items) > 1000 then 1 else 0 End as bit) as SendAlert from Inventory
    The maintenance plan's alert function constraint seems to be triggered whether the Query executed successfully or not RATHER THAN from the Query Result.
    Can I accomplish what I want from within a maintenance plan or is there some other way to do this? 
    Thank You.
    Jack

    I would create a stored procedure using  the following t-sql code:
    Create Procedure [dbo].[GetInventoryAlert]
    as
    Begin
    Set nocount on
    declare @body varchar(max)
    set @body = cast( (
    select td = SendAlert + '</td><td>'
    from (
    select SendAlert = Cast(case when count(inventory.items) > 1000 then 1 else null End)
    from Inventory) as d
    for xml path( 'tr' ), type ) as varchar(max) )
    If Len(Rtrim(@body))>0
    Begin
    set @body = '<table cellpadding="2" cellspacing="2" border="1">'
    + replace( replace( @body, '&lt;', '<' ), '&gt;', '>' )
    + '</table>'
    Set @body='****BODY HEADING OPTIONAL****<br/><br/>'+@body
    exec msdb.dbo.sp_send_dbmail @profile_name='MAIL PROFILE',
    @from_address='FROM EMAIL ADDRESS',
    @recipients='COMMA SEPARATED RECIPIENTS',
    @subject='SUBJECT OF THE EMAIL',
    @body=@body,
    @body_format='HTML',
    @attach_query_result_as_file=0,
    @query_result_header = 0
    End
    End
    Also the above can be embedded as t-SQL in  a maintenance plan tasks control.
    I would add an Execute T-SQL Statement Task. Then branch the task where applicable.

  • How to find Based on PO item find ProjSt or Common Stock?

    Hi Gurus,
    How to find based on PO item and line item number find whether Project stock or it's common stock?  It's there any standard report is there? or provide me table name use with SQVI transaction code?
    Thanks and Regards,
    Deethya.B

    PO with account assignment category P - it is created for projects and need to provide account details in the tab.
    You can check these details from table EKPO - ( EKPO-KNTTP equal to P).
    Project stock can be finding in MMBE using special stock indicator as Q.  Details can be getting from table MSPR.
    Regards,
    Narendra.

  • Creating an Alert Based on Category

    Hi ppl,
    We have requirement to create an alert based on the category we choose in the category modeler. Is it possible to do so in standard?
    I couldnt find an attribute for category. So, I tried to create a new attribute in the repository, using FG_ICWC_ORDER as the fact gathering service. But couldn't make it working.
    Does it work when we use this fact gathering service? I left the Input Support Class blank in Input Support for Conditions. Do we have a input support class for categories?
    Has anyone of you have had a similar requirment before? Any help would be great!
    Regards,
    Shwetha

    Hi,
    Why don't you define a new event. The same can be done at the following path:
    IMG>Customer Relationship Management>Interaction Center WebClient>Additional Functions>Intent-Driven Interactions>Define Events in Repository
    You would need to know the name of the component and the view to define the event and this you could get by pressing F2 in the relevant WEB UI screen.
    Regards,
    Deepak

  • How to alert user using BizTalk if a file is not dropped in a folder during a specified time using file adapter (or any other)

    Hi,
    I have a requirement wher the client wants BizTalk to alert users somehow when a file is not received at specific time. I am using a FILE receive adapter, the requirement is, if the FILE adapter does not receive a file on time then BizTalk should alert the
    users somehow. The client wants to use ESB toolkit to do this job.
    does anybody have any idea ?
    PLEASE HELP
    Thanks & Regards
    Vikram

    Duplicate Thread.
    Follow here:
    https://social.msdn.microsoft.com/Forums/en-US/3e314d17-8b0c-451c-921a-65dbab0612a8/how-to-alert-user-using-biztalk-if-a-file-is-not-dropped-in-a-folder-during-a-specified-time-using?forum=biztalkgeneral

  • Personalized txt message alerts based on who is sending it?

    Is there anyway on the Iphone to set different text message alerts based on who is sending the text? I am a sysadmin and currently I have our servers sending txt message alerts to my corp phone. I'd like set it to send to my iphone with the caveat of giving a different alert sound then other text messages sent by other people.
    I just got my iphone yesterday, so please forgive me if there is an easy solution.

    In short, no. You can change ring tones for various people however; no individual group alerts.

  • How to alert with new window when message is comming like MSN

    Please tell me .How to alert with new window when message is comming like MSN?

    Why is it the first think everyone wants to do in JSP is write a chat application?
    Not really an easy way to do this, as HTTP is a "pull" model. You send a request, the server sends a response. The server can't send anything unless you ask for it. That kindof puts a damper on things like instant messaging.
    A couple of workarounds
    1 - refresh the page every once in a while to check for new messages. An easy solution but nowhere near optimal.
    2 - check out pushlets www.pushlets.com
    Cheers,
    evnafets

  • Alert based on date

    I have a list of SSL certificates and their expiration dates.  I created a column that calculates the date 45 days before the expiration and then a view that only shows those items where the (expiration - 45) > Today.
    I then set an alert for any changes to items in that view.  However, I don't get an alert for items that pop into the view...I guess because the item itself did not change.  Is there a way to send an alert based on date? 
    My SharePoint enviroment is locked down so I can't create custom workflows or connect via Designer.

    Thanks for the idea.  I don't guess it will work as the only option I have when enabling the expiration feature is to delete the item. 
    So far, the best idea I have is a weekly calendar reminder to go look at the view for expiring certificates.
    Before setting the policy you need to go to workflow settings and add a disposition workflow to the list so it is available as an option when you Enable Expiration in the Information Policy Settings.
    After you set the expiration policy to start your workflow, set up an alert on the workflow tasks list you associated with the disposition workflow.
    - Xenox G.

  • Alerts based on category in IDI

    Hi Forum,
    We are tyring to trigger alerts based on the category selected in the service request. This alert basically would be in the form of message for ex. if agent selects Category x then alert message as "Please call Your Manager".
    We are using CRM 7.0 and am not able to find the condition wherin I can select the the categories with action trigger alerts, we have created for the service request.
    Any pointers would be rewarded.
    Rgds,
    Shridhar

    Hi Forum,
    We are tyring to trigger alerts based on the category selected in the service request. This alert basically would be in the form of message for ex. if agent selects Category x then alert message as "Please call Your Manager".
    We are using CRM 7.0 and am not able to find the condition wherin I can select the the categories with action trigger alerts, we have created for the service request.
    Any pointers would be rewarded.
    Rgds,
    Shridhar

  • How create query based .txt, .pdf file in SQL/PLSQL

    Hello,
    I am sending email alerts for new employements/resigns.
    I want to create ry based .txt, .pdf file in SQL/PLSQL and email it.
    How i can create file
    queyy : select dempartment,empid,name,joining_date from employee;
    Thanks

    Andreas Weiden wrote:
    There is a commercial tool called plpdf, but i can't tell if its good..
    Also possible would be to create an XML-FO with sql or pl/sql.
    And then use Apache-FOP to convert the XML-FO into a pdf, rtf or whatever you want.
    No extra costs but the effort to learn a bit about the fo elements/syntax.
    I think the newer Apex-Versions can doing something like this also. Maybe additionally ask in the Apex Forums.

  • How To: Alerts, BLOB and SMS in HTMLDB

    How can I create Oracle Forms like event drivern Alerts in HTMLDB page?
    How can I display a BLOB column of Image/Text/Pdf/Word etc mime types in an item in HTMLDB region?
    How can I send SMS in HTMLDB?

    Hi ,
    What item are u going to use..?
    You can display images in a report or iframe by using creating an image tag in the sql based report like
    src="http://venkatesh.idc.oracle.com:7777/pls/htmldb/OBE.CUSTOM_IMAGE_DISPLAY?P_IMAGE_ID=2099105027406147">
    where custom_image_display is a procedure returning the blob image..
    Event driven alerts I think would demand using AJAX supported API's at htmldb...
    sms in htmldb..? I would love to hear something about that..
    Thanks
    Message was edited by:
    VENKAT
    Message was edited by:
    VENKAT

  • How-To: server-based... application policy management

    Hi all,
    I am at the end of me rope here.
    I have a system with an intended client-server architecture - although the server component is not developed/functioning yet.
    I have partially integrated JAAS into the system as I need authentication and authorization within my application. It is currently built into the client component for testing purposes, but should be distributed over both at deployemnt time.
    And hence my problem: I have developed a database implementation of both the Policy and Configuration classes. These are a part of the server component. I do not want any configuration to be called for on the client -side i.e. preconfiguring of policy files and permissions. I just want an instance of the policy and configuration to be 'downloaded' and installed on the client prior to the security manager being switched on and authentication. This is of course given that runtime authorization occurs on the client.
    I would really love to do all this the Java advocated way. I have tried to make sense of Sun Directory Server and Access Manager.... but I am wondering if this is overkill; there is so much talk of what these products can do, but it leaves me with no idea if they are appropriate for the 'little' I want done.
    The last thing I want to do is implement my own solution... something I have already researched with a combination of web services, JAX-RPC and SOAP... but it's a big unnecassary headache.
    Please advise... anyone.
    See also http://forum.java.sun.com/thread.jspa?threadID=576476&tstart=0

    Ok,
    I solved the problems I described earlier and I have a fully funtional policy implementation. The main features are:
    (1) It is distributed to accomodate client-server architectures
    (2) Transmitted over the wire with an arbitrary protocol
    (3) Is populated from a database
    (4) Fully supports JAAS
    There are a few glitches with regard to refresh; this maybe due to the fact that my client-server comms is SOAP based.
    I can't post code due to contract blah blah... but the least I can do is help troubleshoot; since completing it I can see how stupid my mistakes were and would like to help others avoid the same 'I'M GONNA SCREW YOU PROJECT SCHEDULE' pitfalls that I did ran into.
    One word of advice I offer now is to ignore the fact that only getPermissions(CodeSource cs) andrefresh() are abstract - reimplement what ever you need to - it's clear the new PolicyFile implementation has abandoned some/alot of the concepts of the pre 1.4 version and hence the interface is a bit misleading.
    Kind regards,
    Darren B

  • How to calculate % based on totals of a characteristic

    HI BI query goeroes,
    I have following query:
    Sales org - S&OP - Channel - PSI - KeyFigure1 - % S&OPKF1 - % Channel KF1
    S100--SAA---1010/60--
    10/30
    S100--SAB---2020/60--
    20/30
    total  ChannelA--
    30
    S100--SBA---1515/60--
    15/30
    S100--SBB---1515/60--
    15/30
    total  ChannelA--
    30
       total S&OP S                                 60
    Question is how to calculate the last two colums.
    First colum should calculate the Keyfigure1 percentage based on the overall total of S&OP per salesorg (keep in mind that we have multiple sales orgs).
    Last colum should calculate the Keyfigure1 percentage based on the total of Channel per salesorg/s&op group.
    Can anyone please assist me how to do this?
    I am using the BI7.0 query designer.

    Hi,
    To Calculate % Channel KF1 you can use  'Percentage of Result'(KeyFigure1).
    To calculate % S&OPKF1 you can use ' Pecentage of Overall Result' (Keyfigure1).
    These are functions are available in the Percentage Functions when you create a formula or a CKF.
    Hope this helps.

  • How to Alert RFC connection failure via message mapping? Kindly Help!

    Hi Experts,
        I have a JMS - XI - RFC scenario.
    JMS receives the Rosattenet PIP contents and sends it to RFC function module in remote SAP R/3 system.
       I have a requirement where I have to monitor RFC connection failure because of the remote R/3 system being down. I have to send a email alert where the subject contains the PIP number to understand for which PIP the connection failed.
      The PIP number exists in the PIP content at the interface.
      If I use the Alert configuration in the runtime workbench for monitoring then I cannot dynamically pass the PIP number.
      Only way I think of triggering alert is in the message mapping via a Java UDF.
      But I am not sure how can I do this? How do I check in the UDF if RFC connection has failed? Is this the correct approach?
      How to acheive my requirement? Note that my email subject content is dynamic bacause if PIP number.
    Please help!
    Thanks
    Gopal
    Message was edited by:
            gopalkrishna baliga

    Hi Gopal,
    what version/sps of XI are u running?
    The easiest way to do what u want inside a UDF is to
    1. use JCo to try estabilish a connection to the remote SAP System
    2. if that fails, use JavaMail to send an email message
    Let your UDF work on the PIP number, accepting it as input, and (maybe) returning it as output if everything goes ok. Otherwise break the mapping execution as described by Michal in one of his last weblog (using Dynamic Configuration).
    Note that the above method doesn't guarantee that the message will be actually delivered, as some seconds could last between your check and the real RFC delivery operated by the Adapter Engine...
    I am evaluating a way to do the same with Alert Framework. I will let you know the result!
    Cheers,
    Alex

Maybe you are looking for