Cloasing all old PR in a single shot

Hi guru's
my client need is to close all old PR's in one single shot. he is interested to close all the PR manually one by one.kindly advise me how to do closing of all PR in single shot.pls advise friends.
Regards,
william

Dear William,
Go to SM30 enter the table MASSFLDLST
then create the new entry object type = BUS2105
Table name = EBAN Field:- "EBAKZ" (Purchase requisition closed)
Then run MEMASSRQ and select this field and then PRs after that on next page you will get option like film:- carry out mass changes go ahead with it.
OR
In LSMW
open Maintain Object Attributes
click recordings overview
click button create recording
enter name (e.g. ZBANF) and description and continue
enter transaction code ME52
enter requisition number hit enter
double click item (to go into detail)
set the closed indicator
save
Now you should see an overview with all fields in the 3 processed views
double click the fields that you need have as variable fields, e.g.
EBAN-BANFN, RM06B-BNFPO, EBAN-EBAKZ
Give a name and a description for each of them.
Save
go back to Maintain Object Attributes
set the radio button to Batch input recording and enter the name of your recording.
save the setting.
The other steps in LSMW should be known.
Create a file that has the 3 fields ( reguisition number, item number, closed indicator) as input.
rgds,
nanthakumar

Similar Messages

  • I have a personal itunes account with an iPhone5s and an iPad 4 mini. I have unlokced my old iPhone 4 to use for work on a diffeent SIM and new number, can i have all devices associated to me single appleID and use both numbers ?

    I have a personal itunes account with an iPhone5s (perosnal mobile numer) and an iPad 4 mini (no SIMM). I have unlocked my old iPhone 4 to use for work on a different SIM and new number,
    Do you know if I can have all devices associated to my single apple ID and still use both numbers without messing up my profile. It has just changed my number over.

    I would not be able to give you idiot proof guide, since different games are different. Some of them have icloud integrated already, but those already taken care of. Some of them use specific logins and once you log - you get your info. General recommendation is to contact support sites of those games for enabling icloud instructions or enabling of transfer. There are other purely apple ways - like sync your phone in itunes and then sync apps with ipad, but those are only one time transfer. There is another way that is not typically recommended - restoring ipad from iphone backup. It may transfer your game content, but once again sync in the future has to be done by game.
    So if I were you, I would address that individually with every game provider.

  • Which body for fastest single shot AF?

    I am using 60D and finds that for quick candid shots, i just can't get fast AF lock.
    Which body should i upgrade to?
    I read about servo AF but in my case i only need single shot AF.
    A snappy AF is what i need.

    maximme wrote:
    100mm f2Robert is right... It's not just the camera... It's also the lens. And it's also the user themselves. The EF 100mm f2.0 USM is a reasonably fast focusing lens. In most cases, USM lenses are the fastest. (But not always. The EF 100/2.8 USM macro lenses are much slower focusing, by design. The same is true of the f1.2L lenses. All these emphasize accuracy over speed, due to their potential for very shallow depth of field.) 60D is no slouch focusing. You'll get the best out of it with One Shot for stationary subjects or AI Servo for moving subjects. Avoid AI Focus, which isn't really a distinct focus mode at all. In AI Focus, the camera is supposed to decide for you whether or not the subject is moving, and then switch to using the appropriate focus mode. I'd also suggest using only a single, manually selected AF point. The center one is best on your camera. It has enhanced performance with f2.8 and faster lenses. The other 8 poitns aren't bad either. By pre-selecting the point, you eliminate any delay the camera might have, while it's detecting and choosing what to focus upon. Have you tried Back Button Focusing? This is a popular sports photographer method, especially in combination with AI Servo. BBF is explained in more detail here: http://www.learn.usa.canon.com/resources/articles/2011/backbutton_af_article.shtml  BBF allows you to start autofocus and begin tracking a subject (whether moving or not) well before taking the shot. It's then just up to you to keep the AF point right on the subject. All that said, AF still is dependent on good light and a nice contrasty subject to give best performance. And, it will always have a fraction of a second delay while it does it's thing (which is why BBF can be handy). Still, AF today is a whole lot faster and more accurate than I ever was, focusing my old cameras manually! And I was actually pretty darned good, if I may say so. In answer to your question, though... 7D, 7DII and the 1D series cameras are the fastest focusing. They all would be slightly faster than your 60D, because they have a dedicated chip runing the AF, where your camera and most other Canon models run their AF with the same processor that's handling images and such. Your 60D should be very good at tracking and focus speed, while the 7D might be called very, very good... and the 7DII very, very, very fast and good at it. Beyond the gear, how the user sets up the camera and lens, their technique, and their experience and skill all can make a noticeable difference, too. I took nearly 5000 images at a couple fast moving equestrian events recently... Missing focus on 50 or fewer images with my 7Ds (EF 70-200/4 IS USM and EF 300/4 IS USM lenses, mostly... a few shots with EF 24-70/2.8 USM, tho). I'd chalk up at least half those misses to me - shooting too fast, not keeping the AF point on the subject, failing to press or missing the button with my thumb (d'oh!)... But a few inexplicable ones due to the cameras and lenses. Still, under 1% missed focus... not bad IMO. ***********
    Alan Myers
    San Jose, Calif., USA
    "Walk softly and carry a big lens."
    GEAR: 5DII, 7D(x2), 50D(x3), some other cameras, various lenses & accessories
    FLICKR & EXPOSUREMANAGER   

  • How to insert multiple rows in a single shot using insert command?

    Hi,
    If we insert one row, we can use "insert into" command. I want to insert multiple rows into the table in a single shot. Is there any SQL command for insert multiple rows into the table?
    Plese give the solution.
    Thanks,
    chelladurai

    If you would like to do it with SQL, this would be one of the ways to achive it:
    SQL*Plus: Release 10.2.0.4.0 - Production on Fri Sep 25 10:12:59 2009
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, Data Mining and Real Application Testing options
    SQL>
    SQL> desc leap
    Name                                      Null?    Type
    FIRST_PRICE                                        NUMBER(16,6)
    NEXT_PRICE                                         NUMBER(16,6)
    SQL>
    SQL> select * from leap;
    no rows selected
    SQL>
    SQL>
    SQL> !vi multirow_insert.sql
    SQL> !cat multirow_insert.sql
    insert into leap(first_price, next_price) values (1,2);
    insert into leap(first_price, next_price) values (3,4);
    insert into leap(first_price, next_price) values (5,6);
    SQL>
    SQL> @multirow_insert.sql
    1 row created.
    1 row created.
    1 row created.
    SQL> commit;
    Commit complete.
    SQL>
    SQL>
    SQL> select * from leap;
    FIRST_PRICE NEXT_PRICE
              1          2
              3          4
              5          6
    SQL>

  • Extracting single shot from project library

    I have just converted a vhs vid. tape onto a dvd using imovie and idvd, all successfully but I wanted to extract a single shot from the project to use for an outside application. I have got as far as extracting the shot and it is now in the project library as an additional frame but I cant figure how to transfer it to another application so that I can use it for other purposes, any help please ?
    Regards,
    Colin

    11woodchip wrote:
    ... lol its an age thing . ...-
    naw, me 50+ either ... the nomenclatura is a bit weird, its own lingo ...-
    for iM11 advice is a lot more complicated, because Apple switched some internal stuff from 09>>11.
    you need a (free) 3rd party tool, Mpeg Streamclip
    • ctrl-click on the clip, which contains the future freeze
    • choose Reveal in Finder
    • open that clip with your new tool Mpeg Streamclip
    • select your frame, you need solo
    • choose 'Export Frame' ...

  • Can it not possible that i can retrive it for all line items in a single qu

    I have to make report for my application in which I am facing a following problem:
    In the application there are multiple suppliers and each supplier having multiple line items and each item having multipale events. each evant having three status GREEN,RED and BLUE.
    When a user select 'all suppliers' to show the the status time span for a supplier (i.e. for a supplier how many parts and upto how much time parts are in blue, red and green status)
    to show the cumulative status time span I have to find out a event for each line item which is having nearest lower entry time from the lower part of the given time span.for this i have write following query
    SELECT * FROM parts_events
    WHERE vendorid = ? AND partid = ?
    AND visible = 'visible' AND active = 1
    AND entrytime = (SELECT MAX(entrytime) as
    entrytime from parts_events
    WHERE vendorid = ?
    AND partid = ?
    AND entrytime < ?
    AND visible = 'visible'
    AND active = 1)
    the problem is that i have to fire this query for each line item, can it not possible that i can retrive it for all line items in a single query?

    maybe if you can post some sample data and output will help us analyze more youre requirement.

  • I have an IMAP mailbox that seems to only show mail 7 days old on my iMac running Snow Leopard.However, all old emails that I have not deleted are showing up on my macbook pro running the next OS (Lion?).  How do I get all my old emails back on my iMac?

    I have an IMAP mailbox that seems to only show mail 7 days on my iMac running Snow Leopard.  However, on my MacBook Pro I can see all old mail that I have not deleted.  It is running the next operating system (Lion?).  Does anyone know how I can get all my old mail back on my iMac.  It is my primary computer and I need some of those old messages.  I have tried to rebuild the mailbox but it has not done anything.

    I have tried to rebuild the mailbox to no avail.  The mailbox behavior says:  Drafts (not checked) store draft messages on the server, Notes (checked) show not in Inbox, Sent (checked) Store sent messages on the server Delete sent messages when (option never selected), Junt (not checked) store junk messages on the server Delete junk messages when (option never selected), Trash (checked) moves deleted messages to the Trash mailbox and (checked)  store deleted messages on the server Permanently erase deleted messages when (one month old option selected).
    I have not set up any rules that I know of other than a signature, in the very least I have not changed any.

  • My 16gb iPhone 4S keep tell me that my storage is almost full and I don't have enough space for any upgrades. I don't have any music or videos on my phone. I deleted all old emails, texts, contacts and apps but still nothing. When I check my settings, I n

    My 16gb iPhone 4S keep tell me that my storage is almost full and I don't have enough space for any upgrades. I don't have any music or videos on my phone. I deleted all old emails, texts, contacts and apps but still nothing. When I check my settings, I noticed that my Instagram is at 732mb and it keeps rising. Now it's at 814mb. Please help!!!!!

    What is the precise wording of the message that is occurring?
    Are  you attempting to update via iTunes on a computer or over the air on the device?
    How much free space is actually on the device?
    If updating via iTunes on the computer, how much free space on the computer?

  • Close all the open Application in one-shot ?

    Is there are any way to close all the open application in one shot in ipad rather than double-click the home button and close the apps one by one.

    In principle, I agree with you...
    But it appears that reality is not perfect. I observed on iPhone 3 that memory could be pretty clogged from time to time and I needed to restart it to free up memory and get it back to original speed again. It all depends on which apps you are running. Some appears to eat more memory than others. On iPhone 4, it appears to be less of a problem and I have seen that later iOS releases also makes this less of a problem. I only have a first generation iPad, but I have seen that later iOS releases have improved memory handling significantly there as well. However, it appears to be a good idea to reboot the device after a week or two just to flush the memory. I can't prove this theory scientifically, but I do see a difference in memory usage when doing this.
    The reason I actually tried "Process Killer" was a tip that it addressed the problems many of us encountered with the first iOS 5 release: frequent crashes and slow performance. After the pretty quickly released iOS 5 update, that wes pretty much solved, but occasionally killing processes actually helped me at that point, It made both my devices more stable.
    The original question was about battery performance, there I don't think that the amount of processes running is the key. A much better way of getting more out of your battery is shutting off location services in apps where they are not really needed. I would guess that turning off push notofications for as many apps as possible helps as well.
    Also, turn off the Personal Hotspot on iPhone when it's not needed!

  • Is there any way to create multiple users in a single shot in oracle db

    Can Any one tell me, is there any way to create multiple users in a single shot in oracle database.

    Hello Nunhum,
    I guess this was not my question.. This is not what I m asking.. I know there is not a single sql statement in oracle ,which could create multiusers alike UNIX/LINUX(OS LEVEL), Whatever you have written..is simple creating them one by one.
    What I am expecting is to have PL/SQL statement which could help us in this regard.

  • Java applets won't load, have latest version of java installed, have removed all old versions from the hard drive, java console not working in firefox, any suggestions please ?

    java applets will not load,
    i have run the java test page & i have the latest version installed.
    have removed all old versions of java from my hard drive & restarted the computer.
    i have checked that java is enabled in the plug-ins and it is with version se 6 u22, also something called java development toolkit 6.0.220.4 np runtime script plug-in library for java (tm) deploy.
    if i click on java console in tolls nothing happens

    Hi,
    You might want to look in your control panel for 'Java' icon. It should give you an option to enable java plugin into your browser. Let me know if you still face the issue.
    Thanks!

  • Transferred backed-up data from external hard disk to new hard drive on my MacBook Pro which seemed to be successful. I now find that some (or maybe all) old emails have been resent. Can anyone tell me what has happened?

    Transferred backed-up data from external hard disk to new hard drive on my MacBook Pro which seemed to be successful. I now find that some (or maybe all) old emails have been resent. Can anyone tell me what has happened?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • All old pages documents are blank

    Did the update to Pages 4.0.3. iWork '09. Running 10.5.8. MDD Dual 1.44
    Now all old Pages documents are blank.
    Suggestions?
    Thanks,
    Rich

    Kensey,
    Have you recently begun using Lion? Has it been more than 2 weeks since you last opened those documents?
    Did you notice a button marked "Unlock" in that dialog that informed you that the document was locked?
    Jerry

  • HT201269 hi, my new device was set up in the store that I bought it from. How can I transfer all old text messages over to my new device? I have followed the icloud back up steps on this page. Please help, thank you.

    hi, my new device was set up in the store that I bought it from. How can I transfer all old text messages over to my new device? I have followed the icloud back up steps on this page. Please help, thank you.
    Its an iPhone 4
    Message was edited by: zzziggy85

    Here is how
    http://support.apple.com/kb/HT2109

  • How do I set all users to have complete permission access to all other users on a single Macbook?

    How do I set all users to have complete permission access to all other users on a single Macbook?  When one user uploads a picture from camera, the other user is told they don't have permission to view.  Same with music.

    Go to System preference> accouts>unlock>click+and add name of new user, Adrop dowm window will appear, new Account and set for Admi, fill in their name, to make things even more simple, use the same password for all,if it will allow it. Click ceate account. Click allow user to admin this computer.Then go to sys prefs, sharing and click all the things you want to let everyone use, If you use separeate paswords then each user can set their own preferences. All users can be set as as administrator, click allow access for all users. This will allow every one pretty much the same access.
    OH yeah reart the computer sfter added a new user, and test the new login, if it's good coninue.

