View material from several classes with characteristics

Hi,
I'm wondering if there's a transaction where you can show material from several classes at the same time, and also see the characteristics to be able to sort amongst them.
My experience is that when the characteristics are shown I can only get the materials from one class, and when having a view of the materials from two or more classes I can't get information enough (like characteristics).
Thanks in advance!

1. Yes... several broadcasters can publish to a single server. Configuration will be dictated by your application architecture and anticipated usage requirements. You can republish the live streams to multiple servers to accomodate large audiences.
2. FMS 3.5 does not multicast. Each client will consume server side bandwidth at a rate equal to the bitrate of the video stream
3. FMIS (interactive server) supports authentication through a C++ architecture, and through server side actionscript. Authentication is not built-in... you'll need to develop your own authentication mechanism (see the recent thread on the topic).
4. You can caluculate bandwidth by multiplying video bitrate by the number of clients publishing and/or subscribing to the stream. User capacity will be govorned by the capability of the hardware, and by the available throughput of the network interface. Unless you're running 10gigE network cards or very low end servers, chances are you'll max out throughput before you max out hardware.
At 10,000 concurrent clients, you'll definitely need more than one server. For that volume, I'd plan for at least four, and plan for developing an architecture for distributing the live streams across multiple servers. A good place to start is here:
http://www.adobe.com/devnet/flashmediaserver/articles/fmis_largescale_deploy/fmis_largesca le_deploy.pdf

