Runtime error when i try to execute this program

I get a runtime error when i run this file using appletviewer. Please help me in getting out of this problem.
The runtime errror is:
C:\prashanth>appletviewer HelloMedia.java
java.lang.NoClassDefFoundError: javax/media/ControllerListener
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:11
1)
at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:142)
at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:108)
at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:373)
at sun.applet.AppletPanel.createApplet(AppletPanel.java:579)
at sun.applet.AppletPanel.runLoader(AppletPanel.java:515)
at sun.applet.AppletPanel.run(AppletPanel.java:293)
at java.lang.Thread.run(Thread.java:484)
The code is :
<applet code=HelloMedia.class width=500 height=400>
<param name=FILE value="globe.avi">
</applet>
import java.applet.*;
import java.awt.*;
import java.net.*;
import javax.media.*;
public class HelloMedia extends Applet implements ControllerListener
Player player;
public void init()
setLayout(new BorderLayout());
String mediaFile = getParameter("FILE");
try
URL mediaURL = new URL(getDocumentBase(), mediaFile);
player = Manager.createPlayer(mediaURL);
catch(Exception e)
System.err.println("Exception : " + e);
player.addControllerListener(this);
public synchronized void controllerUpdate(ControllerEvent event)
if(event instanceof RealizeCompleteEvent)
Component compVisual = player.getVisualComponent();
Component compControl = player.getControlPanelComponent();
if(compVisual != null)
add("Center", compVisual);
if(compControl != null)
add("South", compControl);
validate();
public void start()
player.start();
public void stop()
player.stop();
player.deallocate();
public void destroy()
player.close();

My classpath has the following value
.;.;.;C:\PROGRA~1\JMF21~1.1\lib\sound.jar;C:\PROGRA~1\JMF21~1.1\lib\jmf.jar;C:\Program Files\CosmoSoftware\CosmoPlayer\npcosmop211.zip;%systemroot%\java\classes;.;
Please help me out.
Prashanth