Maybe you are looking for

  • Windows 7 and HP All in One Printers

    Have you just brought a new PC with Windows 7 or upgraded from Windows Vista and now having problems with your Printer / All in One. 1) Are you running the latest version of HP Software designed for Windows 7? Please go to Hp.com and choose Support a

  • Classification purchase order (with batch management)

    Hi, I need some help in the next situation: I need to order a material with batch management. I've used the classification system to assign the material specifications to the material of a batch. When I create a purchase order I want to specify some

  • Apple TV Bug: selecting Podcasts to sync does not work: syncs everything

    I have even tried to restore to factory settings, then downloading latest software, deselecting everything but one podcast (video) and look, indeed, no movies, no music but then all podcasts from my entire library are synched to the ATV despite only

  • How long does it take to be an "official iPhone Developer?"

    I decided that I wanted to be a iPhone developer a couple of days after the March announcement. So I filled out the contact information, and of course got the reply that the beta program was full. Fast forward to July 14th, when I got a email from th

  • Doubt in using :Function Module : MS_CONVERT_TO_OTHER_CURRENCY

    Hi ,. In the Function Module :MS_CONVERT_TO_OTHER_CURRENCY. I have to export following parametes: DATE             FROM_CURRENCY    FROM_AMOUNT      TO_CURRENCY      COMPANY_CURRENCY RATE  (optional)    . Here my doubt is :what is the purpose of COMP