Hide the services toolbar in transaction UDM_DISPUTE

Hi,
We are in ECC 6.0. I am trying to hide the tool bar 'Services for Object' from the transaction UDM_DISPUTE. I found that we can use the BADI's GOS_SRV_REQUEST and GOS_SRV_SELECT.
I implemented both of them and copied the class behind them. Since that badi GOS_SRV_REQUEST is 'Filter dependent'(I am not able to change this setting in implementation),it is not letting me to activate the implementation.
I was able to implement GOS_SRV_SELECT and the code behind the method SELECT_SERVICES says(got copied from the standard class)
  DATA:
    ls_option TYPE sgos_sels.
  ls_option-sign   = 'E'.
  ls_option-option = 'EQ'.
  ls_option-low    = 'PCATTA_CREA'.
  APPEND ls_option TO et_options.
I assumed that i would be seeing only the option of 'Create attachment' in the toolbar/ But still i am seeing all the options in the toolbar.
Could anybody please let me know how to hide the whole services toolbar for this particular transaction. Thanks in advance..
Poornima

Hi Abhi,
The trns UDM_DISPUTE is report for 'UDM_DISPUTE' and internally it is calling other report 'SAPSRMSTART'
Check the Include CI_UDMCASEATTR00 available in table 'UDMCASEATTR00' double click on the include and add the custom
Folow the below steps
For adding fields to UDM_DISPUTE, I have made changes in the Attribute Profile in SPRO and as I needed these fields as DropDown Lists I have selected DropDown from GUI control for these fields in Attribute Profile.
In addition, to add values to these DropDown Lists I have created separate tables and a 'Z' Search Help for each field.
Then these 'Z' search helps are attached to the resp. fields in structure CI_UDMCASEATTR00 of table UDMCASEATTR00.
With this the values are visible in DropDown and user is able to select value from DropDown.
use SCMG_VISUALIZATION_C or SCMG_INITIALIZE_C badis  for screen Modifcation or structure modifications
fields
prabhudas

