How to remove options under Create Draft in SOCO SRM 7.13 SP01

Hi All,
We have a requirement to remove the option like Rfx,Contract and Auctions under Create Draft on the below screen.We checked the WD component /SAPSRM/WDC_DO_SOCO_GAF_2 for it but did not get much to delete these options.,Kindly provide your expert help to resolve this issue.
Let me know if you need any other details.
Thanks,
Ankur

Hello,
do not know if it also works with SRM 7.13, but check this below blog:
Restricting draft document types in SRM 7 sourcing cockpit
Regards.
Laurent.

Similar Messages

  • How to remove options in context menu of the task in UWL.

    Hi,
    How to remove options or customize the context menu of the task in UWL.
    I have 4 options(Edit,Remove,Forward,Resubmit) is appearing in the context menu.
    My requirement is to delete Forward option form the menu list and only 3 options
    should appear in the list.
    Can anybody suggest where to change?
    Thanks,
    Vikas

    Hi vikas,
    Go to System Admin ->System Config->UWL Admin.
    select your system alias.
    Click on Click to Click to Administrate Item Types and View Definitions.
    Select your UWL configuration.
    Download DTD as well as XML file through Download Configuration.
    Then you can edit the xml file using XML spy editor or anyone.
    to upload go back to the same page and select the tab...Upload new configuration.
    Do not forget to clear the cache after upload.
    Hope this helps you.
    Regards
    Atul Shrivastava

  • How to remove SWFs under another SWF?

    Hello!
    I'm using the following code to link to other pages:
    var loadPage = new Loader();
    function loadBiology(e:MouseEvent):void {
    addChild(loadPage);
    loadPage.load(new URLRequest("biology.swf"));
    Now the code works fine and such, this is more of something I'm curious about!
    When I use that code, I'm assuming that 'biology.swf' is simply placed over the current SWF that is open (as I can still hear the music even though I've gone away from that particular page). Is this correct?
    And then I'm just wondering if there is a simple way to remove that current SWF and replace it with the new one ('biology.swf)? (I use this code in various pages to link them all together, and I think the more a user navigates around the pages it really slows down the whole program!)
    I have slight knowledge that in Actionscript 2 you assigned a SWF to a particular layer, but I'm not sure how to go about it in AS3!
    Any help is appreciated! (I'm a beginner so please forgive my ignorance!)

    Assuming that this is on the main timeline, I suggest creating sprites that hold each one of the SWFS that you create, so then you can have something like the following:
         var bioHolder:Sprite;
    public function addBiologyPage( _url:String ):void{
         if( !bioHolder) //holder doesn't exist? create it
              bioHolder = new Sprite();
         var loadPage:Loader = new Loader();     //create new loader
         this.addChild( bioHolder );     //ad holder to parent
         bioHolder.addChild( loadPage );  //add loader to holder
         loadPage.load(new URLRequest( _url ) ); //load loader
    private function removeBioPage():void{
         this.removeChild( bioHolder );
         bioHolder.removeAllChildren();
         bioHolder = null;
    That should let you add and remove pages as needed.  Then you could set up an array that holds the holder Sprites if you have alot  / dynamic pages that you need to manage.

  • Elements 10 I have no options under create

    I was trying to create a collage in PS elements 10 and when I go to the create option, there are no options underneath it, I have reset the panels and tolls  but nothing appaers. Please see the image below, makes no difference if I have an open image or not. I ahve the same problem under guided edit, where I have no options. Have I not instaleld something ?

    That's odd. Try resettings editor preferences. Press "Ctrl +Shift +Alt" as you press Edit in welcome screen . Do not leave the keys until you see a dialog asking you to delete editor preferences. Press "YES". If it does not fixes the problem then please see this link.
    http://helpx.adobe.com/photoshop-elements/kb/quick-guided-edit-panels-blank.html

  • How I remove previous MC created with createmovieClip() and attachMovie()

    Hello.
    i have another problem today, :-)
    my little application contain a combobox and a MC "filmstrip" in my _root. the combobox work with an xml file containing links to other xml files. Inside my MC "filmstrip" i have a script loading with a for loop the xml file selected in the combobox on the _root .
    In this loop i createEmptyMovieClip an attachMovies with the data  of the xml selected.
    evrything works exept that evrytime i change my selection in the combobox it load the data  on top of the previous load.
    I would like to delete  the previous load before load the new one... if someone can help me???
    On my scene 1st frame i have only a code for scroll the movieclip filmstrip but i think is not nescessary that i show it.
    here is the code inside the MC fimlstrip (sorry but i put all the code). i attach an example aswell
    var link1:Array = new Array();
    var url:String;
    var theUrl:String;
    var whoOn:Number;
    whoOn = 1;
    //load the  xml containing the link for T.Load() function
        var x:XML = new XML();
        x.ignoreWhite = true;
    x.onLoad = function(success) {
            var photos:Array = this.firstChild.childNodes;
            for (i=0; i<photos.length; i++) {
                link1.push(photos[i].attributes.link1);
            url = link1[whoOn];
            theUrl = url;
            _root.filmstrip.Tload(theUrl);
            _root.lengthscroll(theUrl);
        x.load("category.xml");
    //create the Listener object
    var cbListener:Object = new Object();
    //create tee change function
    cbListener.change = function(event_obj:Object) {
        if (_root.select.selectedItem.label == "Last updated") {
            whoOn = 0;
        } else if (_root.select.selectedItem.label == "Special") {
            whoOn = 1;
        trace(_root.select.selectedItem.label);
        url = link1[whoOn];
        trace("url is "+_root.filmstrip.url);
        theUrl = url;
        _root.lengthscroll(theUrl);
        Tload(theUrl);// set the url to load in the T.load()
    _root.select.addEventListener("change",cbListener);
    function Tload(theUrl) {//function that load the url selected in the combobox
        var T:XML = new XML();
        T.ignoreWhite = true;
        var thumb:Array = new Array();//create array
        var thTxt:Array = new Array();
        var DescTXT:Array = new Array();
        var priceTXT:Array = new Array();
        var linkTXT:Array = new Array();
        var Modelink = "http://www.windi.no/catalog/advanced_search_result.php?keywords=";//1st part of the link for when you click on the tumbnails
        var Spc = 0;// space between thumbnail default 0
        var posX = 0;// thumbnail position x
        var posY = 0;//thumbnail 1st position y
        var tl:MovieClip = this;
        var whoIsOn:Number;
        whoIsOn = 0;
        T.onLoad = function(xml) {
            var photos:Array = this.firstChild.childNodes;
            //loop the php Xml for the thumbnail
            for (i=0; i<photos.length; i++) {
                var Num = i+1;
                var WhoIsOn = Num;
                var TXTCLIP = "TXTCLIP"+Num;
                var TXTCLIP2 = "TXTCLIP2"+Num;
                var TXTCLIP3 = "TXTCLIP3"+Num;
                var Clp_name = "clip"+Num;
                var Bt_name = "Bt"+Num;
                var container = (container+Num);
                //put each attributs of thumbnail for each photos node
                thTxt.push(photos[i].attributes.thumbtext);
                thumb.push(photos[i].attributes.thumbnail);
                DescTXT.push(photos[i].attributes.thumbdesc);
                priceTXT.push(photos[i].attributes.thumbprice);
                linkTXT.push(photos[i].attributes.thumbmodel);
                _root.Text_Thumbnail(thTxt[whoIsOn]);
                _root.bigphotos.loadMovie(thumb[whoIsOn],1);
                var fullink = (Modelink+linkTXT[i]);//the 2nd part of the "Modelink"
                //display Tiles
                var TXT:MovieClip = tl.attachMovie("TXTCLIP", TXTCLIP, tl.getNextHighestDepth());
                TXT._x = posX+120;
                TXT._y = posY+Spc+13;
                TXT.titleTXT.text = thTxt[i];
                //desccription
                var TXT2:MovieClip = tl.attachMovie("TXTCLIP2", TXTCLIP2, tl.getNextHighestDepth());
                TXT2._x = posX+120;
                TXT2._y = posY+Spc+30;
                TXT2.titleTXT.text = DescTXT[i];
                // display prices
                var TXT3:MovieClip = tl.attachMovie("TXTCLIP3", TXTCLIP3, tl.getNextHighestDepth());
                TXT3._x = posX+120;
                TXT3._y = posY+Spc+90;
                TXT3.titleTXT.text = priceTXT[i];
                //display thumbnails
                var container:MovieClip = tl.createEmptyMovieClip(Clp_name, tl.getNextHighestDepth());
                container.loadMovie(thumb[i],1);
                container._yscale = 30;
                container._xscale = 30;
                container._x = posX;
                container._y = posY+Spc;
                //for the OnRelease function on the thumbnail
                var BT:MovieClip = tl.attachMovie("Btb", Bt_name, tl.getNextHighestDepth());
                BT._x = posX;
                BT._y = posY+Spc;
                BT.whoIsOn = i;
                BT.onRelease = function() {
                    stopAllSounds();
                    getURL((Modelink+linkTXT[this.whoIsOn]));//this is the link when you click on the thumbnail
                BT.onRollOver = function() {
                    _root.Text_Thumbnail(thTxt[this.whoIsOn]);//display the title of the thumbnail by rolling over
                    _root.whoIsOn = this.whoIsOn;
                    _root.bigphotos.loadMovie(thumb[this.whoIsOn],1);//Display the poto of the thumbnail by rolling over
                BT.onRollOut = function() {
                    _root.Text_Thumbnail("");
                Spc = Spc+160;//for the space betwen the clips           
        //load the xml file selected in the combobox
        trace("the url loaded is: "+theUrl);
        T.load(theUrl);//Load the url selected in the combobox

    created a function for remove the movieClips bu it dont wotk :
    var link1:Array = new Array();
    var url:String;
    var theUrl:String;
    var whoOn:Number;
    whoOn = 1;
    //HERE MY FUNCTION
    function reset_all() {
        _root.filmstrip.removeMovieClip();
    //<---TO HERE
    //load the  xml containing the link for T.Load() function in filmstrip movie clip the xml file
    function loadCat() {
        var x:XML = new XML();
        x.ignoreWhite = true;
        x.onLoad = function(success) {
            var photos:Array = this.firstChild.childNodes;
            for (i=0; i<photos.length; i++) {
                link1.push(photos[i].attributes.link1);
            url = link1[whoOn];
            theUrl = url;
            _root.filmstrip.Tload(theUrl);
            _root.lengthscroll(theUrl);
        x.load("category.xml");
    loadCat();
    //create the Listener object
    var cbListener:Object = new Object();
    //create tee change function
    cbListener.change = function(event_obj:Object) {
        if (_root.select.selectedItem.label == "Last updated") {
            whoOn = 0;
        } else if (_root.select.selectedItem.label == "Special") {
            whoOn = 1;
        trace(_root.select.selectedItem.label);
        url = link1[whoOn];
        trace("url is "+_root.filmstrip.url);
        theUrl = _root.filmstrip.url;
        _root.lengthscroll(theUrl);
        Tload(theUrl);// set the url to load in the T.load() function in filmstrip
    _root.select.addEventListener("change",cbListener);
    function Tload(theUrl) {//function that load the url selected in the combobox
        var T:XML = new XML();
        T.ignoreWhite = true;
        var thumb:Array = new Array();//create array
        var thTxt:Array = new Array();
        var DescTXT:Array = new Array();
        var priceTXT:Array = new Array();
        var linkTXT:Array = new Array();
        var Modelink = "http://www.windi.no/catalog/advanced_search_result.php?keywords=";//1st part of the link for when you click on the tumbnails
        var Spc = 0;// space between thumbnail default 0
        var posX = 0;// thumbnail position x
        var posY = 0;//thumbnail 1st position y
        var tl:MovieClip = this;
        var whoIsOn:Number;
        whoIsOn = 0;
        T.onLoad = function(xml) {
           reset_all(); /// HERE I APLY IT
            var photos:Array = this.firstChild.childNodes;
            //loop the php Xml for the thumbnail
            for (i=0; i<photos.length; i++) {
                var Num = i+1;
                var WhoIsOn = Num;
                var TXTCLIP = "TXTCLIP"+Num;
                var TXTCLIP2 = "TXTCLIP2"+Num;
                var TXTCLIP3 = "TXTCLIP3"+Num;
                var Clp_name = "clip"+Num;
                var Bt_name = "Bt"+Num;
                var container = (container+Num);
                //put each attributs of thumbnail for each photos node
                thTxt.push(photos[i].attributes.thumbtext);
                thumb.push(photos[i].attributes.thumbnail);
                DescTXT.push(photos[i].attributes.thumbdesc);
                priceTXT.push(photos[i].attributes.thumbprice);
                linkTXT.push(photos[i].attributes.thumbmodel);
                _root.Text_Thumbnail(thTxt[whoIsOn]);
                _root.bigphotos.loadMovie(thumb[whoIsOn],1);
                var fullink = (Modelink+linkTXT[i]);//the 2nd part of the "Modelink"
                //display Tiles
                var TXT:MovieClip = tl.attachMovie("TXTCLIP", TXTCLIP, tl.getNextHighestDepth());
                TXT._x = posX+120;
                TXT._y = posY+Spc+13;
                TXT.titleTXT.text = thTxt[i];
                //desccription
                var TXT2:MovieClip = tl.attachMovie("TXTCLIP2", TXTCLIP2, tl.getNextHighestDepth());
                TXT2._x = posX+120;
                TXT2._y = posY+Spc+30;
                TXT2.titleTXT.text = DescTXT[i];
                // display prices
                var TXT3:MovieClip = tl.attachMovie("TXTCLIP3", TXTCLIP3, tl.getNextHighestDepth());
                TXT3._x = posX+120;
                TXT3._y = posY+Spc+90;
                TXT3.titleTXT.text = priceTXT[i];
                //display thumbnails
                var container:MovieClip = tl.createEmptyMovieClip(Clp_name, tl.getNextHighestDepth());
                container.loadMovie(thumb[i],1);
                container._yscale = 30;
                container._xscale = 30;
                container._x = posX;
                container._y = posY+Spc;
                //for the OnRelease function on the thumbnail
                var BT:MovieClip = tl.attachMovie("Btb", Bt_name, tl.getNextHighestDepth());
                BT._x = posX;
                BT._y = posY+Spc;
                BT.whoIsOn = i;
                BT.onRelease = function() {
                    stopAllSounds();
                    getURL((Modelink+linkTXT[this.whoIsOn]));//this is the link when you click on the thumbnail
                BT.onRollOver = function() {
                    _root.Text_Thumbnail(thTxt[this.whoIsOn]);//display the title of the thumbnail by rolling over
                    _root.whoIsOn = this.whoIsOn;
                    _root.bigphotos.loadMovie(thumb[this.whoIsOn],1);//Display the poto of the thumbnail by rolling over
                BT.onRollOut = function() {
                    _root.Text_Thumbnail("");
                Spc = Spc+160;//for the space betwen the clips           
        //load the xml file selected in the combobox
        trace("the url loaded is: "+theUrl);
        T.load(theUrl);//Load the url selected in the combobox

  • How to remove  options like  add , toogle, delete  in the BI Portal

    When you logon to the portal and select any planning function and after giving the input for mandatory cells and after execution of that
    click the filter option on the right side of screen. In the next window  How can we restrict the options like add , toogle, delete in the BI Portal.

    Hi vikas,
    Go to System Admin ->System Config->UWL Admin.
    select your system alias.
    Click on Click to Click to Administrate Item Types and View Definitions.
    Select your UWL configuration.
    Download DTD as well as XML file through Download Configuration.
    Then you can edit the xml file using XML spy editor or anyone.
    to upload go back to the same page and select the tab...Upload new configuration.
    Do not forget to clear the cache after upload.
    Hope this helps you.
    Regards
    Atul Shrivastava

  • How to remove directories under Loops Search Setup?

    Hi, I want to move my sound effects loops to an external firewire drive to free up 20+ GB. In Soundtrack Pro when I go into Loops Search Setup, where the list of Directories being indexed is displayed, the "-" icon at the top for "remove directory" is greyed out--no matter which directory I select. How do I get this to work?
    Thanks.

    Is there an answer to this issue? In the thousands of pages of manuals for FCS2, there isn't a single mention of this issue, and nothing online seems to turn up the answer. Could somebody, please, post how to do this!
    Where the heck is a phone number to call Apple about their own software?

  • How to remove a file created by text_io

    Hello Gurus:
    I have a file created using forms text_io. But, as the size of the file is too large, I would like to remove it.
    What is the best way to d it? text_io does not provide any mechanism to do that.
    Regards

    Hi!
    Depends on your forms version.
    If you use client server forms 6i you can simply use the host command
    or the d2kwut package that contains a pl/sql package called win_api_utility and a delete_file procedure.
    With forms on the web (10g / 10g R2 / 11g) you have to use the webutil package that contains a
    package webutil_file and a delete_file function to delete a file on the client.
    To delete a file on the forms 10g/11g server you can use host/d2kwut like with forms 6i.
    Regards

  • Tracker - how to remove option to save file locally

    Hi, when I send a pdf for review, it saves the document both on our Server and my local hard drive. How can I 'not' save it on my hard drive? All I want is the Server version, the local version is not required as this is just a duplicate of what I already have (but with "_review" inserted in the filename). Acrobat 8 never did this before, is this something new for V9?

    For web apps, you can use the FileReference class. This allows you to
    open a dialog to the user to load an external file, or save it to their
    computer. Here's more details:
    http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7cf8.html
    Please note that this only works if the user triggers the action and
    goes through the file dialog. You can't save or load files without their
    knowledge from a web app. An AIR desktop app is different, and can
    load/save files in the background.
    iBrent

  • Cannot remove an e-mail account - no removal tool under account settings

    Am using Thunderbird 24.5.0. Not having under account settings a account remove option. I tried to remove an e-mail account, but can not delete, or remove it. I read your solution but no removal option under the drop down box in account settings. lease help

    You are not showing only the Account Settings window, it is cut off at the bottom. For example there is no OK or Cancel button. Perhaps this is what you are seeing as well which explains why you cannot see Account Actions.
    Try this:
    Open Account Settings window and then minimize Thunderbird, so you can only see the Account Settings window
    OR drag the Account Settings window to the side or above.
    This is what the full Account Settings window should look like. See image.

  • Stepwise approach for creating Organization Structure in SRM

    Hi Experts,
    Pls do share how we go ahead about creating Organisation Structure in SRM.
    I want to get following things clear:
    1.Once all the components like company codes, purchasing org, purchasing grps, users have been created.... How do we start with creating org structure....... which element in org str  hierarchy we create first.... n so on...
    2. In a organisation structure, we do have diff companies, n company has departments.... and department has users...... I want to know how do Purchasing groups and purchasing org we create get assigned to this.
    3. What is the significance of Department attribute?? Is it related to MRP Controller of MM.
    -Dhananjay

    Hi,
    Pl refer http://help.sap.com/saphelp_srm50/helpdata/en/b4/9de8cc7d4b11d2b423006094b92d37/content.htm for details.
    Regards,
    Nikhil

  • How to Disable\Remove Registration option under Help menu in Lightroom 5.3

    Hi,
    Could someone kindly guide as to how can we remove\Disable the Lightroom Registration option under help menu for Adobe lightroom 5.3?
    I intend to deploy the application for enterprise users and do not wish that the users should be able to see the Serial number or try registering the product on thier own.
    I know this can be done for Adobe CS6 and CS5 using the AAMEE tool which again does not work for Lightroom.
    Is there any tool from Adobe or any registry key/File to suppress this option.
    Kindly Advice.
    Thanks in Advance!

    Currently, there isn't a way to do this. But this has reacently become a common feature request and we are working to get it added.

  • How do I hide/remove the Invite People menu option under Share in Office 2013

    We have attempted to disable all the cloud features of Office 2013 using GPOs. However, the "Invite People" menu option under Share in the Office backstage view still shows up. Is there a GPO or reg key to remove or hide this option? See image
    below.
    Thanks very much

    Please try to use the Office Custom UI Editor to hide the the "Invite People" Task.
    http://openxmldeveloper.org/blog/b/openxmldeveloper/archive/2009/08/07/7293.aspx
    The idmso is ShareWithPeople (found it from the Office document http://www.microsoft.com/en-us/download/details.aspx?id=727)
    and reference to the following blog to write the XML:
    http://blogs.msdn.com/b/vsod/archive/2013/04/05/customizing-office-2013-backstage.aspx
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • How to remove the Options and Task from the toolbar

    In the FLM portal initially we can see 'Options' in the menu bar after we log in. Below it there is 'Tasks' and 'Reports'. on clicking 'Tasks' and new menu bar 'Tasks' can be seen, under which 'New Tasks' option is there. When we click on 'New Forms' it shows the list of forms and when we select the desired form it opens the interactive form.
    My problem is when this form is opened on the header the 'Options' and 'Tasks' bar can be seen, under which the adobe menu bar comes (Print, Save, Zoom etc.) . This 'Options' and 'Tasks'  how to remove from the interactive forms page.
    Edited by: NIKHILKUMAR POOJARI on Feb 13, 2009 4:24 PM

    Dear Mano,
    By using Authorizations you can remove the Drag and Relate Menu
    Goto Administration ---> System Initialization -
    > Authorization -
    > General Authorization
    General -
    > Drag & Relate -
    > No authorization
    Regarding Authorizations, click the below link to get details
    [Define Authorizations|https://websmp205.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_HIER_KEY=701100035871000437965&_OBJECT=011000358700000481572006E&_SCENARIO=01100035870000000183&]
    Regards,
    Bala

  • HT4314 I don't but I have created 2 game center accounts with one apple ID and I want to remove the new account which I made so need help how to remove it

    I don't know how but I created it and want to remove now but I didn't got any option for removing account. I have unfriend all my friends which where connected to my new account and I have clicked the public profile and kept it off but I didn't find how to remove please help me with this.

    Im having the problem too, I want to play Clash of clans with my brother but when ever he tries to play, hes me;(
    CAN ANYONE HELP US!!! PLEASE!!!

Maybe you are looking for

  • Excise Returns in case of intercompany

    scenario in which goods are delivered from a factory plant and the delivery results in an inter company invoice (IV) ánd an normal customer invoice, so TWO  company codes are involved. We register the order in CoCd IN01; delivery will be done from a

  • X200 Tablet - BlueScreen Windows Vista and Windows 7

    I have some troubles with my laptop, it sometime happens Bluescreen with these notice, after upgrade windows 7 from Vista I also have this error. Please help me to fix BlueScreen, I fell unhappy when it immediately turn off and retart because of this

  • Voltage converters/AC/DC Combo Adapter

    Hi folks, I need a converter/AC/DC adapter for my X61 to convert from 110 to 220 volts. What came with my laptop was an AC adapter that says 65W 20V  Will that work in Grenada (Caribbean) and South America? Also, would the 90 W slim AC/DC Combo adapt

  • Material doc reversal

    Hi SAP Gurus, the error says Deficit of SL stck. in qual. insp 336 EA: material no plant sloc. i think the answer is, the Inspection lot for this has long since had a Usage Decision made on it. Once a lot has had a QM Usage Decision, you cannot rever

  • Paper mismatch on phto paper

    Hi all, I got this error message when I try to print photos. I hvae done it before now I got this message. I have the new HP c309g photosmart all in one printer. I install it last month and everything was ok. only today I try to print some photos, it