DMM 5.0.2 Play in future

Hello,
I have DMM Version 5.0.2. When I trie the feature Play in Future under the Schedule Tab I can not see the calender.
I use a German WIN-XP-Prof, SP3, Java Version 1.6.0.
Any idea?

The Symptoms that you are seeing "Typically" has to do with your BROWSER & JAVA versions.
1. What Browser & Version is the Client using (ie. MS IE 6\7, Firefox 2\3, Safari..)?
* Verify Browser versions against the DMS Compatibility Matrix.
http://www.cisco.com/en/US/docs/video/digital_media_systems/dms_compat.html
2. What Version of JAVA is the Client running? If there are Multiple JAVA Versions Installed,
What is the PREFERRED JAVA version for Client?
* Verify JAVA by checking JAVA settings or Running a JAVA Checker Tool
http://java.com/en/download/help/testvm.xml
3. Is the Problem being seen on Other Clients or Specific to this One Client or Select
Group Clients?
4. When did this issue Start? Has the Scheduling ever worked on the DMM Server?
If so, what has changed with your client?
Actions:
* Clear the Client's Browser Cache, Remove Security Certificates for the DMM Server, Remove the
Cookies for the DMM Server. After these actions have been performed, Restart the Browser and
Try Again.
* Try Using a Different Browser from the Problem Client. For Example, If you are using IE, Try
accessing DMD with FireFox Version 2.x (Not FireFox 3.x).
* Verify JAVA Version and Clear the JAVA CACHE and Try Again.
http://java.com/en/download/help/5000020300.xml
* Try accessing DMM-DSM Scheduler from another Client Local & Remote to see if the problem is experienced on
other Clients.
Let me know what you see..

