Favorites Delete button in WAD

Hi,
I am using the standard template 0ANALYSIS_Pattern for my queries.
In this template, I have the Open and Save As buttons for the favorites.
However, where is the "Delete" button in case the user wants to delete a favorite?
Thanks for your fast reply.
Chris

Thanks Josh
But I want to display a "delete" button near the Open and Save As buttons in the web template which will allows the users to select their favorites for deletion.
Do you know?
chris

Similar Messages

  • How do I get the red delete button to appear when editing contacts in my favorites list. (iphone5)

    How do I get the red delete button to appear when editing contactos in my favorites list?

    iPhone User Guide (For iOS 6 Software)

  • Add Delete button in the portal

    Hello,
    When you execute in the portal a query you get some results. You have the opportunity to Save this repport. You'll get 3 tabs, Favorites; Bex Portfolio; My Portfolio.
    When I want to delete some favourites is this impossible, I want to have an delete button in this screen. Is this possible? Probable you have to open the Web application Designer to solve this.
    Need some help to fix this
    Kind regard
    Bart Hazenberg

    You can write code to put your button under the IMPL class of your view in the method "DO_PREPARE_OUTPUT" method.
    Sample code is pasted below.
    IF gt_button IS INITIAL.
        wa_button-type     = cl_thtmlb_util=>gc_icon_new.
        wa_button-text     = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_BT/NEW' ).
        wa_button-on_click = 'ON_CREATE'.
        wa_button-enabled = 'X'.
        APPEND wa_button TO gt_button.
        CLEAR wa_button.
      ENDIF.
    Also, please create an event handler "ON_CREATE" and code for the refresh in that method.
    Rg,
    Harshit

  • Delete Row in WAD layout for input ready query

    Hi All
    I am using WAD for planning applications.....when i execute the Web template, it is displaying the query in edit mode which is ok... i am able to edit and insert the records in layout but i didn't find any option for deleting row...i couldn't see any command button for delete functionality in WAD...
    please help me out......how i can get delete functionality in my user input query opened in WAD
    Thanks
    Tripple k

    Hi
    Thanks for your help...but that is not going to help...by the way i am surprised why SAP has removed these basic functionality from IP while they are there in BPS..like add row delete row...in WAD if we dont have option for new line...we have to specify the no. of new lines in prior....also if user has filled the new lines then next line will not come untill he save..trhis is ridiculas....i am not able to find any wayout for these silly functionality
    Thansk
    Tripple k

  • Delete Functionality in WAD for IP

    Hi All,
    I am using Delete Function in WAD for IP.
    I have a Delete Button. Whenever a row is selected and Delete Button is clicked. It should delete values only selected row. but, in my case it is deleting values for all records.
    If anyone has worked on it, please help me out.
    Regards
    Sushma

    Hi
    In the definition of the planning function : Delete, mention the characteristics on which the delete shoudl take place.If the characteristic values are to be given at runtime, please assign the variables.
    If no restriction is mentioned all the keyfigure values become zero.
    Hope this helps.
    Regards, Hyma

  • Can't access delete button in voicemail

    I can't access the delete button in my voicemail. I have used it before. I can barely see it below the timer line and below the line with Favorite, recents, contacts, keypad & voicemail.

    Hi,
    May I know why you would delete the files?
    Based on my research, I think the items in this folder are library files correspond to the items in Library. Therefore, in order to keep the Libraries settings, deleting them is not recommended. For more information about Library, please also see the following
    documents:
    Library Description Schema
    http://msdn.microsoft.com/en-us/library/windows/desktop/dd798389(v=vs.85).aspx
    Libraries Under the Hood
    http://windowsteamblog.com/windows/b/developers/archive/2009/04/14/libraries-under-the-hood.aspx
    Hope this helps.
    Thanks.
    Nicholas Li
    TechNet Community Support

  • 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.

  • Disable delete button in a maintenance view

    Hi,
    Does anyone knows how can I disable the delete button in a maintenance view so when a user that is not authorized can´t delete any row, or how can I lock the delete subroutine.
    Thanks!

    Hello Moises
    The problem with this solution is that if you ever need to modify your maintenance view (i.e. regenerate the dynpros because you may want to add new fields) your coding is gone.
    This is not the case if you are using event 19. Below you see same sample coding:
    ***INCLUDE LZUS_SDN_MAINTF01 .  " Function Group with maintenance views
    * Event 19: After Init. Global Variables, Field Symbols, etc.
    * http://help.sap.com/saphelp_nw2004s/helpdata/en/91/ca9f44a9d111d1a5690000e82deaaa/content.htm
    FORM exclude_gui_function.
    * define local data
      DATA: ls_excl   TYPE vimexclfun.
      ls_excl-function = 'DELE'.  " taken from standard GUI-status 'ZULG'
    BREAK-POINT.
      AUTHORITY-CHECK OBJECT 'F_BKPF_BUK'
               ID 'BUKRS' FIELD '1000'
               ID 'ACTVT' FIELD '02'.
      IF ( syst-subrc NE 0 ).
        APPEND ls_excl TO excl_cua_funct.
      ENDIF.
      APPEND ls_excl TO excl_cua_funct.  " Just for the purpose of demonstration
    ENDFORM.                    "exclude_gui_function
    Regards
      Uwe

  • How do i delete songs from my iphone when they don't show up in itunes? Swiping across the song on the iphone does not give me a delete button.

    How do i delete songs from my iphone when they don't show up in itunes? Swiping across the song on the iphone does not give me a delete button.

    Hello audreywisc,
    Songs can be removed from your iPhone by tapping 'Songs,' then swiping the song, then tapping Delete.
    Remove a song from iPhone. Tap Songs, swipe the song, then tap Delete. The song is deleted from iPhone, but not from your iTunes library on your Mac or PC, or from iCloud.
    iPhone User Guide - Playlists
    http://help.apple.com/iphone/8/
    Cheers,
    Allen

  • How can I delete bookmarks on my toolbar when the 'bluestar' isn't illuminated? (Same for the 'delete' button in the library menu).

    Dear Sir/Madam
    I have had a look at your solutions page and have tried to use all the advice suggested however, when I try to delete three items on by Toolbar, none of them illuminate the 'BlueStar' which is beside their address. (I have successfully got rid of other items). I have also tried to delete the items in Firefox's library menu, however, the delete button their isn't illuminated either. I am now concerned that the items are spyware. I was thinking of reinstalling the software but, this would mean loosing all my Bookmarks.
    For your information, I have just updated Firefox to 28.0.
    I would appreciate your help with this matter.
    Kind regards
    Suzanne

    Dear sludge7051-x
    Thank you so much for all your help.
    I did as you said (after trying to find a very old mouse in my computer box in the attic!), and managed to delete the offending tags.
    Really appreciate your prompt response to my problem.
    Have a lovely weekend.
    Kind regards

  • I cannot delete pictures from ipod as there is no delete button showing, I cannot delete pictures from ipod as there is no delete button showing

    I Cannot delete the pictures from my ipod, there is not a delete button showing on the screen only Share , copy, or print could you please help me

    You need to resync with iTunes. Unselect photos in iPhoto you don't want anymore.  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G + 120G OCZ Vertex 3 SSD Boot HD 

  • Delete button doesn't work in tabular form after upgrade from APEX3.2 to 4

    I just upgraded the APEX from 3.2 to 4.0. However, my application is not working anymore.
    First of all, my delete button in tabular form is not working. When I select a row and click the delete button, the row is not deleted, however the message showed 1 row is deleted.
    Could you anybody tell me how can I debug this problem?
    Thanks a lot !

    I had the same problem. I first tried the solution above, but that didn't work. I also had a derived column for a custom popup and some display only columns. I removed the derived column and took out the display columns from my query. I then made sure my column order matched the source query. I applied changes and the delete button worked. FYI. I found out by some testing that it was actually trying to delete from the table, but with the wrong id. My first editable field was qty so if the qty was equal to 2 it then tried to delete from the table where pk=2(I had to restore that record). I believe it is related to the bug above. Backup your app first. I always do before I mess with the tabular forms.
    Jeff

  • Problem with delete button on macbook pro?

    AFter 4 yrs of no probelms, the delete button and number one button do not work. Has anyone had this problem?

    Reset PRAM.  http://support.apple.com/kb/PH4405
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Best.

  • SRM 7.0 no delete button in PO change mode

    Dear All,
    We are using SRM 7.0 extended scenario. I created a PO and it is approved. (no follow-on documents created)
    After PO approved and status is "Ordered" and replicated to backend. Now  I want to delete PO in header level but there is no delete button at all in edit mode.
    There is a delete button in item level but not in header level.
    Any ideas why ?
    Thanks in advance..
    Best regards,

    Hi,
    go to the Purchase oder POWL
    Option1
    Select the line item in the POWL you can see the EDIT button visible .click it for deleting the P.O.
    Option 2.
    click on the PO No in the POWL . Purchase order is opened. Click on Edit button ,Delete button will be visible in the P,O,
    click delete button.
    If you are not getting the delete just try with somether po whether Delete button visiblility is there (or) not
    Regards
    G.Ganesh Kumar

  • Delete  'button' on report how to do this?

    Hi,
    I have a requirement to implement a 'delete' button on a report, but cannot find out how to do it. I found the following site which does exactly what I want, but cannot get to the code to see how the author has done it can any one assist please?
    http://apex.oracle.com/pls/otn/f?p=40323:32:689305137368050
    Thanks inadvance.

    Hello:
    Let's assume your report query is something similar to
    select empno,ename from emp
    You do the following
    In the Column Attributes for report set the column-link for the 'empno' column to redirect to a URL
    Set the URL to be
    javascript:doDelete(#EMPNO#);
    Create a button named 'DELETE'. Set the button to submit the page and branch back to the same page. Set the button's condition to 'Never'
    Create a page-item named 'P1_EMPNO' of type hidden
    Create a 'On Submit' pl/sql page process that is conditional on the 'DELETE' button with the following code
      delete from emp where empno=:p1_empno;Add the following javascript in the HTML header <script>
    function doDelete(empno) {
       if (confirm('Delete employee ' || empno)) {
          $s('P1_EMPNO',empno)
         doSubmit('DELETE')
    </script>varad

Maybe you are looking for

  • TS1368 Itunes store upgrade

    I can not read the song titles on the new itunes store upgrade. The titles are unclear and overlap. The old version worked fine. I'll have to switch to amazon. Can anyone help?

  • Joint Venture Activation

    Hi Experts, There is a radio button in IMG to Activate Joint Venture Accounting in SAP. I need to know if we activate this it will be activated in a single client or all the clients in the server. Please help Pratiksha

  • Cannot Distribute PDF Form to Email

    I've created a form and have everything set. Then I go to "Distribute Form" and enter the email address and other pertinent info of who will receive completed form... It then will not advance to the next dialog box to actually get the form functionin

  • More simple way for creating dummy variables

    I am finding for more simple way for creating dummy variables. For analyzing by linear regression, logistic regression ... creating dummy variables from categorical data is necessary. Most simplest way for creating dummy variables is may be pivot fun

  • Error creating table on MS SQL Server with OC4J standalone

    Hi there, I'm trying to deploy an EJB application to OC4J standalone using a MS SQL Server 2000 database, MS SQL Server JDBC Drivers and OC4J 9.0.3 standalone but i keep getting this error: Auto-creating table: create table Functieprofiel_competentie