Similar Messages

  • How to display value from java class with output generated with toplink

    i hava a requirement of displaying (distance ie calculated in java class) with output generated by query.
    ie if output is like
    school name (distance)
    physical address
    here the school name and physical address are retrived from database.

    Hi,
    ValueHolders are used by the JSF internal framework. To work with an object (attributes) in a managed bean you don't need to make it returning a value holder.
    Create a POJO, provide accessor methods and register it as a managed bean. Access it from JSF with EL
    Frank

  • .How to instantiate the innerclass from another class with coded eg.

    How to instantiate the innerclass from another class(both for static & non static) please give me an eg with coding.

    It's just a preference, but I like writing factory methods:
    public class Outer {
        public class Inner {}
        public static class StaticInner {}
        public Inner innerInstance() {
            return new Inner();
        public static StaticInner staticInnerInstance() {
            return new StaticInner();
        public static void main(String[] args) {
            Outer.StaticInner si = Outer.staticInnerInstance();
            Outer outer = new Outer();
            Outer.Inner i = outer.innerInstance();
    }Often, for me, the inner class implements an interface, and the factory method
    lets you hide the implementation class:
    public class Outer {
        private class Inner implements Runnable {
            public void run() {}
        public Runnable runnerInstance() {
            return new Inner();
        public static void main(String[] args) {
            Outer outer = new Outer();
            Runnable r = outer.runnerInstance();
    }

  • Just uninstalled Adobe FlashPlayer and cannot view videos from several major sites such as CNN, VRT (Flemish Radio Television), etc...) Which version of Flashplayer is safe to install?

    I uninstalled FlashPlayer because the last 2 weeks my fan was running continually and the CPU was hot!
    I did this on  advise of "mende1" and it solved the problem!
    But now I'm stuck with the fact I cannot view those videos that work with FlashPlayer...
    On the ADOBE site I can download older versions, starting at 10.1.
    I'm confident that the heating problem does not exist with the older versions.
    Any idea from which version it started? Which version should be safe to install?
    From 10.3 they say that you can update directly to 11.7.
    I guess that the problem entered somewhere here.
    So I downloaded the file named "playerglobal10_3.swc", but it than it says that there is no standard program associated with it to open.
    So what's the next step?
    Thank you for any advise.

    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • Simple Max date pull from several rows with the same employee numbers.

    Ok so I'm hoping this is flying over my head because it's almost 3am, but I haven't been able to figure this query out for the last 2hrs, but I like to figure stuff out on my own. I'm wondering why the following statement works fine:
    select emp_num, to_char(max(end_date)) as newestdate
    from bank_history
    where emp_num in ('22964', '21667', '20758', '12739', '12731', '20929', '22795', '20594', '23077', '12588', '21294', '20618', '21204', '22952', '19990', '20632', '03093', '19991', '22951', '07779', '20014', '11981', '06149', '20364', '21103')
    and bank_type = 'P' group by emp_num
    BUT! When I start to add more columns that I need to see it starts adding the multiple employee numbers again.
    select emp_num, bank_type, earn_hrs, used_paid_hrs, used_paid_hrs, to_char(max(end_date)) as newestdate
    from bank_history
    where emp_num in ('22964', '21667', '20758', '12739', '12731', '20929', '22795', '20594', '23077', '12588', '21294', '20618', '21204', '22952', '19990', '20632', '03093', '19991', '22951', '07779', '20014', '11981', '06149', '20364', '21103')
    and bank_type = 'P' group by emp_num, bank_type, earn_hrs, used_paid_hrs, used_unpaid_hrs
    The orginal table looks something like this:
    EMP_NUM BANK_TYPE EARN_HRS USED_PAID_HRS END_DATE
    60393 P 0.58 0 3-Aug-2004
    60394 P 7.48 1 28-Oct-2003
    60394 P 40 40 28-Oct-2004
    60394 P 40 12.4 28-Oct-2005
    60395 P 40 40 21-Oct-2004
    60395 P 0 0 21-Oct-2003
    60395 P 40 40 21-Oct-2005
    60397 P 40 39.85 21-Oct-2004
    60397 P 0.97 0.97 21-Oct-2003
    Much thanks for any direction you can give to help guide me on my way to a solution. If you can help it please don't give me the answer, but try to give me the reason it's not working. I'll never learn if you give it to me right up front lol. Thanks again.
    Luke
    Message was edited by: trying to fix the table formating sorry it's so unreadable
    Luke22

    I just give you a prompt:
    SQL> with t as (select 1 emp_num, 'A' bank, date '2007-08-01' dt from dual union all
      2             select 1 emp_num, 'B' bank, date '2007-08-02' dt from dual union all
      3             select 1 emp_num, 'C' bank, date '2007-08-03' dt from dual union all
      4             select 2 emp_num, 'A' bank, date '2007-08-05' dt from dual union all
      5             select 2 emp_num, 'B' bank, date '2007-08-04' dt from dual union all
      6             select 3 emp_num, 'A' bank, date '2007-08-07' dt from dual union all
      7             select 3 emp_num, 'C' bank, date '2007-08-08' dt from dual)
      8  --
      9             select emp_num, max(dt) from t
    10             group by emp_num
    11  /
       EMP_NUM MAX(DT)
             1 03.08.2007
             2 05.08.2007
             3 08.08.2007
    SQL>
    SQL> with t as (select 1 emp_num, 'A' bank, date '2007-08-01' dt from dual union all
      2             select 1 emp_num, 'B' bank, date '2007-08-02' dt from dual union all
      3             select 1 emp_num, 'C' bank, date '2007-08-03' dt from dual union all
      4             select 2 emp_num, 'A' bank, date '2007-08-05' dt from dual union all
      5             select 2 emp_num, 'B' bank, date '2007-08-04' dt from dual union all
      6             select 3 emp_num, 'A' bank, date '2007-08-07' dt from dual union all
      7             select 3 emp_num, 'C' bank, date '2007-08-08' dt from dual)
      8  --
      9             select emp_num, bank, max(dt) from t
    10             group by emp_num, bank
    11  /
       EMP_NUM BANK MAX(DT)
             1 A    01.08.2007
             1 B    02.08.2007
             1 C    03.08.2007
             3 A    07.08.2007
             2 A    05.08.2007
             2 B    04.08.2007
             3 C    08.08.2007
    7 rows selected
    SQL>
    SQL> with t as (select 1 emp_num, 'A' bank, date '2007-08-01' dt from dual union all
      2             select 1 emp_num, 'B' bank, date '2007-08-02' dt from dual union all
      3             select 1 emp_num, 'C' bank, date '2007-08-03' dt from dual union all
      4             select 2 emp_num, 'A' bank, date '2007-08-05' dt from dual union all
      5             select 2 emp_num, 'B' bank, date '2007-08-04' dt from dual union all
      6             select 3 emp_num, 'A' bank, date '2007-08-07' dt from dual union all
      7             select 3 emp_num, 'C' bank, date '2007-08-08' dt from dual)
      8  --
      9             select emp_num, max(bank) keep (dense_rank last order by dt) bank, max(dt) from t
    10             group by emp_num
    11  /
       EMP_NUM BANK MAX(DT)
             1 C    03.08.2007
             2 A    05.08.2007
             3 C    08.08.2007

  • How to call a static method of a class from another class?

    Hello,
    I have two classes in a package. The first one
    package my package;
    public class class1
    protected static ImageIcon createIcon(String path)
    The second one
    package my package;
    public class class2
    private ImageIcon image1;
    image1 = class1.createIcon("/mypath");
    This does not work since class2 cannot load the appropriate image. Where do I have to define the ImageIcon variables in class one or two and do they have to be static variables?
    Thanks in advance
    Christos

    If the two classes are in the same package, that will work, in fact. A trivial example:
    package foo;
    public class Foo1 {
         protected static String getString() {
              return "World";
    // Note: Member of the same package
    package foo;
    public class Foo2 {
         public static void main(String[] argv) {
              System.out.println("Hello "+ foo.Foo1.getString());
    }However, if they are in different packages that won't work - the protected keyword guarantees that only classes derived from the class with the protected method can access it: Therefore this will not work:
    package foo;
    public class Foo1 {
         protected static String getString() {
              return "World";
    package foo.bar;
    public class Foo2{
         public static void main(String[] argv) {
              System.out.println("Hello "+ foo.Foo1.getString());
    }But this will:
    package foo;
    public class Foo1 {
         protected static String getString() {
              return "World";
    package foo.bar;
    public class Foo2 extends foo.Foo1 {
         public static void main(String[] argv) {
              System.out.println("Hello "+ foo.Foo1.getString());
    }I think you should read up a bit more about packages and inheritance, because you're going to have a lot of trouble without a good understanding of both. Try simple examples first, like the above, and if you hit problems try to produce a simple test case to help you understand the problem rather than trying to debug your whole application.
    Dave.

  • How to get  value on jsp file from ActionServlets class

    Hi All,
    I am facing problem in action servlets class into Struts, I am able to get the value on jsp file from action class with the help of session scope but i want to another method for it , so how i can solve the problem.Plz help me
    Thanks......... in advance

    I got a way out to access the attribute, i feel it is
    <jsp:usebean id="myRack" class="settings.Rack"/>
    <c:foreach var="book" item="myRack.books">
    </c:foreach>
    I am not able to check if this is correct or not because myRack.books is not having any value set by me in the request scope. How do i get instance of Rack class set by another page in the current request? I can get the value if i use scriptlet but i dont want to use scriptlet.
    I am continiously trying, if I get an answer, I shall post, else pls somebody guide.

  • Call repaint() from any class?

    I have a class where I have put a JButton. When I press the button I want to
    call repaint() to update an Image object on a JPanel in a totally different class.
    Unfortunately the Image object has to reside in the JPanel class and therefore I thought
    I cound call an static method from the class with the JButton. Doesn't work.
    Hence, how do I call repaint() for a JPanel from another class?

    You can try comething like this ... quick and dirty (All caveats apply; use code at your own risk):
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    class BJCan  extends Canvas {
      private int width, height;
      private Color color;
      public BJCan() {
        setBackground(Color.black);
        color = Color.red;
      public void repaintCan(Color c) {
        color = c;
        repaint();
      public void paint(Graphics g) {
        width  = (int) getSize().getWidth();
        height = (int) getSize().getHeight();
        g.setColor(color);
        g.drawRect(10,10,width-20,height-20);
    class BJPaintCan  extends JFrame {
      private int width, height;
      private JPanel bjp;
      private BJCan bjc;
      public BJPaintCan() {
        super("BJPaintCan");
        bjp = new JPanel();
        bjc = new BJCan();
        bjp.add(bjc);
        getContentPane().add(bjp);
        setBounds(50,50,300,300);
        width  = (int) getSize().getWidth();
        height = (int) getSize().getHeight();
        bjc.setSize(width-75, height-75);
        setVisible(true);
      public void repaint(Color c) {
        bjc.repaintCan(c);
    public class BJPaint  extends JFrame {
      private boolean boo;
      private BJPaintCan bjpp;
      public BJPaint() {
        super("BJPaint");
        bjpp = new BJPaintCan();
        JButton hitIt = new JButton("Hit It!");
        hitIt.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent ae) {
            if ( boo ) {
              bjpp.repaint(Color.blue);
              boo = false;
            else {
              bjpp.repaint(Color.yellow);
              boo = true;
        JPanel jp = new JPanel();
        jp.setLayout(new FlowLayout(FlowLayout.CENTER));
        jp.add(hitIt);
        getContentPane().add(jp);
        setBounds(375,255,300,200);
        setVisible(true);
      public static void main(String[] argv) {
        new BJPaint();
    }~Bill

  • Step Through java.* Classes With JDB

    Here is a simple program:
    public final class HelloWorld {
      private HelloWorld() {
      public static void main(String[] args) {
        System.out.println("Hello, World!");
    }I compile it with the -g option, and run it in jdb:
    javac -g HelloWorld.java
    jdb HelloWorld
    I set a breakpoint in the main function...now I'm wondering why I can't step through the String constructor (or whatever magic happens behind the String literal syntax) and the println method calls. When I use step, it just skips over them! I find that I can set breakpoints in library methods, and use list to see the source, but as soon as I step it flies out of the library method and back to mine. Does anybody know what gives? Is it because the libraries aren't compiled with the -g option???

    Thanks for your quick input. It seems you're right about the libraries. I made a dummy class compiled with the -g:none option, added some more lines in the first class (compiled with -g), and ran it through jdb. It stepped over the methods from the class with no debug info...same way as before.
    This is annoying. Sun should really provide debug versions of their libraries.
    So how does JBuilder let you step through library methods? Did they take the Sun source and recompile it? Do they have a magic debugger?

  • There is a little camera icon on a movie clip when I try to import it to iMovie from my iPad. I have reimported several times with the same result. When I disconnect the iPad I can no longer view the clip. Help!

    There is a little camera icon on a movie clip when I try to import it to iMovie from my iPad. I have reimported several times with the same result. When I disconnect the iPad I can no longer view the clip. Help!

    Hi eawaters,
    If you are having issues importing video from your iPad to your Mac for use in iMovie, you may find the following article helpful:
    iOS: Import personal photos and videos from iOS devices to your computer
    http://support.apple.com/kb/ht4083
    Regards,
    - Brenden

  • IDVD 7.1.2: I am making music instrument instructional DVDs, and I want to include several audio loops in that the viewer access from the main menu to play along with

    iDVD 7.1.2: I am making music instrument instructional DVDs, and I want to include several audio loops that the viewer access from the main menu to play along with

    Export the slideshow out of iMovie via the File  ➙  Share ➙ File menu option as a 480p Quicktime movie.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best quality video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    OT

  • Material Class 001 - Characteristics not comming at the time of GR

    Hello,
    I am trying to use material class 001 in material.
    I have created Characteristics and assigned to Class (001) and have attached this class to Material.
    But when I do Goods Receipt of PO, I do not see any tab with classifications.
    I have also tried activating batch (as some say that I have to activate batch to get the characteristics at the time of GR) but this does not help.
    Please let me know, how can I get the characteristics to get populated at the time of GR.
    Regards
    Prabhjot Singh
    Edited by: Prabhjot Singh Nayyar on Sep 9, 2010 5:35 PM

    Prabjhot,
    I have a group of materials "Bicycles".  Within this group, there are 5 material numbers, BIKE1, BIKE2, BIKE3, BIKE4, BIKE5. Each one of these is sold as a separate item to the customers.
    Now, my customer service group is having a hard time entering orders.  They can never remember which one contains which combinations of colors and Derailleurs.
    I create a class 001 BICYCLES and assign two characteristics, "COLOR" "DERAILLEUR".  Possible color values are "RED", "BLUE", "SILVER".  Possible DERAILLEUR values are "10SPEED" and "12SPEED".  I then assign the materials to the class, and enter values for each of the 5 material numbers.
    Now, when Customer service wants to find out which MATERIAL to enter into their sales orders, they can look up all the MATERIAL numbers that have specific MATERIAL based characteristics:  Blue/10 speed; Red/12 speed, etc etc.
    Later on, my Quality manager approaches me.  For one material BIKE1, which is a Blue/10speed,  I have 3 different factories where I build them.  The resultant bikes are virtually identical from each factory.  However, the manufacturing methods in each factory are different.  My Quality manager wants to determine accurately the source of each manufactured bicycle, so that he can track warranty liability and issue recalls if necessary.
    I create a BATCH class type 022 and assign 2 characteristics "MAN_PLANT" and "YEAR" I create several batches: "PARIS2010", "ROME2010", "LONDON2010":  In the batches I assign the appropriate values:  MAN_PLANT "PARIS", in another "ROME", and another "LONDON"; in all three I enter the value for year as "2010",  I activate Batch management.
    Now when I complete my Production orders, the three plants each receive their production into stock, but now they must enter a batch.  The batches they enter upon receipt identify the manufacturing plant and year of manufacture.  In my central warehouse, I now have BIKE1 stocked and sold under 3 batches: PARIS, ROME, LONDON.  My quality manager is pleased.
    I am rewarded with more work.
    Best Regards,
    DB49

  • How to CREATE MATERIALIZED VIEW LOG (MV fast refresh) with some JOINS

    Hi @ all,
    i'm trying to create a MATERIALIZED VIEW LOG for a fast refresh of a MATERIALIZED VIEW.
    It works fine with a simple Request in the MATERIALIZED VIEW:
    CREATE MATERIALIZED VIEW MV_ZOTD43_P
    TABLESPACE GDII
    BUILD IMMEDIATE
    REFRESH FORCE AS
    SELECT * FROM ZOTD43_P;
    COMMIT;
    CREATE MATERIALIZED VIEW LOG ON ZOTD43_P
    TABLESPACE "GDII"
    WITH PRIMARY KEY, ROWID, SEQUENCE INCLUDING NEW VALUES;
    call DBMS_MVIEW.REFRESH('MV_ZOTD43_P', 'f');
    But when I use a complex SQL-Request with some JOINS (one of the Table with spatial Data) in the MATERIALIZED VIEW, I get an error:
    CREATE MATERIALIZED VIEW MV_TEST
    TABLESPACE GDII
    BUILD IMMEDIATE
    REFRESH FORCE AS
    SELECT lptd04_p.sst_nr AS sst_nr,
    lptd03_p.aaaa AS aaaa,
    lptd04_geom.geom as geom
    FROM lptd04_p lptd04_p
    JOIN lptd01_p lptd01_p ON lptd01_p.cre_nr = lptd04_p.sst_nr
    JOIN lptd04_geom ON lptd04_geom.sst_nr = lptd04_p.sst_nr
    JOIN lptd03_p lptd03_p ON lptd03_p.lief_nr = lptd04_p.lief_nr;
    COMMIT;
    CREATE MATERIALIZED VIEW LOG ON LPTD04_P
    TABLESPACE "GDII"
    WITH PRIMARY KEY, ROWID, SEQUENCE INCLUDING NEW VALUES;
    call DBMS_MVIEW.REFRESH('MV_TEST', 'f');
    Error report:
    SQL Error: ORA-12004: REFRESH FAST kann für Materialized View "GDI"."MV_GDI_SST_STAMM" nicht benutzt werden
    ORA-06512: in "SYS.DBMS_SNAPSHOT", Zeile 2255
    ORA-06512: in "SYS.DBMS_SNAPSHOT", Zeile 2461
    ORA-06512: in "SYS.DBMS_SNAPSHOT", Zeile 2430
    ORA-06512: in Zeile 1
    12004. 00000 - "REFRESH FAST cannot be used for materialized view \"%s\".\"%s\""
    *Cause:    The materialized view log does not exist or cannot be used. PCT
    refresh is also not enabled on the materialized view
    *Action:   Use just REFRESH, which will reinstantiate the entire table.
    If a materialized view log exists and the form of the materialized
    view allows the use of a materialized view log or PCT refresh is
    possible after a given set of changes, REFRESH FAST will
    be available starting the next time the materialized view is
    refreshed.
    Am I doing something wrong or is it not possible CREATE MATERIALIZED VIEW LOG when the MATERIALIZED VIEW got some JOINS?
    Regards,
    Greq

    Thanks for the link Alessandro ,
    the error seems something to do with the Column-Type SDO_GEOMETRY, so
    i create a new thread in the Spatial Discussion forum:
    FAST REFRESHing of Oracle Materialized Views containing SDO_GEOMETRY column
    Regards,
    Greq

  • Hi, i am trying to open and view a report that comes from another server with different odbc connection

    hi, i am trying to open and view a report that comes from another server with different odbc connection
    i created a crystal report for a mysql database on my machine and everything works great
    but we have other reports that come from other machines with different odbc connection
    and this its not working when opens the report asks for credentials
    and i cannot use the remote ip for these reports that come from other machine
    question
    if i cannot connect to remote ip to open the report
    for each report i have to create a database the report database on my machine and then open the report ?
    or there is some other way to open the report ?
    i am using visual studio 2013 and mysql and
       <add key="MYSQLODBCDRIVER" value="{MySQL ODBC 5.3 UNICODE Driver}"/>
    thanks

    short
    i have a report that it was created on another server with a specific dsn
    now i am trying to open the report on my machine
    the database from the other server does not exist on my machine
    the server machine where the report was created the ip its not accessible
    question ?
    can i open the report on my machine or its impossible ?
    thanks

  • I have several disks with many comedy routines;I want to select a few from each disk and combine them to one disk for my personal use.How?

    I have several disks with many comedy routines;I want to select a few from each disk to make one single disk for my personal use.How?

    Copy the routines into a new folder on your hard drive. Then burn the folder to a new blank disc using Disk Utility.

Maybe you are looking for