Report on number of conferences initiated using Conferencing PIN

Hi All,
Is there a way to query/report on how many Lync conferences in a given period were initiated using a Conferencing PIN (and not by a participant clicking the link in the meeting notice?)
We'd like to know how often the conferencing PIN feature is being used to start meetings.

I don't think Pin information is visible in the monitoring server reports. It should be stored in the database but, you need to make your own query to fetch the information. There's no other easier way around
http://thamaraw.com

Similar Messages

  • Is there standard report to get the WBS by using asset number

    Dear All,
    Please advice, is there any standard report to get the WBS by using asset number ?
    Thank you.
    Nies

    We can get WBS report by using costcenter - S_ALR_87011966

  • Conference call using Skype to go number

    I set up two Skype to go numbers to India. When it try to conference these numbers it says "Sorry we just had a Technical Problem". Can't we make conference call using Skype to go number?

    shalltoji wrote:
    Should I call it through the country code or plain?
    Hello,
    You must always prefix your dial string with the international country access code (+1 for USA, +44 for UK etc.).
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Cisco 7936 number of conference calls

    Hi,
    Is there limit for the number of conference calls? Can I have more than 12 conference calls?
    Thank you,

    The number of Conferencing resources is specifically limited to whether you are using Software or Hardware conference bridges.
    Take a look at the following thread, it also has a link to a document which shows the comparison between the number of sessions support in Software and Hardware:-
    http://forum.cisco.com/eforum/servlet/NetProf?page=netprof&forum=Unified%20Communications%20and%20Video&topic=IP%20Telephony&topicID=.ee6c829&fromOutline=&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.2cc25e6d
    Hope this helps
    Allan
    Pls rate helpful posts.

  • How to get page number from the PDF using Javascript

    Hi,
    We are having list of Single page PDF. The pdf are named in the order,
    ISBN_Author_01.PDF  (with real page number as i)
    ISBN_Author_02.PDF  (with real page number as ii)
    ISBN_Author_03.PDF  (with real page number as iii)
    ISBN_Author_04.PDF  (with real page number as 1)
    ISBN_Author_05.PDF  (with real page number as 2)
    ISBN_Author_06.PDF  (with real page number as 3)
    ISBN_Author_nn.PDF  (with real page number as 500)
    Here each pdf has a page number and in sequential order.
    The task is to check whether all the pdfs are in sequential order (i.e i, ii, iii, 1, 2, 3). If any page is missing, the script should throw an error report.
    To do this task, I am writing a Javascript to get the real page number from the PDF.
    Can anybody help me how to get the page number from the PDF using Javascript.
    Thanks,
    Gopal

    The "real" page number within a PDF is the count of the physical page starting at 0, zero.
    pageNum numPages
    The number printed on each page is the page label.
    setPageLabels  getPageLabel
    You will have to open each PDF and your script would need to know the page label for that file. I would expect you would need to build a 2 dimensional  array of the file names and the page label for the page within that array.

  • Need code for call a report from stored produre in oracle9i(using rwclient)

    dear all,
    i need a stored procedure to run the report 9i(.rdf) from pl/sql.But i have code in older version(rwcgi60).So i want stored procedure for rwclient.
    The below code not working in oracle9i version.its very urgent.Thanks in advance..
    create table report
    (id number not null primary key,
    filename varchar2(100) not null,
    report_connection_id number not null,
    destype varchar2(5) not null)
    create table report_connection
    (id number not null primary key,
    user_id varchar2(100) not null,
    pass varchar2(100) not null,
    database_server varchar2(50) not null,
    report_server varchar2(50) not null)
    alter table cm.report add foreign key (report_connection_id) references cm.report_connection (id)
    insert into report_connection values (1, 'scott', 'tiger', 'orcl', 'Rep60_Dev');
    insert into report values (1, 'test.rdf', 1, 'PDF');
    commit;
    procedure pr_example (p_id report.id%type) is
    cursor cur_data is
    select r.filename,
    c.user_id,
    c.pass,
    r.destype,
    c.database_server,
    c.report_server
    from report r,
    report_connection c
    where r.report_connection_id = c.id
    and r.id = p_id;
    v_blob blob;
    v_url varchar2(2000);
    v_pieces utl_http.html_pieces;
    v_buffer raw(2000);
    v_buffer_size integer := 2000;
    begin
    for v_rec in cur_data loop
    v_url := 'yourserver.domain.com/dev60cgi/rwcgi60.exe?report=' || v_rec.filename || '&desformat=' ||
    v_rec.destype || '&userid=' || v_rec.user_id || '/' || v_rec.pass || '@' || v_rec.database_server ||
    '&server=' ||v_rec.report_server || '&destype=cache';
    if v_rec.destype = 'PDF' then
    owa_util.mime_header('application/pdf', false);
    htp.p('content-disposition: filename='||v_rec.filename);
    owa_util.http_header_close;
    --you can add a bunch of elsif logic here for different destypes and setting the correct mime type.
    end if;
    --sets transfer timeout to be one hour
    utl_http.set_transfer_timeout(3600);
    --runs the report
    v_pieces := utl_http.request_pieces(v_url,64000);
    v_blob := empty_blob();
    dbms_lob.createtemporary(v_blob,true);
    for i in 1 .. v_pieces.count loop
    v_buffer := utl_raw.cast_to_raw(v_pieces(i));
    v_buffer_size := utl_raw.length(v_buffer);
    if v_buffer_size > 0 then
    dbms_lob.writeappend(v_blob, v_buffer_size, v_buffer);
    end if;
    end loop;
    wpg_docload.download_file(v_blob);
    end loop;
    end;
    Now run this url:
    http://yourserver.domain.com/pls/dad_name/pr_example?p_id=1
    regards
    mani

    JosAH wrote:
    A couple of years ago Sun supplied their javax.comm package (mysteriously versioned as version 2)
    but they stopped it for the PC Windows.
    There's an alternative: rxtx which offers an identical API as Sun did and their own native implementation for serial and parallel port handling; I have used both and the rxtx version is clearly superior to Sun's old version: http://www.rxtx.org
    This question popped up recently.
    tschodt wrote in [http://forums.sun.com/thread.jspa?messageID=10863769#10863769:}
    [Java Communications API|http://java.sun.com/products/javacomm/]
    Implementations of the API are currently available for Solaris SPARC, Solaris x86, and Linux x86.follow the Download link to find
    Sun no longer offer's the Windows platform binaries of javax.comm, however javax.comm 2.0.3 can be used for the Windows platform, by using it in conjunction with the Win32 implementation layer provided by the RxTx project. To use that, download javax.comm for the 'generic' platform (which provides the front-end javax.comm API only, without platform specific back-end implementations bundled). Then acquire the Windows binary implementation rxtx-2.0.7pre1 from http://www.rxtx.org.

  • Xml report output in excel format without using options tab in EBS

    How to get xml publisher report output in excel format without using options tab in EBS?
    I am getting XML Publisher report output in excel format by using options tab while submitting the concurrent request .
    But i want to get excel output automatically.
    Can anyone give idea to get XML publisher Report output in excel without selecting options tab.
    Thanks in advance
    Sandeep V

    Hey Sandeep,
    I am working on a similar format for a report and if possible can you please give me some guidelines. I have initially created reports using XML Publisher, but for those , the output preview format was PDF. So, if I select the preview format as EXCEL will it give me output in Excel and for this to happen, how do I define the rtf template. I believe the working will be same as for PDF, create a rdf report, get output in XML and apply the template to get the data in Excel or there is something different to this.
    Thanks,
    Sunil

  • Nokia N8-00 'maximum number of connections in use'

    Hi,
    I have creted another APN in the Destinations-Internet settings. Put this APN on priority 1. Then I se internet an it is ok. But when I open Nokia Maps or another App. Sometimes it tries to connect to the old APN then says 'maximum number of connections in use'. Asking me for confirmation to close one connection.
    So I move all APN's and Wireless connections out of the Destination Internet. Except for the new on that I want. Still the same message From time to time. How to stop thi message. Deleting an APN is not a solution I am looking for otherwise I would have done that.
    Any help is appreciated.

    So the on off method I posted earlier did not work. The first APN is still tring to be accessed by some apps after the phone is switched off and on again. The other things I tried..
    - Removed the APN restriction and renamed the first APN. When I start the APP it now gives me a warning and lets me choose the APN. I choose the second one so greate. Close the APP. Now when I rename the fisr APN to the original name. APPS try to access it again and I get that original error.
    The only thing I could do is configure the first APN name with the actual Access Point of the second APN. This worked All apps are accessing the first APN whaich was reconfigured to look like the new Second APN. 
    This is not a solution again it is a workaround. Does anyone-else have this problem. Or am I the only one who is configuring multiple APNs. Since my provider has multiple APNs.
    I would have thought that this phone supports Multiple PDP contexts, or Secondary PDP context. It was defined in the initial 3GPP specs way back in 2003ish. Nokia can you confirm???
    Cheers Peps!

  • THE REPORT SERVER INSTALLATION IS NOT INITIALIZED (rsReportServer NOT ACTIVATED)

    HI ,i had my report server on SQL SERVER 2005,and for
    reporting service i am using the sql server reporting services 2008R2,i created a report which i am supposed to display in Website ,i
    created the rdl using the BIDS 2008 and , its throwing me an error because my report server is in 2005 and my rdl is in 2008 and i was using it in VS2008 Report viewer control,i was told that i am supposed to create rdl in 05 in order to get
    it run ,but i dont want to create another one since it was pretty big and took lot of time to design it
    Is there any way i can use the same rdl with that report server ,one of my collegue told that i can do in one way (using  catalog of SQL server 2008 Reporting in sql server 2005 report server database i did'nt get that much as iam not aware of that
    catalog stuff .and i tried to configure the report server once again and i am getting this new error
     THE REPORT SERVER INSTALLATION IS NOT INITIALIZED (rsReportServer NOT ACTIVATED)
    in ssrs 2005 there initialize but in ssrs2008 r2 i couldnt found that option so can any one please help me out with this .
    thnaks in advance

    GO TO report server configuration and go to Encryption keys and delete encryption keys and try to run the URL again, it works.
    I had SSRS2008 two installations, the second one gave this problem, this solution helped resolve it. Thank you.

  • My new Skype Number is already in use!

    I have purchased a skype number, but that number is already in use.  HELP!!
    This post was transferred from its previous location to create its own new topic here; its subject and/or title has been edited to differentiate the post from other inquiries and to reflect the post's content.

    Hi, Skypephone1, and welcome to the Community,
    Please contact Skype customer service to report this problem and to request that the number be tested.  You can then request a refund  for the number, and start a new Skype Number  subscription.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • How to read line number text from PDF using plugin?

    Hi, I would like to know how to read line number text from PDF using plugin?
    Thanks in advance.

    Ok, some background reading of the PDF Reference will help you understand why this is so difficult. PDF files are not organised into lines. It is best to think of each word or character on the page as being a graphic with its own position. The human eye sees lines where a series of graphics (words) are roughly in the same horizontal region.
    In the general case it is difficult or even impossible to answer this. You may have columns with different spacing (but the PDF stores no information on what is a column). You may have subscripts and superscripts. You may have text in graphics coinciding with other text. Commonly, there may be titles, headings or page numbers which are just ordinary text and might count as lines.
    That said, what you need to do is extract the text on the page and its positions. The WordFinder APIs are the way to do that. Now, sort all the words out, using the Y coordinates and size to try and guess what makes a "line". Now you are in a position to find the text (divided into words, not strings) and report the "line number" you have estimated.

  • What port number for Desktop Sharing using in Lync Server 2013 and Lync Online

    Dear All,
          My environment using Lync Server 2013 and Lync online on Office 365. I don't want my user using Desktop Sharing feature. then I need to know what port number for Desktop Sharing using in Lync Server 2013 and Lync Online.
    I will deny this port on personal firewall each client.
          Thank you for your advise.

    Hi,
    I'm not sure you'd be able to do this with ports without impacting other application sharing features such as Q&A, Whiteboard, Poll etc - I'm pretty sure they all come under the same umbrella of ClientAppSharing.
    Ordinarily you would create or modify your conferencing policy to restrict sharing to single programs only using a cmdlet similar to below;
    Set-CsConferencingPolicy -Identity "Global" -EnableAppDesktopSharing SingleApplication
    This would disable desktop sharing but enable users to continue sharing other single programs. If you want to remove that functionality too, then replace the 'SingleApplication' parameter with 'None'. Then users won't be able to share any programs either.
    This is the correct way to do it as the icons will be greyed out for the users. Doing it your way, they would still be able to click them, and it would throw an error - this will lead to a lot more support calls and people assuming a service is broken.
    I hope that helps some.
    Kind regards
    Ben

  • I cannot open PDFs.  I kep getting an error report that it had trouble initializing.  I have reinsta

    I cannot open PDFs.  Error report that it has trouble initializing.  I have reinstalled the product several times.  I am using windows 7. 

    Reader version?  Local or online PDF files?  If online, in what browser?

  • Next Number Generation Activity to use Base36 without I, O, Q

    Hi all,
    Need to have a Next Number Activity Hook to generate a sequence number similar to a base 36 with the exception of letters that could be confused with numbers: I, O, Q.
    I have an activity hook created that generates the number I want to use without any problems at all.
    Example:
    16 = 000G
    17 = 000H
    18 = 000J <- Skips the letter I
    19 = 000K
    20 = 000L
    But when putting the this into the inData object to be returned it is ignored.
    inData.put("CURRENT_SEQUENCE", finalValue);
    Any thoughts as a way I can get this to work?
    Thanks,
    Mike

    Ok I finally had some time to work on this.
    Within Next Number Maintenance if the Number Base is set to 34 it does exclude I and O (good), but stops at W (bad). No X, Y, or Z (bad). Plus it still includes Q (bad).
    i.e.
    TEST-000U
    TEST-000V
    TEST-000W
    TEST-0010
    TEST-0011
    If the Number Base is set to 33, I, O, and Q are included (bad) and it also stops at W (bad).
    Neither are acceptable solutions. So...
    I have figured out an ugly workaround:
    In Next Number Maintenance set Number Base to 36.
    Then insert the invalid SFC numbers into the ID_USED table.
    i.e.
    INSERT INTO ID_USED (HANDLE, SITE, ID, ID_TYPE, CREATE_DATE, ARCHIVED) VALUES ('IDUsedBO:1000,TEST-000I,S', '1000', 'TEST-000I', 'S', TO_DATE('05/04/2010','MM/DD/YYYY'), 'false');
    INSERT INTO ID_USED (HANDLE, SITE, ID, ID_TYPE, CREATE_DATE, ARCHIVED) VALUES ('IDUsedBO:1000,TEST-000O,S', '1000', 'TEST-000O', 'S', TO_DATE('05/04/2010','MM/DD/YYYY'), 'false');
    INSERT INTO ID_USED (HANDLE, SITE, ID, ID_TYPE, CREATE_DATE, ARCHIVED) VALUES ('IDUsedBO:1000,TEST-000Q,S', '1000', 'TEST-000Q', 'S', TO_DATE('05/04/2010','MM/DD/YYYY'), 'false');
    INSERT INTO ID_USED (HANDLE, SITE, ID, ID_TYPE, CREATE_DATE, ARCHIVED) VALUES ('IDUsedBO:1000,TEST-001I,S', '1000', 'TEST-001I', 'S', TO_DATE('05/04/2010','MM/DD/YYYY'), 'false');
    INSERT INTO ID_USED (HANDLE, SITE, ID, ID_TYPE, CREATE_DATE, ARCHIVED) VALUES ('IDUsedBO:1000,TEST-001O,S', '1000', 'TEST-001O', 'S', TO_DATE('05/04/2010','MM/DD/YYYY'), 'false');
    INSERT INTO ID_USED (HANDLE, SITE, ID, ID_TYPE, CREATE_DATE, ARCHIVED) VALUES ('IDUsedBO:1000,TEST-001Q,S', '1000', 'TEST-001Q', 'S', TO_DATE('05/04/2010','MM/DD/YYYY'), 'false');
    Unfortunately this will need to be done for all of the potentially bad SFC's. I will defiantly need to write a small app for that.
    Then when the Next Number is called for the SFC, the system would notice that that number is already used and jump to the next available number.
    Also by using the ID_USED table should anyone want reports there would not be any bogus SFC data in the system.
    This work exactly as I want on our test server.
    So before I truly implement this on our Production server does anyone see any potential downfalls to this workaround? Questions and/or comments welcome.
    Thanks,
    Mike

  • How can I initiate multiparty conference call using SX10 ?

    How can I initiate multiparty conference call using SX10 ?

    Same issue also!
    Thinking on Cisco IP Phones, It looks like Softphone template wasn't set up correctly, but SX10 don't have softphone template configuration.
    I also tried to put two SX10 in a call and call one SX10 from a third device (8961), no success. 
    SX10 admin guide, page 112, say it supports AdHoc conferencing with CUCM/Conductor/TPServer, but I always managed to make rendezvous conferences
    http://www.cisco.com/c/dam/en/us/td/docs/telepresence/endpoint/sx-series/tc7/administration-guide/sx10-administrator-guide-tc72.pdf
    Opened a PDI but they told me that they can't help with user-facing issues. As they were bought for lab we don't have contract to open a TAC. Someone have any clue?
    CUCM 9.1(2)
    SX10 TC 7.1.4
    Conductor XC2.3 (I don't think that this make any difference)
    Virtual TelePresence Server 3.1(1.96) (I don't think that this make any difference)

Maybe you are looking for

  • How can I get HyperTrend to display the numeric value output of a CHOOSE statement?

    I have non-linear values I need to display on a HyperTrend graph.  I'm currently converting the input raw signal to a Units (Engineering) value and then looking up the actual value (from a calibration chart) using a CHOOSE statement in order to displ

  • I can not edit video from my new DVD Camcorder...

    I recently purchased a Canon DC210 in hopes of learning to edit the movies I make with it before taking my honeymoon to Alaska in May, but I am not able to import the video from the disks.  Is iDVD capable of doing what I am wanting to do i.e.. impor

  • Video format that supports iTunes- appleTV streaming AND DLNA

    I have both DLNA support and an Apple TV. I've been converting my dvds to mp4 so I can stream via iTunes to my TV,,Unfortunately mp4 is not compatible with DLNA (mpeg2). Is there a video/audio format, or a software solution, that will work? Of course

  • Clearing only a few fields in the selection-screen

    Hi Folks, I am having the following fields in the selection screen. werks. matnr quantity filename like rlgrap-file. First time the user enters some values and executes it and comes back to the selection-screen.At this point I want <b>only matnr and

  • Activation Studio MX 2004

    Wie aktiviere ich meine gekaufte Version von Macromedia Studio MX 2004. Die Aktivierungsserver funktionieren nicht mehr !