Are there any alternatives for mseg and mkpf

I had to display from table S032...following fields.
S032-LETZTABG --> Date: last (i.e. most recent) goods issue
S032-LETZTVER --> Date: last (i.e. most recent) consumption
However the data was not properly filled in s032 table.  So I went for mseg and mkpf table to get budat based on moment types.
    SELECT   MSEG~MATNR
             MSEG~WERKS
             MSEG~LGORT
             MSEG~BWART
             MKPF~BUDAT
             INTO TABLE IT_MSEG
             FROM MKPF AS MKPF  INNER JOIN MSEG AS MSEG
             ON
                 MKPFMBLNR  =  MSEGMBLNR  AND
                 MKPFMJAHR  =  MSEGMJAHR
             FOR ALL ENTRIES  IN  T_OUT_TMP
            WHERE MSEG~MATNR  EQ  T_OUT_TMP-MATNR
              AND MSEG~WERKS  EQ  T_OUT_TMP-WERKS.
Are there any other alternative table for mseg and mkpf...
Because my above coding  ( which includes above  SELECT of mseg and mkpf )got performance issue...
Could you please suggest me anyu other alternative for mseg and mkpf ...

Try to include the BUDAT in the selection of the MKPF.. if you don't have any restriction in MKPF than just pass an empty range.
RANGES: S_BUDAT FOR MKPF-BUDAT.
SELECT
MKPF~BUDAT   "<<<
MSEG~MATNR
MSEG~WERKS
MSEG~LGORT
MSEG~BWART
INTO TABLE IT_MSEG
FROM MKPF AS MKPF INNER JOIN MSEG AS MSEG
ON
MKPF~MBLNR = MSEG~MBLNR AND
MKPF~MJAHR = MSEG~MJAHR
FOR ALL ENTRIES IN T_OUT_TMP
WHERE
MKPF~BUDAT IN S_BUDAT   " <<<
MSEG~MATNR EQ T_OUT_TMP-MATNR
AND MSEG~WERKS EQ T_OUT_TMP-WERKS.
Regards,
Naimesh Patel

