Query for 'User Activity' Webi Line Chart using BO4.0 Auditor

Need to create a webi line chart to measure  ‘user activity’ per month, year or day using BO4.0 Auditor on Oracle.    
This question raises two sub-questions:
What actions constitute user activity?  Is it concurrent logins by users?   I am confused if that would really give a true picture of user activity as users can log in and do nothing on the BO system.  
If concurrent logins do in fact give a true picture of user activity then how do I go about creating a chart? What objects do I need to include in query?
Please provide feedback?
Thank u.

Hi Ramil,
Follow below steps to create a webi report for your requirement, launch Webi rich client and create a new webi report by selecting "BOEXI40-Audit-Oracle" (Audit universe)
1) Select below objects in 'Result Objects' pane
[Event Year], [Event MonthName],[Event DayofMonth], [Event Type], [User Name], [Total Event Count]
2) Define below conditions in "Query Filter" pane
[Event Type Id] In list 1015 AND [Event Year] In list "Select Year" (Prompt)
3) Run query
4) At report level create a new variable of type measure with the name "User Activity" with below formula
=Count([Total Event Count]In([User Name];[Event MonthName];[Event DayOfMonth]) )
(This formula will track  logout event of a each user in a day as well as in a month, it will take/count only one log out event of the user in a day as you desire)
5) Create a table block as well as graphs as you desire
i) For day wise user activity create a table/graph using: [Event DayofMonth], [User Activity]
ii) For month wise user activity create a table/graph using: [Event MonthName], [User Activity]
Let me know if you have any questions
~Manoj