Similar Messages

  • Error when i try to execute a program on my Mac

    Hi,my program work very well on my Pc with xp,but when i try to execute it on my mac(with macosx tiger)the compiler gives me this error:
    java.net.BindException: Permission denied
    maybe it is a permisson error,root/user or buh?
    this program runs on port 440....can u help me?

    You can choose a higher port, above 1024. Or run the program as root like this:
    sudo java your.classname.here ...

  • Java error when I try to execute runInstaller

    Hi all,
    Someone can tell me why I get this error when I try to execute the runInstaller script ?
    echoes:/temp/Disk1$ ./runInstaller
    Starting Oracle Universal Installer...
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks will be executed.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-05-13_09-29-09PM. Please wait ...echoes:/temp/Disk1$ Oracle Universal Installer, Version 10.1.0.3.0 Production
    Copyright (C) 1999, 2004, Oracle. All rights reserved.
    Exception java.lang.UnsatisfiedLinkError: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jnilib: occurred..
    java.lang.UnsatisfiedLinkError: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jnilib:
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1668)
    at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    at java.lang.System.loadLibrary(System.java:992)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:545)
    at oracle.sysman.oii.oiif.oiifm.OiifmGraphicInterfaceManager.<init>(OiifmGraphicInterfaceManager.java:189)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.createInterfaceManager(OiicSessionInterfaceManager.java:173)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.getInterfaceManager(OiicSessionInterfaceManager.java:182)
    at oracle.sysman.oii.oiic.OiicInstaller.<init>(OiicInstaller.java:278)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:714)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:628)
    Exception in thread "main" java.lang.NoClassDefFoundError
    at oracle.sysman.oii.oiif.oiifm.OiifmGraphicInterfaceManager.<init>(OiifmGraphicInterfaceManager.java:189)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.createInterfaceManager(OiicSessionInterfaceManager.java:173)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.getInterfaceManager(OiicSessionInterfaceManager.java:182)
    at oracle.sysman.oii.oiif.oiifm.OiifmAlert.<clinit>(OiifmAlert.java:112)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:772)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:628)
    I'm trying to install the 10g db on a PowerMac G5 with 4 gig ram, OSX 10.4.9 with all the latest patches.
    The oracle user shell config is the following :
    =====================================
    ORACLE_BASE=/opt/oracle
    ORACLE_HOME=$ORACLE_BASE/product/10.1.0/db_1
    ORACLE_SID=mydb
    export ORACLE_BASE ORACLE_SID ORACLE_HOME
    if [ $DYLD_LIBRARY_PATH ]
    then
    DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$ORACLE_HOME/lib
    else
    DYLD_LIBRARY_PATH=$ORACLE_HOME/lib
    fi
    HTDOCS=/usr/local/htdocs
    export DYLD_LIBRARY_PATH HTDOCS
    PATH=/usr/local/bin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:$ORACLE_HOME/bin
    export PATH
    PS1='\h:\w\$ '
    export PS1
    alias l='ls -la'
    alias svrmgrl='sqlplus /nolog'
    ================================
    Thanks in advance,
    Max

    Is the Oracle runInstaller message telling me that it wants IBMJava2 -1.3.1, even though is says to install 1.3.1 or higher?Yeah, it has been known to act a bit funny on newer releases of JRE.
    ~Jer

  • I get a runtime error when I try to open itunes, any help?

    I get a runtime error when I try to open itunes, any help?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Installing my updated CS4 on a new I Mac: "legacy Java SE 6 runtime" error when i try to open psd

    Bought the original Creative Suite package 1n 2004, installed on my new apple G5.  Upgraded in 2009 to CS4 and sometime installed on a 2nd computer.  I'm sure I registered each product.  I don't have the original disk's, but I have the serial number. I'm trying to install CS on my new I Mac.  It fails authorization in the download.  I went ahead and downloaded the 30 day trail like suggested.  I get the "legacy Java SE 6 runtime" error when i try to open psd.  After my first attempt failed and I read the help lessons on deactivation, I believe I have deactivated from the G5, but I'm still getting the same code when trying to open psd.

    Download and install: Java for OS X 2014-001 
    Reboot your Mac.
    Let me know how it goes.
    Gene

  • HT1926 Hi, got an update notification to go to 11.1.4 and then an R6304 runtime error when I try to start it. I downloaded Itunes again, and it will not complete intallation.... help please

    Good Day,
    Got an automatic upgrade notification to Itunes 11.1.4  Downloaded OK, but then got an R6304 Runtime error when it completed.
    I tried starting from the screen shortcut and got the same message. I tried downloading from scratch from the Apple site, and got
    the same errors.
    Any help would be appreciated.
    Thanks,

    Follow the instructions of tt2 in: https://discussions.apple.com/thread/5822086

  • Msg 2114 error when i try to text this one person with my iPhone 4S???

    I seem to have an issue when i try to text this one person.....
    They do NOT recieve my texts.....but i can recieve theirs.
    I get a message after i send them a text from 923-0 that says i used the invalid number of digits.....MSG 2114
    Tried deleting the contact , resending just using the number hand typed in...and still does not work!
    HELP!!!

    Finally Worked!  Remove all instances of the contact name and number used in previous messages, phone calls, recents, etc.  Shut down sms, mms, imessage, etc in settings.  Restart phone.  Go back to settings and restart sms, mms, imessage.  Send a text without creating the contact first, just enter the 10 digit cell number and send text.  Worked for my iphone 4s texting to 1 person's android I couldn't send before.  That 1 person was a previous contact that had only 7 digits entered  for the phone number.  Now I added that contact back to the list and sending text still works.  Contact phone number now shows up as +1 (xxx) xxx-xxxx .  Thanks wjosten.

  • I get a Runtime error when i try to search within the iTunes store

    Please help! When in the iTunes store, I get a runtime error every time I try to use the search feature. I get a dialog box stating that Windows is searching for a solution, but then iTunes shuts down completely.

    I have the same error, but I think we will get no solution for this problem.
    You've get no answer here and the Apple support also doesn't send an answer how to solve the problem.
    BTW I have also Windows 7 and the newest version of iTunes 64-bit.
    Greetings Mike

  • Encountering a RunTime error when I try running from command prompt

    When I try to load my class from the command prompt I get the error:
    Exception in thread "main" java.lang.NoClassDefFoundError: MiniTriangle
    Since this seems like a pretty basic error, I'm hoping there's a black and white solution to it. Unfortunatly I don't have the slightest idea what that might be.
    Any help would be appreciated, thanks in advance!!!

    I'm pretty new to this myself but have encountered this error before. I've found it happens when you try to run the programme and the class name isn't the same as the file name. So if you named the text file when you wrote the code MiniTriangle when you compile it you will get a file called MiniTriangle.class which is what you are trying to run. However if you inadvertently misspelled the class definition in the code and entered say
    class MiniTringle {
    you would get the error you are experiencing when you try to run MiniTriangle.class
    Hope this helps

  • I get an error when i try to execute a function that returns a date value

    Hi,
    I'm new in ODP.NET, i'm make a package that contains a function that returns a date i.e.
    Package Body General_pkg is
    Function Get_Day Return Date is
    vd_day date;
    Begin
    select sysdate into vd_day from dual;
    return vd_day;
    end Get_Day;
    End General_pkg;
    i use the next code to execute the function:
    OracleCommand cmdData = new OracleCommand("General_pkg.Get_Day", cnx);
    cmdData.CommandType = Commandtype.StoredProcedure;
    OracleParameter PRM;
    PRM = new OracleParameter();
    PRM.ParameterName = "VDATE";
    PRM.OracleDbType = OracleDbType.Date;
    PRM.Direction = ParameterDirection.ReturnValue;
    cmdData.Parameters.Add(PRM);
    try
    cmdData.ExecuteNonQuery();
    catch(OracleException e);
    When i execute this code, i have and exception, which say "identifier GENERAL_PKG.Get_Day must be declare..."
    Obviously the package is correctly created in ORACLE i tested first in sql plus and it works but in ODP.NET they don't recognize the package or the function i don't know... please help!!!

    OOOOOPSS.... i forgot that i change the user in my conecction string that's why it didn't work...
    i guess i had to much beer last night.;. :)
    thanks.

  • Have LR 2.3.  Downloaded over 600 pictures to the application.  Updated to LR 2.7, all my pictures were gone.  Did Windows 7 (64 bit) System restore in attempt to recover.  Now get a Runtime Error when I try to open LR 2.3!  Are my pictures lost?  I did a

    Ant help appreciated!

    I would try re-installing LR 2.7 and then looking for your catalog under File->Open Recent

  • Runtime error when trying to open photoshop elements

    I need help getting into my photoshop elements. Purchased several weeks ago. Worked fine, then all of a sudden I'm getting "runtime error" when I try to open. Any thoughts?

    Try re-generating the media database by renaming MediaDatabase.db3
    See this link for further information:
    http://helpx.adobe.com/photoshop-elements/kb/microsoft-c-runtime-error-launcing.html

  • "Runtime Error" when I log-on to myspace

    I'm getting a "Runtime Error" when I try to log-on to myspace.com. I get the same error when I click on certain links with in myspace. I can log-on from other computers and on the this computer I can do just about anything else I need to do. I'm running mac os x 1.3.2 (v312.6).
    How can I resolve this issue?
    This is the full error message:
    "Server Error in '/' Application.
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>"

    Hi i'm having the same problem =(
    i went to log on to my myspace and i get this message:
    Server Error in '/' Application.
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
    Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>
    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>
    ----and i dont know what to do.
    Can anyone help me please coz this suxxxxxxxxxx =(
    thanks for any help and replies @};-

  • When I try to execute any workflow I get the error "Something went wrong.."

    Hello,
    Last weekend I updated the servers farm and I executed "SharePoint 2013 products configuration wizard" But I had an error and the wizard showed this: Conpleted configuration settings will not be rolled back.
    From this moment when I try to execute any workflow in one of my site collections I always get the error "something went wrong.." Then I was checking the logs and I saw this:
    04/08/2015 08:12:18.82  w3wp.exe (0x1318)                        0x2070 SharePoint Foundation        
     General                        8nca Medium   Application error when access /_layouts/15/IniWrkflIP.aspx, Error=Requested
    registry access is not allowed.   at Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable)     at Microsoft.Win32.Registry.GetValue(String keyName, String valueName, Object defaultValue)    
    at Microsoft.Office.InfoPath.Server.Util.UrlManager.<>c__DisplayClass1.<OpenFileNameMap>b__0()     at Microsoft.Office.Server.Security.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.Office.InfoPath.Server.Util.UrlManager.OpenFileNameMap()    
    at Microsoft.Office.InfoPath.Server.Util.UrlManager..cctor() 539dfa9c-f4fc-b08b-bdb7-dca4cb91a7b5
    04/08/2015 08:12:18.82  w3wp.exe (0x1318)                        0x2070 SharePoint Foundation        
     Runtime                        6616 Critical Requested registry access is not allowed. 539dfa9c-f4fc-b08b-bdb7-dca4cb91a7b5
    04/08/2015 08:12:18.82  w3wp.exe (0x1318)                        0x2070 SharePoint Foundation        
     General                        ajlz0 High     Getting Error Message for Exception System.TypeInitializationException:
    The type initializer for 'Microsoft.Office.InfoPath.Server.Util.UrlManager' threw an exception. ---> System.Security.SecurityException: Requested registry access is not allowed.     at Microsoft.Win32.RegistryKey.OpenSubKey(String name,
    Boolean writable)     at Microsoft.Win32.Registry.GetValue(String keyName, String valueName, Object defaultValue)     at Microsoft.Office.InfoPath.Server.Util.UrlManager.<>c__DisplayClass1.<OpenFileNameMap>b__0()    
    at Microsoft.Office.Server.Security.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.Office.InfoPath.Server.Util.UrlManager.OpenFileNameMap()     at Microsoft.Office.InfoPath.Server.Util.UrlManager..cctor()    
    --- End of inner exception stack tra... 539dfa9c-f4fc-b08b-bdb7-dca4cb91a7b5
    04/08/2015 08:12:18.82* w3wp.exe (0x1318)                        0x2070 SharePoint Foundation        
     General                        ajlz0 High     ...ce ---     at Microsoft.Office.InfoPath.Server.Util.UrlManager.GetConverterGeneratedFilePath(ConverterGeneratedFile
    file, Document document)     at Microsoft.Office.InfoPath.Server.SolutionLifetime.ScriptIncludes.RenderCssLinksToHeader(Control ctrl, Document document, Boolean ribbonEnabled, Boolean isDisplayMode)     at Microsoft.Office.InfoPath.Server.Controls.XmlFormView.TryToAddCssLinksToHeader()    
    at Microsoft.Office.InfoPath.Server.Controls.XmlFormView.OnDataBindHelper()     at Microsoft.Office.InfoPath.Server.Controls.XmlFormView.OnDataBinding(EventArgs e)     at System.Web.UI.WebControls.WebParts.Part.DataBind()    
    at System.Web.UI.Control.DataBindChildren()     at System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)     at System.Web.UI.Control.DataBindChildren()     at Sy... 539dfa9c-f4fc-b08b-bdb7-dca4cb91a7b5
    04/08/2015 08:12:18.82* w3wp.exe (0x1318)                        0x2070 SharePoint Foundation        
     General                        ajlz0 High     ...stem.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)    
    at System.Web.UI.Control.DataBindChildren()     at System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)     at System.Web.UI.Control.DataBindChildren()     at System.Web.UI.Control.DataBind(Boolean
    raiseOnDataBinding)     at System.Web.UI.Control.DataBindChildren()     at System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)     at System.Web.UI.Control.DataBindChildren()    
    at System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)     at Microsoft.Office.Workflow.IniWrkflIPPage.LoadFromWorkflowAssociation()     at Microsoft.Office.Workflow.IniWrkflIPPage.OnLoad(EventArgs ea)    
    at System.Web.UI.Control.LoadRecursive()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean inc... 539dfa9c-f4fc-b08b-bdb7-dca4cb91a7b5
    04/08/2015 08:12:18.82* w3wp.exe (0x1318)                        0x2070 SharePoint Foundation        
     General                        ajlz0 High     ...ludeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest(Boolean
    includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) 539dfa9c-f4fc-b08b-bdb7-dca4cb91a7b5
    But I cannot find any solution.
    Please Help!

    Hello,
    After some troubleshooting finally I opened a case to Microsoft, finally we solved the error:
    I cleared the configuration cache:
    http://blogs.msdn.com/b/jamesway/archive/2011/05/23/sharepoint-2010-clearing-the-configuration-cache.aspx
    With this I could execute the wizard without any problem and the problem was solved.
    But if with this the problem is not fix, Apart from that, you can check this:
    Apparently, Microsoft change the number version of the SP1, then if you have the first sp1 versión, you will have problems with the wizard because is looking for the newer version.
    The first SP1 number version was:
    15.0.4569.1506
    The currently SP1 version is:
    15.0.4571.1502
    You can check your versión with this script:
    http://blogs.technet.com/b/stefan_gossner/archive/2015/04/20/powershell-script-to-display-version-info-for-sharepoint-product-and-language-packs.aspx
    Finally if you have the first version the solution is download SP1 again (newer) and install it again (it is not necessary unistall the currently SP1) When you finish, try to execute wizard again and everything will work fine.
    Hope this helps!

  • Runtime Error when executing Query in the web

    Hello,
    when i try to execute a query on the  web, i get the error
    Exception in BI runtime
    Log ID: 005056BD15DA005E000000A900000A3400043C8F00E4DD8B
    Initial cause
    Message:
    'user' missing
    Stack trace:
    com.sap.mw.jco.JCO$Exception: (101) RFC_ERROR_PROGRAM: 'user' missing
    Message:
    No connection possible to BI master system VB0CLNT800
    Stack trace:
    com.sap.ip.bi.base.service.connection.ConnectionException: No connection possible to BI master system VB0CLNT800
    Can anyone please tell me , how to fix this ..
    Thanks
    Raj

    you mwy check this to trouble shoot front end
    Troubleshoot the SAP NetWeaver 2004s BI Frontend Installation

Maybe you are looking for

  • Errors Installing on Windows Vista

    It looked like Flex Builder 3 installed correctly on my new Windows Vista machine, but then I go to run the program (Adobe Flex Builder 3) as an administrator, see the black splash screen come up, but then receive the following message: FlexBuilder [

  • UBT available through API?

    Is UBT, User Behaviour Tracking, available through an API in Sun Java Portal Server 7? Can we access the data and information about a user directly within our programs? If there is a library, can we use this library on other platforms? Or is it only

  • Structure of a game pgram

    Hi, I wish to do a simple online poker game in java. Shall I write the code throgh socket programming? Is there any need to create a server through socket?(becuase I wish to implement this on a remote host). If I create a server, How will I run it re

  • Install and activate Telstra Online Security

    We recommend you keep Windows up-to-date at all times so your computer stays fully protected. It's best to check if: Windows needs to be updated before you start your Telstra Online Security installation as you may need to restart your computer if Wi

  • Query desginer Key Figure and Selections

    Hi, I have the following requirement: 1. I have a structure in the rows part og the QD. 2. Now, there are 5 selections created under that structure. 3. Each selection has 2 more Key Figures added to them. Say, it will look as follows: Structure    |-