Issue running a User Activity Report for Lync

When trying to run a User Activity Report, I am receiving the below error
An error occurred during client rendering.
An error has occurred during report processing. (rsProcessingAborted)
Query execution failed for dataset 'CallList'. (rsErrorExecutingCommand)
@_Endtime is not a parameter for procedure CdrP2PSessionList.  
Any ideas on this error?

If this is happening after applying CU6 then follow
FIX: Monitoring Server Reports experiences poor performance in Lync Server 2010
http://support.microsoft.com/kb/2703324
if it gives any error when trying to update the backend database (in enterprise pool) then provide the -databasepaths parametr as explained at the end in this article
http://technet.microsoft.com/en-us/library/gg399044.aspx
DatabasePaths
Optional
String
Specifies the drives and folders where data and log files can be stored; for example: -DatabasePaths "D:\Logs","E:\Data". 
Gautam.

Similar Messages

  • Activity Report for Collaboration Rooms

    Hi,
    Is there some kind of Activity Report only for Collaboration Rooms ? Like we have Portal Activity Report for entire portal.
    Please give me your suggestion. Helpful answer are appriciated.
    Regards
    Prakash T

    Hi Prakash,
    You can run the room usage analysis to check how often particular rooms have been used in a specific period. Please check out the following page on help.sap.com:
    http://help.sap.com/saphelp_nw70/helpdata/EN/44/512abdba4b1193e10000000a155369/frameset.htm
    You might also have a look at the Room Inventory List which is linked on the page mentioned above.
    kind regards,
    Ursula

  • Get User Activity Report programmatically

    Hello,
    is there a documented way to get user activity reports from Azure AD? From the management portal, I can see that it sends a simple POST request to https://manage.windowsazure.com/ActiveDirectory/Reporting/GetAllUserSignInsReportContent
    but I don't see this documented anywhere.

    Hi, 
    Thank You for your message, this is feedback that we hear loud and clear for sure! keep an eye out for future update around this as we are discussing options around this at the moment and so you may see updates in the near future. 
    Thanks, 
    James.

  • Create an Activity Report for Current Week

    I would like to create a activity report for the current week. The trick is that if the weekday is Wednesday or earlier (Sunday being the first day of the week), the report shows last week's activities; but if the weekday is Thursday or later (Saturday being the last day of the week), the report shows the current weeks activities.
    I have a filter that works in Access but does not seem to work in Siebel. It does just what I explained above:
    Between CDate(Int((IIf(Weekday(Now())<=4,Now()-(6+Weekday(Now())),Now()-(Weekday(Now())-1))))) And CDate(Int((IIf(Weekday(Now())<=4,Now()-Weekday(Now()),Now()+(7-Weekday(Now()))))))
    Thank you,
    David
    Edited by: DavidE on Oct 7, 2008 4:17 PM

    David,
    try this:
    case DAYOFWEEK(CAST(Activity."Planned Start Time" AS date))when 1 then timestampadd(sql_tsi_day,1,CAST(Activity."Planned Start Time" AS date)) when 3 then timestampadd(sql_tsi_day,-1,CAST(Activity."Planned Start Time" AS date)) when 4 then timestampadd(sql_tsi_day,-2,CAST(Activity."Planned Start Time" AS date)) when 5 then timestampadd(sql_tsi_day,-3,CAST(Activity."Planned Start Time" AS date)) when 6 then timestampadd(sql_tsi_day,-4,CAST(Activity."Planned Start Time" AS date)) when 7 then timestampadd(sql_tsi_day,-5,CAST(Activity."Planned Start Time" AS date)) else CAST(Activity."Planned Start Time" AS date) end
    This gave me the sunday of the week. You should be able to modify this format for your purposes.
    cheers
    Alex

  • Sub:find out the user exit report for any tc

    Hi,
    i want to find out the user exit report for any tc
    Thanks,
    jayaraj

    Hi,
    Pls go through it the following coding. It will helps u.
    *& Report  YMS_USEREXITTEST                                            *
    REPORT  YMS_USEREXITTEST no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
    select single * from tadir where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir where pname = tstc-pgmna.
    select single * from enlfdir where funcname = tfdir-funcname.
    select single * from tadir where pgmid = 'R3TR' and object = 'FUGR' and obj_name eq enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    select * from tadir into table jtab where pgmid = 'R3TR' and object = 'SMOD' and devclass = v_devclass.
    select single * from tstct where sprsl eq sy-langu and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(95) sy-uline.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Exit Name',
    21 sy-vline ,
    22 'Description',
    95 sy-vline.
    write:/(95) sy-uline.
    loop at jtab.
    select single * from modsapt where sprsl = sy-langu and name = jtab-obj_name.
    format color col_normal intensified off.
    write:/1 sy-vline,
    2 jtab-obj_name hotspot on,
    21 sy-vline ,
    22 modsapt-modtext,
    95 sy-vline.
    endloop.
    write:/(95) sy-uline.
    describe table jtab.
    skip.
    format color col_total intensified on.
    write:/ 'No of Exits:' , sy-tfill.
    else.
    format color col_negative intensified on.
    write:/(95) 'No User Exit exists'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(95) 'Transaction Code Does Not Exist'.
    endif.
    at line-selection.
    get cursor field field1.
    check field1(4) eq 'JTAB'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    -End of Program-
    Thanks,
    Shankar

  • How run the run the BI Publisher report for current/active/selected record

    Hi,
    I have one requirement to generate a BI Publisher report in Siebel, which will run on SR's List view. Report should fetch the active SR and its audit trial entities. I know this was achieved easily using Actuate (simply setting "current Recrod only" to true), but I need how to achieve this in BI publisher.
    This report we are creating is in Siebel-BI Publisher integrated environment, not connecting to database. Can body give share your valuble inputs.
    Thanks,
    Ravi

    In my experience with Siebel 8.1.1 and BI Publisher 10.1.3.4.0 when you generate a report from a Siebel View the report will show all data visible on the view. If you wish to have only a few particular records in the report you must query for them first in Siebel then generate the report again. There is useful article describing how to generate the report for the current record but it does require some config on the applet.
    [http://siebel-essentials.blogspot.com/2009/05/siebel-bi-publisher-integration.html]
    -Fred

  • Run time error in report for a particular month : "  TIME_OUT"

    hi frends, we have developed a report for PM module in SAP. it is a monthy report. and user have to enter the month for which he wants to see the report. we are facing runtime error for a particular oct. and nov month of 2009 only , all other months are working fine. The error is :
    The program "ZPMR_EQUP_PERFORMANCE_REPORT" has exceeded the maximum permitted
      runtime without
    interruption and has therefore been terminated.
    what could be the reason.

    Hi  Achalmehra,
    By seeing the run time error "TIME_OUT", I suspect this is due to Performance issue.
    There is a chance that they had huge data dump into PM server from other servers and there is also chance that
    They have many records available for these 2 months.
    IN any case, please chk with Run time analysis (SE30) by executing your program...
    If it displays the graph more than 30 % for Database then it is an issue with the Performance.
    Also chk with SQL trace.....
    Second case :
    Check you had not used Nested Loops,  Select queries in Loop.
    Make sure you use Binary search for  Read Statements....
    Third : Chk with the runtime error at which place of the code it is throwing Time_out error at Source code extract.
    To help you further, please paste your code here and also paste the Run time error that you receive with the select queries.
    Regards,
    Kittu

  • Activity reports for actual activity

    I like the new reports feature of the VLM, but would it not be cool if it was able to trend the actual programming activity of the users, and not just how long the license was checked out? 
    Let's say that if there was no activity (defined for example as not even a mouse movement in any of the IDE's windows) for n minutes, then the system would unregister the license as in use (license-wise it could still be checked out, but not as in activity).
    Sure, we could use other tools for this, and some people might want to make it optional - but as long as the report feature is there already, would not this little change make it quite a bit more interesting?
    MTO

    Thanks for your feedback! I agree that this data would provide a potentially interesting report for admins. This would be a feature of the application software itself (like LabVIEW, CVI, etc).
    I will record this idea as a suggestion for those teams.
    - Michael

  • Portal Activity Reports for multiple groups

    Hi,
    Can the report display the count of users belonging to multiple groups or would it have to be created seperately for each group. I have tried to use wild cards and commas and nothing worked, the field does not accept more than one valid group name to be entered. Any ideas how to work around this without having to create a different report for different groups?
    Thanks

    Hi EAmin,
    You can only show information about users who belong to a specific group and not multiple groups. But if you want to show users in multiple groups, you can create a new group (say temp) and add the other groups to temp. Now, configure the report to display users in group temp.
    Rajiv

  • User administration reporting for BOE 4.1

    Hello,
    I'm interested in creating user administration reports within the BOE 4.1 CMC.
    The type of reports I'd like to create are:
    - list all users, and their status
    - list groups users belong to
    - list when users changed and who changed them
    Are these type of user administration reports available by default, or do they need to be created from the CMC schema?
    I have been working with a developer on the reports available through the 'audit' database, but it doesn't appear to capture this information.
    Appreciate the help.
    Paul

    All these are from CMS DB. Not in Audit DB. You can use SDK to build these reports.
    You can refer below link for how to extract the information using query builder.
    BusinessObjects Query builder queries - Part II

  • Activity reporting for document explorer

    Hi All,
    I am looking into various options of activity reporting inside document explorer iView. We have various folders and subfolders inside /document folder where a lot of users are accessing the documents (Read or edit) on reguloar basis. Is there any possibility of finding the usage of each folders inside /document folder i.e. how many users read/edited the documents/folders in fix time frames.
    Any inputs on this will be highly appreciated.
    Many Thanks,
    Vishal

    Hi,
    You can try and play with the example shown in this tutorial:
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7d28a67b-0c01-0010-8d9a-d7e6811377c0">https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7d28a67b-0c01-0010-8d9a-d7e6811377c0</a>
    It creates a report which displays documents statistics.
    Best Regards,
    Avishai Zamir

  • Hi, I have an issue with not receiving activation code for applications like whatsapp, icici bank imobile on iphone.. need help!

    Hi, I use iphone 4 version 4.3.3 (8J2). I have downloaded my ICICI bank's application 'iphone imobile'. It asks for an activation code which it instructs to send a text message 'imobile iphone' to 5676766. I have done that umpteen times but problem is that i don't receive any reply. I have faced a similar problem while receiving activation code for another application 'Whatsapp', but fortunately Whatsapp gives an option of receiving activation code through alternate mode so i got the activation code through mail. Unfortunately ICICI Bank gives the activation code ONLY through a text message.
    In this case there seems to be a problem with iPhone receiving activation code. Can anyone help me out here?
    Amber Paintal
    iphone 4 version 4.3.3 (8J2)

    Hi, I use iphone 4 version 4.3.3 (8J2). I have downloaded my ICICI bank's application 'iphone imobile'. It asks for an activation code which it instructs to send a text message 'imobile iphone' to 5676766. I have done that umpteen times but problem is that i don't receive any reply. I have faced a similar problem while receiving activation code for another application 'Whatsapp', but fortunately Whatsapp gives an option of receiving activation code through alternate mode so i got the activation code through mail. Unfortunately ICICI Bank gives the activation code ONLY through a text message.
    In this case there seems to be a problem with iPhone receiving activation code. Can anyone help me out here?
    Amber Paintal
    iphone 4 version 4.3.3 (8J2)

  • Activity report for end-user ?

    Hi,
    One of my customers wish to get information about the use of it´s application. He is not the adminsitrator of the workspace.
    As an administrator of the workspace you can run reports about activity for applications/users.
    I would like to build it as a part of the application of my customer.
    Can anyone point me in the right direction ?
    Any reaction will be appreciated.
    Leo

    Hello Leo,
    Maybe one of these views contain the data you need (to prevent you from re-inventing the wheel):
              APEX_WORKSPACE_ACTIVITY_LOG
                   APEX_WORKSPACE_LOG_SUMMARY
                   APEX_WORKSPACE_LOG_SUMMARY_USR
    Greetings,
    Roel
    http://roelhartman.blogspot.com/
    http://www.bloggingaboutoracle.org/
    http://www.logica.com/

  • Activity report for viewing user login

    Hi
    Is there a standart report which shows how loged in to SAP during the passing year ?
    Thanks
    Ziv

    hi,
    use STAD,STAT,ST03N transactions.

  • User login report for given period

    Hi All,
    We have one query relate to user monitoring. We want to get the detail log or report of users login date,time, logout date time and system ip or system name like for the given period.
    Our application environment as
    SAP application : R/3 4.7
    Database : oracle 9.2.0.8
    Thanx in advance
    Regards,
    Vishnu.

    Hi Vishnu,
    kindly consider to use the forum search before posting. similar questions like yours have been posted several times already. In oyur search results you may find for instance [this thread|Re: Last three user logon date and time;
    b.rgds,
    Bernhard

Maybe you are looking for

  • Price changes in Scheduling Agreement

    Hi, What is the best way to handle price changes in a Scheduling Agreement? From what I saw, the validity periods of the prices maintained in a scheduling Agreement is based on the GR date. Is there any way we can change this? The requirement is to m

  • Mini-display == VGA

    I was going to hop out and buy one of these new MacBook Pro's but unless I missed it, the Apple Store is not currently carrying any adapters for them (VGA, HDMI, or DVI). At work I use my MacBook exclusively with a 24" HP display with VGA. Any idea w

  • Videos sent via mms are not playing on iPhone 4s.

    My nephew has iphone 4s just like me.  when i send him mms videos he says they won't play. I send the same video to my husband's 4s and no problem.  I think my nephew's settings are the issue but I am not sure what to tell him.  He lives in another s

  • Is it possible to make a text box cycle/rotate through text, like a slide show does?

    Is it possible to make a text box cycle through 3 or 4 separate pieces/groups of text, like a slide show does with photos? So that when I open my site a text area says "Statement 1", then 10 seconds later it changes to "Statement 2", then 10 seconds

  • Mass upload of Object Services to material master - Create Document (URL)

    Hi there, Does anyone have any experience of uploading URL's to material masters via object services. Can we use LSMW? I have tried to record the transaction, however, this excludes the object services button Any feedback greatly appreciated Steve