Similar Messages

  • Are there any alternatives for iphone backup extractor?

    Hi all,
    I find that the 'iphone backup extractor' program is very useful, however it is quite annoying that they limit the extraction to 4 files at a time and that we have to pay in order to get our own data files propperly. :S
    When I restore my old backup from iTunes, every new thing is gone, when I restore the backup I just made, the old backup stuff has gone. It just replaces each other.
    Apple should have their own software like this where you can extract what ever you want from your old backups and transfer it on to your phone, such as contacts for example.
    Anyway, I was wondering if there is any alternatives for this program, or any other way I can extract my backup files ?

    If you're on a Mac, there is a "free" iPhone backup extractor, but none that I know of for Windows. You could always code your own program, that would be free.
    Apple doesn't provide a mechanism to do this for the simple reason they don't want users screwing with the iPhone backup. Thus, none of these third-party programs are supported.

  • Are there any magazines with articles and tips for Encore - English language

    Are there any magazines with articles and tips for Encore - English language

    The very best "chronicle" on Encore that I can come up with is Jeff Bellune's Focal Easy Guide to Adobe EncoreDVD 2.0, Focal Press. It was written for EncoreDVD 2.0, but everything in it applies to CS4. Now, as of CS4, Adobe Dynamic Link to PrPro has been greatly improved and strengthened, and that part will have to come from the Help files. The book is still the best resource for 99% of Encore, and I highly recommend it. You will not be disappointed. It is an invaluable reference, whether you have EnDVD 2.0, CS3 or CS4.
    As for magazine articles, Encore is mentioned in some, but I do not recall any specific to the program. Same for books on DVD/BD authoring. I have several, that use Encore for some examples, and other authoring programs for others.
    The closest thing that we have to the PrPRo-Wiki, mentioned in your thread in the PrPro forum, is the wonderful set of Encore FAQ's on this forum. Jeff Bellune and Neil Wilkes have done a great job of rebuilding those, and most were lost, when the forum underwent a major changeover about 1.5 years ago.
    Next, just reading this forum will help one learn how to do much in Encore, and also how to solve any problems.
    One other asset that needs to be pointed out is the link in this ARTICLE to Jim Taylor's DVD FAQ. His book, DVD Demystified, by McGraw Hill, will tell you everything that you would ever want to know about DVD/BD, and his FAQ site will cover most of the important info.
    Great reading in each of those. That is not an all-inclusive list, but all that I can think of for now.
    Good luck,
    Hunt

  • Are there any magazines with articles and tips for Photoshop

    Are there any magazines with articles and tips for Photoshop - English language

    steenmikkelsen wrote:
    Are there any magazines with articles and tips for Photoshop - English language
    I can think of about 10! And then there are all the digital photography magazines too.
    But what's wrong with starting here:
    http://www.adobe.com/support/photoshop/
    (Save the forests!)

  • Are there any magazines with articles and tips for Premiere - English language

    Are there any magazines with articles and tips for Premiere - English language

    I dont know of any regular magazines.  There are occasional articles in video mags.
    But heres some online stuff you can review:
    http://forums.adobe.com/thread/424009
    http://premierepro.wikia.com/wiki/Adobe_Premiere_Pro_Wiki
    http://forums.adobe.com/thread/424418

  • Are there any magazines with articles and tips for AE - English language

    Are there any magazines with articles and tips for AE - English language

    I'm afraid not. Mags like Computer Arts and others have occasional articles interspersed or specials (Computer Arts Projects) but if you want my opinion: You can find much better resources online. Most of these print articles are really quite generic and aimed e.g. at 3D artists who only do the occasional piece of work in AE...
    Mylenium

  • Are there any Hotkeys for Adjusting Temperature in Lightroom, similar to + and - for exposure?

    Are there any Hotkeys for Adjusting Temperature in Lightroom, similar to + and - for exposure?

    If you click on the word Temperature, then + and – will adjust the temperature up and down, respectively.
    Note: whenever you click on another slider name, like Exposure, then the + and – new work on the slider name you just clicked on

  • Are there any costs for an adobe reader software distribution license ?

    Are there any costs for an adobe reader software distribution license ?

    No (except for the costs of having your legal team check the license). You do need to read the license carefully, you are making specific commitments and there are specific restrictions.

  • Are there any shortcuts for creating Value Object Classes?

    Hi,
    I'm using a Remote Object to connect to my server
    (pyAMF/Django). I'm getting stuck with the creation of Value Object
    Classes. It doesn't seem very DRY to have a class on my server
    representing the data model and then have to recreate that class
    and all its properties in my Flex app.
    Are there any shortcuts for creating client side VOs from
    server side data?
    I was thinking about declaring an empty VO class in Flex, and
    then dynamically assigning/casting my Proxy object to that class.
    It seems like that approach may cause problems for the Flex
    compiler though.
    Any hints?
    Thanks!

    quote:
    Originally posted by:
    tptackab
    Oh man, do I feel your pain. I'm not sure what middle-tier
    technology you're using, but I'm using Java (w/Spring) and I
    absolutely hate having to create and maintain two sets of VO (aka
    data transfer - DTO) object for Java and Flex.
    One thing that has helped me in that area is a free tool from
    Farata Systems called
    DTO2Fx. If you're using Java and Eclipse, it's a great time saver.
    You simply install a (very lightweight) Eclipse plugin, add a
    single annotation to your Java VO classes, and it automatically
    generates your Flex VOs. It even creates a base and extended
    version of each VO on the AS3 side so you can add code to the
    extended VO without fear of having your changes overwritten when it
    regenerates your Flex VOs.
    Here's a like to thier
    PDF that
    gives instructions and a download link. I had it up and running in
    my application in less than 30 minutes!
    I'm using Python/Django serverside (PYAMF is my AMF
    serializer).

  • Are there any fixes for iPad 2 with OS 8.1.1.

    Are there any fixes for the iPad 2 IOS 8.1.1?  I've had problems with Safari and other Apps crashing or locking up, and with extremely slow touch response.  These problems have been occurring since the last update.  At times the iPad becomes unusable.  I have been keeping all programs closed and history and web site data cleared.  Thanks for any help you can give.

    Hi, dannilee,
    I have exactly the same problem. The device was my favorite computer until 8.1.1. Now it runs s-l-o-w-l-y, requires endless reboots.
    To improve the performamce, I have tried these:
    1.Go to Setting->General->Accessibility->Reduce Motion. Turn on.
    2.Reset iPad device settings using Setting->General->Reset->Reset All Settings. Its increase iPad performance little better.
    3.Hold the sleep/wake button and home button upto 8 seconds. This will turn off your iPad. Then turn on iPad. Wait few moments. Do the same thing twice to solve this issue.
    Solution 3 worked for me. And, I always recommend you to backup your iPad first before any action to avoid any data loss.
    Hope it is useful for you.

  • I have Dreamweaver CS6.  Is it possible to upgrade to Dreamweaver CC?  If so, are there any fees involved? And what is the process?

    I have Dreamweaver CS6.  Is it possible to upgrade to Dreamweaver CC?  If so, are there any fees involved? And what is the process?

    Unfortunately, CS6 is the last version Adobe made available for purchase on perpetual license.  So there are no upgrades available except to join the Creative Cloud and pay monthly.
    As a Creative Suite user, you qualify for a substantial discount for the first year -- $29.95/month for Full Plan which affords access to all the software and other services.
    Creative Cloud pricing and membership plans | Adobe Creative Cloud
    Nancy O.

  • I have Mac OSX Lion 10.7.4, Quickbooks Pro 2010, Parallels Desktop 7 for Mac, Operating in Windows 7.  Are there any recommendations for running Quickbooks Pro 2010?

    I have Mac OSX Lion 10.7.4, Quickbooks Pro 2010, Parallels Desktop 7 for Mac, Operating in Windows 7.  Quicbooks Pro 2010 is not responding or opening currently. Quickbooks does not support Parallels anymore.  I hear Apple Bootcamp is an opton.  Are there any recommendations for running Quickbooks Pro 2010 on Mac?

    QuickBooks Pro 2010 for Mac is not supported in Lion. QB Pro 2011 will work, but I just got an email today that 2011 will not be updated to work in Mountain Lion. QB Pro 2012 will be updated for ML.
    Be aware that the Mac version of QuickBooks is shamefully lacking in features compared to the Windows version. I do use the Mac version, but it has more features than I need for a small business, so it doesn't affect me. No one knows why Intuit seems to hate Mac users, but they show it every day.
    If QB Pro 2012 for Mac can be downloaded as a demo, I would strongly suggest testing with it before making a final decision. You will be able to import the Windows data, but possibly not all of it, depending on the Windows version features you use.
    Boot Camp allows you to install Windows on its own, bootable partition. When you boot to it, you are of course running Windows in every sense of the word. Just on Mac hardware rather than typical PC gear. Your Windows version of QB will work there without issue. The problem is having to boot back and forth between Windows and OS X, depending on what software it is you need to use at the time.

  • Are there any bapi for create Business Partner

    Dear Sir,
    Do you know  are there any bapi for create Business Partner in CRM
    Please advise.
    Thank you and best ergards,
    Vimol

    Dear Vimol,
    BAPI_BUPA_CREATE_FROM_DATA     ......SAP BP, BAPI: Create Business Partner
    BAPI_BUPA_FS_CREATE_FROM_DATA  .......SAP BP, BAPI: Create Business Partner
    BAPI_BUPA_FS_CREATE_FROM_DATA2 .......SAP BP, BAPI: Create Business Partner
    Hope this will help.
    Regards,
    Naveen.

  • Hi I have recentrly bought IPAD AIR , is there any flash version supporting this model or is there any alternative for flash siles to open ?

    Hi,
    I have recently bought IPAD AIR , is there any flash version supporting this model or is there any alternative for flash sites to open ?

    iPad do not support Flash
    However Skyfire, Photon, iSwifter, Browse2Go and Puffin Web Browser will provide limited Flash capability

  • Are there any limitations for importing Apple Aperture Libraries for Lightroom 5.7 ? What can be the hardware limitation importing large Aperture Libraries like 200 gb ? Or is importing larger Aperture Libraries even possible at the moment for Lightroom 5

    Are there any limitations for importing Apple Aperture Libraries for Lightroom 5.7 ? What can be the hardware limitation for importing large Aperture Libraries like 200 gb ? Or is importing larger Aperture Libraries even possible at the moment to Lightroom 5.7 ?

    dj_paige wrote:
    As far as hardware restrictions, the only one I can think of is that you certainly need enough free space on your hard disk to accomodate the masters from your Aperture library.
    IIn which case, ensure all your masters are "referenced" in Aperture, and that you then go to Options in the Lightroom import box and import photos in their existing locations.

