How to stop reuse asset code once its use in po

Dear All,
how to stop reuse of asset code once its use in PO or PR.
Thanks & Regards,
Mukesh Chejara
SAP

Dear All,
Awaiting your valuable reply.
Thanks & Regards,
Mukesh Chejara
SAP

Similar Messages

  • How to stop the Company Code popup window in MIRO!

    Hi,
    When User logs in the system and enters into the MIRO transaction, he is asked to enter the Company Code first in order to proceed further. I know that once you enter the company code then the system does not ask it to enter again during that login, however, it will asks again whenever User login the system again!
    Can someone tell that how to stop this Company Code popup window in MIRO, so that the system should not ask for the Comp Code whenever User logs in and enters into MIRO? I think there are some entries maintained in the User Master for this!
    Thanks.

    Hi,
    It is Necessary for the user to enter the company code for which he need to process the Invoice.
    First think is if the user knows ,that he is only going to do for one company code.then
    in the T code SU3.
    In the parameter TAB
    you can make the Default value for the parameter ID BUK as your Comany Code value ( Eg 1000)
    so that when ever the user does the MIRO ,it comes with that company code only.
    and if he want to do for another comapany code ,he has to use the option of Switching the comapny code.
    so this is user dependent and has to be made for all users.
    Note .the above setting works only you have entered saved and logged off and log in again.
    also ,this value gets defaulted you all the comapny codes in all screen.
    Hope so it helps.
    Regards
    Anjanna.

  • How to stop a process chain when its running?

    Dear Experts,
    How to stop a process chain when its running? is it that a chain can be stoppend when we open an info package of that chain ?
    Thank you,
    Raj

    Hi,
    Goto the main menu process chain --> choose the remove from the Schudule...
    Regards
    sathis
    I hope it helps to u... please assign the points

  • I'm having trouble with how the font/font size appears once its in InDesign.

    Help! @I'm having trouble with how the font/font size appears once its in InDesign. It looks good in Word, then I make my PDF, place it and it suddenly looks different. It's frustrating because not all of the documents look that way, creating a very inconsistent look. What am I doing wrong?

    Sure. The first screen shot is the PDF after it's placed in InDesign. The second one is the PDF.

  • How do I acess EA6900 setup once its been set to Bridge mode.

    How do I acess the EA6900 setup screen once its been set to Bridge mode. I want to stop broadcasting a guest network

    If you can't access it at 192.168.1.1, look at the main host routers DHCP connection list to see if the bridge is listed there. It may have a different IP address since it's in brige mode.
    How to fix your screen name:
    http://community.linksys.com/t5/Wireless-Routers/How-to-fix-NO-SCREENNAME-username/td-p/565100

  • How can I execute certain code once the button on stake is hit at runtime? (in Flash CS4(AS3))

    Hi
    I am trying to figure out how to execute code once a button_btn is hit on stage at runtime.
    Thank you for help and tips!

    You can also try to create an event listener for the button itself.  (In as2.0 it was onClick or onPress or something to that effect, now I'm not sure what they are syntaxed as but there are event listeners for buttons which "listen" to see if the button has been pressed.  Mouse Events are good because it makes sure that the mouse is actually performing the action.  Don't know about accessibility with Mouse Events though since you can use a Tab key to direct input of buttons so try the Button event listeners.

  • How do I flatten a form once its done?

    How do I flatten a form once I am done filling it out?

    Hi Rick,
    Please refer :
    http://blogs.adobe.com/jlockman/2011/10/08/form-field-flattening-in-acrobat-x/
    http://acrobatusers.com/tutorials/how-to-flatten-form-fields

  • How to stop iphone 4s to upgrade its ios...? is it possibile?

    is it really possible to stop iphone 4s from upgrading its IOS? seriously i dont want its upgrades cause it makes my games crash!!! everytime i play with my games it crash just because i upgraded the IOS from 6.0 to 7.0.3

    Try This...
    Close All Open Apps...  Sign Out of your Account... Perform a Reset... Then try the Updates one at a time...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • How do i erase a app once its been purchased

    how do I erase a app once purchased

    Hold down on the app icon until it starts to wiggle. An "x" will appear in the corner. Tap that "x" and it will delete it. If you have uploaded the app to your computer in iTunes, you will have to delete it from there or it would copy back the next time you sync.

  • How to keep PDF file clear once its been reduced in size

    Does anyone know how to keep you PDF file resolution as clear as u originally placed it once you reduce the size of its properties?

    Obviously if you reduce the resolution of the images, or compress them more sharply, you can lose quality. It is up to you to experiment with the settings to find a compromise between size and quality. There is no magic bullet.

  • Can't reuse HTTPRequest  --- how can I reuse this code?

    public var getCategories: HttpRequest = HttpRequest {
        location: "http://lydias-kitchen.com/FXcategories.php";
        onInput: function(is: java.io.InputStream) {
            try {
                if(is.available()> 0){
                  categories.parser.input = is;
                  categories.parser.parse();
             } finally {
                 is.close();
                 var a = ids.size();
                 println ("categories ids size = {a}");
                 var b = bind (a-1);
                 for (i in [0 .. b]){
                    println("ids = { ids} names = {names[i]}");
    categories.newCategoryItem = com.javafx.preview.control.MenuItem {
    text: names[i]
    id: ids[i]
    onMouseClicked: function(e:javafx.scene.input.MouseEvent) {
    Main.CategoryId = e.node.id;
    println("category id = {Main.CategoryId}") ;
    recipes.getRecipes.start();
    font: Font {name: "Times New Roman" size: 20}
    graphic: ImageView {image: Image {url: "{__DIR__}images/ball.png"}
    fitWidth: 32
    fitHeight: 32
    insert newCategoryItem into Main.categoryItems;
    {code}
    I use the above code to get a PHP file to return all the recipe categories in a database table. The insert -> creates a dynamic menu. the println has confirmed that each menu item is assigned the correct text and recipe ID.
    I can click any one of the 19 "category" menu items generated and the "OnMouseClicked:" will call and start getRecipes.
    The code for getRecipes is identical to the code shown except that the returned recipes are inserted into the "recipe" menu instead of the "category" menu.
    Now it doesn't matter if I click an item in the "Recipe" or "Category" menu ......... any attempt to reuse the HTTPRequest functions will return:
    Exception in thread "AWT-EventQueue-0" java.lang.IllegalStateException: request reuse not permitted
    at javafx.io.http.HttpRequest.start(HttpRequest.fx:1316)
    at jim2.categories$categories$Script$1Local$5$1ForPart$3.invoke$(categories.fx:59)
    at com.sun.javafx.functions.Function1.invoke(Function1.java:44)
    at com.sun.javafx.functions.Function1.invoke$(Function1.java:38)
    at javafx.scene.Node.impl_processMouseEvent(Node.fx:2938)
    at javafx.scene.Node.preprocessMouseEvent(Node.fx:2967)
    at javafx.scene.Scene$MouseHandler.process(Scene.fx:1559)
    at javafx.scene.Scene$MouseHandler.process(Scene.fx:1421)
    at javafx.scene.Scene.impl_processMouseEvent(Scene.fx:686)
    at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.fx:1016)
    at com.sun.javafx.tk.swing.SwingScene$SwingScenePanel.doMouseEvent(SwingScene.java:446)
    at com.sun.javafx.tk.swing.SwingScene$SwingScenePanel.mouseClicked(SwingScene.java:454)
    at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source)
    at java.awt.AWTEventMulticaster.mouseClicked(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Since this is a recipe program you can see that I'm going to have to call the database for data each time a different category or recipe is called.
    *QUESTION: What do I have to do to get the HTTPRequest to work repeatly*
    Edited by: JWK on Feb 28, 2011 11:54 AM

    Exactly what it says; Create a new http request every single time you want to retrieve the data:
    //Records data retrieved from the request.
    var data : String;
    function makeRequest() : Void {
        //Create a new request object every time this function is called.
        var request : HttpRequest = HttpRequest {
            location: "http://en.wikipedia.org/"
            onInput: function(io : InputStream) {
                //Read input to data string and close input stream
        //Make the request connect.
        request.start();
    //Get the data
    makeRequest();
    //Get the data again.
    makeRequest();Each individual HttpRequest object is meant to be used once and only once so you need to create a new one each time.

  • How to stop e-mail downloads once in email app

    Really annoying thing: First, it's bad enough that you HAVE to download e-mails as soon as you press the e-mail app, rather than choosing which account you want to collect e-mails from once the app is open (only way round this is to completely switch off individual accounts).
    But even worse, I find that once I'm in the app and e-mails are downloaded, switching between accounts downloads AGAIN. In other words you cannot just "view" the e-mails on one account then switch to another to "view". Each switch to the other account invokes another download even if you just did so ten seconds ago.
    If there is a way around this I would be grateful to know.
    If there isn't, then this is a major flaw. Sometimes the user simply wants to view headers in a particular e-mail account, not perpetually download everytime a n account is accessed.

    I assure you I haven't misunderstood in the way you imply. In (nearly) all other respects the iphone is fine. It is now widely accepted that iphone's e-mail client is inflexible and not very good.
    If you run multiple e-mail accounts you do not always want every account to download every e-mail. When away from my office for example, I don't want all my personal e-mails downloaded every time I press the e-mail icon, especially if there are lots of them (including the usual liberal dose of spam). I just want to download urgent business e-mails which require an urgent answer. But this is not possible unless I laboriously go into settings and manually switch the whole account on or off. But if it is off I cannot get into them just to view the current e-mails there.....I am forced to download a new lot.
    Let's look at an average PC or Mac e-mail client: You can choose to immediately download e-mails on opening it, or for it to be permanently accepting e-mails as in the background, or you can choose to start the app and THEN choose which accounts you want to upload and download.
    You cannot get anywhere near this on the iphone. Sure, there is "push" and "fetch" and "manual", but it isn't really "manual" at all. The problem is that unless you completely switch off each account, you'll get every e-mail currently on your ISP server. You also cannot simply view the current e-mails without downloading fresh ones. The whole point of a half decent e-mail client is that it does what YOU want it to do, not what it dictates.
    The solution is simple: To have the OPTION of opening the e-mail client and THEN deciding which account you want active, or to download to. If it wasn't for the fact that Apple clearly doesn't want any rivals to its own core apps, this would have been implemented by a third party years ago.

  • How to stop the computer from changing its local network name when waking up from sleep mode

    How do I prevent a mac mini from changing its' network name automatically when it wakes up from sleep mode... It will wake up and display a warning that the network name is already in use and it changes its name to (n+1) name with number after it... I know that there is no other device with that name because the only other things on the network are 2 hard drives (one being used for time capsule) and a printer..
    This is very annoying and needs to be fixed.... don't tell me to make the computer never sleep because that defeats the power savings settings under power management.

    Go to System Preferences>Network>AirPort and delete your network from the Preferred Networks box. Reenter your network information. Make sure that AirPort is the topmost listed interface when you Show Port Configurations. Apply the changes and Restart. Does it work now?

  • How do you unlock your phone once its been disabled?

    I forgot my code to unlock my phone, and now it is disabled. When I plug it into iTunes it tells me to enter the code, which I don't remember. What do I do?

    If you cannot remember the passcode, you will need to restore your device on the computer that you Usually Sync with...
    Follow the Steps Here
    http://support.apple.com/kb/HT1808

  • How do I edit my signature once its created?

    I have a typo in my signature and cant fgure out how to edit the actual signature or delete it and re-create one.

    Hi Kevin
    Please perform the following steps:
    Choose Edit > Preferences (Windows) or Acrobat > Preferences (Macintosh).
    Signatures > Creation and Appearance > More, and in the Appearance panel, choose New or Edit.

Maybe you are looking for

  • Two itunes libraries on one computer

    Hello All, Using Windows 7,reinstalling music in Itunes due to system restore.  We have 1 computer but two users. My roomates library loads into my Itunes and not under his Itunes user account. What can be done?  Thank You

  • Help with video display!!

    Hello all, After installing the 41.09 drivers for my MSI GF4200 64mb card, I noticed that upon DVD or any video file playback, I only see about one quarter of the video, which is the upper right hand corner.  I do not know if the problem started with

  • Creating User Components

    Is it possible to create a custom component or function in Flash 8 that performes a set of complex animation features but that can be hidden from the user such that they can distribute or modify that code. Example I to license a custom animation tool

  • USM service for iPhone

    Dear All, I work at a radio astronomy research centre. We are about to move office to be close to one of our radio telescopes and this means that we must use USM instead of GSM for our calls etc. I love my iPhone (and iPad) but I have been told that

  • Smart error on mac os x snow leopard 1.6.8 when trying to update to os x mavericks PLEASE HELP I have tried everything.

    My computer is messed up I have backed up everything too anything to help?