Possible to combine group call and group video cal...

If I have a premium account is it possible to start a conference with a mix of dial in and video participants? The only cost would be for the one premium account, correct?

Hi, Chad_Guidry_TX, and welcome to the Community,
Good news!  The answer is, "Yes!"  Skype has done all the work for us; please see these FAQ articles, which include screen shots, for instruction on how to set this up:
https://support.skype.com/en/faq/FA10978/how-can-people-join-my-skype-group-call-from-a-mobile-or-la...
https://support.skype.com/en/faq/FA34/can-i-have-more-than-one-pstn-mobile-or-landline-phone-number-...
https://support.skype.com/en/faq/FA2831/making-a-group-call-windows-desktop
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!

Similar Messages

  • Problem in creating group above AND group left in one report!

    Hi all,
    I need a report that is a combination of group above and group
    left.
    Suppose I have 3 table (Emp, Sales, Product):
    Emp Table has 2 column
    - Emp_PK
    - Emp_Name
    Sales Table has 4 column
    -Sales_PK
    -Sales_Date
    -Emp_FK
    -Produck_FK
    -Quantity
    Product Table has 3 column
    -Product_PK
    -Product_Name
    -Product_Price
    I want to make Employee Sales Report For The Month that will
    look like this:
    Emp Number___: Emp_PK
    Emp Name_____: Emp_Name
    Sales Date______Product_Name____Quantity \(2 sales
    ________________Product_Name____Quantity /the date)
    Sales_Date______Product_Name____Quantity
    As you can see this consist of group above (The Employee) and
    group left (The Sales and Product).
    I create this by using 2 queries and link them (the Emp_PK from
    1st query and Emp_FK from 2nd query) on the report builder using
    data link.
    The first query is:
    Select Emp_PK, Emp_Name from Emp
    The second query is
    Select Emp_FK, Sales_Date, Product_Name, Quantity
    From Sales, Product
    Where Product_PK=PRODUCT_FK
    I then create the layout for second query and choose group left
    for Sales_Date using wizard and I create additional layout to
    for the employee.
    The problem is that when I run this report, it will print ALL
    the employee record first (including employee who has NOT sale
    anything) and then on the last page it will print the record of
    Last employee on the Emp table and ALL sales record (including
    those that is done by other employee).
    This report will run correctly if I choose an exact employee
    (For example by adding Where Emp_PK=1111 in the first query) to
    report all of the sales done by this person (employee with emp
    number of 1111). However I need the report to run and print
    ONLY those employee who has Sales Records!
    I thought that by linking the 2 queries in Data Model, it will
    have the same effect as linking using the WHERE clause in query.
    If suppose I create a query like this:
    SELECT Emp_PK, Emp_Name, Sales_Date, Product_Name, Quantity
    FROM Emp, Sales, Product
    WHERE Emp_PK=Emp_FK AND Product_PK=Product_FK
    The report will run OK but I can only choose EITHER group above
    or group left for this ONE query methods in report Wizard.
    Sorry if it is a long question but I hope you can see what I am
    trying to do.
    Thanks in advance for any tip.

    hello,
    of course you can create group left and group above blocks in a
    single report.
    you might want to use the INSERT REPORT BLOCK instead of the
    report wizard, as the report wizard only allows you to use one
    report layout per report, where the report block wizard (invoked
    by INSERT REPORT BLOCK) allows you to choose on a per-block
    basis.
    of course you can create the blocks completely from scarth by
    hand, if you want to.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Group calling and business account

    We are a small non-profit organization with one main facility and 5 remote facilities who want to be able to use Skype group video calling to connect all of our locations. I am unclear on what subscription I need. Do I need just one premium account at the main office and then use seperate personal accounts at the other remotes to connect in to the group call started by the main office, or would I have to get premium subscriptions for EVERY site? We plan on just purchasing a few flat panel TV's and connecting them to a WinXP or Win7 PC with the Logitech HD C920 cameras at each loaction. Does this sound like the way to go? Since we are non-profit, actually 501(c)(3) qualified, is there any discounts from Skype for these companies? Thanks!! 

    For the hosted aspects of O365, and plan/service/account related questions, I recommend the dedicated O365 community:
    http://community.office365.com/en-us/f/default.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Group left and group above

    I am trying to do a group left within or below a group above, like so.
    Name John Doe
    Incident Activity
    12345 Apply
    Accept
    Modify
    12346 Apply
    Accept
    Modify
    Name Bill Smith
    Incident Activity
    12347 Apply
    Accept
    Modify
    12348 Apply
    Accept
    Modify
    I can't figure out how to specify different types of grouping for different groups.
    Any suggestions?
    null

    Make a group above report for the first 2 groups. in the Data model extend the detail's repeating enclosing frame.
    Inside this frame draw an additional default layout (a button in the Layout Editor on the left toolbar) and inside this one insert your detail group.
    Or... you can create an above group without any break first, then separate a group in the Data Model and add a repeating frame around the detail columns. Specifi as source of this frame the name of the detail group from the Data Model.

  • Combining max, average and group by

    Hi!
    I have a simple table called Rates consisting of RateTime (datetime), Ask (decimal) and OrderSymbol (char)
    I'm trying to create a select statement that will give me one row for each unique value in OrderSymbol consisting of columns for "CurrentAsk", "AVG(Ask)", and "OrderSymbol".
    CurrentAsk has to be the latest one registered, so MAX(RateTime) for each OrderSymbol.
    Is this possible?
    TIA!
    Dennis

    Sure, using OVER() clause added in SQL Server 2005, e.g.
    ;with cte as (select RateTime, Ask,
    AVG(ask) OVER (partition by OrderSymbol) as AverageAsk,
    OrderSymbol, ROW_NUMBER() OVER (partition by OrderSymbol ORDER BY RateTime DESC) as RN
    FROM dbo.Rates)
    select Ask as CurrentAsk, AverageAsk, OrderSymbol
    FROM cte where Rn = 1
    In SQL 2012 and up you can use 
    LAST_VALUE function, but be careful http://technet.microsoft.com/en-us/library/hh231517.aspx
    E.g.
    SELECT DISTINCT LAST_VALUE(Ask) OVER (partition by OrderSymbol ORDER BY RateTime
    ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING) AS CurrentAsk,
    AVG(ask) OVER (partition by OrderSymbol) AS AverageAsk, OrderSymbol
    FROM Rates
    Although since we need to use DISTINCT in this query I don't know if it's going to perform better than ROW_NUMBER() version of it.
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • HT204380 Can I have a group call and chat together?

    How can I make a Facetime call to a group of persons?

    I don't believe you can do this with Facetime. It's a one person to one person call.

  • Advanced datagrid with grouped columns and grouped rows

    hello every body, plz need your experience help. 'cause Im so new using FLEX
    I have an XML (like an XML data type) something like this
    <Table>
      <Rows>
        <cAgencia>F0002</cAgencia>
        <cAgNombre>SanBorja</cAgNombre>
        <cTVentanilla>V0002</cTVentanilla>
        <dTVNombre>Plataforma</dTVNombre>
        <TcksEnEspera>20</TcksEnEspera>
        <VentsEnAtencion>50</VentsEnAtencion>
      </Rows>
      <Rows>
         <cAgencia>F0003</cAgencia>
         <cAgNombre>Miraflores</cAgNombre>
         <cTVentanilla>V0002</cTVentanilla>
         <dTVNombre>Plataforma</dTVNombre>
         <TcksEnEspera>30</TcksEnEspera>
         <VentsEnAtencion>40</VentsEnAtencion>
       </Rows>
      <Rows>
         <cAgencia>F0002</cAgencia>
         <cAgNombre>SanBorja</cAgNombre>
         <cTVentanilla>V0003</cTVentanilla>
         <dTVNombre>Caja</dTVNombre>
         <TcksEnEspera>55</TcksEnEspera>
         <VentsEnAtencion>25</VentsEnAtencion>
       </Rows>
       ...... (continue)
    </Table>
    so, I need to make a table (I guess with advancedDataGrid) something like this
    as you can see,   I have to group them by columns and Rows.  I have found a "mx:groupedColumns" that maybe could help me , but I couldn't find something like "mx:groupedRows".
    The grid may be dynamic,   for example if I have another XML node like:
      <Rows>
         <cAgencia>F0004</cAgencia>
         <cAgNombre>SanMiguel</cAgNombre>
         <cTVentanilla>V0002</cTVentanilla>
         <dTVNombre>Plataforma</dTVNombre>
         <TcksEnEspera>15</TcksEnEspera>
         <VentsEnAtencion>52</VentsEnAtencion>
       </Rows>
    the grid may add a ROW and in the column of plataforma add the data: 15 and 52, so the grid may be something like this:
    as you can see, the grid may add rows and columns in depends of the count of XML data.
    plz help.
    thanks, regards  from Lima, Peru.
    JS

    any help ????????? I found OLAPDataGrid .....   I was thinking to send all the data into a bidimensional Array , then pass the data of my bidimensionalArray to  OLAPDataGrid ...  but I'n not sure if Flex is able to do it  .... 
    the really serious problem is the special ROW I must use ...
    regards
    JS

  • Newbie  Group by and Group by

    I can do a group by, but I need to have TWO Group by so my output would look like this
    in ONE report:
    Month Hours
    Oct. 2008 10
    Nov. 2008 17
    Dec. 2008 14
    Total 41
    Produce Hours
    Apples 7
    Grapes 15
    Peaches 8
    Plums 11
    Total 41
    Below will give me the Produce total:
    Select Sum(Phours) Shours,Pname from aims.dummy
    group by Pname
    =========================
    Below will give it by Date:
    Select Sum(Phours) Shours,Pdate from aims.dummy
    group by Pdate
    =========================
    Here's my input example:
    drop table dummy;
    create table dummy(pname varchar2(20)
    ,Phours numeric(10,0)
    ,pdate date);
    insert into dummy(pname,phours,pdate)
    values('Apples',4,to_date('20081001','YYYYMMDD'));
    insert into dummy(pname,phours,pdate)
    values('Apples',3,to_date('20081101','YYYYMMDD'));
    insert into dummy(pname,phours,pdate)
    values('Grapes',3,to_date('20081001','YYYYMMDD'));
    insert into dummy(pname,phours,pdate)
    values('Grapes',12,to_date('20081201','YYYYMMDD'));
    insert into dummy(pname,phours,pdate)
    values('Peaches',3,to_date('20081001','YYYYMMDD'));
    insert into dummy(pname,phours,pdate)
    values('Peaches',5,to_date('20081101','YYYYMMDD'));
    insert into dummy(pname,phours,pdate)
    values('Plums',9,to_date('20081101','YYYYMMDD'));
    insert into dummy(pname,phours,pdate)
    values('Plums',2,to_date('20081201','YYYYMMDD'));
    What is the best way to do this?
    TIA
    Steve

    Like this...
    SQL> select * from dummy;
    PNAME                    PHOURS PDATE
    Apples                        4 01-OCT-08
    Apples                        3 01-NOV-08
    Grapes                        3 01-OCT-08
    Grapes                       12 01-DEC-08
    Peaches                       3 01-OCT-08
    Peaches                       5 01-NOV-08
    Plums                         9 01-NOV-08
    Plums                         2 01-DEC-08
    8 rows selected.
    SQL> break on type skip 1
    SQL> ed
    Wrote file afiedt.buf
      1  select 'By Month' as type, to_char(pdate,'Mon') as descript, sum(phours) as hrs
      2  from dummy
      3  group by to_char(pdate,'Mon')
      4  union all
      5  select 'By Produce', pname, sum(phours)
      6  from dummy
      7  group by pname
      8* order by 1,2
    SQL> /
    TYPE       DESCRIPT                    HRS
    By Month   Dec                          14
               Nov                          17
               Oct                          10
    By Produce Apples                        7
               Grapes                       15
               Peaches                       8
               Plums                        11
    7 rows selected.
    SQL>Of course you may want to change how the ordering is done so that the months come out in order for that group and the produce comes out alphabetically for the second group, but I'll leave that as a challenge for yourself. ;)

  • Valuation grouping Code and Group together valuation area

    Hi,
      I wan tto know what is mean by Valuation grouping code  in our system for all valuation  area it is 0001   can we create seperate account determination for different plant to same company code  or for one company we can create only one account determination process.

    Hi,
    The account determination can be done at sprommvaluation and account assignment ---account dtermination ---with out wizard.
    The valuation grouping code makes it easier to set automatic account determination. Within the chart of accounts, you assign the same valuation grouping code to the valuation areas you want to assign to the same account.
    Valuation grouping codes either reflect a fine distinction within a chart of accounts or they correspond to a chart of accounts.
    Within a chart of accounts, you can use the valuation grouping code
    Example:
    The valuation areas 0001 and 0002 are assigned to company codes which use the same chart of accounts. For both valuation areas, however, you would like to define a different account determination.
    You must assign different valuation grouping codes (for example, 0011 and 0022) to both valuation areas
    Example:
    Valuation areas 0003 and 0004 are assigned to company codes which use the same chart of accounts. Account assignment for both valuation areas should be similar.
    You assign the same valuation grouping code (for example, 0033) to both valuation areas. Thus, you only have to define account assignment for both valuation areas once.
    Regards,

  • Possible to combine remaining balance and Debit Card?

    Hello,
    So I currently have just over £5 on my account from a prepaid gift card but wish to pre-order an album for £10. Would it take my remaining credit (around £5.50) from my account then the remainder from my Debit Card (around £4.50) that I have set up, or just see that I don't have enough credit on my account and charge my debit card the full amount?
    Just looking to use the remainder of my credit without wasting it.
    Thanks very much,
    Ross
    Message was edited by: MonkeyWrench9

    Hi, Ross,
    I haven't tried it with pre-orders, but normally if you purchase something that costs more than you have in your credit balance, the iTunes Store will use up the balance and charge any remaining cost to your other payment method. I doubt that this would be different with a pre-order, but I can't say with certainty.
    Regards.

  • Skype Advice With Group Calls Please

    Hello I was hoping you maybe to answer some questions on skype for me please.  I am hoping to use skype as a replacement to online webinar software.
    I am using grop conference video calls. Can you please confirm I can have a max of 10 people? Is that likely to increase in the future?
    Some of the participants are using laptops/desktops and others are using ipads/iphones. I understand that those on ipads/iphones can't see the video but will the people of laptops/desktops still see the video? Are there any other issues or actions that may occur when there is a mix of devices connected to the group call?
    If I (using skype on a desktop) invite the participants to the group call and after I lose connection or hangup will the group call still be working for the rest of the participants?
    What happens if someone who has been invited to the group call loses connection and leaves the group call for whatever reason will they be able to join automatically? or do they need to be reinvited again?
    Thank you very much
    Wizard

    Hi and welcome to the Skype Community,
    Current participant limit for group video calling is 10. Skype does not share any forward looking statements when that will increase, but this figure is being reviewed constantly as network parameters and hardware evolve.
    If users on platforms not supporting group video calling are participating, they won't see video or screen share, but participants on other clients still can. No further limitations beyond that.
    If the connection of the group video call host (the user who initiated the group call) drops the call will drop for everyone. The conversation will stay in the "Recent" listing though so it can be easily restarted and participants can easily join that way.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • SNMPv3 user and group dependency?

    HI,
    if i create group with authpriv and user with no authnopriv, and if we add user to this group. what will be result? this user will be authenticated or not? what is the dependency between users and groups ? Which has high priority?
    thanks guys

    Hi. Before I found this answer and the link Vinod Arya provided, I had the same question, so I did some tests in GNS3 configuring different snmpv3 groups within a router cisco 2800 (i.e. a no-auth group, an auth group and a priv group); creating different users with different security levels  and making all the possible combinations between users and groups. After capturing with Wireshark those results (i'll put them at the end of the question) I write a "rule", the "general conclusion" of that dependency between the security level of groups and users, as follows:
    - " Within the agent, the group's security level has precedence over the user's security level member of that group, if the group's security level is greater than the user's security level. This is explained with the following two scenarios. First scenario, If inside the agent, the group which the user belongs, does not have any securities (a noauth group) and the user inside of it has a security level greater, for example, authPriv; an external incoming request to the user of this agent, with authNoPriv security level, will be able to gather the information that was looking for, despite the user inside router's agent has configured both authentication and privacy protocols and keys. Second scenario, the opposite situation. When the group's security level is higher, for example authPriv and the user within the group has a lower security level (for example, a noAuthNoPriv user or a authNoPriv user)  an external incoming request to the user of this agent, with noAuthNoPriv or authNoPriv security level, will get a NULL response to the request.
    That's why concordance must exist between the security level of both the group and the users members of that group.
    Another important consideration is consider the interaction between user's security levels (admin and agents). The security level of the user has precedence over the request's security level of the admin console, because if the security level of the incoming request is higher than the configured for the user who it is asking to, the request won't be successfull and an error message "unsupported security level" will be sent to the admin console."  -
    Please I want to know if the conclusion I reached after the analisis of the results of tests is correct, or if it's imprecise, you can help me to improve it.
    In the link it doesn't say literally that the group has precedence, it mentions about the errors in the case of a missing password or inconsistence between group and user's security level. Also saying that the group's security level has precedence over the user's security level is not always true wich I think was demonstrated with the first scenario example, that's why I need to know if the explanation I wrote is good or is missing something.  Thanks in advance
    Results of the tests: the image provided

  • Only my skype dropping constantly in group call

    Hello I have actually been experiencing this problem for a while now, but decided it wasnt too big of a problem. It eventually became really irritating for me, because every time my skype dropped I would have to close and restart my skype. This problem occurs usually every 30-40 minutes into a group call, and it only happens to me. I am pretty sure it is not my ISP, because my programs that require internet are running perfectly fine while the call drops..
    Do you guys have any idea what could be causing this?

    Have you monitored your connection in Skype and the taskbar when it drops?  The issue may be related to your router and it running out of resources after a set period of time so it drops the session.  If you are going wireless you could try wired.  You could also try temporarily bypassing your router and connecting directly to your modem if that option exists.  It could also be related to your drivers or some memory resident software generating some type of crash.  If so you might have any errors listed in Window Event Viewer.  You could try updating your audio/video/network drivers to see if anything changes.

  • Group and Group counter in Routing

    Hi all,
    what is group and group counter in routing , how these are used in routing , please explain.
    Regards,
    Joseph.

    Dear Joseph,
    1.Each routing is stored against a group and group counter no.
    2.When we create routing without respect to any material and only by giving the plant,the set of operations gets saved under one
    group counter and group no.
    4.Many materials can be assigned to this same group and group counter no,so that the routing is valid for all the materials included.
    5.When you create a routing for material specific,the set of operation gets saved in a group no and group counter no as 01,when
    you create another routing with another set of operations for the same material,plant and task list combination now the group no
    remains same and the group counter gets saved under 02.
    6.This data can be further helpful in assigning the routing data in the production version,.
    Check and revert
    Regards
    S Mangalraj

  • "group", "link" and "nest" -- difference?

    You can group, link and test video clips on the timeline. The "nest" one is the only one that seems to actually do anything similar to what I expect. Both group and link don't seem to do a gosh darn thing!

    Group clips
    Link and unlink video and audio clips
    Nesting sequences
    Premiere Pro CS5-CS6 Reference
    (.pdf 12 MB download)
    http://helpx.adobe.com/pdf/premiere_pro_reference.pdf

Maybe you are looking for

  • How to Configure Receiver Mail Adapter?

    I need to designed a BPM if Message is failed to update database then send an e-mail to alias group in Microsoft outlook by using Receiver Mail adapter. Can someone help me to design above BPM and how I need to configure receiver mail adapter. Thanks

  • Want to go for higher subscription

    Hi,  I have taken a subscription for 3 months, its only a week and i have exhausted my first months limit. I want to go for a higher subscription. Is there a way for this. or do i need to cancel my current subscription and buy a new one. Thanks

  • Oracle Globalization - GetSessionInfo gives error

    I am using ODP.Net OracleGlobalization class to get the SessionInfo and then to override the sessionInfo settings. I am able to override these settings properly on an English OS with the NLS_Lang set to American_America.AL32UTF8. After overridding th

  • Color Picker Not Working in Develop Module LR 6

    All color pickers in the Book, Slideshow, Print and Web Modules work by clicking in the color picker and dragging to the image then releasing the mouse over the color wanted.  However, I am not able to get this to work in the Develop Module.  How can

  • HT202297 appigo todo app sync with icloud control panel

    I have appigo todo app and have synced it to icloud which is confirmed in my app settings but the todo list does not show up on the control panel and i am worried it is not backed up? Should it be visible on the control panel and can I see individual