Type of requisition that don't raise commitment

Hi Gurus,
Which type of requisition (purchase, framework etc) do not raise commitment in CO?
Thanks for your help
Regards,
Catherine

Hi Medha,
There is no Standard report as per your requirements.
You can check this MC.9 transaction.
Give Plant, storage location and Period.
Execute the transaction MC.9 you will get the details of valuated stock with value.
Then here you can Sort the Stock from lowest to highest which show  the zero stocks materials at one side, so then download it and process as per that.
rgds
Chidanand

Similar Messages

  • Hi - When I go into Contacts and type a letter in the search bar to get to last names that begin with that letter I get a list of random names that don't correlate to the letter. My settings are fine.  Help ?

    Hi. When I go into my contacts and type a letter in the saerch bar to get to a list of last names that begin with that letter I get a list of random names that don't begin or end with the letter.  My Settings appear fine.  Any insights would be greatly appreciated.  Cheers Bill

    The search bar is not designed to take you to names beginning with the letter you put in. If you want to do that, use the letters down the side. In the search bar, the device will return results for all contacts that have that have that letter in them. If you type a couple of letters of the name, you'll find what you want faster. Once you get used to how it works, it's quite efficient.
    Best of luck.

  • My zagg key board connects but the keys I type either don't type character, type 2 characters that are different when I hit only 1 key, or doesn't type at all. Is there a way to reset zagg keyboard to factory settings?

    My zagg key board connects but the keys I type either don't type character, type 2 characters that are different when I hit only 1 key, or doesn't type at all. Is there a way to reset zagg keyboard to factory settings?

    Recharging is a good thing to try. They do start to act odd when the battery gets low. Beyond that, just like Tom says, contact Zagg. I have one of their keyboards and the company has wonderful customer service.

  • Tutorial: Virtual Numpad on laptops that don't have one built-in

    Hi all! After getting so much good help from the people on Arch forums, I thought it was time to give back.
    You remember how on older laptops, you would hit numLock and a portion of your keyboard would become a numpad? (specifically, the 789uiojklm keys) Well, recently I got a new Lenovo Y40 and I never knew how much I loved having a numpad until I found that my new laptop didn't have one. Unfortunately, the Y40 does not come with this feature out of the box, but luckily, Arch Linux is on our side. I am going to tell you how I set up my own virtual numpad using tools that come built-in with X.
    Before we start, I should point out that everything I learned in order to do this was found here:
    https://wiki.archlinux.org/index.php/X_ … _Modifiers
    From the warnings section:
    It is possible (and, in fact, easy) to end up disabling some keys on your keyboard for the current X session while working with XKB. This includes modifiers, cursor arrows and Enter key, as well as C-A-Backspace and C-A-Fx combinations. Make sure you have some way to terminate the session without using your keyboard.
    While it is rare, changing XKB configuration can sometimes hang or crash X server. Make sure you can handle it. Having some way to killall X or reboot the host remotely may be a good idea.
    Stop xxkb, or any other layout switching applications. xxkb actively changes XKB state. Debugging both at the same time is not a good idea.
    And finally, be warned: it is very easy to get used to custom layout.
    If you want to learn more, that wiki article is the best available xkbcomp documentation for people who aren't X developers (lit. me). And with that, let's get started!
    Getting Set Up + xkb Background Info
    The first thing we will do is run the command
    xkbcomp $DISPLAY outfile.xkb
    This will spit out the code that represents the current keyboard layout. Our end goal will be to code in what we need into this file, and upload it back to the X server. I recommend editing this file in an editor with C/C++-style syntax highlighting, since it might prevent you from making syntactical errors.
    There are many sections to the .xkb file, but we will only concern ourselves with xkb_types, xkb_compatibility, and xkb_symbols.
    xkb_types lets you define types for each of the keys on your keyboard. For example, if you use Canadian Multilingual Standard (like I do) most of your keys are given the type "EIGHT_LEVEL_SEMIALPHABETIC". When a "special key" like ctrl, alt, caps lock, etc is pressed, in xkb_types, we map these modifiers to "LevelN", and different combinations will mean different things for different types. For 8-level-semialphabetic, no special keys pressed is "Level1", Shift is "Level2", etc.
    If we jump forward to xkb_symbols, and look at the keys, we see that each key is assigned a type, and an array. The first element in the array is what symbol the key represents for Level1, the second is the symbol for Level2, etc.
    Finally, xkb_compatibility allows us to set which keys turn on which modifiers (as well as other things).
    So with that, let's get started
    Editing the layout
    We will begin by editing the xkb_types section. First, we will pick an unused type from xkb_types (you could create your own, but it will be more work). It doesn't matter which type you picked, so long as none of your keys use it. Take down the name. Now delete the unused type, and in its place, copy paste the type that your keys used already. Finally, change the name of the copy to the type you deleted. For example, I deleted EIGHT_LEVEL_ALPHABETIC, copied and pasted EIGHT_LEVEL_SEMIALPHABETIC, and changed the name on the copy back to EIGHT_LEVEL_ALPHABETIC. Next, change the modifiers variable to accept NumLock. This is done by concatenating '+NumLock' before the semicolon. Lastly, we will bind it to a level. You can create a level, or simply pick one that you were not using, and add the line (where N is the desired Level)
    map[NumLock]= LevelN;
    Next, we will turn our attention to xkb_compatibility. Simply copy paste this code into the xkb_compatibility section, taking care to replace Scroll_Lock with the key you wish to use to toggle the numpad:
    interpret Scroll_Lock {
    virtualModifier= NumLock;
    action= LockMods(modifiers=NumLock);
    Now comes the more tedious part of editing the layout. For every key that is part of your virtual numpad, change the type to the copy we made earlier. (In my example, I would change EIGHT_LEVEL_SEMIALPHABETIC to EIGHT_LEVEL_ALPHABETIC). Finally, locate the Nth element in the array (indexing from 1) where N is the level you bound the NumLock modifier to in xkb_types. Replace this with the desired nunmpad key. For your convenience, here is a list of the numpad keys I used:
    KP_0
    KP_1
    KP_2
    KP_9
    KP_Add
    KP_Subtract
    KP_Divide
    KP_Multiply
    KP_Decimal
    For example, here is the entry for my 'u' key (note the KP_4):
    key <AD07> {
    type= "EIGHT_LEVEL_ALPHABETIC",
    symbols[Group1]= [ u, U, NoSymbol, NoSymbol, downarrow, uparrow, NoSymbol, KP_4 ]
    If you are wondering what to do if you want to bind numpad keys to your Fx keys, I added a note at the end of the post.
    Uploading the layout to the X Server
    And now the moment of truth. First, run
    xkbcomp myNewLayout.xkb
    This will NOT upload to the X Server yet; it will only compile the file and check its syntax. One cryptic error I got was because I used C-style /*block quotes*/. xkbcomp doesn't like these, but it doesn't mind //this kind of comment. If we have no errors, we can now upload with
    xkbcomp myNewLayout.xkb $DISPLAY
    Well, go ahead and try it out, there will almost surely be some really neat tweaks you can do.
    Extra Stuff/Notes
    When you hit Scroll_Lock (or whichever key it was you chose) it locks the new type we made to LevelN. This is why we went to the trouble of making a new type, so that the rest of the keyboard would not be locked in LevelN mode. For example, on my setup, I first tried this without creating a new type, and found that the rest of my keyboard was not behaving normally, since it was also bound to Level8 (my desired numpad level). So, I created a new type for my numpad keys so that the rest of the keyboard would still act in its usual manner even when I had the numpad on.
    If you're wondering, I bound KP_Multiply and KP_Divide to my F8 and F9 keys. However, I didn't need to change the type, since the level I chose (Level4) also caused the Fx keys to act normally (except if I rebound them). That is, before I changed anything, all the Fx had the corresponding Fx key bound to Level4. I simply changed the Level4 keybinds for F8 and F9. This meant that when I activated the virtual numpad, F8 and F9 were KP_multiply and KP_Divide, and the rest of the function keys were what they were usually.
    Hopefully, this tutorial won't only help you to make a virtual numpad, but maybe help some other newbies like me to further customize their system. And the Arch Wiki author is right, you really do get used to the new layout and it becomes frustrating to use other computers!
    Happy trails.
    - Marco
    Last edited by mahkoe (2014-11-02 12:17:49)

    Ikester wrote:
    Re: My laptops that don't have a linksys card, but built in wireless can stay connected to WEP
    OK since your security is set to WPA why do you want to go to WEP? DS? If everything is configured correctly you should not have to change anything. If you are connecting another device and forgot what your WPA setting were just go into the router and take a look see.
    1. I set up everything, its all fine and ok
    2. The DS can't connect to WPA, only WEP or Open
    3. I know what my WPA settings are and the codes to both settings

  • How to distinguish the type of object that came in the JMS message.

    I have a queue that has 4 different object's being sent through messages across the queue. Depending on the object that comes in I need to determine what process to start. I have created a master project with a single queue listener that will start the master process. Either before the listener starts the master process or after the master process starts in a method I need to figure out the type of object that was contained in that method. In Java its simply if(msg InstanceOf ObjectB), else if (msg InstanceOf ObjectC)....and so forth. What is the way this would be done in ALBPM6.0's fuego code or whatever it is called?

    In case you had an ID, which is assigned automagically on emp, this could also be written like this:
    create trigger emp_trig
    after insert or update or delete on emp
    for each row
    begin
    insert into emp_log values(
    :new.empno, :new.ename,
    decode(nvl(:old.id,-1),-1,'Insert',decode(nvl(:new.id,-1),-1,'Delete','Update')), sysdate);
    end;
    ..where -1 is a value you do not expect to be propagated ever in id column. Also, :new.empno and :new.enmae will be null if the dml being executed is a delete statement.

  • How to stop iphoto from recovering photos that don't exist?

    I just bought my iMac and transferred all my photos from my backup drive to the iphoto library. In organizing my photos I must have deleted photos or had some corrupted photos in the transfer. Now, every time I open iphoto is says it has recovered 75 or so photos, creates a folder for them, but it's empty. How do I stop it from trying to recovery photos that don't exist? I've searched and have found nothing. The folder generated by iphoto as a recovered folder is empty...

    Welcome to the Apple Discussions.
    Can you give me an idea of why this type of error occurred
    Because of a minor glitch when iPhoto failed to clean up after an import.
    why has this now corrected the error?
    iPhoto should remove that Importing Folder at the end of the importing session. When you launched iPhoto again it saw the folder and (incorrectly) assumed there was an import in progress. Removing the folder means that iPhoto won't make that assumption.
    There is no reason to assume that the problem wil recur.
    Regards
    TD

  • I just updated to Numbers 3.0.1. In the old version if I started to type a name that was already in the spreadsheet, it would automatically fill it in. That doesn't happen in the new version. What am I missing to get that to happen?

    I just updated to Numbers 3.0.1. In the old version if I started to type a name that was already in my spreadsheet (in another cell), it would automatically fill that name in. That is not happening in the new version. Am I missing something to get that to happen? Thanks

    If you frequently enter repeating values in a column and don't want to type the same text over and over again, instead of just waiting for Apple's updates why not try using an enhanced feature in Numbers 3 that in many (probably most) situations is even better than "auto-complete"?
    Numbers 3 has an enhanced Pop-Up Menu functionality that helps prevent typos or capitalization inconsistencies from creeping in and messing up your data. It is also much more efficient than auto-complete in Numbers for iOS, should you ever want to sync to an iPad or iPhone and do data entry there.
    Pop-Up Menu is much enhanced over what it was in Numbers 2.3, and is easy to set up:
    Select the whole column or range before formatting as Pop-Up Menu and your existing values in that column or range will pre-populate a menu automatically:
    Then you can remove the values you don't want in the list, such as the column header (and possibly some previous spelling errors too!):
    And after this easy one-time setup all you have to do thereafter is to choose from the pop-up list when you add rows:
    See this post for more details on how this handy feature has been enhanced in Numbers 3.0.
    Should you ever want to take your Numbers with you and do data entry on an iPad or iPhone, in a touch interface, pop-ups are much more efficient than typing the first few letters of items. You can scroll with ease through a list of dozens of items to make a pick. Anybody using Numbers cross-platform should favor Pop-Up so they can use their documents efficiently for data input on the go, which can be a productivity booster.
    See this thread for this and other workarounds for Numbers 3.0.
    SG

  • Most all my applications are crashing. The Exception Type on all that crash: EXC_BAD_ACCESS (SIGBUS) and Exception Codes: KERN_PROTECTION_FAILURE at ... I am a newbie, does anyone have an idea what has happened?

    Most all my applications are crashing.
    The Exception Type on all that crash: EXC_BAD_ACCESS (SIGBUS) and Exception Codes: KERN_PROTECTION_FAILURE at ...
    All browsers but Safari crash
    I can't view any video media but quicktime works.
    Example: iPhoto
    Process:         iPhoto [2167]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.1.5 (9.1.5)
    Build Info:      iPhotoProject-6150000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [254]
    Date/Time:       2011-09-05 16:25:22.327 -0500
    OS Version:      Mac OS X 10.7.1 (11B26)
    Report Version:  9
    Interval Since Last Report:          734286 sec
    Crashes Since Last Report:           427
    Per-App Interval Since Last Report:  154207 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      9AD5F8B1-380F-4563-A57D-A589708BA3D2
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000009802d0cb
    Just about everything crashes.
    Help...please?

    How old is this machine? If it's less than 90 days old you have 90 days of Free AppleCare coverage, call them! You will find the phone number in your manual. If it's out of AppleCare or you bought it used take it your local Apple Store or AASP to have it looked at. We don't have enough information to know what the problem might be. You can run some tests such as Apple Hardware Test in Extended Mode 2-3x to see if it has any hardware errors. Beyond that it's really tough to say.

  • GDI limits: what else can be done to raise them

    Using Syinternals testlimit -g on a x86 Server 2003 SP2, I've noticed that seems to exist a 64Kb limit, despite GDIProcessHandleQuota registry setting allowing over 65k objects:
    We are really limited to a maximum 65535 GDI objects limit on a 64Kb space?
    What else could be done to raise this GDI limit?

    Hi CCJ, 
    Yes, you can increase the limit by doing below reg changes.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows\GDIProcessHandleQuota
    This value can be set to a number between 256 and 65,536.
    Here is Technet
    link (GDI Objects) for your reference.
    Regards, Ravikumar P

  • What about photos that *don't* belong to an event?

    i love the new "events," but what about photos that are not part of an event?
    for example, one day in 2001, i imported a bunch of photos from around the net to use as desktop pictures. but those photos don't exactly comprise an "event." that same day, my sister sent me one photo of her newborn baby. now, iphoto's calling all of that day's photos an event. although i love the concept of events, it bugs me to call certain groupings "events," when that's not what they are.
    i can't seem to find a way to delete an event. is it mandatory that each photo belong to an event? if events have truly replaced "rolls," i imagine every photo must therefore belong to one.
    i already have albums entitled "family" and "desktop pictures," so those photos are already organized elsewhere. but how are you guys handling random photos that don't exactly qualify to be called "events"? as i type, it occurs to me to create an event called "non-events." but i'd still love to hear how others are dealing with this.

    An Event looks to be just another name for a Roll. And in all previous versions of iPhoto all photos had to belong to a Roll, whether you liked it or not, either named by your convention or by iPhoto's default.
    I guess with the metaphor of film rolls fading quickly as digital cameras advance, a new moniker for the base catalog entry was necessary. Suits me fine as long as the equivalent functionality is preserved with new features a bonus worth the price of "upgrading".
    I have not tried the switch to the new iLife iPhoto version yet (iMovie 8 is a HUGE step backwards so my caution meter is on FULL alert), as I have the same reservations. I have scrupulously kept Rolls organized by import date and require all that existing metadata be transferred perfectly.

  • Requisitions that are never approved

    Requisitions that are never approved
    I'm wondering what other companies are doing (if anything) about requisitions that never get approved.  Is there any bad side effect or strange metrics that are produced if there is an ever growing pool of requests that are basically in limbo?  We're on 2006.0.6. 
    When we first implemented RC, professional services recommended putting an escalation in that would notify us (administrators) when an approval task was way overdue so that we could cancel the request.  Well now that we're actually using the system we've discovered that it isn't even possible to cancel the request during the approval moment (only the requestor can).  We could "reject" the approval, although that isn't really what we want to do and may cause more confusion with the customer.
    So I'm hoping someone out there with a more mature install has some wisdom for me.  I'm hoping that its fine to just ignore the requests that are never approved, but I don't want to find out later on that it was a mistake :)

    Emir,
    Sorry for replying only now. At first, I was having trouble with the SOAP enveloppe myself, so i used the libraries found in any programming language. Unfortunately i cannot share codes due to company policies. But, you(or a programmer) may have an idea of what i am referring to and twick the code a little:
    http://www.bigresource.com/VB-manually-create-a-S

  • I connected my external hard drive to my new imac to put all of the information from my macbook onto it. i have been working on the macbook now and want to reconnect the external hard drive so my imac is updated with the work. How is that done?

    I connected my external hard drive to my new imac to put all of the information from my macbook onto it. I have been working on the macbook now and want to reconnect the external hard drive so my imac is updated with the work. How is that done? or is it possible?

    As I said, I don't use Time Machine, so it'd be best to wait for an "expert" answer, but, with my very limited knowledge, I'd say: probably not - so, for now, I'd suggest you read up on Time Machine:
    http://web.me.com/pondini/Time_Machine/Home.html
    http://support.apple.com/kb/index?page=search&src=support_site.home.search&local e=en_US&q=time%20machine
    And, you might be attracting more knowledgeable answers if you were to post this question in the Time Machine Forum (part of the Snow Leopard forums).

  • ITunes says I have apps sync'd on my iPod that don't show up...

    When I sync my iPod, iTunes' window of my iPod shows that I have about 6 more apps on it than do actually show up.    Please see attached screencaps.  The first one is from the iTunes window for my iPod and the second is a screencap from my actual iPod.  You can see that the first 3 apps are the same, but then there are the ones that don't appear on my iPod even though iTunes indicates that they are.
    Any thoughts on this and how to rectify would be much appreciated.
    Thanks in advance...
    Chris

    Do you have any Restrictions set that would hid those apps on the iPod? Settings>General>Restrictions

  • HELP! "There are 309 files that don't belong in the project"

    I needed to reformat my OS, so I backed up all my data onto DVD+RW's. (Verbatim brand.) including my imovies. I copied the entire "blahblah.iMovieProject" folder onto the DVD, then copied it back onto the drive after the reinstall. But now when I click on the project, it prompts me about this:
    "There are 309 files that don't belong in the project"
    and then this:
    "There are 160 stray clip files in the project folder. Would you like to put them on the clips pane?"
    After I click on "Leave Files Alone" for both of them, (versus move to trash, and Move files to clips pane, respectively), The project opens completely BLANK.
    Oh great. Please inform. Am I out of luck?
    Oh, btw, it also created like 10 versions of each photo in the "Media" folder. ick. what happened?...
    g5   Mac OS X (10.3.9)  

    Also, one more thing! Now that this has happened, even after I quit and restart the computer, upon opening the application, instead of starting out with a brand new project, the same prompts appear, and then leaves me with that seemingly corrupt project which is blank.

  • I have a late 2011 model MacBook Pro running Mountain Lion.  I love the AirPlay mirroring feature with Apple TV...BUT, how do I mirror with TVs that don't have Apple TV?  I used to run a cable from my mini display port to the HDMI input of a TV.

    I have a late 2011 model MacBook Pro running Mountain Lion.  I love the AirPlay mirroring feature with Apple TV...BUT, how do I mirror with TVs that don't have Apple TV?  I used to run a cable from my mini display port to the HDMI input of a TV.  This feature seems to be lost in the Mountain Lion upgrade.  Did Apple feel that once Mountain Lion came out that EVERYONE would have Apple TV?  There are no settings in System Preferences/Display like there used to be...only for AirPlay Mirroring.

    Running a cable to the HDMI port is still supported. (and still works on mine).
    If the Arrangement tab in System Preferences > Displays isn't present then it doesn't recognize the physical connection.  Double check all cables.  If that doesn't work try a PRAM reset:
    http://support.apple.com/kb/ht1379

Maybe you are looking for

  • Problem with Pacman 4

    Alright, I just built a new computer and installed the core version of Arch on it from a freshly burned CD. When I ran pacman -Syyu, I had to upgrade pacman. I did so without errors. However, when I do the same command afterwards I get this output: e

  • No error but...

    i have this form that i created following this book. everything was going fine until now. this is the page : Text As everyone can see, when clicking "View Urls" it suppose to show the list of categories in the drop down menu saved in my url table. bu

  • BAPI to create network (T-code CJ21)

    Hi all, I was trying without success to implement the BAPI_NETWORK_MAINTAIN, to create a network. Is this the correct option, or is there a better one for this? Best Regards, Pedro

  • World minutes for Office 365 60 mins 1 month (Orde...

    I saw my monthly World minutes for Office 365 order has been delivered on Mar 23, 2015, but my usage minute did not get reset to 60 min! Please help to investigate why. Thanks, Simon

  • Tree controls has me stumped!

    I'm pretty new with tree controls so please bare with me. I'm trying to create a tree using an array. Each coloum represents a parent and the last coloum is the child. There are a number of entries that have the same parent. When I run my vi, it crea