Maybe you are looking for

  • Problem with ACPI on kernel 2.6.12.2-1

    I am using a HP Pavilion ZE4805US laptop and since I upgraded the kernel to 2.6.12.2-1 it will not finish the bootup unless ACPI is off. the last line it about the ide devices in the computer (didn't write it down, will post later) here's my /var/log

  • Time Machine backup on a new Mypassport not working

    Can anyone help?  I am using a Mac My Pass Port 1T to try to back up my Mac Book Pro in order to use Boot Camp to put Windows on my machine.  (diretions say back up first). The only thing I've done on this passport is dump pictures and videos onto it

  • Teamcity and Flexunit 4.1

    Hi! I try run flexunit 4.1 on teamcity. Server configuration - headless linux/ubuntu 64-bit. And i cannot successfully run it. That's ant part <flexunit swf="${target.dir}/${tests.swf}"      player="air"      toDir="${report.loc}"      haltonfailure=

  • Albums in Aperture 3 not showing upon IPhone/IPad "Photos" App

    Hello; Some of the Albums I have on file in Aperture 3 are not showing up on my IPhone nor IPad in the "Photos" App. Am I missing a setting? Thanks Mark

  • Modifying Pages templates?

    Have used the "club" newsletter template for a newsletter and now want to modify it to include a logo at the top of the pageCan't figure out how to move the dateline header at the top down to make room for logo. Apple help didn't have any answer and