Similar Messages

  • Hidding the floating toolbar that apears when sharing audio and/or video

    Hello everyone!
    I'd like to know if is it possible to remove(or hide) the floating toolbar that appears when sharing audio and/or video on firefox.
    I am attaching an image of what I want to hide.
    Thanks in advance,
    Ibrahim

    Sorry...
    The attachment didn't work the first time...

  • I accidentally hid the menu toolbar, now I can't find an option to unhide it, HELP!

    I was trying to hide some pesky tool bars, I clicked view, then I clicked a toolbar to hide, I hid the wrong one, I hid the menu tool bar. Now I am totally stuck!
    I don't know what version firefox, because the information is in the tool bar I hid. I can't get to tools or view or preferences or nothing.
    Please help!
    Windows 7 I think my firefox version is the latest.

    Just right click the border space on the Navigation (url) bar and select Menu Bar again, or see this page;
    https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts?s=keyboard+shortcuts&as=s
    You may need to use Alt+F10 if you hid all of them like I did researching your trouble ;p
    Even after using Alt+F10 you will need to go to View > Toolbars immediately and choose Menu Bar or Navigation Bar. If you do anything before then it seems to disappear.

  • How do I permanently hide the Bookmarks Toolbar?

    Sometime around the beginning of this month, Firefox popped up my Bookmarks Toolbar. It had been hidden ever since. I thought it was an addon that I recently installed doing this, but when I disabled all of the addons I had just installed in the past couple of days, the issue remains.
    Everytime I start firefox, my bookmarks toolbar is open. I don't use it, because I customized firefox to put my bookmarks with my navigation toolbar. I right click on the bar and select to hide it, but it keeps coming back upon restart. I can avoid the problem by moving everything from the Navigation toolbar onto the Bookmarks toolbar and using the Bookmarks toolbar instead, but I can't solve the problem. I just reinstalled Firefox as I upgraded to Windows 8 (from Windows 7), and the issue persisted.
    If this is supposed to be a new feature of Firefox, it's annoying.
    Here are my addons in the event that it helps identify the issue:
    Adblock Plus 2.1.1
    Load Tabs Progressively 1.6.1
    NoScript 2.4.8
    QuickDrag 2.1.3.23
    Reddit Enhancement Suite 4.1.2
    Scriptish 0.1.7
    Smartest Bookmarks Bar 1.1
    Snap Links Plus 2.2.1
    Stylish 1.2.6
    YTshowRatings 1.0.4

    No, that isn't a new feature in Firefox. Sounds more like something caused by an addon which changed.
    This extension was updated on July 7 - could that have been when your problem started? <br />
    https://addons.mozilla.org/en-US/firefox/addon/smartest-bookmarks-bar/versions/
    http://smartestbookmarksbar.com/node/38

  • User Exits or BAdis' for the Service Order create Transaction

    Hi all,
              I need to Replace a field, "Product" in the "Item Details" area  of the create Service Order Transaction(CRMD_BUS2000116) with some custom field.
    Are there any Exits/BAdi which will help me in doing this..
    Thanks in advance
    Sethu

    Hi Sethu,
    The user exits / BADI's for the Transaction(CRMD_BUS2000116 are not avaliable:
    The following info from one forum to search user exits / BADI's  that you can use: There are multiple ways of searching for BADI.
    • <b>Finding BADI Using CL_EXITHANDLER=>GET_INSTANCE
    • Finding BADI Using SQL Trace (TCODE-ST05).
    • Finding BADI Using Repository Information System (TCODE- SE84).</b>
    1. Go to the Transaction, for which we want to find the BADI, take the example of Transaction VD02. Click on System->Status. Double click on the program name. Once inside the program search for ‘CL_EXITHANDLER=>GET_INSTANCE’.
    Make sure the radio button “In main program” is checked. A list of all the programs with call to the BADI’s will be listed.
    The export parameter ‘EXIT_NAME’ for the method GET_INSTANCE of class CL_EXITHANDLER will have the user exit assigned to it. The changing parameter ‘INSTANCE’ will have the interface assigned to it. Double click on the method to enter the source code.
    Definition of Instance would give you the Interface name.
    2. Start transaction ST05 (Performance Analysis).
    Set flag field "Buffer trace"
    Remark: We need to trace also the buffer calls, because BADI database tables are buffered. (Especially view V_EXT_IMP and V_EXT_ACT)
    Push the button "Activate Trace". Start transaction VA02 in a new GUI session. Go back to the Performance trace session.
    Push the button "Deactivate Trace".
    Push the button "Display Trace".
    The popup screen "Set Restrictions for Displaying Trace" appears.
    Now, filter the trace on Objects:
    • V_EXT_IMP
    • V_EXT_ACT
    Push button "Multiple selections" button behind field Objects
    Fill: V_EXT_IMP and V_EXT_ACT
    All the interface class names of view V_EXT_IMP start with IF_EX_. This is the standard SAP prefix for BADI class interfaces. The BADI name is after the IF_EX_.
    So the BADI name of IF_EX_CUSTOMER_ADD_DATA is CUSTOMER_ADD_DATA
    3. Go to “Maintain Transaction” (TCODE- SE93).
    Enter the Transaction VD02 for which you want to find BADI.
    Click on the Display push buttons.
    Get the Package Name. (Package VS in this case)
    <b>Go to TCode: SE84->Enhancements->Business Add-inns->Definition</b>
    Enter the Package Name and Execute.
    Here you get a list of all the Enhancement BADI’s for the given package MB.
    Also have a look at below report which will list BADIs.
    REPORT  Z_FIND_USER_EXITS.
    TABLES : TSTC,TADIR,MODSAPT,MODACT,TRDIR,TFDIR,ENLFDIR,SXS_ATTRT ,TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
                 P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
      IF NOT P_TCODE IS INITIAL.
        SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
      ELSEIF NOT P_PGMNA IS INITIAL.
        TSTC-PGMNA = P_PGMNA.
      ENDIF.
      IF SY-SUBRC EQ 0.
        SELECT SINGLE * FROM TADIR
        WHERE PGMID = 'R3TR'
        AND OBJECT = 'PROG'
        AND OBJ_NAME = TSTC-PGMNA.
        MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
        IF SY-SUBRC NE 0.
          SELECT SINGLE * FROM TRDIR
          WHERE NAME = TSTC-PGMNA.
          IF TRDIR-SUBC EQ 'F'.
            SELECT SINGLE * FROM TFDIR
            WHERE PNAME = TSTC-PGMNA.
            SELECT SINGLE * FROM ENLFDIR
            WHERE FUNCNAME = TFDIR-FUNCNAME.
            SELECT SINGLE * FROM TADIR
            WHERE PGMID = 'R3TR'
            AND OBJECT = 'FUGR'
            AND OBJ_NAME EQ ENLFDIR-AREA.
            MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
          ENDIF.
        ENDIF.
        SELECT * FROM TADIR INTO TABLE JTAB
        WHERE PGMID = 'R3TR'
        AND OBJECT in ('SMOD', 'SXSD')
        AND DEVCLASS = V_DEVCLASS.
        SELECT SINGLE * FROM TSTCT
        WHERE SPRSL EQ SY-LANGU
        AND TCODE EQ P_TCODE.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
        20(20) P_TCODE,
        45(50) TSTCT-TTEXT.
        SKIP.
        IF NOT JTAB[] IS INITIAL.
          WRITE:/(105) SY-ULINE.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
          sort jtab by OBJECT.
          data : wf_txt(60) type c,
          wf_smod type i ,
          wf_badi type i ,
          wf_object2(30) type C.
          clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
          LOOP AT JTAB into wa_tadir.
            at first.
              FORMAT COLOR COL_HEADING INTENSIFIED ON.
              WRITE:/1 SY-VLINE,
              2 'Enhancement/ Business Add-in',
              41 SY-VLINE ,
              42 'Description',
              105 SY-VLINE.
              WRITE:/(105) SY-ULINE.
            endat.
            clear wf_txt.
            at new object.
              if wa_tadir-object = 'SMOD'.
                wf_object2 = 'Enhancement' .
              elseif wa_tadir-object = 'SXSD'.
                wf_object2 = ' Business Add-in'.
              endif.
              FORMAT COLOR COL_GROUP INTENSIFIED ON.
              WRITE:/1 SY-VLINE,
              2 wf_object2,
              105 SY-VLINE.
            endat.
            case wa_tadir-object.
              when 'SMOD'.
                wf_smod = wf_smod + 1.
                SELECT SINGLE MODTEXT into wf_txt
                FROM MODSAPT
                WHERE SPRSL = SY-LANGU
                AND NAME = wa_tadir-OBJ_NAME.
                FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
              when 'SXSD'.
    For BADis
                wf_badi = wf_badi + 1 .
                select single TEXT into wf_txt
                from SXS_ATTRT
                where sprsl = sy-langu
                and EXIT_NAME = wa_tadir-OBJ_NAME.
                FORMAT COLOR COL_NORMAL INTENSIFIED ON.
            endcase.
            WRITE:/1 SY-VLINE,
            2 wa_tadir-OBJ_NAME hotspot on,
            41 SY-VLINE ,
            42 wf_txt,
            105 SY-VLINE.
            AT END OF object.
              write : /(105) sy-ULINE.
            ENDAT.
          ENDLOOP.
          WRITE:/(105) SY-ULINE.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No.of Exits:' , wf_smod.
          WRITE:/ 'No.of BADis:' , wf_badi.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(105) 'No userexits or BADis exist'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(105) 'Transaction does not exist'.
      ENDIF.
    AT LINE-SELECTION.
      data : wf_object type tadir-object.
      clear wf_object.
      GET CURSOR FIELD FIELD1.
      CHECK FIELD1(8) EQ 'WA_TADIR'.
      read table jtab with key obj_name = sy-lisel+1(20).
      move jtab-object to wf_object.
      case wf_object.
        when 'SMOD'.
          SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
          CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
        when 'SXSD'.
          SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
          CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
      endcase.
    Hope it will help you.
    Regards,
    Arjun
    <b>Reward points if it helps</b>

  • How can I disable (not hide) the Boomarks Toolbar?

    I have installed the "Multirow Bookmarks Toolbar Plus 1.2" extension. In the Firefox customize toolbars box I dragged the Firefox bookmarks toolbar to the right of my home button instead of where it normally is. I then Right-clicked on the toolbar and unticked "Bookmarks Toolbar".
    However whenever I restart Firefox the toolbar re-appears. How can I disable it from appearing?

    My extensions don't work on Firefox 12 so that doesn't help me.
    I should also point out that if I format my hard drive and re-install Windows and Firefox 5 then I don't get this problem but that's a lot of hassle.
    I only get this problem when I install a new version of Firefox when I already have a previous version installed.
    So before installing the new version I uninstalled Firefox and selected the option to delete my settings. I then checked my profile folder to make sure nothing was there. I then reinstalled Firefox again and all the same extensions with the same settings as before and I still get this problem.
    So it's quite disturbing that I deleted all traces of Firefox yet I get this problem again which makes me think that not everything was deleted.

  • How to add a button to the toolbar in transaction MIRO

    Hi, I wanna know if some1 could tell me how can I add a custom button in the standard toolbar of transaction MIRO.
    The client have the lastest version of SAP so I have enhancement point to add the functionality of the button, but how can I add the button without registering the object in the OSS.
    Thx.

    Hi Siva,
    Create one custom program Eg:zxyz activate it. Now open se80 give program name:SAPMV50A and open gui status.
    In GUI Status right click on 'W0' copy it to custom 'ZW0' and the custom program name which created first.
    Now goto your custom program and write
    double click on 'ZW0' and create your custom button in application toolbar.
    activate it and activate your program.
    Now come to stander program SAPMV50A open screen 1000.
    in moduel  'initialisieren' double click on perform cua_setzen.
    again double click on module initialisieren and by using enhancement framwork functionality implement the below logic.
    Finally you will get the button in application toolbar.
    Reward if it is help full.
    Regards,
    Quddus.

  • ALV in EDIT-Mode: can't hide the toolbar in edit-mode

    Hi,
    I have supressed in my ALV all standard-buttons with the help of an it_toolbar_excluding. I have built my own toolbar (p_object->mt_toolbar). Until know everything is fine, the ALV shows only my own generated toolbar.
    In that moment, when I change a property of a column in the fieldcatalog ( wa_catalog-edit  = 'X' ), both toolbars are shown, the standard toolbar and my own generated buttons.
    What's wrong, how can I hide the standard toolbar when I am in the edit mode?
    Kind regards
    Andreas
    Edited by: Andreas Waldt on Sep 3, 2008 5:19 PM

    Thank you very much,
    during testing I have recognized, that the buttons in the toolbar are new functions, because of the edit mode.
    So I have put all the new button into the excluding list. It worked!
    Thanks again!
    Andreas

  • Is it possible to have the Navigation Toolbar (or at least the pop-up Location Bar) show automatically when I open a (blank) new tab and be automatically hidden once I select an address/search?

    I'm obviously aware of the possibility to show/hide the Navitation Toolbar manually, but I'd like to have it done automatically to get the best of screen space and navigation ease.

    Thanks cor-el! I had tried that out, but was turned off by the different workflow (can't click Tab to select the address suggestions) and assumed by the look that I couldn't use my Smart Keywords for searches.
    In fact, the workflow isn't that much bulkier and the Location Bar is fully functional:
    * ''for a search: Ctrl+L, (Smart Keyword +) [search terms], Enter''
    * ''for a suggested address: Ctrl+L, Down, Enter, Enter''
    Still, it would be nice in future versions if:
    # the Location Bar could automatically open when opening a (blank) new tab (just as the cursor automatically goes to the Location Bar when a new tab is opened with the Navigation Toolbar showing) to avoid the Ctrl+L step of the workflow
    # the Tab, Enter workflow could be enabled for selecting address suggestions in the pop-up Location Bar
    Or (most simply in my mind):
    if '''the Navigation Toolbar could be set to show when a (blank) new tab is opened and disappear once an address/search is selected'''.

  • How can I hide the Navigation Input (at least the URL) in Firefox 29.0?

    I need to hide it for demonstrations to prevent attendees from browsing to a site while I'm showing it. This new release is not as clean looking when all the toolbars are unchecked. A minimal mode with tabs only would be helpful...the previous release was very good for this.

    Note that in previous Firefox versions it was still possible to bring up a replacement toolbar via Ctrl+L, so this version is actually better in this respect.<br />
    This code has been removed in Firefox 29 because you can't hide the Navigation Toolbar.
    Note that using an extension or code in userChrome.css can be overridden by starting Firefox in Safe Mode by holding down the Shift key when starting or the item in the Help menu.
    You can look at the Classic Theme Restorer extension to restore some functionality that was lost with the arrival of the Australis style in Firefox 29.
    *Classic Theme Restorer: https://addons.mozilla.org/firefox/addon/classicthemerestorer/
    *Hide Navigation Bar: https://addons.mozilla.org/firefox/addon/hide-navigation-bar/

  • Hide post button in MIR4 from the active toolbar

    When we enter an invoice number in MIR4 the post button appears. Is there a way to hide this from the active toolbar? Config?
    Edited by: Eric Stelter on Dec 18, 2007 6:57 PM
    Edited by: Eric Stelter on Dec 18, 2007 6:58 PM

    I'm not talking about saving here. We use MIR7 to park our invoices using the save as complete button and then MIRO to post. The problem is once an invoice is adopted into MIR7 a post button appears and employees then can park and post from this transaction. We don't want this to happen. That's why we would like to hide the post button if possible.

  • How to hide the transaction menu of R/3 in case of transaction iViews

    Hi Friends,
    I have created a transaction Iview for R/3.
    As per the requirements i have to hide the R/3 menu where on the left we have execute transaction box to write the transaction code and execute.
    How can we achieve this
    Regards...Rohit
    email [email protected]

    Hi Rohit,
    have a look at this thread:
    Hide the command box in sap gui
    There is a registry key value you can change to disable the wingui transaction field.
    -Mikko

  • ITunes Match has stopped uploading - every file errors and says waiting - I have tried to delete the files and use other formats etc.  I have had the service since Day 1 and NEVER had an issue.  It didn't start until the Delete from Cloud switch to Hide

    iTunes Match has stopped uploading - every file errors and says waiting - I have tried to delete the files and use other formats etc.  I have had the service since Day 1 and NEVER had an issue.  It didn't start until the Delete from Cloud switch to Hide from cloud - the files that do not upload show grayed out on my other devices.

    Have you confirmed that you successfull purged iTunes Match by also looking on an iOS device?  If so, keep in mind that Apple's servers may be experiencing a heavy load right now.  They just added about 19 countries to the service and I've read a few accounts this morning that suggests all's not running perfectly right now.

  • Attachment in the Services for the object  (Transaction PA30)

    Dear Friends
                  i have uploaded a file (from my desktop)using Services for the object in PA30 transaction for a particular personnel no. . The services for the object is just above the Create Icon in PA30 Transaction.
    Now i would like to know where this file is being saved which was upload from my desktop .   Later if i remove the file from my desktop even then i can see that file
    still being there in the attachment when i click the Services for the object.
    Please could any one let me know.
    Regards
    syamala

    Hi,
    Have a look at this thread.
    attachment in PA30
    Regards,
    Manoj.

  • Hide the Approve button in TRIP transaction

    Please,
    I read that I if I want to hide the 'Approve' button automatically I must pass proper values in Auth Object F_TRAVL and P_TRAVL.
    Do you know, specifically, which authorization field and value I must have in P_TRAVL?
    I thank you in advance,
    Cláudia.
    Edited by: User BasisMasterUser on Mar 30, 2011 7:56 PM
    Edited by: User BasisMasterUser on Mar 30, 2011 7:57 PM

    Hi and thanks for the answer.
    We use the transaction PRAP for approval all the travel, so we need to prevent a simple user can approve the trip in the TRIP transaction. As I could not find an authorization object that correspond to the button of approval, we thought better to hide it.
    Unfortunately I did not see in the TRVPA feature anything that influences me in the way of approval, except that the WRP is equal to 3 which sets the approval status only for travel completed.
    Am I mistaken?
    I thank you again,
    Cláudia.
    Edited by: User BasisMasterUser on Mar 31, 2011 3:35 PM

Maybe you are looking for