Similar Messages

  • Hi all. Could anyone tell me how to Power Off & Power On the CISCO 52"LCD controls using RS232 to Play in Future

    Hi,
    Im working in Cisco DMS & IPTV.
    Im facing a problem with 4400 DMP & 5.2.2 DMM.
    I want to control the CISCO 52inch LCD's using the 4400G DMP. I am able to power off,on the LCDs remotely through the DMM. Also I am able to Schedule to power off & power on the LCD for short number of days like for 3 or 4 days.
    but i cannot schedule to play in future for a month.
    My requirement is as follows: I want to turn off the LCD screen during the off time in my customers office. That is I want to schedule the screen to turn ON from 7 am to 6 pm. i want to turn off my lcd screens from 6pm to 6am. i want to schedule this for 1 or 2 months long in a single shot.
    kindly reply as early as possible.

    Hello Peter,
    I'm always eager to help as i get helped as well!
    For the first part of your question: I cant see a reason why the scheduling fails for more that 4-5 days! I had it running for our customer on a daily basis without any issues.Make sure that you scheduled tasks dont conflict with other (e.gthat you may have configured when testing)
    For the second part: What i did was the following: Let's consider that the working days are Mon-Friday:
    So: In scheduling, i selected Monday, created two events (for LCDs on & off) and set both of them to repeat every week. I repeated this for Tuesday,Wednesday,Thursday and finally Friday. In this way, i was able to configure the dmps for the working days only.
    Also, what i also added in the scheduling was an extra event ( preferably set before turning on the lcds ), an advacned task which Saves&Reboots the dmps. In this way the 4400s start fresh everyday

  • Null offset DMM 4070

    Hi
    How to programm the null offset in C# using the class library from the DMM4070
    I want to use the "null offset" from the DMM 4070 softfront pannel in my programm but i can't find a method for it
    Thanks in advance
    tonnie

    Hello Tonnie,
    I had misunderstood your request clearly.
    I thought you were looking for more information into specific types of "automated" offset nulling.
    If you just want to implement the offset nulling checkmark behavior, then you can do this quite easy.
    I thought you had already seen this by going to the Soft Front Panel its help.
    The functionality of this checkmark/button is quite simple (taken from the help):
    "Null Offset stores the current reading of the DMM and subtracts it from any future readings. The stored offset is shown on the display. When enabled, the Null Offset value is updated if the device, function, or range is changed."
     So basically this just comes down to defining a button or checkmark that:
    1 Stores the current actual reading (without this software based offset nulling) in a variable x at the moment when your button goes from "disabled" to "enabled" state. (eg. moving a switch from off to on)
    2 While this is enabled you will subtract your offset from any current reading as a sort of very simple software post-processing. (eg. switch still in on-position)
    3 When you go back from the enabled state to the disabled state, you reset the variable x to zero/0 value (eg. switch from on to off)
    4 When you are in disabled state (eg. off-position of your switch) , then you just read the actual readings + your variable x (=0).
      This comes down to just reading the actual reading (without the software based zero offset.
    5 You will wait until you again go from the disabled to the enabled state. If this happens, then do step 1 again.
    So basically, you just need to add an offset value to your actual reading and set this offset value when you do a transition of disabled to enabled state or from enabled state to disabled state.
    Kind Regards,
    Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
    CLD, CTA
    If someone helped you, let them know. Mark as solved and/or give a kudo.

  • DMM 4070 interchangeability

    How do I achieve interchangeability for DMM 4070?
    In C# code, I wrote:
    using Ivi.Dmm;
    using Ivi.Driver;
    IIviDmm iviDmmSession = IviDriver.Create<IIviDmm>("MyDMMLogical", false, false);
    where the logical name point to this software module in IviConfigurationStore.xml:
    <IviSoftwareModule id="p181">
     <Name>NationalInstruments.ModularInstruments.NIDmmWrapper 1.0 Fx40</Name>
     <Description>National Instruments Dmm .NET Class Driver</Description>
     <DataComponents/>
     <ModulePath/>
     <Prefix>NIDmm</Prefix>
     <ProgID/>
     <SupportedInstrumentModels/>
     <PhysicalNames/>
     <PublishedAPIs>
      <IviPublishedAPI idref="p7"/>
      <IviPublishedAPI idref="p11"/>
     </PublishedAPIs>
     <AssemblyQualifiedClassName>NationalInstruments.ModularInstruments.NIDmm.NIDmm, NationalInstruments.ModularInstruments.NIDmm, Version=1.0.40.146, Culture=neutral, PublicKeyToken=DC6AD606294FC298</AssemblyQualifiedClassName>
     <ModulePath64/>
    </IviSoftwareModule>
    But I got this error when creating the iviDmmSession:
    IviSessionFactory: An instance of the specific driver referenced by the driver session name could not be created, or did not support the specified type.
    Specific driver (software module): NationalInstruments.ModularInstruments.NIDmmWrapper 1.0 Fx40
    Class name: NationalInstruments.ModularInstruments.NIDmm.NIDmm, NationalInstruments.ModularInstruments.NIDmm, Version=1.0.40.146, Culture=neutral, PublicKeyToken=DC6AD606294FC298
    Please help me out. Thanks.

    Hello Tonnie,
    I had misunderstood your request clearly.
    I thought you were looking for more information into specific types of "automated" offset nulling.
    If you just want to implement the offset nulling checkmark behavior, then you can do this quite easy.
    I thought you had already seen this by going to the Soft Front Panel its help.
    The functionality of this checkmark/button is quite simple (taken from the help):
    "Null Offset stores the current reading of the DMM and subtracts it from any future readings. The stored offset is shown on the display. When enabled, the Null Offset value is updated if the device, function, or range is changed."
     So basically this just comes down to defining a button or checkmark that:
    1 Stores the current actual reading (without this software based offset nulling) in a variable x at the moment when your button goes from "disabled" to "enabled" state. (eg. moving a switch from off to on)
    2 While this is enabled you will subtract your offset from any current reading as a sort of very simple software post-processing. (eg. switch still in on-position)
    3 When you go back from the enabled state to the disabled state, you reset the variable x to zero/0 value (eg. switch from on to off)
    4 When you are in disabled state (eg. off-position of your switch) , then you just read the actual readings + your variable x (=0).
      This comes down to just reading the actual reading (without the software based zero offset.
    5 You will wait until you again go from the disabled to the enabled state. If this happens, then do step 1 again.
    So basically, you just need to add an offset value to your actual reading and set this offset value when you do a transition of disabled to enabled state or from enabled state to disabled state.
    Kind Regards,
    Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
    CLD, CTA
    If someone helped you, let them know. Mark as solved and/or give a kudo.

  • Disable 'Part of the song was not played' message permanently

    Hello,
    is there a way to remove this kind of stupid and useless message permanently from my computer?
    It occurs rather often on my iBook, and it really makes me sick! Every time that happens I will have to press both OK-button AND space-bar to restart the song again.
    What's that message good for anyway? Probably no-one in the whole world will be so stupid not to recognise on his or her own that a song has stopped playing! So is the message there to annoy people? Well, it worked in my case...
    It happend to me at least 250 times, and I would really love just to solely press the space-bar to continue playing in future times. So if someone could tell me about something that I will have to type into the Terminal or so to stop this ridicolous behavior, I would be really grateful!
    iBook G4   Mac OS X (10.4.7)   1GB DDR SDRAM

    GarageBand is very processor-hungry, and this happens when it runs out of computing power: the message is to explain that this is why it has happened, as opposed to some other more sinister reason. Even with 1GB of RAM a G4 iBook is sailing pretty close to the wind with GB, particularly if there are a lot of tracks.
    It's worth closing any other programs you may have running: the other trick, as you probably know, is to 'lock' any tracks you aren't working on at the moment: this converts them to audio files hidden within GB (without touching the MIDI) and plays the audio files instead of rendering the MIDI - this takes a lot less processing power. (When you lock some tracks and hit play there will be a delay while the tracks are rendered to audio). When you want to edit a track you can just unlock it and revert to the MIDI.

  • Failed DMP Deployment

    Failed DMP deployment of a video presentation containing 3 videos less than 50mb total.
    DMM 5.2.2
    DMP 4400  5.2.2.1
    Error Message:
    Not able to set FTP permissions.  Exception message is The IFMS DMP MIB utility could not connect to the DMP to  fetch the DMP's MIB.
    I tried to ftp videos directly to the DMP and was unable to. The first video appeared to transfer. Then disappeared from the directory.
    "ftp server" and "read and write" are on.
    Anyone have any ideas what I'm doing wrong?

    I am having a similar problem. Odd thing is that when I repeat the deployment steps manually it has not problem. This error only seems to work when I use the 'Play In Future' function.
    You also mentioned setting FTP - since I can send manually would that confirm that the FPT setting are correct? The DMP management account and the FTP service use the same password but different user ids.

  • Bulk delete for the old prsentation

    Dear All,
    I have a Cisco 5.2.0 DMS system that contains DMM server and 104 DMP's ,my issue is in the number of the presentation created on the system ins now about 1200 presentation ,where the system has many users that can create a presentation ,now the administrator of the system requested to delete these old presentations ,we have another problem in delete the presentations which are the scheules ,most of these presentation are assigned to a schedule which denay to delete the presentation.
    Any one has an idea to delete the old schedule first ? and then delete the old presentations?
    Thanks,
    Ahmed Ellboudy

    Dear Ahmed,
    Indeed the DMM would ask you to remove old instances of scheduled presentations before being able to remove the presentation themselves.
    You can use the following procedure on the DMM Digital Signs:
    - go under "Schedules -> Reports" and generate a report covering the period since the presentation has been created (use type "application publisher"). In this way you will be able to see all the times the presentation has been scheduled.
    - then go under "Play in Future" and browse the schedule to find the old instances of the scheduled presentation. Delete all the instances of the presentation you want to remove (right click on the playlist schedule, then "delete"). Do "Save All" then "Publish All" each time this is done.
    Regards,
    Marco

  • How to save the audio bytes in a file

    I am capturing the audio from microphone.I write the audio data as bytes to other clients.How can i save the bytes in a wav file and it can be played in future?Please help.I want to write the audio bytes in a wav file

    get sample source code from
    http://javasolution.blogspot.com/2007/04/record-and-save-audio-using-java.html

  • What Mini to buy when considering viewing 720p QT trailers?

    I have used the G4 mini in my theater room several weeks now and am very pleased. So now that I know it works, oh so better than the HTPCs that I had built, I want to place a Intel mini into the theater room. My G4 mini is fine with 480p trailers, and they look pretty darn good. My present Infocus 4805 projector will someday be replaced with a projector that will do 720p.
    Ok, that said, I hope that one day I will be able to download 720p content from Apple. To view 720p QT trailers the specs say I need a 1.8 Intel core duo processor. I figure that may also apply to playing back the 720p content from iTunes. What I am curuious about is if people with a 1.66 Core Duo have had sucess with playing back the 720p trailers without any stutters? I am just wanting to put the money into additional memory if I can instead of buying the faster processor. From what I understand the aTV has a much slower processor, and if it might be able to play possible future 720p content then maybe, just maybe, I can get the 1.66 Intel for my theater system. If not, well, I guess I will spend the additional money. Oh, I sure do wish Apple would make some noises about if they are going to release a new mini soon with the Core 2 Duo.
    Thanks for the help.
    Alan
    iMac24   Mac OS X (10.4.9)   Home theater more fun since changing from PC to Mac Mini.

    Bear in mind, the RAM in a Mac mini is NOT a user-installable part. While the act of opening the Mac mini itself to install RAM does not void the warranty, if there's ever any trouble with your Mac mini that requires it to be sent in for repair, Apple may or may not honor the warranty. The best option is to custom configure a Mac mini online or have an Apple Authorized Service Provider upgrade the RAM for you.
    -Doug

  • Masters in Database security

    Hi Team,
    I Work as oracle apps dba..I was planning for higher studies preferably masters programme already i hold engineering degree in my U.G
    The reason i chose database security programme please follow up:
    1. only few DBA's are expertise on this arena
    2. Companies that bother about their database security must be big multi MNC and reputated international banks
    3. Already working in revelant field, completed certifications etc which could strong my base foundation further more
    4. Most regular DBA`s in market has got almost nil knowledge on database vault, security, encryption, tde etc
    So, does this idea really works good? If i do proagramme how are my chances...and i see security is essential and has got key role to play in future in any organisation to protect their privacy.
    regards,
    Dilip

    Hi A/K
    I wanted to know about the degree Masters in Database administration, Data Modelling and Data Warehousing.
    Are you thinking about the Oracle Certified Master ? Or some training courses on those topics?
    Database administration > http://en.wikipedia.org/wiki/Database_administrator
    Data Modelling read that> http://en.wikipedia.org/wiki/Data_modeling
    Data Warehousing > http://en.wikipedia.org/wiki/Data_warehouse
    What exactly is covered under these courses.
    See the previous links
    As to which universites would be good to do it from.
    Are you working for a company then get them to paid for the Oracle training courses especially if relevant with your work/.
    Any universities in India offer them ?
    No idea..... but try to google on that...

  • Gaming Graphics card?

    New Mac user here, absolutly loving the new MB and all its awesome goodies.. anyways onto the question.
    I'm not an avid gamer or "hardcore" gamer, just looking to play some future titles and World of Warcraft from time to time. I saw the ATI and nVidia graphics cards on Apple, and based upon reviews I'm not exactly sold on either..
    Which graphics card should I pick up? Note, I will alos be upgrading the memory here shortly to 1GB.
    Thanks,
    -Nick

    I think one thing that defines the difference between the MB and the MBP is the graphics card. The MBP has one of the best graphics cards available right now. The MB has a high end integrated graphics chip. I don't think apple will put an acutal card in the MB at the same price becuase people would buy the MB and save a ton of money over the MBP. I do think that Apple should make it an option to have a Radeon X600 or X800 upgrade for $300 or $350 more.

  • DMM proof of play

    Hi,
    I am currently working on a project that make use of the PoP , I am using the DMM API to extract the POP log and parse the answer from the DMM.
    My question/problem/issue is :
    I defined an insertion for several days that contains one playlist ,
    when I query the DMM for future dates I get an answer as if the content where already played .
    this Behavior is very problematic
    Can you please shade light on that issue ?
    Thanks Mickey

    Hi,
    I am currently working on a project that make use of the PoP , I am using the DMM API to extract the POP log and parse the answer from the DMM.
    My question/problem/issue is :
    I defined an insertion for several days that contains one playlist ,
    when I query the DMM for future dates I get an answer as if the content where already played .
    this Behavior is very problematic
    Can you please shade light on that issue ?
    Thanks Mickey

  • Setting up new macbook pro ,want to transfer music on existing Apple id and then set him up with a new one for future purchases ,can itunes play music from both accounts on one user account?

    Title says it all really,son has until now used our itunes account,in future will want to build up own but wants obviously to have access to past musuc/books etc.I was thinking authorise new macbook with existing apple id ,transfer music ,then set up new id for future,if he wants to play old music he will have to log in under old account.
    Also want to link to icloud but this will need to be the new id presumeably because you are not allowed to change the computer,does this mean it will only back up the stuff from new account?

    I have tried the method of authorizing my computer and then initiating transfer purchases method yet my purchases were not transfered. I was told Apple can put your purchases in a certain place for you to retrieve them in your I-tunes account.
    Is there any way you can help me with this problem?

  • Video played in you tube or future apps (in landscape) should be flipped

    This is a suggestion, but I have no idea where to put it, so I'm putting it here.
    As it stands now, it's uncomfortable to hold the iPhone in landscape when there are headphones in. In applications where the accelerometer is active for determining landscape/portrait mode, like Safari, you can just turn it over. However, in YouTube, or in applications like the Spore demo you showed, it would be very uncomfortable to play with headphones in. If you had the headphone jack in the upper right, instead of the lower left, it would make the phone much easier to hold.

    Hi Alexander. Welcome to Apple Discussions.
    While Apple employees sometimes provide help here, they do not take feedback from the forums. Feedback on the iPhone should be directed to http://www.apple.com/feedback/iphone.html
    Thanks.

  • How to stop the Play now feature?

    I have scheduled a presentation and a playlist both through the play now feature of the DMM.  I can not seem to figure out how you actually stop the content from playing.  I can send something else to it via future content.  However now if I try to delete the presentation or play list I get a message saying that it cannot because it is already scheduled.  How can I go about removing these?
    Also I am not a professional at creating the content for this system but my boss wants to be create some professional type content.  Is there a resource for maybe downloading more templates or even something for helping me go about creating some nice looking presentations?
    Thank you in advace!

    Hi Glen, the way I have halted "play now" content is by stopping all application for the dmp.
    navigate to Digital Media Players in the Digital Media Manager.  Check off the dmps that you want to halt content for. Click the dropdown under Actions, scroll to the bottom & select 'stop all application', click Go.
    hope this helps.
    Rose Ann

Maybe you are looking for

  • Can't include C-code in objective-c project

    I am having problems including a little C source code file in an existing objective-c project. The problem is that xcode spits out lots of warnings and error messages when it tries to compile the whole project or just the C file, in particular, lots

  • How to disable multiple select option in OO ALV.?

    I want to display an ALV with the multiple select button disabled.I want the "select" button at the start of each row but  the "select all/deselect all" button at the right hand top corner of the display be disabled. Please help me out.

  • Cisco 340 (Edge) DMP can support ELO 3209L Touch Screen

    Hi Cisco Expert, Could you help to check ELO 3209L Touch Screen, i'd like to use this screen in our Digital Signs Systems (AppSpace 5. and 340 DMP), but i'm not sure about 340 DMP which can support 3209L or not, some screen model from cisco website.

  • When i receive notification on any software there is no sound at all

    please help me when i get any messages on facebook or whatsup or any software i dont get any sound that i recieved any messges or notification

  • Sending user data object to another application

    Hi All, I have an application which fetches user data from database and put in session later from one of the jsp page it has to go to another application where i need to pass an object that contains user session information along with its personal in