IW33 how to make dispaly deletions on

Point remaining is to make Display deletion defaulted as 'ON', whenever user go into the Service Order (IW33)                  . I think that in gui there is a variable assignment which assigns the value as defaulted 'OFF',  so whenever user enters the transaction they need to go and make the display deletion as 'ON'. Please try to investigate that if in some user exits we can make this display deletion as 'ON' or by any other way we can configure this variable to 'ON' and let me know your findings.

Dantu,
I'm not sure this will be possible since there may be some ABAP code behind the menu selection that will not run in IW33.
However, have a look at BADI IWO1_SCEEN_MODIFY or user-exit IWO10006 (FCode exclusion through customer enhancement)
PeteA

Similar Messages

  • How to make before delete trigger

    Hi all
    I want make before delete trigger
    I have 2 tables hr_api_transactions and new_table
    when I delete records from hr_api_transations table
    then that deleted record should be stored/insert in new_table table
    for that purpose I need before delete trigger
    How can I make It?

    Hi
    I have written following code but it gives an error
    CREATE OR REPLACE TRIGGER before_delete_trigger
        BEFORE DELETE
            ON HR_API_TRANSACTIONS
            FOR EACH ROW
        DECLARE
        BEGIN
            delete from new_table where new_table.name = OLD.hr_api_transactions.api_addtnl_info;
        END;
    TRIGGER BEFORE_DELETE_TRIGGER compiled
    Errors: check compiler logafter show errors it shows
    4/54 PL/SQL: ORA-00904: "OLD"."HR_API_TRANSACTIONS"."API_ADDTNL_INFO": invalid identifier
    4/9 PL/SQL: SQL Statement ignoredhere hr_api_transaction is table which contain API_ADDTNL_INFO column
    and name column of new_table and API_ADDTNL_INFO column of
    HR_API_TRANSACTIONS table are same

  • How to make row deletion impossible?

    Hello experts,
    I have an editable ALV grid with the following data:
    <b>ACCOUNT     DESCRIPTION      TAX</b>
    1000200        revenue          A0
    1000100        cost             V2
    I want to make the deletion of second row impossible. (I dont want to disable the delete row button)
    How do I achieve this?
    Thanks,
    Yuvaraj

    DATA pt_exclude1 TYPE ui_functions.
        perform exclude_tb_functions CHANGING pt_exclude1.
    *--e.g. initial sorting criteria, initial filtering criteria, excluding
       --functions
        CALL METHOD gr_alvgrid->set_table_for_first_display
          EXPORTING
          I_BUFFER_ACTIVE =
          I_CONSISTENCY_CHECK =
          I_STRUCTURE_NAME =
          IS_VARIANT =
          I_SAVE =
          I_DEFAULT = 'X'
          is_layout = gs_layout
          IS_PRINT =
          IT_SPECIAL_GROUPS =
           IT_TOOLBAR_EXCLUDING = <b>pt_exclude1</b>
          IT_HYPERLINK = ls_hyperlink
          CHANGING
          it_outtab = itab[]
          it_fieldcatalog = gt_fieldcat
          IT_SORT =
          IT_FILTER =
          EXCEPTIONS
          invalid_parameter_combination = 1
          program_error = 2
          too_many_lines = 3
          OTHERS = 4 .
        IF sy-subrc <> 0.
       --Exception handling
        ENDIF.
    *&      Form  exclude_tb_functions
    FORM exclude_tb_functions CHANGING pt_exclude TYPE ui_functions .
      DATA ls_exclude TYPE ui_func.
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_COPY .
      APPEND ls_exclude TO pt_exclude.
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_COPY_ROW .
      APPEND ls_exclude TO pt_exclude.
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_CUT .
      APPEND ls_exclude TO pt_exclude.
    <b>  ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_DELETE_ROW .
      APPEND ls_exclude TO pt_exclude.</b>
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_INSERT_ROW .
      APPEND ls_exclude TO pt_exclude.
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_MOVE_ROW .
      APPEND ls_exclude TO pt_exclude.
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_PASTE .
      APPEND ls_exclude TO pt_exclude.
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_PASTE_NEW_ROW .
      APPEND ls_exclude TO pt_exclude.
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_UNDO .
      APPEND ls_exclude TO pt_exclude.
      ls_exclude = cl_gui_alv_grid=>MC_FC_LOC_APPEND_ROW .
      APPEND ls_exclude TO pt_exclude.
    ENDFORM .                    "exclude_tb_functions

  • How to make display deletions as ON in iw33 ? by default it will be 'OFF" ?

    hi can u pls help me to find out the exat user-exit to achive this functionality
    iw33
    edit---> display deletions -
    > on

    Exits available
    IW33 SAPLCOIH  IPRM0003        E            EXIT_SAPLCOIH_030
                   IPRM0003        E            EXIT_SAPLCOIH_032
                   IWO10001        E            EXIT_SAPLCOIH_001
                   IWO10002        E            EXIT_SAPLCOIH_002
                   IWO10004        E            EXIT_SAPLCOIH_004
                   IWO10005        E            EXIT_SAPLCOIH_005
                   IWO10006        E            EXIT_SAPLCOIH_006
                   IWO10007        E            EXIT_SAPLCOIH_007
                   IWO10008        E            EXIT_SAPLCOIH_008
                   IWO10009        E            EXIT_SAPLCOIH_009
                   IWO10010        E            EXIT_SAPLCOIH_010
                   IWO10011        C            SAPLCOIH+MSF
                   IWO10012        E            EXIT_SAPLCOIH_012
                   IWO10015        E            EXIT_SAPLCOIH_015
                   IWO10016        E            EXIT_SAPLCOIH_016
                   IWO10017        E            EXIT_SAPLCOIH_017
                   IWO10018        E            EXIT_SAPLCOIH_018
                   IWO10018        E            EXIT_SAPLCOIH_019
                   IWO10018        S            SAPLCOIH1180_CUSTSC
                   IWO10020        E            EXIT_SAPLCOIH_020
                   IWO10021        E            EXIT_SAPLCOIH_021
                   IWO10022        E            EXIT_SAPLCOIH_014
                   IWO10025        E            EXIT_SAPLCOIH_025
                   IWO10026        E            EXIT_SAPLCOIH_026
                   IWO10031        E            EXIT_SAPLCOIH_031
                   IWO10033        E            EXIT_SAPLCOIH_033
                   IWO20001        C            SAPLCOIH+PLS
                   IWO20001        E            EXIT_SAPLCOIH_003

  • How to make the delete button save before deleting?

    Hi all,
    I created a tabular form. What I want to do is when the user click the Delete button, it saves the chagnes AND delete the checked row(s). I tries putting the request "Delete" in the Conditional Processing of the multirow delete process, but I couldn't get it to work.
    Does anyone know how to do that? Thank you very much for the help in advance!

    So, instead of having two separate button, one for Apply Changes and the other for Delete , you want to have one button that will do both. However, if you do that you may miss out on the delete confirmation or end up having a confirmation for both the actions.
    Here is how to do it.
    1. Lets say we will retain the Apply Changes (label) button with request SUBMIT. So make the Condition on Delete button 'Never'.
    2. Now edit the ApplyMRD process and make the condition When Button Pressed = 'SUBMIT'
    3. ApplyMRU will also have the same condition.
    Now both processes should fire on the click of one button.
    BTW, you many have to change the sequence number of the ApplyMRD process and make is greater than the sequence number of the ApplyMRU process.
    Regards,
    Edited by: Prabodh on Aug 17, 2010 8:28 PM

  • How to make an app deleted from iTunes library be deleted from all the iOS devices synced with this library?

    Hello!
    I have 3 iOS devices synced with iTunes apps library (OS X 10.10.2)
    Can someone tell me how to make not only added but deleted apps be synced also? I mean I want an app deleted in iTunes library be deleted from any iOS devices synced with this library.

    But it was working some time before! What and when has changed?
    There was even a warning popup window something about "this application will be deleted from all the devices synced with this library"
    Now there's opposite message - "This application will not be deleted from any device syncing with this account". Isn't it some kind of clue that there can be conrarily circumstances - when application IS deleted from ANY device synced with this computer?

  • How to make a selection of a layer delete content and paste another content with Photoshop scripting..?

    how to make a selection of a layer delete content and paste another content with Photoshop scripting..?

    There is a more specific Forum …
    Photoshop Scripting

  • Deleted itouch files using ifile from cydia. i restarted it but now it shows the apple logo and that is it... it doesnt respond. any ideas of how to make it work?

    I restarted my itouch using the home button and top button...it restarted but it only shows the apple logo and that is it.  I deleted all files from ifile and then it froze... any ideas of how to make it work again?

    Discussions of hacked ipods is not permitted here.

  • How can I completely delete an app, so it won't even be listed in the app store under purchased items? And I will stop being prompted to make updates even though I've removed it from my iPad?

    How can I completely delete an app, so it won't even be listed in the app store under purchased items? And I will stop being prompted to make updates even though I've removed it from my iPad?

    Once an app is deleted from an iOs device, you will no longer be prompted for updates. Update alerts only occur for apps curently installed.
    Purchases can be hidden (but not completely deleted) from the purchased list, but only using itunes on a computer.

  • How to make it so mail doesn't delete messages

    I have my yahoo account attached to the apple account and I want to make it so that the messages are just kept forever. Any idea how? Thanks

    Don't delete them.

  • How to DELETE millions of records. How to make it fast.

    Hi
    I need to delete near abt 134 millions of records from tables.
    How to make it faster? any trick , any settings.
    I am using Oracle 9i on Linux box.
    If suppose i use TRUNCATE . does it deletes all objects defined over tables like constraint, indexes etc.
    Thanks,
    Kuldeep

    hi
    SQL> create table te as select * from all_objects;
    Table created.
    SQL> create index te_ind on te ( owner);
    Index created.
    SQL> truncate table te;
    Table truncated.
    SQL> select index_name , status from user_indexes where table_name = 'TE';
    INDEX_NAME                     STATUS
    TE_IND                         VALID
    SQL> create table ti as select * from all_objects;
    Table created.
    SQL> create index ti_ind on ti ( owner);
    Index created.
    SQL> drop table ti;
    Table dropped.
    SQL> select index_name , status from user_indexes where table_name = 'TI';
    no rows selected
    SQL>regards
    Taj

  • How do I make auto delete stay off permanently?

    How do I make auto delete stay off permanently?

    You can enable Firefox to remember your password for a site so whenever you visit it, it will automatically log you in. Just select your name from the drop down box and your username and password should be inputted into the box.
    First you need to have remember passwords for sites on first.
    To do this go to '''Tools>Options>Security''' check mark '''Remember Passwords for Sites'''

  • Someone that I don't know hacked into my apple I'd, and downloaded clash of clans, how can I make him delete it?

    Clash of clans is a game that works on apple I'd, each apple I'd can have an account, and the game saves on the apple I'd, so if someone else downloads clash of clans on another iPad using the same apple I'd, he would have access of my account. And hen someone hacked my apple I'd and downloaded he game, so I need a way to make him delete it, I've changed my email, and password.

    You've posted in the forum for Apple's defunct office application 'AppleWorks' which has nothing to do with your question. You should ask in the iTunes Store forum (I tried to ask the Hosts to move this thread there but current technical problem with the forums mean that my request probably didn't get through).

  • For some reason, I cannot change my desktop background no matter how many times I delete the "active" folder.  It's as if it's locked.  Any ideas how I can fix it?

    For some reason, I cannot change my desktop background no matter how many times I delete the "active" folder.  It's as if it's locked.  Any ideas how I can fix it?

    Yes it sounds like you have a corrupted preference file.
    The setting you make in individual programs get saved to a Preference file in your Users/Library/Preferences folder.
    All you have to do is drag out the old file to the desktop, reboot and load the program and the preference file gets rebuilt without your preferences which you reset.
    For your case I beleive the preference file is
    com.apple.desktop.plist

  • In firefox 4 RC, some addons installed suddenly disappear, but checking the profile, some of the missing addons related files are still here, how to make the addons back?

    I use firefox 4 form beta 9 to RC (zh) now and there are also firefox 3.6 installed in computer. One day when I open Fx 4 RC, some (actually a lot but not all) of the adoons just disappear. When I check on about:addons page, some addons installed do not appear in the list.
    The addons '''REMAINED''' including:
    * addons I already used in Fx 3.6 (like webmail notifie , xmarks)
    * ''addons only can use in Fx 4'' (like Open Web Apps for Firefox).
    The addons '''DISAPPEARED''' including:
    * addons I already used in Fx 3.6 (like yoono)
    * '' addons installed when using Fx 4'' (like updatescanner, Thumbnail Zoom).
    But when I check the profile(by Help > Troubleshooting Information>Open Containing Folder) , some (not sure is it all) of the missing addons related files are still here [lucky], so any one know how to make the missing addons back?
    Some more details:
    * This happened when i use RC for already a few days and keep on even i restart Fx and windows.
    * The bookmarks, history, search engine and even themes and icon setting are still here. [ I only sync bookmarks but not history for both xmarks and firefox sync.]
    * This addons are really '''disappeared''' but not disable only!
    * This number of addons missed, as i remember, at least 30, should be more than that number bacause some of them are installed but in disable mode.
    * I try to install back one of the addons - Stylish, the installed code are still here.
    * It is nearly an impossible mission to install every missing addons again, as it really kill my time.

    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini, extensions.sqlite) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry. New files will be created when required.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar to do a compatibility check.

Maybe you are looking for

  • Problem with call forwarding and "call divert"

    I have been receiving calls lately and a dialogue box pops up and says "fowarded call" with a button that says "dismiss" - I'm not sure why or how to disable this. in my settings I have call forwarding turned off. Also when I make calls I sometimes s

  • TWO Alv Grid in single output

    HI All, Is it possible to add twl grids in single page output? Regards, Krishna.

  • [SOLVED]Mutt - abook problem - losing information

    I've experienced the problem seen by others with abook losing information, but I have not seen any clear solutions. I'm using mutt from extra, compiled via abs with the sidebar patch. It appears that the data loss happens when you have existing phone

  • Dynamic method signatures

    This does not compile: public class Main {   public static void main(String[] args) {     Object sok = Socket.class.newInstance();     foo(sok); // syntax error only as help to prevent runtime errors?     Object x = ArrayList.class.newInstance();    

  • SGD 4.31 upgrade error .. now what

    Here's after installing Linux machine - everything looked good - prepped the production server for upgrade this evening/now am - dismantle ..pkgadd - going through the steps ..... I'm doing some investigating ... These dir's/fiels didn't get installe