How to disable Sub-agreement creation from RFx

Dear Experts,
We are using Sourcing 10.0 and use Master Agreement Hierarchy instead of Sub-agreement Feature.
However during creating an Agreement from an Awarded RFx;system gives 2 options (See attached)
New Master Agreement
New Agreement in an existing master agreement (Sub agreement)
As sub-agreement feature is disabled for the Master agreement type system doesn't offer any parent agreement to choose.
so we want to disable this second radio-button, as we want only new master agreement to be created from RFx which we can manually maintain as a Hierarchy under the original Master Agreement.
Kindly advise how to achieve it? Via Page Customization? Which Object/ UI ID to select for this?
Thanks
Dhananjay

In page customization and I think you have to use the object "Scenario to contract container"
Hope this helps

Similar Messages

  • How to disable certain form fields from a calculation with a check mark fields.

    How to disable certain form fields from a calculation with a check mark fields.
    In Canada we have to taxes
    I create a form that calculate them to a total
    I need to be able to turn off any of those to taxes to participate to the calculation and their visibile field should become 0
    I was thinking using a checkbox (when checkbox is on (Yes) the tax is calculated, Not ticked (Off) the tax is not calculated and the visible field should show 0 or nothing....
    I really need help on this one — I’m a complete newbie....
    Remark that the second tax is calculated on the sum of what the first tax add (first tax is pan-canadian tax (all provinces).
    The second tax is never use alone (Quebec only (on top of the Canadian one)
    Sometime for outside Canada sell - No tax at all is calculated....
    What should I do?

    I want to tank you to help, really appreciate —>
    This is the code and order... I just trow the checkbox in there (they have, so far, no purpose...)
    The code use is
    var a = this.getField("pricehorstx");
    event.value = Math.round (a.value * 7.25) / 100
    I guess -If the checkBox are check - The tax should be calculate — If “Off” the tax should be not calculated and PriceHST and /or PriceQST should show zero or be empty — The HST is always calculated in Canada, but the QST is added only in Quebec.
    I need to turn both to Zero for international sale.
    Message was edited by: Chacapamac

  • How to disable Leap Motion app from startup?

    Hi, I installed the Leap Motion on my Mac running Mountain Lion. Whenever my computer boots up, the Leap Motion app automatically starts up as well. I tried checking the specific settings of Leap Motion but there was no configuration there. I also tried to look on the Startup Items (System Preferences > Users & Groups) but there was no entry regarding Leap Motion.
    Is there another way to check how to disable this from happening?
    Thanks.

    You will find a line item
    com.leapmotion.Leap-Motion.plist
    Library/LaunchAgents
    Just rename from .plist to .bak - incase you would like to auto startup again.
    I believe Leap Motion chose to use LaunchAgent rather than 'Login Items' is because they couldn't get it to startup all the time.

  • How to disable the automatic conversion from JPEG to TIFF?

    I am using Keynote '09 and Safari 4 on OS X 10.6.8, and I often want to drag and drop a JPEG image from Safari to my slides. I would like to keep the image format as is, but Keynote automatically converts the image format from JPEG to TIFF, so the .key file size becomes large.
    Does anyone know how to disable this automatic conversion? Any idea? I know that I can use the original format if I save the JPEG image at a temporary location, such as ~/Desktop. But I would prefer simpler way. Drag and drop is the best.

    Indeed, having the same problem here.  A simple PPT file that was 1 MB ballons often to more than 10 x the size as a KEY file.  If you rename to zip and open, one notices lots of completely useless "PLACEHOLDER" and background files that occupy several MB in total, plus some small JPGs have been converted to very large PNGs.  This is truly annoying. 
    A similar lack of "file size economy" is present in all applications apple produces for the ipad/iphone.  Images I uplodaded to the photo app become very large (often 10 x bigger).  WTH apple?  Be more economical!  Even my 64 GB ipad2 is starting to feel small with your waste.

  • How to disable Gmail on mail from my mac

    Can somebody help me to disable my Gmail account from my mac?. I rather sign in to Gmail than have instant acces to my account, since im not the only person thar uses the computer...
    Thanks.

    Mail Preferences > Accounts
    Select your Gmail account.
    Click on the Advanced tab.
    Uncheck Enable this account.
    Click on the (?) icon for more info.
    For added security you may want to remove the password from the Account Information tab.

  • How to disable automatic sign in from Skype for ma...

    Hi, all, there is a way to disable automatic sign in from skype for mac
    1. Simply turn off internet connection of your computer.
    2. Launch skype 
    Skype cannot sign in and you will get error screen, there you can sign in from your different account.
    Peace

    Another option is to sign out of the current account (under File), then uptick the box that says "Sign me in when Skype starts" before signing in again from whichever account takes your fancy.
    Entia non sunt multiplicanda praeter necessitatem.

  • How to extract sub string value from a string?

    Hi,
    I need to know how can i extract sub strings from a main
    string, something like this:
    main variable-------->"2087-5E2SE-19-JG7BC"
    i want to split it into like this:
    sub_main_1 variable---------> "2087"
    sub_main_2 variable---------> "5E2SE"
    sub_main_2 variable---------> "19"
    sub_main_2 variable---------> "JG7BC"
    I did the same in flash by using Split and arrays, like this:
    var my_str:String = "2087-5E2SE-19-JG7BC";
    var my_array:Array = my_str.split("-");
    for (var i = 0; i<my_array.length; i++) {
    trace(my_array
    this.aaa1 = my_array[1];
    this.aaa2 = my_array[2];
    this.aaa3 = my_array[3];
    this.aaa4 = my_array[4];
    My question is that how can i do the same in director ?? i
    haven't find any split function in director.
    Thanks in advance,
    Amir

    You do a similar thing in Director using the itemDelimiter,
    which is a
    _player object property in MX2004. By default, it's a comma:
    put _player.itemDelimiter
    It will let you get specific items within a string.
    p = "2087-5E2SE-19-JG7BC"
    _player.itemDelimiter = "-"
    put p.item[1]
    -- "2087"
    You could use it to write yourself a little split function:
    on split(theString, theDelimiter)
    oldDelim = _player.itemDelimiter
    _player.itemDelimiter = theDelimiter
    itemList = []
    repeat with cnt = 1 to theString.item.count
    itemList.add(theString.item[cnt])
    end repeat
    return itemList
    end
    p = "2087-5E2SE-19-JG7BC"
    a = split(p, "-")
    put a
    -- ["2087", "5E2SE", "19", "JG7BC"]
    Dave -
    Adobe Community Expert
    www.blurredistinction.com
    http://www.adobe.com/communities/experts/

  • How to disable tiny status bar from grabbing touches

    My app runs in landscape mode. I have done some tests on detecting touches, and in my view, which covers the entire screen, there is a sliver of the screen that is not returning touch events; this sliver of the screen corresponds to top say 24 pixels of the screen, where the batter life indicator and other things go. my view covers the entire screen and I want to have full screen control, but am losing these touches, probably because some higher priority listener is getting the events; how can I disable this status bar so I can get the touches?

    Same problem.
    After testing on the device the problem persists.
    I know from testing other applications that it IS possible to use the WHOLE screen for your own application.
    Just I don`t know whats going wrong here.
    Will probably check back tomorrow with my view-hierarchy and more details, maybe together we can find out what the problem is.

  • How to disable a second display from being auto-detected

    I have a 30" ACD and a 24" Dell hooked up to my Mac Pro, and most of the time I find myself only using the ACD. I normally keep the Dell powered off, but SL still detects its presence This actually creates a problem, because I invariably lose the cursor every now and then when my mouse strays off to the phantom display's side.
    I don't want to have to keep unplugging the video cable on the second display to make it go away, and I don't want to keep it on constantly, only so I can know where the cursor is at all times. BTW, mirroring does not work, because the resolution on the 30" is reset to 1920x1200 (i.e., the lower of the two displays). I know I could get a KVM switch, but I'm hoping there is some setting in OS X (even if only accessible through Terminal) that can stop my Mac Pro from detecting a display that is actually turned off.

    I use SwitchResX to disable one of my 24" ACD's when not needed. The program actually works quite well.

  • How to disable software auto update from iPad

    I was trying to download my favorite programs and iOS 7, but first I have to stop software auto update, how will I do this?

    The actuall problem I'm trying to fix is the following error:
    <pre>
    Another app is currently holding the yum lock; waiting for it to exit...
    The other application is: PackageKit
    Memory : 45 M RSS (357 MB VSZ)
    Started: Tue Jul 10 09:27:04 2012 - 04:09 ago
    State : Sleeping, pid: 2317
    </pre>
    The above error can happen if you have an active Gnome session and e.g. connect as root using ssh session and try to use yum.
    I may have found a way now to disable the automatic system updates, however, I don't know if this is the proper solution since I cannot find any information about it.
    I modified */etc/PackageKit/PackageKit.conf* and changed:
    <pre>
    DefaultBackend=yum -> DefaultBackend=nobackend
    </pre>
    It requires a re-login of your Gnome X session to take affect.
    Then Administration/Software update does no longer scan for updates, and apparently no longer lock yum at the system level. At least the problem seems to be fixed globally that way.
    I will mark this question as answered, but any ideas are still welcome.
    Thanks!
    Btw, here is a link to previous older thread to disable it on a per-user basis:
    Disable PackageKit Update Applet

  • How to disable Material Picking MB26 from Reservation display MB23

    Hello guys
    I have to know that disable picking option from display menu reservation t-code MB23. One of our user issued a material from reservation display function selecting picking option from menu and saved that lead to MIGO by MB26 even user does not have MB26 transaction authorization.
    thanks in advance
    Nath

    Hi FC
    Thank u for replying my issue. I have already checked your 2nd option by basis authorization to prevent auh.object by a user. This auh.object is link to Inventory management MM_B that lead to M_MRES_BWA,  M_MRES_WWA,  and M_MRES_WMG. It could not possible remove this authorization because this required for other Inventory management/physical Invertory function like material transfer posting by plant, movt type, etc...
    Also I have checked SHD0 will prevent disable a screen by variant, but here MB23 not only have to enable picking by a single screen but also there further more drill down screens and everywhere picking function is available to issue material by t-code MB26 even user does not have authorization MB26
    I might have doubt about MB23 screen, why SAP enable this picking function (MB26) in display reservation MB23.
    Display screens menu can not enable (should invisible gray) any functional activities if that person does not have MB26 authorization.
    Thanks in advance you guys if anyone have reasonable inputs.
    Edited by: Nath Bahadur on Jan 11, 2012 1:56 PM

  • How to disable security alert  coming from ssl?

    Hello friends,
    I am developing an internal site for which i am using SSL for the security of the data.
    But i am getting security alert because iam using an IP address or machine short name in the URL to access it.
    Any other way to disable this alert.
    If it is not possible to disable the security alert can any body guide how to achieve security on the network..
    Which means i want a way to encrypt any given data string with the help of java script and the output encrypted string should be given as a input to the java code(servlet) to decrypt the encrypted string to its original form.
    Please any one help me with the code.
    I will be very thankful to you all.
    Thanks.

    While one of SSL's goals is to protect the transmission of data over networks through encryption, another goal is allow client and server applications to verify the integrity of their connections - by verifying that they are connected to whom the software claims to be. The client application (the browser as an example) does this verification by ensuring that the server site you've accessed in the URL, matches the fully qualified domain name (FQDN) in either the SubjectDN or the AlternateSubjectName extension of the digital certificate being used by the web-server to enable SSL. (Servers can also verify client software connections by asking for a client certificate; unfortunately 99.99% of web-sites do not use this little-known feature).
    If the server uses an SSL certificate called "mysecuresite.company.com", and you access the server as "mysecuresite" or with its IP address, you are, essentially, tripping on the very code in the SSL library designed to protect you - by throwing up a security alert about the site you've just accessed, which tells you that the site you've accessed does not match the name in the digital certificate.
    The simplest way to avoid the security alert is to use the FQDN of the web-server when you access the site. There are other complex ways of solving the problem, but the simplest is often the best. Besides, it will help to educate your users with this simple fact about SSL - you never know when this knowledge might be helpful to them.

  • How to disable application jar creation in tmp folder

    Hi
    I am deploying an application on clustered server.
    Everytime i deploy application a jar(for the application) is getting created in admin server's tmp folder in the folder WLTEMP_APP_DOWNLOADS/<application_name>/<application_name.jar>
    I am deploying application in exploded format and one of its functionality is to generate csv files.
    As Weblogic seems to be referring the application_name.jar I get a 404 error whenever csv files are accessed in UI.
    Could somebody please suggest the settings to disable the application jar creation.

    The issue was with weblogic caching.
    The server was creating a jar of the application in a tmp folder for every deployment .
    Due to this any new file generated within deployment path was not being identified.
    Disabling caching on admin server resolved the issue.

  • How to disable self defined button from ALV Toolbar when ok_code ='BACK'

    here is the code
    CLASS Z_CL_6_U_EVENT_RECEIVER DEFINITION.
      PUBLIC SECTION.
        METHODS:
          HANDLE_TOOLBAR
            FOR EVENT TOOLBAR OF CL_GUI_ALV_GRID
                IMPORTING E_OBJECT E_INTERACTIVE,
          HANDLE_USER_COMMAND
            FOR EVENT USER_COMMAND OF CL_GUI_ALV_GRID
                IMPORTING E_UCOMM.
    ENDCLASS.         
    CLASS  Z_CL_6_U_EVENT_RECEIVER IMPLEMENTATION.
      METHOD HANDLE_TOOLBAR.
    DATA: LS_TOOLBAR  TYPE STB_BUTTON.
    IF G_FLAG = 'X' and ok_code = space.
          CLEAR LS_TOOLBAR.
           MOVE 0 TO LS_TOOLBAR-BUTN_TYPE.
          MOVE 'UPDATE' TO LS_TOOLBAR-FUNCTION.
          MOVE  ICON_MODIFY  TO LS_TOOLBAR-ICON.
          MOVE 'Update Records'(111) TO LS_TOOLBAR-QUICKINFO.
          MOVE ''(112) TO LS_TOOLBAR-TEXT.
          MOVE ' ' TO LS_TOOLBAR-DISABLED.
          APPEND LS_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
    elseif ok_code = 'BACK'.
          CLEAR LS_TOOLBAR.
      LS_TOOLBAR-function = 'UPDATE'.
      LS_TOOLBAR-butn_type = 0.
      LS_TOOLBAR-icon = ICON_MODIFY.
      LS_TOOLBAR-quickinfo = 'Update Records'.
      LS_TOOLBAR-disabled = 'X'.
      append LS_TOOLBAR TO <i><b>E_OBJECT</b></i>->MT_TOOLBAR.
    ENDIF.
      ENDMETHOD. 
    <i><b>ERROR COMES when ok_code is 'BACK'.
    at this point E_OBJECT has null reference instead of ref to Class cl_ALV_EVENT_TOOLBAR_SET.</b></i> 
    tell me why this error coming.
    pls help

    Hello Neetu
    To give you an example I have copied sample report BCALV_GRID_DEMO, added some code (search for <b>$Comment</b>) and modified the GUI-status <b>MAIN100</b> (replace function code EXIT with <b>BACK</b> for the F3 function).
    Run the program and push several times the BACK button: one toolbar function after the other will be inactivated.
    PROGRAM test.
    DATA: ok_code LIKE sy-ucomm,
          gt_sflight TYPE TABLE OF sflight,
          g_container TYPE scrfname VALUE 'BCALV_GRID_DEMO_0100_CONT1',
          grid1  TYPE REF TO cl_gui_alv_grid,
          g_custom_container TYPE REF TO cl_gui_custom_container.
    <b>----
          CLASS lcl_eventhandler DEFINITION
    CLASS lcl_eventhandler DEFINITION.
      PUBLIC SECTION.
        CLASS-DATA:
          md_cnt    TYPE i.
        CLASS-METHODS:
          handle_toolbar FOR EVENT toolbar OF cl_gui_alv_grid
            IMPORTING
              e_object
              e_interactive
              sender.
    ENDCLASS.                    "lcl_eventhandler DEFINITION
          CLASS lcl_eventhandler IMPLEMENTATION
    CLASS lcl_eventhandler IMPLEMENTATION.
      METHOD handle_toolbar.
        DATA:
          ls_button    TYPE stb_button.
        ADD 1 TO md_cnt. " a simple counter
        LOOP AT e_object->mt_toolbar INTO ls_button FROM 1 TO md_cnt.
          ls_button-disabled = 'X'.
          MODIFY e_object->mt_toolbar FROM ls_button.
        ENDLOOP.
      ENDMETHOD.                    "handle_toolbar
    ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION</b>
    START-OF-SELECTION.
    *       MAIN                                                          *
      SELECT * FROM sflight INTO TABLE gt_sflight.
      CALL SCREEN 100.
    *       MODULE PBO OUTPUT                                             *
    MODULE pbo OUTPUT.
      SET PF-STATUS 'MAIN100'.
      IF g_custom_container IS INITIAL.
        CREATE OBJECT g_custom_container
               EXPORTING container_name = g_container.
    *   Instantiate ALV grid control
        CREATE OBJECT grid1
               EXPORTING i_parent = g_custom_container.
        CALL METHOD grid1->set_table_for_first_display
          EXPORTING
            i_structure_name = 'SFLIGHT'
          CHANGING
            it_outtab        = gt_sflight.
    <b>*$Comment: Set event handler for event TOOLBAR
        SET HANDLER:
          lcl_eventhandler=>handle_toolbar FOR grid1.
      ENDIF.</b>
    ENDMODULE.                    "PBO OUTPUT
    *       MODULE PAI INPUT                                              *
    MODULE pai INPUT.
    *   to react on oi_custom_events:
      CALL METHOD cl_gui_cfw=>dispatch.
      CASE ok_code.
        WHEN 'EXIT'.
          PERFORM exit_program.
    <b>    WHEN 'BACK'.
    $Comment: Toolbar can be modified on-the-fly
          grid1->set_toolbar_interactive( ).</b>
        WHEN OTHERS.
    *     do nothing
      ENDCASE.
      CLEAR ok_code.
    ENDMODULE.                    "PAI INPUT
    *       FORM EXIT_PROGRAM                                             *
    FORM exit_program.
    *  CALL METHOD G_CUSTOM_CONTAINER->FREE.
    *  CALL METHOD CL_GUI_CFW=>FLUSH.
      LEAVE PROGRAM.
    ENDFORM.                    "EXIT_PROGRAM
    Regards
      Uwe

  • How to disable Auto-Sync option from iTunes?

    Hi,
    Whenever I connect my or my wife's iPhone with my Laptop, iTunes start syncing it without my permission.
    Can you please help me to disable it?
    Thank you in advance?
    Regards,
    Darshan Chhag

    In iTunes Preferences (CTRL+,) go to the Devices tab and check Prevent iPods, iPhones, ans iPads from syncing automatically

Maybe you are looking for