We want to disable or eliminate "Finally Close" option in PO Control

We want to disable or eliminate "Finally Close" option in PO Control. Pl suggest any solution
Regards,

i will try to accomplish through custom.dll
Pl also suggest on this
We make Approval Group based on item category for PR or PO approval. The question is , i want to get approval group based on item or its category. Just pass item id and get which approval group is going to approval this item.
i got po_control_rules table it just contains categories range in description form, but didn't get any proper help.
Pl suggest solution
Regards,

Similar Messages

  • Disable the Finally Close option in 10.7

    Hello All
    If anybody working on 10.7,please sugesst me, how to disable the PO Finally Close option for a responsibility.Because it is 10.7, we can use personalization here.
    Solution required ASAP.
    Thanks in Advance.

    Use the custom library (custom.pll) .

  • In the component overview screen of CO01 I want  to disable all  the field in  screen of table control.I want to make it as output screen only.

    Hi all
      In the component overview screen of CO01 I want  to disable all  the field in  screen of table control.I want to make it as output screen only.
    Thanks & Regards,
    Rajib.

    Isn't that just exactly what transaction CO02 does? CO01 is for creating production orders so what sense does it make to have it display mode only?
    Maybe your goal is to stop then end user changing the component assignment that is automatically  detected by the system. If so, personally I think a better starting point would be PP configuration or user authorizations rather than looking to change the screen by whatever method. As we don't know what you are trying to achieve it's hard to offer much more advice maybe all you need is to change transaction to CO02

  • Disable the Copy and Paste option in keyboard [Textbox control] Windows phone App

    In Windows phone 8.1 WRT app, I want to disable the copy and paste option in the keyboard for the textbox control
    Please let me know if any possibilities and if you have the code snippets Please share it .

    Hi Ruthradevi,
    As I know we have no way to disable the copy and paste option in the keyboard.
    Why do you want to disable it, can you explain more about your scenario?  Let's see if we can make a similar function like you required.
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Able to drag drop items of combobox but want to disable 1st item

    Hello Sir,
    I am able to drag drop elements of the combobox.
    Here is my code...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" xmlns:local="*" xmlns:utils="adobe.utils.*" xmlns:controls="qs.controls.*" initialize="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.DragEvent;
    import mx.events.ListEvent;
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.controls.ComboBox;
    import mx.controls.Alert;
    [Bindable]
    public var str:String = "";
    public var comboLength:int;
    public function init():void
    var xml:XML = <test>
    <col>
    <col1>one</col1>
    </col>
    <col>
    <col1>two</col1>
    </col>
    <col>
    <col1>three</col1>
    </col>
    <col>
    <col1>four</col1>
    </col>
    <col>
    <col1>five</col1>
    </col>
    <col>
    <col1>six</col1>
    </col>
    <col>
    <col1>seven</col1>
    </col>
      </test>;
      cb1.dataProvider = xml;
      comboLength = xml.col.length();
      cb1.rowCount = comboLength;
      str = (xml.col[0].col1.toString());
      cb1.prompt = str;
    public function closeHandler(event:Event):void
    if(MouseEvent.DOUBLE_CLICK)
    // Alert.show("Click Event");
    public function changeHandler(event:ListEvent):void
    // Alert.show("Single Click Event");
    public function doubleClickEvent(event:MouseEvent):void
    Alert.show(event.currentTarget.toString());
    Alert.show(event.target.toString(),"Double Click");
    public function dragEnterFunction(event:DragEvent):void
    Alert.show(event.target.parent.toString());
    ]]>
    </mx:Script>
    <mx:ComboBox id="cb1" prompt="prashant" doubleClickEnabled="true" doubleClick="doubleClickEvent(event)"
    close="closeHandler(event)" dragEnter="dragEnterFunction(event)" >
    <mx:itemRenderer>
    <mx:Component>
    <mx:DataGrid itemClick="outerDocument.cb1.text = this.selectedItem.col1.toString();itemSelected(event)"
    dragEnabled="true" dropEnabled="true" dragDrop="draDropHandler(event)" dragMoveEnabled="true" headerHeight="0" showHeaders="false"
    creationComplete="init()" click="clickable()"
    itemDoubleClick="doubleClickEvent(event)">
    <mx:columns>
    <mx:DataGridColumn dataField="col1" headerText="" id="da" disabledColor="white"  />
    </mx:columns>
    <mx:Script>
    <![CDATA[
    import mx.controls.DataGrid;
    import mx.events.DropdownEvent;
    import mx.events.ListEvent;
    import mx.events.DragEvent;
    import mx.controls.Label;
    import mx.controls.Alert;
    public function clickable():void
    //Alert.show("clickable");
    public function itemSelected(event:ListEvent):void
    Alert.show(event.itemRenderer.data.col1,"Single Click");
         public function draDropHandler(event:Event):void
    Alert.show(event.target.parent.toString());
    public function dragEnterFunction(event:DragEvent):void
    Alert.show(event.target.parent);
    override public function set data( value:Object ) : void
    this.dataProvider = value.col;
    //outerDocument.cb1.text = this.selectedItem.col1.toString()
    //myList.addEventListener(ListEvent.ITEM_DOUBLE_CLICK, onItemDoubleClick,
    public function doubleClickEvent(event:ListEvent):void
    Alert.show(event.itemRenderer.data.col1,"Double Click");
    ]]>
    </mx:Script>
    </mx:DataGrid>
    </mx:Component>
    </mx:itemRenderer>
    </mx:ComboBox>
    </mx:Application>
    But now i want to disable drag drop of the 1st item and the last item.
    And also add double click of each item.
    Can someone please help me out.
    Awaiting your reply.
    Thanks in advance.

    Hello Sir,
    Thanks a lot for your reply.
    I have implemented some thing can you please help me out with this?
    In this can you help me out with the double click event????
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
    xmlns:local="" xmlns:utils="adobe.utils." xmlns:controls="qs.controls.*"
    initialize="init()">
    <mx:Script>
    <![CDATA[
    import mx.events.DragEvent;
    import mx.events.ListEvent;
    import mx.controls.dataGridClasses.DataGridColumn;
    import mx.controls.ComboBox;
    import mx.controls.Alert;
    import mx.controls.listClasses.ListBase;
    import mx.core.UIComponent;
    public var str:String = "";
    public var comboLength:int;
    public function init():void
    var xml:XML =
    </mx:Application

  • Batch final close purchase order

    Hi friends,
    I have around 1000 purchase orders which need to be final closed. is it possible to final close them all at once (by any script or by doing any change in setup or by any other way)? If so please tell me how can i do that.
    Thanks,
    LISAN

    Dear Amit,
    Its quite illogical to demand a particular Batch of Product before procurement from Vendor. Normally the Batch field in the PO is to mention the colour of the product to be purchased from a Vendor. The colours of the product are basically maintained through MSC1N transaction with a material, storage loation, valuation type and a colour. Thats why you are able to see the drop down characteristics in the field provided in the PO.
    This automatically gets populated from batch master, thereby it can be selected during the PO creation. This particualar data gets stored in the MCHA and MCHB table.
    If you really want to maintain the vendor batch number, that is quite possible only during MIGO.
    Regards,
    DilliB

  • Disable Finally Closed option on PO

    Hi,
    Is there a way to disable the Finally Closed option on the PO?
    Its not possible with Form personalization because the entire control field gets disabled.
    Any ideas?
    Thanks,
    Ashwathy John

    i will try to accomplish through custom.dll
    Pl also suggest on this
    We make Approval Group based on item category for PR or PO approval. The question is , i want to get approval group based on item or its category. Just pass item id and get which approval group is going to approval this item.
    i got po_control_rules table it just contains categories range in description form, but didn't get any proper help.
    Pl suggest solution
    Regards,

  • Final Close In Purchasing

    Hi,
    1.what is the difference between close and final close in oracle purchasing?
    2. When we cannot finally close ? ( if any open PO or GRN is available?)
    Regards
    846691

    1) Close is reversible. You can reopen a closed PO. Final close is not reversible.
    2) You can finally close a PO anytime you want. However, it is not advisable to do that. You should Finally close when the PO is fully received, invoiced and paid and you are certain that no adjustments to those transactions are needed.
    Hope this helps,
    Sandeep Gandhi

  • I want to disable Private Browsing ,but under Safari there is no such application. Where do I find it or is ther a different application I have an Apple iphone 4

    I want to disable Private Browsing which should appear under Safari ,but there is no such application. I have an iphone 4 Apple. Is there an alternative way to disable

    You can set the browser.sessionstore.max_resumed_crashes pref to 0 on the about:config page to get the about:sessionrestore page immediately with the first start after a crash has occurred or the Task Manager was used to close Firefox.
    * http://kb.mozillazine.org/browser.sessionstore.max_resumed_crashes
    You can open the <b>about:config</b> page via the location bar and you can accept the warning and click "I'll be careful" to continue
    *http://kb.mozillazine.org/about:config

  • HT4528 i want to disable texting while driving on my sons iphone4, can this be done?

    i want to disable my son's iphone for texting while driving.  I can find apps for droid and blackberry but not the iphone.  does this exist for iphones?

    Found the following via Google...
    http://internet-safety.yoursphere.com/2012/04/eliminate-the-temptation-best-ways -to-prevent-your-teen-from-texting-while-driving/
    I haven't tried this myself -- so I can't vouch for the info -- but felt compelled to share nonetheless, especially since the previous reply was more or less useless.

  • I have multiple devices that have my iCloud E-mail, I want to disable the E-Mail on some of the devices but keep it on others, I do not have physical access to the ones I want to disable but I do have access to the devices I want to keep receiving mc

    I have multiple devices that have my iCloud E-mail, I want to disable the E-Mail on some of the devices but keep it on others, I do not have physical access to the ones I want to disable but I do have access to the devices I want to keep receiving mail, can I do this with a simple password reset or will that still leave all devices enabled?

    The simple way would be to uncheck 'Mail' in System Preferences (or Settings)>iCloud, but as you would need access to the devices in question to do that you will have to change your password, at http://appleid.apple.com. You will then need to sign out and back on all the devices you want to be able to receive mail, and it's important that you follow this procedure and note the warning:
    Firstly, if you have 'Find My iPhone/iPad/iMac' enabled on any of your devices, turn it off.
    Go to http://appleid.apple.com and click 'Manage your Apple ID'. Sign in with the current ID.
    Where it says 'Password & Security' and gives your current ID email address, click 'edit'.
    Enter your new password and click 'Save changes'.
    Now you will need to go to each of your devices and sign out in System Preferences (or Settings)>iCloud - 'Sign out' on a Mac, 'Delete this account' on an iOS device (this will not delete the account from the server).
    Then sign back in with your new ID. Your iCloud data will disappear from your devices when you sign out, but reappear when you sign back in.
    I re-iterate: before you start, turn off 'Find My Mac' (or whatever) or you will need the services of Support.
    The devices on which you have not changed the password will throw up continual error messages as they attempt to contact iCloud and fail.

  • How can I just disable "navigation toolbar" completely for the App Tabs? I don't want to disable this for other normal tabs.

    How can I just disable "navigation toolbar" completely for the App Tabs? I don't want to disable this for other normal tabs. This is important as otherwise while I am in the app tab, i mistakenly start browsing from that tab and meaning of the app tab is completely lost...

    How can I view my full billing history for the app and music stores without iTunes installed?
    No.
    If my account has been compromised
    If you even think this may have happened, immediately change your password.
    See this -> Apple ID: Changing your password

  • I want to disable or remove Game center from my iphone. It's always pop up during i play hay day game. So i can not solve this problem. Any way i try to log in game center my several Apple id account but it does' not work. I am still stuck in log in page

    I want to disable or remove Game center from my iphone. It's always pop up during i play hay day game. So i can not solve this problem. Any way i try to log in game center my several Apple id account but it does' not work. I am still stuck in log in page

    The Game Center app is pre installed and cannot be removed from the device.
    Best thing to do is move it to the last available screen.
    Hold down the Game Center app until all the apps jiggle then sliide the Game Center app to the right from one screen to the next. This requires a bit of finesse, but it's doable.
    Press the Home button one time to stop the apps from jiggling.
    For the Apple ID issue, try resetting.
    Tap Settings > General > Reset > Reset All Settings
    Then try your Apple ID and password for the Game Center app.

  • When you open a new browser tab, underneath the box to type in what you are looking for is the recently visited list. I want to disable or delete this list...how do I get rid of this list???

    When you open a new browser tab, underneath the box to type in what you are looking for is the recently visited list. I want to disable or delete this list...how do I get rid of this list???

    The drop-down list displays items from your History and/or Bookmarks.
    You can control what shows (or nothing at all): Options > Privacy, "Location Bar" section. Options are:
    *History and Bookmarks
    *History
    *Bookmarks
    *Nothing
    See --> https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Want to disable/"grey out" dial-up connection "settings" button in the "connections" tab of Internet Options

    Hi, I'm looking to "grey out" a dial-up connection for some users in workplace, so that they are forced to use our VPN client in order to access the web. Does anyone know if this is possible?
    I know you can disable all settings on that tab using local group policy, (e.g. Administrative Templates\Windows Components\Internet Explorer) but I only want to disable a specific dial-up connection (for usb 3G modems).
    I've read of various IE settings being locked down in the registry here, HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Restrictions, but havent seen the settings I want.
    The actual connection is visible here, HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections, I just cant figure out how to grey it out. Any ideas? Thanks!

    http://technet.microsoft.com/en-us/library/cc732613(v=WS.10).aspx
    The following Group Policy settings can be edited and applied to users that are members of the Group Policy object (GPO) in which the Group Policy setting is included. By default, the Group Policy settings are not configured.
    Prohibit deletion of remote access connections. If you enable this Group Policy setting, then affected users cannot delete any remote access connections, including those they create themselves.
    Prohibit access to the Remote Access Preferences item on the Advanced menu. If you enable this Group Policy setting, then affected users cannot access the
    Remote Access Preferences setting on the Advanced menu of the Network Connections folder. The top menu bar, including the
    Advanced menu, appears when you press the ALT key.
    Prohibit access to properties of a LAN connection. If you enable this Group Policy setting, then affected users cannot change any of the properties of a LAN connection.
    Ability to change properties of an all user remote access connection. If you enable this Group Policy setting, then affected users can modify the properties of a remote access connection that is shared with the other users on the computer.
    By default, standard users can only modify properties for a connection that is not shared.
    Prohibit connecting and disconnecting a remote access connection. If you enable this Group Policy setting, then affected users cannot connect by using any remote access connection, or disconnect any that are currently connected.
    Prohibit changing properties of a private remote access connection. If you enable this Group Policy setting, then affected users cannot change the remote access connection properties that are not shared. By default, standard users can modify
    connections that are not shared.
    Prohibit renaming private remote access connections. If you enable this Group Policy setting, then affected users cannot rename remote access
    connections that are not shared. By default, standard users can modify connections that are not shared.
    Rob^_^