Similar Messages

  • Is it possible to hide part of the line in webI line chart

    I had webI line chart which is showing for 2 months data, and is it possible to hide the line for only first 10 days in the line chart and continue the line after 11 th day till the end?

    @rajesh:  I didn't understand why should we use Relativedate() function?can you please explain little bit more. Becuase the report has customer exit written such a way that if I run the report today it will show up previous 60 days
    For example:
    today is 04/06/2011
    so in the report date column has values and shows up like
    02/06/2011
    02/07/2011
    02/08/2011
    04/05/2011.
    So now I should hide/avoid/shouldn't show First 10 days. In example above 02/06/2011, 02/07/2011,02/08/2011.....like wise 10 days so till 02/16/2011 shouldn't be shown in the report. The beginning of the report should start from 02/17/2011 till 04/05/2011..
    Edited by: saathiyaa on Apr 6, 2011 9:31 PM

  • Webi Line Chart to Start from Axis Origin

    Hi,
    Need a quick help in BI4.0 webi line chart formatting.
    I have datetime on x-axis and cash flow on Y-axis.
    Say my cash flow starts at 9am on a day with $100 , my line chart starts the plot from 9am i.e. (9am,$100)
    instead I want the line plot to always start from (0,0)
    This is probably a chart option, but i dont find it.

    Hi Thangaraj,
    I have a similar requirement for a line chart to start from 0,0. while its min value is greater than 0.
    We are on BO 4.1 SP4  and there is no direct chart option for this.
    I would like to know whether you were able to achieve this in web intelligence.
    I really appreciate your reply.
    Thanks,
    Sri

  • Where in BAT for "Users Associated with Line" field......

    Hi All,
    I am trying to find where I can export all user lines via BAT to see if they have an assignment for “Users Associated with Line”.
    Basically, I have administered approx 1000 phones (some UDP and some not) however I was unaware that I needed to administer this field for CUPC etc….
    I have looked at other posts that explain to update line appearance under the “Users” in BAT however this does no contain the field that I am looking for.
    In essence, I need to export all user lines, wash the data for who is not administered for this, then BAT in a change to associate users with line.
    Any help much appreciated!

    Hi,
    I use phones first and than the users option to upload using BAT.
    In th phone's tab, edit the the Maximum number of phone lines according to your requirement and click on the Create file format and select Directory Number in the Line field as shown below.
    And create your phones with MAC, Description,Phone lines and upload it, make sure it gets uploaded successfully.
    Now come to Users tab in the Bat.xlt file, here click on the Number of Controlled Devices as 1 (we are basically making phone as the controlled device to the users, phone already has lines as mentioned in the above step). And fill rest of the other details and upload it.
    Note: You can mention the Primary extension and IPCC Extension as part of this operation only.
    Hope it helps.
    Anand
    Please rate helpful posts by clicking on the stars below the right answers !!

  • Query for user group

    Dear Team,
    When I am creating  Query for user group via T-code  SQ01.
    Query     ZDEMO1    then Create
    This messege is comming .
    System setting does not allow changes to be made to
    object AQQU /ISDFPS/OM  ZDEMO1
    Why this messege is comming .
    Thanks
    manu

    Dear Manu,
    Please check in SE06 >> change system options >> if the system and the relevant object is in modifiable status.
    Cheers,
    Jazz

  • Creating a Line Chart using a user enter target amount.

    Hi all,
    I'm trying to create a chart that will use Total Sales and Annual Target(Goal).
    I get the Total sales to work just fine. It's just getting the Annual Target(Goal), which is a parameter, to come into the chart. Right now they are doing this in Excel and the Target line goes from 0 to 8,000,000.
    So how do i get that to work in my Crystal Report?
    So when the report is working correctly i should have a Line Chart with two Lines. Line 1 "The Target", Line 2 "Total Sales".
    Thanks

    Hi
    Create a formula field and store the parameter there.
    Now put this formula field in "On change of" in the Chart expert.
    e.g. I have a parmeter on country and I have a chart which shows the last year sales year wise for the countries.
    I create a formula field and put the below formula:
    stringvar x = {?countryparameter};
    Now i put this formula field in On change of so when i run the report i select the required country.
    Hope this helps!!
    Regards
    Sourashree

  • Function returning SQL query for mutiple series in a chart

    Hi,
    I would like to know if there is a way to specify a single PL/SQL function returning the queries for multiple series in a 2D Line Flash Chart. I have multiple series in my chart that has different values in the where clause. I can write a PL/SQL function that can return all these queries in one shot. Is there anyway that I can specify this function as returning the queries for all the series in the chart?
    As an example, assume that I am using the following three queries for the series in my chart:
    select deptno, count(*) from emp where deptno = 10 group by deptno
    select deptno, count(*) from emp where deptno = 20 group by deptno
    select deptno, count(*) from emp where deptno = 30 group by deptno
    I can't write a PL/SQL function that returns a query in the multiple series syntax (SELECT link, label, series_1_value [, series_2_value [, ...]]FROM ...) as I am using an aggregate function and my where clause is different for each series.
    Thanks,
    Rupesh

    Hi Roel,
    Thanks for your reply. I am already using an analytical function (RATIO_TO_REPORT(COUNT(*)) OVER () ) in my actual report. My problem is that the query for one series differs from the other only in one where clause. I will be able to dynamically able to generate all the queries for all the series in one pl/sql function. But the chart definition screen does not allow us to define a single function that returns queries for the all the series - possibly seperated by some seperator like S1: select.... S2:select and so on.
    Regards,
    Rupesh

  • Data web bean (chart) using a dynamic view object

    Please I want a quick help. I read all forums concerning this subject but I still couldn't do it.
    - I create a view object which takes a proameter using the ? style parameter.
    - I passed the parameter from an html page and execute the query
    of the view as follows:
    <%
    String deptno = request.getParameter("deptno");
    if(deptno != null) {
    oracle.jbo.html.jsp.JSPApplicationRegistry.registerApplicationFromPropertyFile(session , "MyProject21_package3_Package3Module");
    oracle.jbo.ViewObject v = oracle.jbo.html.jsp.JSPApplicationRegistry.getInstance()
    .getAppModuleInstance("MyProject21_package3_Package3Module",request,session)
    .findViewObject("View1");
    v.setWhereClauseParam(0,deptno);
    v.executeQuery();
    %>
    - And then I used the data web bean chart as follows:
    <jsp:useBean class="oracle.jbo.html.databeans.ChartRenderer" id="ch" scope="request" >
    <%
    ch.setReleaseApplicationResources(false);
    ch.initialize(application,session, request,response,out,"MyProject21_package3_Package3Module.View1");
    ch.setCommonScriptName("/webapp/jsp/chart_common.jsp");
    ch.getChart().setGraphType(ch.PIE);
    ch.setSeriesLabelColumnName("DeptNo");
    ch.setDisplayAttributes("CountEmplNo");
    ch.getChart().setPieFeelerTextDisplay(0);
    ch.getChart().setPieTilt(10);
    ch.getChart().setPieRotate(0);
    ch.getChart().setLegendDisplay(true);
    ch.getChart().setLegendMarkerPosition(0);
    ch.getChart().setTitleString("Title");
    ch.getChart().setSubtitleString("Subtitle");
    ch.getChart().setFootnoteString("Footnote");
    ch.setImageWidth(400);
    ch.setImageHeight(400);
    ch.render();
    %>
    - I tried to use the View1 as a view name, and the v as a view name
    but both of them get the same result
    SQL Statement error and the sql statement is displayed with the ? in it which means that he didn't replace it by the parameter.
    Please I need quick help.
    Thanks.
    </jsp:useBean>
    Remark : please send me the reply at "[email protected]"

    Hi Rishab,
    I'm running into the exact same problem, in the same situation. Did you solve this problem and can you tell me how?
    Thanks in advance,
    Paskal

  • Variable Selection For User in Web Interface for BPS

    Hi All,
    I've created a manual Input sheet in BPS0 to upload target sales. User need to select the month, plant and then enter the target amount for each category. Its working fine.
    Now I need to create web interface for user to upload the data every month. Using BPS_WB I've created the interface (with help of Wizard). I'm getting the input sheet. But I'm not able to get screen where user can select the parameters?
    How to get this? It should work like web report, where user select the report variables then execute. Only difference here is user will have to enter the data for selected variable.
    Thanks in advance.
    Regards: Gaurave

    Hi....add the variables to a folder along with the layout. Then create the web interface.

  • Can't seem to draw a chart (line chart) using dates rather than numbers

    I'm trying to draw a Line Chart but rather using numbers i want to use dates for example: Switzerland 23/06/2008 - 23/08/2008. Can't seem to get it to work? it seems to all go wrong when I change the cell format to 'date'
    Can anyone help?
    Thanks
    PS. I can do it easily in Excel

    Hello
    From my point of view, it's not surprising.
    In XL, a date is a number to which a date format is applied. So, it may be charted.
    Same thing with the good old AppleWorks.
    With Numbers, a date is NOT a number, it IS a specific class of data.
    The consequence is that it can't be charted directly.
    Happily, we may easily convert a date into a number.
    In column B the formula is
    =A-$A$1
    which calculates the numeric difference between stored dates and the date stored in A1.
    So, we may chart the results.
    I know that it's far from perfect but we have to live with the choices made by Numbers's designers.
    Yvan KOENIG (from FRANCE vendredi 18 avril 2008 18:44:14)

  • Querying for the members of a group using the PRC

    I've been combing through the PRC API for a way to query for the members of a group (not the ACL, but the member users and groups).
    I can't find anything that seems to do this for Plumtree 5.0x using the PRC. Am I missing something or is this just not implemented? Seems like a major oversight to me. If any Plumtreevians are listening, can I add a feature request for those methods in your next release of the WS Server?
    Thanks!
    Chris Bucchere | bdg | [email protected] | http://www.bdg-online.com
    Like blogs? Check out http://bdg-plumtree.blogspot.com

    If you go into the Calendar section and select the Edit option for that calendar and then change the permissions for that calendar people should be able to subscribe to it.

  • Transforming XML data into SVG line charts using XSLT

    Hi
    I am trying to transform revenue data from an XML file into an SVG line chart. The problem is that I am quite new to XPath and XSLT and whereas I can draw the grid for my chart I struggle drawing the lines using the data from the XML doc.
    The XML look something like the one below, and I would like to have one chart for each product and in each chart having the time on the x-axis and chart the revenue by regions.
    Any help on this is much appreciated.
    Thanks
    Peter
    <?xml version="1.0"?>
    <revenue>
    <caption>
    <heading>My title</heading>
    </caption>
    <date name="01/01/2003">
    <region name="Asia">
    <product_a>30</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    </date>
    <date name="02/01/2003">
    <region name="Asia">
    <product_a>32</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>57</product_a>
    <product_b>31</product_b>
    <product_c>457</product_c>
    </region>
    </date>
    <date name="03/01/2003">
    <region name="Asia">
    <product_a>38</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>31</product_a>
    <product_b>9</product_b>
    <product_c>357</product_c>
    </region>
    </date>
    <date name="04/01/2003">
    <region name="Asia">
    <product_a>33</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>43</product_a>
    <product_b>16</product_b>
    <product_c>430</product_c>
    </region>
    </date>
    <date name="05/01/2003">
    <region name="Asia">
    <product_a>36</product_a>
    <product_b>12</product_b>
    <product_c>301</product_c>
    </region>
    <region name="America">
    <product_a>54</product_a>
    <product_b>1</product_b>
    <product_c>561</product_c>
    </region>
    </date>
    </revenue>

    You could try Jeni's XSLT utilities for SVG :
    http://www.jenitennison.com/xslt/utilities/svg-utils.html
    Specifically, the sample code provided, when a couple of SVG charts are being generated from XML data :
    http://www.jenitennison.com/xslt/utilities/svg-example.html
    Hope that helps.

  • Signal name for user activity, whether random button pressed or any other?

    Hey,
    what's the signal name for a random key-press-event or mouse button clicked or even mouse moved. Any user activity would to just fine. I'm trying to use this in conjunction with the waitfor command.

    Batch files have no ability to detect keyboard or mouse events other than the "pause" command.

  • JDEV 10G: how to display the value of the line chart using jChart in JSP

    I have draw the line chart in JSP using the JChart and now I wan to display the value label in the line there..
    but the value wasn't show..
    anyone can help me..
    thx..

    Hi,
    what I do understand, you want to display the value of each point in your Line Graph.
    I guess you will be having BIGraph.xml file. In this file check the "Show Data Tips When Mouse is over bars" checkbox.
    Lets try with this.
    --Abhijit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Query for users without a primary device assigned (through automatic affinity or manually assigned)

    I'm looking for either a way to query or a view of a collection that will show me a list of users who do not have a primary device affinity established.  Vise versa might work as well- query for devices that don't have primary users assigned. 
    Any ideas?
    Thank you,
    DLovitt

    Using SCCM's PowerShell cmdlets, you can run something like this:
    $Devices = Get-CMDevice
    $FinalOutput = @()
    $Devices | % {
    $OutputObject = New-Object PSObject -Property @{
    Device = $_.Name
    LastUser = $_.UserName
    LastClientCheckTime = $_.LastClientCheckTime
    PrimaryUser = (Get-CMUserDeviceAffinity -DeviceName $_.Name).UniqueUserName
    $FinalOutput += $OutputObject
    $FinalOutput | export-csv $env:USERPROFILE\Desktop\ConfigMgrAffinityReport.csv -NoTypeInformation
    #End
    Which creates an output like the below.  
    Once you have these items joined, its easy to filter out those without a Primary User.
    e.g.
    $FinalOutput | ? {$_.PrimaryUser -ne $null}
    NOTE: This may be necessary: http://blogs.technet.com/b/askperf/archive/2008/09/16/memory-and-handle-quotas-in-the-wmi-provider-service.aspx
    Mike Crowley | MVP
    My Blog --
    Planet Technologies

Maybe you are looking for

  • AIR 3.5, Android 4.2.1, preventDefault not working

    Hi I'm testing some stuff with the new AIR 3.5 SDK onmy Galaxy SIII LTE which is running Android 4.2.1 (Jelly Bean). I've been trying to stop my applications from closing when you press the Back button and do something when you press the Menu button.

  • How do I run a script on a folder which is only set to run on an individual file?

    I want to use the layer to file script on an entire folder of about 40 files. I tried creating an action with "Insert menu item" but when I run the batch file it crashes illustrator. I am thinking I should combine the savedocsasPDF example script wit

  • Delevery(Sales invoice) against Production Order

    Dear  All In COOIS report can we check the Sales  according to Production order. Within a month  can we check the booked sales of that particular order. (Not 1 by 1) It should be commulative. Rgds Pankaj Agarwal

  • FAQ: ZEN 2/4/8...GB Undocumented and little-known featu

    The documentation for the ZEN is basic, and there are several features which are hard to ascertain before you buy, and a few that many owners still won t have discovered. Though important to those affected, I m not concerned here with white-screens a

  • EJB3.0: Embedded object and path in UPDATE statement

    @Entity U   @Embedded Q q;   @Id id; @Embeddable Q    long a;    long b;How to update a or b in an update query? "Update U AS u SET u.q.a = u.q.a + :x WHERE u.id = :key" since path don't seem to be acceptable. I didn't find any helping information in