CRM_DNO_MONITOR -  way to customise  display apart from 'change layout' ?

Hi friends,
In the transaction CRM_DNO_MONITOR, there is a standard screen offering a few selection parameters.
Based on what you choose, the next screen is displayed with all those relevant messages.
There is a "Change Layout Button" as with many SAP reports. One can choose to include a further fields to get displayed on the report screen.
My questions are:
(1) Is there a way to include more fields than suggested by the "Change Layout" dialog box? For instance, I was keen to know why the following fields were not offered for selection:
           a) Support Team
           b) Subject (field name - LISTCODE)
(2) Is there a way to easily include Z fields as part of the Support Message (standard Transaction Type SLFN) and use such Z fields in display ?
(3) Is there any other transaction, apart from CRM_DNO_MONITOR that offers even better control on filtering/ sorting messages ?
Any suggestions and workarounds would be gratefuly acknowedged.
Regards,
Srini

Dear Alagammai,
Thanks for your time.
Being a person who started from 3.1 days, yes DNOTIFWL was my first port of call
However, what I realised was that if you set a notification to 'Completed', it does not automatically set the Message Status to 'Confirmed'. Therefore, the status values as seen by Testers from within STWB_WORK does not reflect the updated position.
[This|https://websmp103.sap-ag.de/~sapdownload/011000358700001197002005E/Addtional_Information.pdf] document - once proposed by Raguraman C in reply to another member [thread |Notification Vs transaction type;also does not exactly answer the utility served by DNOTIFWL.
At the moment, ii is not an option I have since there is no ABAP talent meant to serve SolMan stream. i is inadequate and iii doesn't help either, unfortunately.
Thanks for your time though. If you ever find a better solution, please update in this thread.
Regards,
Srini
Format changed; Edited by: Srinivasan Radhakrishnan on Apr 24, 2008 1:31 PM

Similar Messages

  • Time Machine Beautiful Background - any way to use it apart from TM

    The picture of moving universe as the background of TM processes is beautiful. Is there any way to use it apart from TM (screen saver, desktop image) ?

    Not easily. It's not a single display. The "moving parts" are separate.
    The basic background is at:
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Resources/vortex.p ng
    You could select and right-click it, and select it as your desktop picture, but it won't move.
    Or display it with Preview, save it as a jpg, import it into iPhoto, make an album containing it, then select the album as your screen saver.

  • Is there a way to keep Bookmark Order from changing as part of sync?

    Since I added Aurora on my tablet and my phone, and set up sync, apparently those bookmarks toolbar are in a different order than my ones on my desktop. Every time I start my desktop versions, the toolbars are in some random order (the most visited all the way to the right, list order changed). Now I generally put my items in order of use, and not in alphabetical. Is there anyway that I make it so that my sync with my mobile devices will not adjust the order of my bookmark sync?

    Sorry, this is apparently a bug in Firefox Aurora for Android. I'll make sure the developers know about it and hopefully it will be fixed soon.

  • Is there a change in the way Firefox 4 displays fonts from CSS?

    This site is coded using standard CSS and had Arial Narrow as first font choice for certain elements. In Firefox 4 / Windows 7 those instances are now defaulting to secondary font - Arial or to the default font Times Roman. EVERY other browser including past Firefox have displayed Arial Narrow properly - assuming the user has it in their system fonts - which is the vast majority of visitors. NEED a fix for this!

    This worked for me:
    font-family: Arial;
    font-stretch: condensed;

  • How do I keep the "display time" from changing when I change the "appear after" time?

    Hello,
    I am having the the problem that the "Display For" time for my text captions changes from "Rest of Slide" to "Specific Time" when I drag the "Appear After" time in the time line.
    In other words, when I try to change when a text caption appears by dragging its Appear After point on the timeline from the very the start of the slide to e.g. 3 seconds after the slide starts, it automatically changes when it "disappears"... By that I mean the Display For time in "Timing" switches by itself from "Rest of Slide" to "Specific Time"...
    Can anyone help?
    Thank you!
    Ryan

    Hi there
    It's a feature!
    Aside from making Ctrl+E your new best friend, the best you can do is report to Adobe and hope it gets fixed in a future release.
    Click here to file a bug report
    Cheers... Rick

  • Is there a way to keep my child from changing the passcode I set up on his iPhone4? If not, how can I gain access to his phone if he refuses to tell me the passcode?

    He has an iPhone 4 running iOS 7.1.2. When setting up restrictions on his phone, there is no option to disable changing the passcode. He is very deceitful and has changed the passcode on it before, which resulted in me having to do a factory restore. I want to be able to see what he's looking at and doing on it.

    I copied the iTunes file from the external drive and it's in both places.  I thought all I would need is the iTunes program (which I downloaded to new computer) and my iTunes library file.  There must be something else that's missing.  My iTunes library looks the same on the new computer as it does when I open it on the external drive.  If I click on an iTunes library song from my new computer, it will only play if I have the external drive plugged in.
    My back-up drive is a mess.  I have multiple copies of music, video, photo, and document files and I don't know how that happened. ={  Obviously, I don't know how to back up stuff properly and there are back-up files extending over a 6- to 8-year period.  I think all I did was just drag and drop the main folders from the back-up drive to the same main folders on the C: drive.  Also (and I'm kind of fuzzy on this) Windows used to automatically save music files in a folder within my document files (which makes no sense to me).  As my Jewish friends would say, "Oy Vey!" 

  • How to start TreeCellEditor apart from default behaviors

    Hi,
    I'm trying to find the way to start TreeCellEditor apart from default behaviors which are triple mouse click, click-pause-click and F2 (in Windows).
    The only way I found for starting editor in tree is JTree.startEditingAtPath. However the problem is I designed to separate the action(model) from the tree (view). So In my action class, it knows only TreeModel but not JTree.
    How could I set my action class to tell the JTree to start editor? Is there any approach to do so but do not break my design?
    Thanks in advance.

    I had to do a custom JTree to get my editor to work the way you wanted.
    I needed mine to allow a double mouse click. Then when in edit mode have the text default to a 'select all'.
    All of the 'Rollup' items are custom objects but this should give you an idea of what to do.
    class CustomUI extends BasicTreeUI
        protected boolean startEditing(TreePath path, MouseEvent event) {
            // default to standard behavior
            boolean result = super.startEditing(path, event);
            // start editing this node?
            if (result) {
                // start peeling the object to get a handle to the editor
                RollupTree rollupTree = (RollupTree) event.getSource();
                RollupTreeEditor editor = (RollupTreeEditor) rollupTree.getCellEditor();
                // set Icon if node a trader
                RollupNode node = (RollupNode) rollupTree.getSelectionPath().getLastPathComponent();
                if (node.isTrader()) {
                    editor.setEditorIcon(IconLoader.getIcon("Trader.png"));
                JTextField textField = editor.getEditor();
                // they want to default so that the edit text
                // is in selected mode when they first start to edit the field
                textField.selectAll();
            return result;
        }I also did a custom default editor which looks like:
    class RollupTreeEditor extends DefaultTreeCellEditor
        public RollupTreeEditor(final JTree tree, final RollupTreeCellRenderer renderer) {
            super(tree, renderer);
         * Allow people to toggle the icon when in edit mode
         * @param editor Icon
        public void setEditorIcon(Icon editor) {
            editingIcon = editor;
         * If the <code>realEditor</code> returns true to this
         * message, <code>prepareForEditing</code>
         * is messaged and true is returned.
         * @param event EventObject
         * @return boolean
        public boolean isCellEditable(EventObject event) {
            if (event instanceof MouseEvent) {
                // double click for edit
                if (((MouseEvent) event).getClickCount() == 2) {
                    return true;
            return false;
        public DefaultTextField getEditor() {
            return (DefaultTextField)this.editingComponent;
    }Then in my custom JTree I set these up like...
            // turn on tooltips
            ToolTipManager.sharedInstance().registerComponent(this);
            // used by two setters so create reference
            RollupTreeCellRenderer renderer = new RollupTreeCellRenderer();
            // customizing the icons for the tree
            // setting the folder icons
            // renderer.setOpenIcon(IconLoader.getIcon("Open.gif"));
            // renderer.setClosedIcon(IconLoader.getIcon("Folder.gif"));
            renderer.setLeafIcon(null); // drop the icon
            // add renderer to highlight Inventory nodes with Red or Blue text
            setCellRenderer(renderer);
            // set the editor
            setCellEditor(new RollupTreeEditor(this, renderer));
            // set UI to over ride editing event method
            setUI(new CustomUI());A nice touch is to add a mouse listener so if the user clicks out of the editor it cancels the edit mode. So here is the simple call:
            tree.addMouseListener(new MouseAdapter()
                public void mouseClicked(MouseEvent e) {
                    // get handle to tree
                    RollupTree tree = (RollupTree) e.getSource();
                    // exit editor if in edit mode
                    tree.getCellEditor().stopCellEditing();
                public void mouseReleased(MouseEvent e) {
                    if (e.isPopupTrigger()) {
                        menu.show(e.getComponent(), e.getX(), e.getY());
            });Does this help answer your question?

  • Change the way information is displayed from SQL query in Excel

    Hi,
    I'm trying to set up a spreadsheet that displays information directly from our SQL database using the Microsoft Query Wizard.  I have a very basic understanding on how to do this, so I can create a spreadsheet that gives me most of the information I
    want, but I would like to be able to manipulate the data slightly.
    The main thing I would like to do is be able to make some of the results more user-friendly in the way they're displayed.
    One of the fields is the status of the product (Normal, deleted, discontinued, etc.).  The information is currently displayed as a numeric value between 0-4.
    Is there a way that I can change the display to the user so that they see the actual status in words, "Deleted, Normal, Discontinued" in place of, or next to the numeric value?
    Hope all this makes sense.
    Thanks,
    Scott

    One way is using excel worksheet function CHOOSE.You can add a column after numeric data and put above formula.Pls refer offline help for syntax.
    Another way is .....I suppose ..... in SQL there may be SELECT CASE/SWITCH STATMENT which you can use.
    Best Regards,
    Asadulla Javed, Kolkata
    Please do not forget to click “Vote as Helpful” if any post helps you and
    "Mark as Answer”if it solves the issue.

  • Is there anyway I can use my iPod Touch serial number or Apple ID to trace and find back my iPod Touch? Cause I lost it recently(as you know iPod Touch can only go online if there is WiFi). is there any other ways too, apart from contacting the police?

    Is there anyway I can use my iPod Touch serial number or Apple ID to trace and find back my iPod Touch? Cause I lost it recently(as you know iPod Touch can only go online if there is WiFi). is there any other ways too, apart from contacting the police?Is there anyway I can use my iPod Touch serial number or Apple ID to trace and find back my iPod Touch? Cause I lost it recently(as you know iPod Touch can only go online if there is WiFi). is there any other ways too, apart from contacting the police?

    No.
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Methods for Mass Change to Price Condition Records apart from LSMW.

    Hi all,
    Apart from using LSMW, pls let me know if there is any other best way to do Mass Change to 1000 Price Records.
    Rgds,

    try using tcode scat or a program to perform BDC or try with tcode VK32.
    Regards,
    Raghu.

  • Is there a way to open Excell file from the server and display in the UI and save it back on to the

    Hello there,
    Is there a way to open Excell file from the server and display in the UI and save it back on to the server? (like showing xell file as a datagrid - add rows, columns etc.)

    Hi Mike,
    Welcome you to the forum.
    You may try:
    SELECT * FROM MyDBNameHere.dbo.OUSR T0
    Thanks,
    Gordon

  • I am using MS XP Professional Ver. 2002 Service Pack 3. I have created a Limited User Account for my nephew because he tends to experiment and screw up the computer quite often. I would like to know if there is a way to prevent him from changing any setti

    I am the System Administrator of my computer. I have managed to limit most of what my nephew can do via general Windows functions. However, I need to prevent him from changing his Firefox Options (listed under the Tools menu). He has already changed items that leave my computer vulnerable and although I've explained to him that he should not change anything in the Options area, he continues to do it. If there is not a way for me to prevent him from changing anything in Options, then I have no alternative than to prevent him from using the computer at all. I hope it doesn't come to that.

    ''"...although I've explained to him that he should not change anything in the Options area, he continues to do it. If there is not a way for me to prevent him from changing anything in Options, then I have no alternative than to prevent him from using the computer at all."''
    Maybe taking away his privileges will could teach him a valuable lesson------respect other people's property!

  • Is there a way to prevent users from changing the Advanced, Connection, Settings Tab?

    I need to stop network users from changing the proxy settings to avoid the firewall. Is there any way to disable or prevent them from getting to the advanced, connections tab, and changing the settings for the proxy?

    You can lock the corresponding prefs, then users won't be able to change the settings.
    See http://kb.mozillazine.org/Locking_preferences
    See also http://kb.mozillazine.org/about%3Aconfig_entries

  • Is there any way to prevent web.xml from any change ?

    hi all,
    we have a filter in web.xml. Now we want to prevent it from any change in future. I mean after making a war(EAR) no one can change the filter in web.xml. if he chaged it then he will not be able to re deploy the application.Right now it is in web.xml so one can easily change it and then he can redeploy the application.
    Is there any way to prevent web.xml from any change after making EAR(WAR)?
    One can easily make a change in web.xml and redeploy the application to get the result. Now we want to restrict the web.xml as java class for any change after making EAR(or WAR).
    Could some one help me to do this?
    thanks,
    dinesh

    I think you could use some third party software to lock the folder like FolderLock, just make sure others ppl cannot access your file should be fined.
    This is my stupid solution only,cheers.

  • Is there any way to prevent web.xml from any change like java class?

    hi all,
    Is there any way to prevent web.xml from any change after making EAR(WAR)?
    One can easily make a change in web.xml and redeploy the application to get the result. Now we want to restrict the web.xml as java class for any change after making EAR(or WAR).
    Could some one help me to do this?
    thanks,
    dinesh

    hi,
    Not at development level. We want it after deploying the application on server .
    We want to create it (web.xml) at tomcat startup (or in any other web/app server ) before loading any context.
    Is there any way to run a simple java class(not servlet) on tomcat startup(before initializing the contexts)?
    Message was edited by:
    DP_java
    Message was edited by:
    DP_java

Maybe you are looking for

  • Saving records to a flat file

    Dearest experts, I do need your kindest assistance. I have over 15 fieldnames from 11 tables. Some of these fieldnames are mandatory fieldnames and others are optional. The users are instructed to enter 'NA' to any to any fieldname that doesn't have

  • Batch Loader File Name - Replace/Append?

    We employ a custom/smart merge in FDM that automatically removes previously loaded intersections in HFM 11.1.2.1 by appending NODATA lines at the end of our load file based on the information included in the previous load file.  In the FDM configurat

  • War incompabilities with SOA 7 Platform edition?

    Hi, I am beggining to try Sun One App server 7 Platform edition. I developed a small web application to try database connections with pool and without pool. So I created the application in Netbeans to connect to an AS400 and worked OK with Tomcat. Al

  • Front Row No updating Itunes

    I have a strange problem in Front Row and ITunes. When I watch a new video in from my library in Front Row the little blue ball showing a new items goes away but when I open ITunes it's still there. If I go back in to Front Row it's gone. I have had

  • A question on bulk collect

    My Version Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit ProductionPls see the code below declare type empno_arr_type is table of int; empno_arr empno_arr_type; begin select empno  into empno_arr from emp; end; Output PLS-00642: l