By clicking on a button i want a message

Hi,
there are only two fields in my view, one is label and the other one is button. i want to get a message with help of the <b>"Message pool"</b> by clocking on the button. could any body help me out with the code.
thanks
Suresh

Hi SureshKumar Arumugham
Open the Message Pool edit the following details
<i><b>MessageKey =</b></i> ButtonClicked
<i><b>MessageType =</b></i> standard
<i><b>Message Text =</b></i> You had Clicked the Button times.
Now Create a Button in the and also create an action for that button.( eg Show_Message).
Inside The Action write this code...
public void onActionShow_Message(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
    //@@begin onActionShow_Message(ServerEvent)
    i=i+1;
    wdComponentAPI.getMessageManager().reportMessage(IMessageTest_Button_App.BUTTON_CLICKED,new Object[] {" "+i},false);
    //@@end
Declare a variable " i " Globally
/** You will find this at the end of the coding page  ***/
//@@begin others
  int i = 0;
//@@end
Now Execute Your Application
The output will be in such a way that how many times you had clicked the button.......
Regards
Chandran S

Similar Messages

  • On click of Submit button, i want to forward to another mxml page and also pass the paramaters to it

    Hi,
    How can forward/load a new page in Flex 4.?
    On click of Submit button, i want to forward/load to another mxml page and also pass the paramaters to it.
    How can i do it.
    Thanks,

    Checkout popupmanager and public variables

  • HT4483 After clicking the download button, I received the message, 'The item you've requested is not currently available in the U.S. store.

    After clicking the download button, I received the message, 'The item you've requested is not currently available in the U.S. store.

    This is not uncommon.   Not all apps are available in all stores, just as not all OSx apps are available in IOS.    The reasons are many, commercial, legal, copyright, whatever but it won't change your position.   If it says not available, then that is the situation.

  • In ME22N change when I click on Print button system should generated messag

    Hi Gurus,
    Once I take the PO print next time when I go to ME22N when I click on print button system should generate the message with out clicking the repeat output.
    next time when I want take the print with out clicking the repeat output in ME22N when I click on print button system automatically generate the output message.
    For that what are the settings need to be setup.
    Thanks in advance
    sapmm

    Hi ,
    If you dont want message to be generated during PO change.Change the following setting.
    For eg. u have message type ZNEU.
    SPRO-MM-Purchasing-Mesages-Output control-message type -click Define Message Types for Purchase Order
    click on :Fine-Tuned Control: Purchase Order
    Delete the entry for operation 2 , for ZNEU.
    Thank you.
    Regards
    Amar

  • WCEM:clicking on custom button(Excel Downlaod) giving message "An error occurred; please try again. If the error persists, please contact technical support."

    Hi Expert,
    I need help.
    I created a custom button to download data to an excel sheet. after clicking the button I am getting message
    "An error occurred; please try again. If the error persists, please contact technical support.".
    I tried debugging WCEM, but it is not even reaching that point.
    Your help will be highly appreciated.
    here is the code.
    BitContentview.XHTML
    <wec:commandButton  id="bdtexcel" immediate="true" actionListener="#{cc.vch.DownloadBITData}" type="submit" value="#{i18n['invoices.ui.openitems.printSelected']}"/>
    UI-repository.xml
      <ViewComponent name="BITContentView"  componentHandlerClassName="com.cpr.cprwec.app.comm.module.ebpp.ui.handler.impl.BITDetailViewVCHandler"/>
    BITDetailViewVCHnadler.java
    package com.cpr.cprwec.app.comm.module.ebpp.ui.handler.impl;
    import com.cpr.cprwec.app.comm.module.ebpp.backendobject.interf.EbppBackend;
    import java.io.IOException;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    import java.util.List;
    import javax.faces.context.FacesContext;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import com.cpr.cprwec.app.comm.module.ebpp.modulemgmt.impl.EbppModuleAccessImpl;
    import com.cpr.cprwec.app.comm.module.ebpp.modulemgmt.interf.EbppModuleAccess;
    import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.impl.DisputeDataDTOImpl;
    import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.impl.OpenItemDTOImpl;
    import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.interf.DisputeDataDTO;
    import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.interf.OpenItemDTO;
    import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.impl.BITDataDTOImpl;
    import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.interf.BITDataDTO;
    import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.impl.BITDetailDTOImpl;
    import com.cpr.cprwec.app.comm.module.ebpp.ui.dto.interf.BITDetailDTO;
    import com.sap.wec.app.common.module.common.attachment.businessobject.interf.Attachment;
    import com.sap.wec.tc.core.backend.sp.jco.JCoConnection;
    import com.sap.wec.tc.core.businessobject.BusinessObjectException;
    import com.sap.wec.tc.core.common.exceptions.ApplicationBaseRuntimeException;
    import com.sap.wec.tc.core.common.logging.WCFLocation;
    import com.sap.wec.tc.core.common.searching.businessobject.impl.GenericSearch;
    import com.sap.wec.tc.core.common.searching.businessobject.interf.GenericSearchReturnResultData;
    import com.sap.wec.tc.core.common.util.GenericFactory;
    import com.sap.wec.tc.core.common.util.Message;
    import com.sap.wec.tc.core.common.util.MessageList;
    import com.sap.wec.tc.core.common.util.table.Table;
    import com.sap.wec.tc.core.common.util.table.TableRow;
    import com.sap.wec.tc.core.modulemgmt.ForeignModuleAccess;
    import com.sap.wec.tc.core.modulemgmt.ModuleAccess;
    import com.sap.wec.tc.core.modulemgmt.exceptions.ModuleInactiveException;
    import com.sap.wec.tc.core.modulemgmt.exceptions.ModuleLifecycleException;
    import com.sap.wec.tc.core.runtime.WecFrameworkRuntime;
    import com.sap.wec.tc.core.runtime.WecSession;
    import com.sap.wec.tc.core.runtime.jsf.WecFrameworkRuntimeJSF;
    import com.sap.wec.tc.core.runtime.jsf.composition.PageManagerBean;
    import com.sap.wec.tc.core.runtime.navigation.NavigationCondition;
    import com.sap.wec.tc.core.ui.composition.menu.MenuManager;
    import com.sap.wec.tc.core.ui.composition.menu.MenuMetadataException;
    import com.sap.wec.tc.core.ui.vc.BuildTime;
    import com.sap.wec.tc.core.ui.vc.NavigationParameterBinding;
    import com.sap.wec.tc.core.ui.vc.RequestParameterBinding;
    import com.sap.wec.tc.core.ui.vc.impl.ViewComponentHandlerBaseImpl;
    import com.cpr.cprwec.app.comm.module.ebpp.businessobject.interf.BIT;
    import com.cpr.cprwec.app.comm.module.ebpp.businessobject.impl.BITImpl;
    public class BITDetailViewVCHandler extends
            ViewComponentHandlerBaseImpl<EbppModuleAccess> {
        protected static final WCFLocation LOCATION = WCFLocation
                .getInstance(BITDetailViewVCHandler.class.getName());
        public BITDataDTO bitDataDTO;
        public BITDetailDTO bitDetailDTO;
        public List<BITDataDTO> BITDataDTOList;
        public List<BITDetailDTO> BITDetailDTOList;
        public boolean noBITData;
        public boolean noBITDetail;
        public boolean renderPanel = true;
        public boolean isDownloadBITData;
        public boolean isDownloadBITDetail;
        public boolean downloadStarted=false;
        public boolean BITFound =false;
        public boolean isBITFound() {
            return BITFound;
        public void setDownloadStarted( boolean downloadStarted ){
            this.downloadStarted = downloadStarted;
        public boolean getDownloadStarted(){
            return this.downloadStarted;
        public void setBITFound(boolean BITFound) {
            this.BITFound = BITFound;
        public String getObjectID() {
            return objectID;
        public void setObjectID(String objectID) {
            this.objectID = objectID;
        public List<BITDataDTO> getBITDataDTOList() {
            return BITDataDTOList;
        public List<BITDetailDTO> getBITDetailDTOList() {
            return BITDetailDTOList;
        public Boolean getNoBITData() {
            return noBITData;
        public Boolean getNoBITDetail() {
            return noBITDetail;
        public Boolean getRenderPanel() {
            return renderPanel;
        private static final int DEFAULT_BUFFER_SIZE = 1024000;
        public Attachment attachmentData;
        public Attachment getAttachmentData() {
            return attachmentData;
        @RequestParameterBinding(maxLength = 1024)
        protected String objectID;
        @BuildTime
        public String processBuildTime() throws BusinessObjectException {
            BIT BIT = null;
            noBITData = noBITDetail = false;
            renderPanel = true;
            if (isLoggedIn()) {
                if ( isDownloadBITData == true ){
                    this.downloadBITDataExcel();
                else {
                this.getModuleAccess().getBITBO().clearMessages();
                BIT = this.moduleAccess.getBITBO().getBITFromBackend(objectID);
                BITDataDTOList = BIT.getBITDataDTOList();
                BITDetailDTOList = BIT.getBITDetailDTOList();
                MessageList objectData = this.getModuleAccess().getBITBO()
                        .getMessageList();
                if (objectData.size() > 0) {
                    noBITData = noBITDetail = true;
                    renderPanel = false;
                    this.addMessageList(objectData);
            return checkLoginCondition();
        private boolean isLoggedIn() {
            return checkLoginCondition() == null;
        private String checkLoginCondition() {
            NavigationCondition navCondition = getNavigationCondition("login");
            if (!navCondition.isFullfiled()) {
                navCondition.addToNavigationStack();
                return navCondition.getOutcome();
            return null;
        public String downloadBITData(){
            downloadStarted = true;
            isDownloadBITData = true;
            downloadBITDataExcel();
            return checkLoginCondition();
        public void downloadBITDataExcel() {
        //    dummyDebug("downloadBITDataExcel", BITDataDTOList.size(), "", "" );
            if (BITDataDTOList.size() > 0) {
                try {
                    attachmentData = this.getModuleAccess().getDownloadBO()
                            .getBITDataExcel(BITDataDTOList);
                    if (attachmentData != null) {
                        FacesContext faces = FacesContext.getCurrentInstance();
                        HttpServletResponse response = (HttpServletResponse) faces
                                .getExternalContext().getResponse();
                        response.reset();
                        response.setContentType(attachmentData
                                .getAttachmentMimeType());
                        response.setContentLength(attachmentData
                                .getAttachmentContent().length);
                        response.setHeader("Content-disposition",
                                "attachment;filename="
                                        + attachmentData.getAttachmentName());
                        response.setBufferSize(DEFAULT_BUFFER_SIZE);
                        ServletOutputStream out;
                        try {
                            out = response.getOutputStream();
                            out.write(attachmentData.getAttachmentContent());
                            out.flush();
                            faces.responseComplete();
                        } catch (IOException e) {
                            throw new ApplicationBaseRuntimeException(
                                    "Problem opening file", e);
                        } finally {
                            attachmentData = null;
                } catch (BusinessObjectException e) {
                    e.printStackTrace();
            isDownloadBITData = false;

    Thanks Hamendra for checking the issue.
    I am setting up breakpoints in WCEM, tab JAVA EE then from menu RUN->Toggle brekpoints and then debug configuration.
    the breakpoints are in several places in  handler class BITDetailviewVCHandler class including method  downloadBITData.
    this method I am calling from BitContentview.XHTML
    <wec:commandButton  id="bdtexcel" immediate="true" actionListener="#{cc.vch.DownloadBITData}" type="submit" value="#{i18n['invoices.ui.openitems.printSelected']}"/>
    When the BIT page is loading the control stops at the breakpoint.
    but it is not stopping there  when i click the 'Excel Download' button.
    How do I get the log file. I am very new to WCEM, please guide me.
    I tried to debug the UI using Google chrome. it is giving me the following error.
    POST https://<>/<>/<>/<>HomePage.jsf?wec-appid=<>MAINAPP6&wec-locale=en_US 500 (Internal Server Error)
    when I expand the node
    c.event.trigger:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:54
    c.event.trigger:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:54
    c.event.trigger:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:66
    (anonymous function):<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:30
    c.extend.each:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:24 c.fn.c.each:<>/<>/javax.faces.resource/sap/comp.theme/templates/jquery/lib/jquery-1.4.2.min.js.jsf:66 c.fn.extend.trigger:<>/<>/javax.faces.resource/<>dev/comp.theme/templates/jquery/js/commandButton.js.jsf:31
    com.sap.wec.commandButton.submitForm:<>/<>/main/<>HomePage.jsf?wec-appid=<>MAINAPP6&objectID=500000233&page=D61CFFF8E75D48A1B348F315D209EFF9&wec-locale=en_US:48 onclick
    Navigated to https://wsapdjd803.<>.ca:<>/<>/main/<>HomePage.jsf?wec-appid=<>MAINAPP6&wec-locale=en_US
    Seems to be it is failing somewhere commandButton-related JavaScript functions
    Thanks
    Subassish

  • How to stop the Flex application when user clicks on Cancel button from JS-confirm message?

    Hi All,
    I use the next code when a user clicks on a link:
    private function clickHandler():void
          ExternalInterface.call('confirm', 'Of course you want to go to the Adobe forums!');
          navigateToURL(new URLRequest('http://forums.adobe.com'), '_self');
    This will show up the javascript confimation box. But when the cancel-button is clicked, the user goes straightly to http://forums.adobe.com...
    How to stop Flex performing the next code when a user clicks on the Cancel button?
    Or, how to catch which button is clicked by a user in Flex?
    Thanks!

    I agree with Mr. Hall that using mx.controls.Alert in Flex may be a better route.
    Show the Alert like this:
    // show an alert with a question and yes and no choices
    Alert.show( "Would you like to go to the Adobe Forums?", "Question",
         Alert.YES | Alert.NO, this, closeHandler, null, Alert.YES );
    Then handle the response in the closeHandler() function:
    protected function closeHandler( closeEvent:CloseEvent ):void
    if( event.detail == Alert.YES )
         navigateToURL( new URLRequest('http://forums.adobe.com'), '_self' );
    else if( event.detail == Alert.NO )
         // they chose no
    The following documentation on Alerts may be helpful:
    http://www.flexafterdark.com/docs/ActionScript-Alert
    Let me know if that helps...
    Ben Edwards

  • When click 'write EPC' button, HTTP code:501 message occur.

    HTTP listener got response with response code: 501(Not Implemented)
    Message no. /AIN/IF020
    How can i solve this problem?
    Thank you,
    Nutida

    Hi Nutida.
    <b>501 Not Implemented</b> means
    The server does not support the functionality required to fulfill the request. This is the appropriate response when the server does not recognize the request method and is not capable of supporting it for any resource.
    can you explain little about your scenario
    Rgds,
    Vilish

  • Want to make an iview invisible on click of a button!!!

    Hi Experts,
    We've a requirement wherein we want an iview to be called but it should not be visible on the left hand side navigation pane.
    Actually, the iview has been assigned to a workset and is called as soon as the user clicks on the workset. Now after the ivew is called it appears on the left hand side navigation panel as well as since we are using a workset map iview within the workset the iview is visible in the content area as well.
    I want that after the iview is called and the content is displayed. On click of a button, I want that iview to become invisible and the control should go to the next iview.
    I know how to navigate from an iview to another iview but I don't know how to make the first iview invisible on click of a button.
    Kindly suggest how can I acheive this functionality?
    Regards,
    Anurag

    Hi Vinod,
    Thanks for the prompt reply.
    Yes., the new iview would be visible in the same window and the previous iview should not be present on the left hand side navigation panel.
    Currently, since the iview is a part of a workset, on  click of a button the user is navigated to the new iview but the previous iview is present on the navigation panel. Is there any way possible so that we can remove the previous iview from the left hand side detailed navigation panel when the user navigates to the new iview
    Actually, we have a workset map iview and so all the iviews assigned to the worksets are available as links on the screen. After the user navigates to the new iview the previous iview's link should become invisible from the content area.
    Is this possible to remove the previous iview's link from the content area and the navigation panel on the left hand side?
    Thanks in advance for your reply!!!
    Regards,
    Anurag

  • In mail 8.2 if I click the template button the CPU start running at 150% CPU and WindowServer arrive to 20 GB and more of memory

    hello, after upgrade to Yosemite I have a problem with Mail/CPU.
    if I create a new email message everything is ok, but if I click the button at the top right (show template) on the message window, the CPU running at 130-150% and the VirtualServer memory start increasing up you 20 GB and more.
    If I close and reopen Mail (without closing the mail message) the CPU return to 130-150% but if I send or delete the message the CPU return to the standard value
    If I don't click the template button on the new message window the CPU works correctly.
    This thing cause slowdowns and unexpected logout of my imac, I contacted applecare twice and they told me to create a new user (first) and reinstall a fresh operating system (second). I have done both but the problem is not solved.
    I have also tried this (without results): Guide: How to solve Yosemite memory leaks and CPU usage
    Do you have any solution for may problem?
    imac 5K - 16 GB ram
    Yosemite 10.10.2
    Mail 8.2
    Thanks in advance

    I have that same problem on all my yosemite Mac´s too and no solution yet exept deleting your own templates.
    But if you need to use the templates for your business like i do this is not an "good" option
    I use this workaround at the moment until theres a fix
    You can copy our own templates in an existing nativ template folder apple mail uses. (Google knows where the folders are)
    (Or you can use another Mail program or a slow Apple Mail )

  • I want to refresh my jsf page on the click of command button.

    Hi all,
    i m using JDEV 11.1.2.1.0
    i have created one jsf page with fragment i want to refresh my whole page on the click of command button which is present in fragment page.Besause i want to refresh some field but those are present in jsf page so i cant apply partial trigger because command button property in fragment page backing bean class and those attribute which i want to refresh its property in other class.
    thanks.
    Rafat

    i didnt get you from your content so i go with subject for giving your answer
    refreshing some of the fields
    BindingContainer bindings = getBindings();
    DCIteratorBinding dciter = (DCIteratorBinding)bindings.get("xIterator");
    ViewObject vo = dciter.getViewObject();
    Row row = vo.getCurrentRow();
    vo.executeQuery();or else drop execute operation as button to execute vo.
    to refresh a page
    partial trigger nice options.
    to performs instant refresh
    af:poll component
    so if you don mine give me some scenario using hrschema i may give a liitle try to my small brain :)

  • I just did an update to 6.0 on Lion. Now when I re-open Safari after closing it by clicking the red button  it re-opens to my home page, not all my previous tabs..  prior to the update it would re-open with all my previous tabs, which is what I want.

    I just did an update to Lion  10.7.4 with Safari  6.0. Now when I re-open Safari after closing it by clicking the red button,  it re-opens to just my home page, not to all my previous tabs as it did before the update.  I prefer having my old tabs re-open.  How can I fix this?

    I've had what I think is the same problem since the most recent software update.  I have Lion 10.7.4 and have updated to Safari 6.0.  The most noticeable difference is that where previously I had two boxes at the top of the Safari window (one to enter URL addresses, one for Google searches), there is now only one box for both functions.  I don't like that as well, but I can live with it.  However, since the most recent software update my "back button" only works about 5% of the time. Most of the time it is grayed out.  So I usually can't get back to previous pages using the back button.  Also, when I've clicked a link that opens a new window (for instance, going through the return process at Amazon, I clicked UPS locator and it opened a new window), where in the past I would have just clicked the red button after I had the information, the UPS locator window would have closed, and I would have been back at Amazon - now if I close the UPS locator window, all Safari windows close.  The Safari application doesn't close, but the Amazon window closes, I'm back to an empty screen, and I have to open a new Safari window and reenter everything.  I'm using a work-around of clicking on History and selecting the description of the window I want to get back too, but that only works part of the time. In the Amazon example, that's what I did once I had the UPS info, but even though I clicked the correct window description, it took me back to the beginning of the return process & I had to reenter all the info.  Of course, that info was easy to reenter, but if I'm in the middle of a complicated process, it's a big problem.  I've filed a bug report; I surely hope the Apple engineers are able to fix this.  I'm used to using the back button function a lot!

  • I have my iPhone locked and I don't want the music controls to pop up when I double click the home button. Does anyone know how to make it stop?

    I have my iPhone locked and I don't want the music controls to pop up when I double click the home button. Does anyone know how to make it stop?

    what exactly are you trying to accomplish here? i understand that you don't want to see the music status come up on your lock screen, but what are you trying to do by clicking your home button at all?

  • I want to do banners ,how can we do  when click the same button (next button)  it must show differen

    i want to do banners ,how can we do  when click the same button (next button)  it must show different images . cam any one help

    Check out my blog with samples on Edgehero.
    http://www.edgehero.com/articles/interactivity

  • I have created an interaction to show 7 groups and 7 clickable objects. Once all are click the Next Button is show. How can you make that work if you want to embeded the SWF just created but show a button in a master Captivate?

    In flash you can have a shell that has the navigation and some button in the shell are not activated until all clickable objects are clicked.  I am not a flash programmer but it was related to using the path of shell and the sub-project.
    Can anybody help me on that.
    I would like to create Captivate interaction that you can just embedded in a Shell captivate project.
    Do I need to set variables at both levels (Global variable. 

    Hello Lieve, That is the screen shot of my custom interactivity, when all labels are clicked the Continue button will be shown because there is a conditional validating if all Labels have now a value of 1. What I am trying to achieve is to create an interaction where where the continue button (an the back button would reside in another Captivate project. This way there is no reprograming required or use of share-actions.  Everytime we use a similar advanced action or a shared action we have to make sure the object name in the advanced actions or conditional actions are not the same.  I trying to make it a bit dump proof for somebody that does not know any thing about advanced  action and just reuse the label interaction in may projects.  (The only thing they would change would be the image and the content of the label.
    Do you thing I going in the right direction.  (As I said before I have custom javacript in Captivate 5.5) to unlock un button that was part of the LCMS ForceTen). I belive the word .this was part of the object path in the JavaScript.  Can we hide and show a Captivate button.
    I have embedded other Captivate animation in a Master Captivate but the objets were not talking to each other. (You can see a sample http://www.youtube.com/watch?v=Erm4_qdybiA&feature=youtube_gdata). In that sample the continue is always there and can be click anytime.  The 3 steps animation has been done as another project and embedded in my main captivate.  I would like to implement a solution where a my 7 labels have to be clicked in the subproject before showing and enabling the Continue button.
    I hope my explanation is clear enough.

  • I don't want to have to click the allow button every 3 seconds uploading video, how do I disable the "firefox prevented the page from reloading" when I've already put the site on my exceptions list?

    I begin uploading video to Facebook and a small window opens to show the progress bar but, the video stops uploading about every 5% when a notification comes from the top bar stating: "Firefox prevented the page from reloading" with an Allow button on the right. Regardless of clicking the allow button and putting Facebook in every exception list Firefox options seems to have or even turning pop up blockers off, that dam button keeps coming! How do I prevent or disable this?
    I am running windows XP media center edition SP2, and have Firefox v3.6.11

    You're welcome

Maybe you are looking for

  • Export Excel Table in .txt File with space delimited text in UNICODE Format

    Hi all I've a big unsolved problem: I would like to convert an Excel table with some laboratory data in it (descriptions as text, numbers, variables with some GREEK LETTERS, ...). The output should be a formatted text with a clear structure. A very g

  • Transferring Library and Podcast List from One Computer to Another

    IPOD Classic. I have set up Itunes on Compaq XP laptop and have my library and Podcast subcription list on it. NOw I have a new desktop Gateway with Vista and have downloaded the itunes program from the apple site. I desire to get everything from the

  • Adobe Flash Player for Samsung tablet?

    I recently purchased Samsung tablet. I need to take some courses that require Adobe Flash Player.  When I tried downloading the file I received an error message saying my device doesn't support the file.  I tried downloading the app with no luck.  Is

  • Throttle M650 Quarantine Notifications

    Hi, we have an M650 hosting the ISQuarantine. As a some of the Mailservers behind our AntiSpamSystem don't have LDAP and just send NDRs when mailboxes don't exist, the M-Series hosts many mailboxes that don't even exist. As notification in the mornin

  • Managing tag libraries

    This question was posted in response to the following article: http://help.adobe.com/en_US/dreamweaver/cs/using/WSc78c5058ca073340dcda9110b1f693f21-7b66a .html