Maybe you are looking for

  • Google Play on Tablet works on WIFI not Verizon network.

    I have an Motorola Ellipsis Tablet. I am unable to use Google Player. When I open the app, I get "Background data disable. Google play store needs background data to be enabled." I hit enable and It asks me to choose either Facebook or Gmail. I choos

  • IBook No Longer Connects to the Internet

    Arrrgh. Everything has been fine for the 6 months I have owned this. Just last week, it would not connect to the internet via Airport at a local internet cafe that I use daily. Nothing has been changed to my knowledge with their settings and I went a

  • Can i use wysiwyg editor

    I don't know if this is the right place to post this. I have written a java application using jdk1.4.2. Is it possible to integrate a wysiwyg editor FCKeditor in an java application or does it have to be an applet?

  • I cant believe apple hasnt pulled the iPod update 1.2 yet...

    they need to. serious problems are happening to people's ipod. hopefully this update hasnt killed these people's ipods. so many people on the boards are having problems! doesnt SOMEBODY from apple read these things?! personally ive stuck to the 1.0 v

  • Going from Windows to Mac

    My brother-in-law just ordered a new iMac from the Apple store. He's leaving it up to me to get all his files transferred from the PC to the iMac. I have an external hard drive formatted for Windows that I will use for this. He has an iTunes library