UWL -- Need to add Thrash(Delete) Button

Hi all,
We are maintaing two tabs(Alerts and Notifications) in UWL and our clients wants to add "Delete" button at last of each lineitem(Subject,from,sent,priority,attachemtns), so client wants to delete unnessary notifications or alerts by pressing "Delete" button. I am not able to find any document how to maintain Icons in the Universal worklist. Please guide me if anybody come across thiw type of requirement or atleast let me know whether it can feasible in UWL.
Thanks in advance
Regards,
Preetham

Hi preetham,
I am facing same issue.
Could you please describe?
Thanks

Similar Messages

  • Help, need to add a delete button to my application?

    i have a little application that you can add numbers and friends email too
    i would like to add a minus selection/entry button?
    do any of you guys have any ideas?
    stop();
    //create a new sql connection
    var conn:SQLConnection= new SQLConnection();
    //add an event handeler for the open event
    conn.addEventListener(SQLEvent.OPEN, openHandler);
    //create the database if it doesn't exist, otherwise just opens it
    var dbFile:File =File.applicationDirectory.resolvePath ("exemplu.db");
    conn.openAsync(dbFile);
    function openHandler(event:SQLEvent):void {
    //create a new sql statement
    var sql:SQLStatement=new SQLStatement();
    //set the statement to connect to our database
    sql.sqlConnection=conn;
    //parse the sql command that creates the table if it doesn't exist
    sql.text= "CREATE TABLE IF NOT EXISTS contacte(" +
    "id INTEGER PRIMARY KEY AUTOINCREMENT, " +
    "nume TEXT, " +
    "telefon INTEGER)";
    //add a new event listener to the sql when it completes creating the table
    sql.addEventListener(SQLEvent.RESULT,retrieveData);
    //call the execute function to execute our statement
    sql.execute();
    function retrieveData(event:SQLEvent = null):void {
    //create a new sql statemant
    var sql:SQLStatement = new SQLStatement();
    sql.sqlConnection=conn;
    //this sql command retrieves all the fields from our
    //table in the database and orders it by name
    sql.text =  "SELECT id, nume, " +
    "telefon " +
    "FROM contacte ORDER BY nume";
    //add a new event listener if there is data
    //to display it
    sql.addEventListener(SQLEvent.RESULT, selectHandler);
    sql.execute();
    function selectHandler(event:SQLEvent):void {
    //first we clear our list
    lister.removeAll();
    //the we create a result variable that holds
    //all our contacts
    var result:SQLResult=event.target.getResult();
    //we check if results is not empty
    if (result!=null&&result.data!=null) {
    //and we add a new item to our list for
    //each contact in our database
    for (var i:Number = 0; i < result.data.length; i++) {
    lister.addItem ({ label:result.data[i].nume + "-" +result.data[i].telefon
    , nr:result.data[i].id });
    plus.addEventListener(MouseEvent.CLICK,adder);
    xu.addEventListener(MouseEvent.CLICK,closeapp);
    back.addEventListener(MouseEvent.MOUSE_DOWN,drag);
    //because my buttons are not real buttons
    //but movieclips i need to set the
    //buttonMode property to true
    plus.buttonMode=true;
    xu.buttonMode=true;
    function adder(e:MouseEvent):void{
    //remove the eventlistener and move to the
    //next frame
    plus.removeEventListener(MouseEvent.CLICK,adder);
    nextFrame();
    function closeapp(e:MouseEvent):void {
    //close the application
    NativeApplication.nativeApplication.exit();
    function drag(e:MouseEvent):void {
    //drag the application
    this.stage.nativeWindow.startMove();
    this is on the second key frame-
    //this line restricts the user input
    //to just numbers in the phone input box
    //add a new event listener to our plus button
    plus.addEventListener(MouseEvent.CLICK,adder2);
    function adder2(e:MouseEvent):void {
    //create a new sql statement variable
    var sql:SQLStatement=new SQLStatement();
    sql.sqlConnection=conn;
    //the next sql command creates a new entry
    //in the table contacte from our database
    sql.text =  "INSERT INTO contacte(nume, " +
    "telefon)" +
    "VALUES(@nume, " +
    "@telefon)";
    //to insert variables into sql commnads
    //we use the parameters definition
    sql.parameters["@nume"]=nume.text;
    sql.parameters["@telefon"]=tel.text;
    //add a new event listener that calls the
    //function that retrieves the data
    sql.addEventListener(SQLEvent.RESULT,retrieveData);
    sql.execute();
    //go to frame no. 1
    prevFrame();
    //remove the eventlistener from our plus button
    plus.removeEventListener(MouseEvent.CLICK,adder2);

    use:
    minus_btn.addEventListener(Event.MouseEvent,CLICK, clear)
    function clear(e:MouseEvent){
    var sql:SQLStatement = new SQLStatement();
    sql.sqlConnection = conn;
    var s:String = "DELETE from contacte WHERE nume= :numeparam AND telefon=:telefonparam";
    sql.text = s;
    sql.parameters[":numeparam"] = whatever;
    sql.parameters[":telefonparam"] = whatever else;
    //add listeners if you want
    sql.execute();

  • Add a delete button

    Hi all,
    I'm trying to add a delete button on the search page in the Content server (Search tab) but I don't know which service and template I must edit. Have anybody an idea?
    Thanks in advance!

    Hi,
    Well I would just be concerned with a delete button on the search page simply because it's a very easy to use delete button. When you delete, there's a good chance you're loosing content permenetly and if someone takes the time to check something in to a content managment system that person probably felt there was some value at some time for that content.
    Deleting just scares me a bit, though it also has it's purpose as well. If at all possible though I'd rather expire content, espesially if it's something you may need later. You could also archive it off. Every organization is different though, it's a very subjective decision.
    From you reply though, I do have one word of caution; You don't want to delete directly from the database. You absolutly want to call a service for that. There are a number of tables that need to be updated when a delete happens in addition to a variety of application events that fire including search indexing.
    I think John(JRS) is right that you'll probably need to loop through all the revisions and call the delete service for each one. The repository manager is able to delete all revisions of a document with one click though, so there may be an undocumented "super" delete service hanging out there as well.
    What I might do make the "Delete" button an expire button and just set the expiration date using an update service call. From there, you could the remove expired content using archiver jobs, perhaps as a monthly administrative process. There's also a way to set up a trash can delete, so the content can be brought back.
    Thanks
    David

  • Captivate 4 - I need to add a Email Button that reads Submit

    I looked in the Help feature for Captivate 4 and couldn't find my answer.
    So my predecessor put a button on the quiz results page that would allow people to submit their quiz results to the LMS. I am unable to recreate this button. When I look at the button on projects she created, it is showing as an "email button". I have no clue how to add an "email button". I also can't copy/paste the button from one project to another. Nor can I copy/paste the slide from one project to another.
    Anyone have a clue how I add a "email button" from scratch?
    Here is a screen shot that partially shows the quiz results page, and the properties window for the button. THANK YOU for all the help!!!!!

    Hi Rick, thanks for the response. I appreciate it!
    So the issue isn't what the buttons are doing on the actual quiz slides, it's needing to add an Email button on the slide that gives the final scoring information (the reporting slide?). The screen shot you have shown me, isn't that the submit button on the quiz slides, not the final scoring slide?
    As you can see here, I have the Submit button on quiz slides:
    When I look at the properties of this Submit button, it shows as a Text button, not an Email button like the Submit button on the reporting slide is.
    Now I know you are probably thinking I should just click the drop down and select "email", but that selection is not there:
    Here are screen shots of my Quiz preferences and Reporting preferences:
    What I need to create is a Submit button on the reporting slide for the quiz that is an Email button. Like this one:
    When I look at the properties of this Submit button, it is an Email button. Notice how the tab says "Email Button" and not "Submit button" like the other properties windows for the other "Submit" buttons.
    This is where I'm stuck. When I go to Captivate projects that have a reporting page with a Submit button, I can't copy/paste the button. I tried to do a right click and I don't have a copy option:
    When I higlight Submit and go to Edit, I don't see the option to copy the button there either.
    So I figured I would copy the slide to the presentation that needs this Submit/Email button and I can't copy/paste the slide either. When I do a right click on the slide, there isn't a copy option:
    When I go to to Edit to try to copy the slide, the option isn't there either:
    I am really thinking that the Submit button the final reporting slide for the quiz is a Widget of some sort. Hum.
    Thanks! Karen

  • I need to add and delete individuals.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/867558]]</blockquote>
    I need to add and delete individuals. How do I do that?

    Individual what?

  • Without data in textfield and datagrid if i click add or delete button it should through msgbox

    hi friends ,,
                     i am new to flex i am doing a application in flex4,i need help from this, i have two text inputs and one datagrid, and one add button and delete button.
    my requirement is without data if i click add or delete it should through error box how to do that,
    In 3 condtition it should  thorugh error or msg box;
    conditions are,
                      1.both textinputs and datagrid----> click (add or delete)--->error or msg box
                       2.both textinputs dont have value and datagrid have values----> click (add or delete)--->error or msg box
                       3..both textinputs  have value and datagrid  dont have values----> click (add or delete)--->error or msg box
    any suggession or snippet code are welcome
    Thanks in advance,
    B.venkatesan.

    Hi,
    Please try following code:
    <?xml version="1.0" encoding="utf-8"?><s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="
    library://ns.adobe.com/flex/spark" xmlns:mx="
    library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
     <fx:Declarations>
     <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
     <fx:Script>
    <![CDATA[
     import mx.collections.ArrayCollection; 
    import mx.controls.Alert; 
    public function check():void{ 
    if(input1.text=="" || input2.text=="" || Dg1.dataProvider==""){
    Alert.show(
    "Enter the text boxes and DataGrid.");}
    else{Alert.show(
    "Do not Enter the text boxes DataGrid."); 
    ]]>
    </fx:Script>
     <s:TextInput x="77" y="107" id="input1"/>
     <s:TextInput x="254" y="107" id="input2"/>
     <mx:DataGrid x="80" y="150" id="Dg1">
     <mx:ArrayCollection>
     </mx:ArrayCollection>
     </mx:DataGrid>
     <s:Button x="95" y="329" label="Add" click="check()" />
     <s:Button x="290" y="329" label="Delete" click="check()"/></s:Application>
    I am keeping Arraycollection empty for example.Please try when you provide data to Arraycollection.
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • How to add the delete button

    Hello Guru's and Experts.
    I am working on a change request , the change request is as follows
    Once a cost simulation is run for a maintenance item and the data transferred to BI, it cannot be deleted from BI, only overwritten with an updated cost simulation. In the instance where the such items are no longer required to be included in the simulation, it must be made possible to delete the simulation costs in BI.
    The current design in my project significantly increases the effort required to identify unwanted cost simulations and greatly increases the potential for incorrect data to be used in Budgeting and forecasting.
    My question is how to add the delete functionality in the report. is it acheavable through the portal or WAD,
    iam new to SAP BI , if possible can anyone kindly suggest me the steps to do this functionality.
    Appreciate your quick response..
    Thanks
    Ravi.

    Hi Guru
    Thanks for your valuable information.
    We got the requirment changed now from the users , the delete button should display in the report, i mean in protal, Now the user wants to delete with the selection criteria, for example, once the user hits the row in the report, that means if he selects the Main work center, and selects the delete button , he wants all the data related to that main work center to be deleted.  and another senario is what ever row the user selects  the characteristics in the row, for example, if the user select  for any row, i mean it can be any cost center or fiscal year, maintaiance item, cost elements, ..etc.  
    Once the user  selects the row and hit the delete button,  and he wants to hit the save save button in the report to make sure it deleted, the other way around , if the dont want to hit save, then he wants the data to be in the report.
    In the above  scenario's  can  you please suggest me with the steps how can we acheive it.
    Please reply back if you need any other info., Apprieciate your quick response. its very urgent requirment which we have to start...
    sorry to bother u..
    Thanks
    Ravi.

  • Examples of Add and Delete buttons in Forms

    Hello, I have group project and we are having a hard time finding examples of how to add and delete records.
    We have tried for the add:
    INSERT INTO order_line VALUES
    (:orders.o_id,
    :order_line.inv_id,
    :order_line.ol_quantity);
    COMMIT;
    And this for the Delete:
    DELETE FROM order_line      WHERE
    o_id = :orders.o_id
    AND inv_id = :order_line.inv_id;
    COMMIT:
    We are just looking for a generic example of how the code should look. Please ignore any errors I may have typed I copied it from a print off.

    Please ask this question in the Forms discussion area instead of the Database discussion area.
    Thanks.

  • How to add a delete button on each row of the table.

    i create a table with a list , and i add a new column.
    and then i drag a delete botton from the list operation to the column.
    when i create several rows. and click any delete botton of the new created rows. all the new created rows will be deleted.
    rows that already exist when the page render are not influenced.and when i click these rows' delete botton,
    just the current row will be delete.
    that's because when i click the new created rows' delete botton,all the new created botton in this column will automatically be clicked.
    i think adf consider all the delete botton are the same one.
    is it the table bug? please tell me how to resolve this problem. thanks.
    Edited by: 917391 on 2012-3-21 下午6:53
    Edited by: 917391 on 2012-3-21 下午10:07
    Edited by: 917391 on 2012-3-21 下午10:16

    i don't use the adf BC, so it is not a VO. it's just a service method that return a list.
    and i create the datacontrol and drag it to the page.
    Edited by: 917391 on 2012-3-21 下午10:26

  • Delete button added later.

    I have created a number of page pairs in my application using the "form on a table with report" method. Initially I asked for insert and update buttons but no delete buttons because I wanted to protect our test data. I now need to add the delete buttons. Sometimes they work and sometimes they do not. I have compared everything I can - please help me. Trudy.
    My delete button definition is as follows:
    Sequence = 20
    Button Name = DELETE
    Label = Delete
    Region is correct
    Button Position = Region Template Position #DELETE#
    Button Style = Template Based Button
    Button Template = Button
    Database Action = SQL DELETE action
    Condition Type = Value of Item in Expression 1 Is NOT NULL (or != Zero)
    Expression 1 = Pnn_NAME_ID where nn is the same page number
    Target = URL
    URL Target = javascript:confirmDelete(htmldb_delete_message,'DELETE');
    The delete buttons that work do not have an associated branch.

    *** MORE SPECIFIC PROBLEM DEFINITION
    The Delete button works when I change my definition as follows:
    Target = '- No Target -'
    URL Target = unavailable
    *** Please explain how I can to do the confirm delete popup.
    My delete button definition was as follows and it works OK for some other tables:
    Sequence = 20
    Button Name = DELETE
    Label = Delete
    Region is correct
    Button Position = Region Template Position #DELETE#
    Button Style = Template Based Button
    Button Template = Button
    Database Action = SQL DELETE action
    Condition Type = Value of Item in Expression 1 Is NOT NULL (or != Zero)
    Expression 1 = Pnn_NAME_ID where nn is the same page number
    Target = URL
    URL Target = javascript:confirmDelete(htmldb_delete_message,'DELETE');

  • Need to add custom button (xml) in VA05

    I need to add a custom button (xml) to report output layout of VA05. Even the corrsponding functionality needs to be written for this button. Without changing the SAP standard code using Access keys, is there any other functionality in which we can add the button and write the code.
    Please send me detail steps in this regard.

    Hi Ramesh,
    As i knoew in case of va05 there is no badi or exit available to achieve this functionality.There is a provision to add some fields in report out put.I hope this is possible through a custom one.
    Regards,
    Madhu

  • ADF data table with Add,Edit,Delete functionality

    Hi Experts,
    I have a adf page where I need to implement add,edit,delete button. The table was bind with the Webservice obj call.I need to have one single button as "Add" which should add an inline row at end of the table.When I ll double click on the row I should have the in-line edit of the row.And for delete functionality,there should be delete button on each row which should delete the correspond row.Please help me to solve my problem.Please share the code to meif u ve any.my email: [email protected]
    Thanx
    Aswini

    Can you check the below links
    http://andrejusb.blogspot.com/2010/05/crud-operations-in-oracle-adf-11g-table.html
    http://andrejusb.blogspot.com/2009/11/crud-operations-in-jdeveloperadf-11g-r1.html
    ~Abhijit

  • Add an excel button to a standard iview (MSS)

    Hi all,
    I'm working with MSS 6.0 EHP2.
    I need to add an excel button for downloading the content from a table of a standard scenario of MSS.
    Do you know if there is a way to do it??
    I'm talking about ECM (compensation) scenarios.
    Thanks in advance.
               Juanjo

    I don't know where you are getting these tutorials, but they sound like they are very, very old. Along with not using AS2, you shouldn't be using scenes. Scenes are a left over method from the very earliest versions of Flash.
    The objective in preloading content is that you are loading in new content before the user needs it. If you are doing this loading well, the user will not know that the operation went on. Any sort of loading screen should only be seen if the user calls for content that has not loaded yet. Your design objective should be to show something to the user as quickly as possible when the user hits your site. Load in your additional content and then let the user experience your site.
    If you create a button on the stage in the same frame as your preloader object and name that button "enter_btn", then the code that you've shown above should do what you want.
    I haven't used AS2 in many years. I don't remember a lot about its syntax, but from what I read of your code, it looks like you are measuring the loading of the file that contains the preloader object. This methodology can lead to a problem. When Flash begins working, a certain amount of the movie has to load before anything is seen on the screen. This means that the loading telltale that you have set up in your code will never show "0%", and probably not even "50%".
    Here's a good tutorial that uses AS3 and fully explains the code and how the loader operates: http://flashexplained.com/preloaders/basic-loading-bar-preloader/
    Here's another: http://www.republicofcode.com/tutorials/flash/as3preloader/
    And here's a third: http://flashexplained.com/preloaders/making-the-complete-internal-preloader-in-flash-8-wit h-a-loading-bar-and-mathematical-preloaders/
    Take a look at those examples and compare and contrast their methods.

  • Delete buttons in report region & javascript

    I managed to add a delete button on each line of my report region using 'Column link' with
    text <img src="#IMAGE_PREFIX#delete.gif" border="0" alt="Verwijderen Icon">
    url f?p=&APP_ID.:504:#APP_SESSION#:TEST:::P504_DELETE_ID_LCNT:#ID#
    and some extra coding.
    problem is : i'd like to add a javascript:confirmDelete function
    In a 'Normal' button you can add it via URL Target.
    Can anyone help me ?

    This seems to be the way to add javascript to the url-code
    f?p=&APP_ID.:504:#APP_SESSION#:TEST:::P504_DELETE_ID_LCNT:#ID#" onClick="javascript:confirmDelete('Are you sure....')
    The only problem now is to add some kind of code to javascript to cancel further processing??????
    return true or false has no effect.
    I tried to set the REQUEST-value but i can't find the solution.
    Please help.

  • Table delete button doesn't work with Virtual Forms

    I applied all of Winston Prakash's tips to my project table (http://blogs.sun.com/winston/category/Creator), but my table is not the only component in the page, so I had to use Virtual forms.
    When I add the "Delete" button, i have to put it on a Virtual Form. I followed the steps on the multi selection table and the "Adding a button panel to the table component header" post, but when I select a row, the JavaScript works well (the row changes to yellow)... but the action code gets a :
    getTableRowGroup1().getSelectedRowsCount()==0
    and getTableRowGroup1().getSelectedRowKeys().length==0.
    I tried almost everything with the forms... I don't know what I missed...

    It works for me. Is it the Delete button in the Toolbar that doesn't work, or the Delete key in the keyboard, or what? Doesn't any other way of deleting a message work either (e.g. Edit > Delete)?

Maybe you are looking for

  • Help with Disk Utility error message.

    I just ran the repair utility via the installation disk, and at first I got this: Checking HFS Plus Volume Invalid node structure Invalid node structure Volume Check Failed Error: The underlying task reported failure on exit 1 HFS Volume 1 volume cou

  • File Adapter errors!!!

    I am FTPing a file from a system within our firewall through XI. In Message monitoring the first part of the message (from unix to XI) fails after three retries.. But then somehow before the first retry attempt is kicked off, inbound message gets tri

  • Local auto reaction method no longer linked to MTE

    Strange one.... all my local autoreaction methods have disappeared from from my MTE properties in RZ20. The methods still exist in RZ21 and the 'where used' reports that it is still inked to that MTE. Have checked that the mehtod is released for vari

  • Blue lines around text

    I have written text and blue lines appear around the text. Also i cannot mark words for the wordlist in this text. How can i make normal text from this part?

  • RFKORD50 with multiple line items

    Hi, It seems RFKORD50 prints only one line item in windows MAIN text element 521. However my requirement is to display all of them. In my release /4.70*200/ only sapscript is available, so there is no Smartforms Is there a way to output all of them w