How to find original [manufacturing] plant of a batch

Dear all
Could you plaease help me to find link between original manufacturing plant & depot where product is laying currently.
I'm using tables MCH1, MCHA & MCHB currently. But the column of Original plant is blank. Please find
Is there any customisation available? I'm putting an example for reference. 1st table is MCH1 & 2ND is MCHB.
Material     Batch     Created On     Created by     Last Change     SLED/BBD     Batch restr.     Date of Manuf.
1000168     1614265     26.06.2009     M1PI     11.02.2011     26.06.2010     X     26.06.2009
Material     Plant     Stor. Location     Batch     Created On     Created by     Restricted-Use
1000168     F101     I003                           1614265     10.02.2011     SDMMSUP               1
Please help.
Nachiket Abhyankar

dear friend,
take your batch number and material document year and go to table MSEG
put this data and set 101 into BWART field (your movement type). find the record in MSEG
take the value from AUFNR field (the production order which is linked to your batch) and go to table AFPO
put the prod.oder number and find the record.
now your original manufacturing data as folows:
AFPO-DWERK is your manufacturing plant
AFPO-PWERK is your planning plant
AFPO-LGORT is your storage location
good luck!

Similar Messages

  • How to find out the plants and storage location for a given company code

    hi
    How to find out the plants and storage location for a given company code

    Hi
    Check for Assignem,ent of Plant & compnay code in OX18
    & for Combination of Plant & Storage location in OX09
    The total org structure can be viewed in EC01 - Click on Structure  -> navigation
    & Continue, Click on the Compnay code & the wole structure can be viewed
    Thanks & Regards
    Kishore

  • How to find the manufacturer of iPhone?

    How to find the manufacturer of iPhone?
    model no my devise is : MD382LL

    I've updated the new version IOS 6 BETA 4. My phone is diverted to the problem.
    If I diverted to another state is diverted out.
    Restore is should I do to correct.
    Please get help.
    Thanks

  • How to find origin of scrolled UITableView

    Hi, I'm using self.view.frame within my tableViewController to get the origin of its UITableView
    If I scroll the table up (i.e. second row is now shown on top of the screen), self.view.frame continues to return an origin of {0,0} instead of {0, -80} even though the table has been scrolled up by 80 pixels (i.e. the height of the first table row)
    Does anyone know how to find out the amount (e.g. 80 pixels or 90 pixels etc..) by which a table is currently scrolled up by the user ?

    Dankeschön, that was the solution.
    I had also figured it out independently and just got here to update the post when I saw your reply. Thanks

  • How to find original ios version

    iam download ios 7.1.1 on iclarified site. i have some doubt
    that site is sell original os or fake.
    how to find the original / fake ios 7.1.1 on iphone 4s.
    how to download original ios version on my phone..

    Plug it in to iTunes on your Mac, Restore the phone.

  • How to find the supplying plant for a purchase order

    Hi Guru,
    My requirement is to dispaly the suppling plant and some other fields for the purchase orders using ALV report.
    Could any one help me how to find the supplying palnt for a purchase order.
    Suggest me any function module or with sample coding
    Regards
    Paul

    Hi Ravi,
    You are solution is right but in that table the supplying plant is not updated
    Could you suggest me any other tables
    Regards
    Paul

  • How to find original apple i Phone

    how to find a original apple i phone
    help..?

    There is no way to track an original iPhone. You'll just have to look for it. Notify the police and change any passwords associated with online accounts you used from that iPhone.
    Regards.

  • Fetching the Manufacturing Plant for a Batch.

    Hi Everyone,
    Could y'all tell me How do I Fetch the Manufacturing Plant for a particular Batch. The Mfg.Plant has to be displayed in an alv report.
    Thanks and Regards,
    Neo

    hi Neo ,
    check tables MCHA/B/* .
    check MCHB not A.
    Regards
    Prabhu

  • How to find count of records based on batch wise.

    Hi All,
    We are working on OWB10gr2. I would like share one requirement. Any one can suggest me how to do it and which is the best way to get accurate information.
    We have 2 schemas’ like nia_src and nia_tgt. currently we are moving data from nia_src to nia_tgt for that reason we implemented some mappings based on requirement. In my source schema (nia_src) having 100 tables with data and similar structure replicated in target schema (nia_tgt).
    In source schema every table having one date field for which record is inserted and based on that field we can find how may records are inserted on particular table ,particular time.
    Same like target also maintaining date fields for tracking purposes.
    We have done some mappings and scheduled also. Every day we are into the target with incremental data. All are working fine not any issues.
    I wanted to know how many records inserted, updated, merged for particular batch
    How can we find?
    Can we find exact information in OWB_REP_OWNER schema on WB_RT_AUDIT?.
    For tracking purposes I need to find those values how many records are available in
    Source table and how many records are populated to the target schema?
    How to find schedule batch count of records table wise for batch wise?
    Please suggest me any one on this.
    thanks and regards,
    venkat.

    RE: based on pre operator can we find count of records. if yes how to do it.
    No, you cannot tell from the pre- operator how many records will be inserted or updated into a mapping. How could you? The mapping hasn't run yet!
    At best (if you have simple mappings with single targets) you could come up with a strategy to have the pre-mapping procedure aware of it's package name, then select from user_source for that package body until you find that first cursor used for the row-based processing, copy the cursor into a local variable, and then execute immediate select count(*) from that cursor definition. But still, all that would get you is the number of rows selected - not inserted / updated / errored etc.
    A post-mapping procedure that is aware of the package name will, however, run prior to package exit so that the package spec is still in memory so you can access the public variables in the package spec. We do that in our standard post-mapping procedure
    CREATE OR REPLACE procedure erscntrl_finalize_prc(
                           p_process_id     in  number,
                           p_process_name   in  varchar2)
    as
          l_numread      number         := 0;
          l_numInserted  number         := 0;
          l_numUpdated   number         := 0;
          l_numMerged    number         := 0;
          l_owb_audit_id number         := 0;
          l_owb_status   number         := 0;
          sqlStmt        varchar2(2000) :=
                               'begin '||
                               '  :1 := '||p_process_name||'.get_selected; '||
                               '  :2 := '||p_process_name||'.get_inserted; '||
                               '  :3 := '||p_process_name||'.get_updated; '||
                               '  :4 := '||p_process_name||'.get_merged; '||
                               '  :5 := '||p_process_name||'.get_audit_id; '||
                               '  :6 := '||p_process_name||'.get_status; '||
                               ' end;';
    begin
          -- we use dynamic SQL to return required audit field values.
          --  This allows us to alter which values we need at a later date
          --  without impacting the deployed mappings.
        execute immediate sqlStmt
        using   out l_numread,   out l_numInserted,  out l_numUpdated,
                out l_numMerged, out l_owb_audit_id, out l_owb_status;
      -- then execute our own logging package.
       owb_mapping_log_pkg.finalize(
                           p_process_id,
                           p_process_name,
                           l_numread,
                           l_numInserted,
                           l_numUpdated,
                           l_numMerged,
                           l_owb_audit_id,
                           l_owb_status
    end;
    /However, even in this case bear in mind that if you run the mapping in set-base mode, all Oracle returns is the number merged which does not give values for the inserted and updated counts. If you really need those values you need to either a) run in row-based mode or row-based-target-only, or come up with some custom queries. For example, in your pre-mapping do a select count(*) from your_target_table, then run the mapping, then get the number merged, then do another select count(*) from your_target_table. With these values and basic math you could tell the number inserted by the growth in the table, and the rest of the number merged must have been updates.
    That being said, if you are playing with dimensions as large as most of the ones I am - there is no bloody way that you want to do two select count(*) statements on each run without a really, really good reason.....
    Cheers,
    Mike

  • How to find original iPhoto Album photos in Library (by Album content)

    I have run out of Macbook space (OSX 10.7.5) and want to put all my photos on an external hard drive and share them between MacBook and iMac (no cloud please).  I want to do this by "Album" name because that's how they are organized.  I don't get the "events" thing in iPhoto, nor am I interested in the "Faces" stuff.  Just simple file access is all I want. 
    QUESTION 1:  How can I find the original photos after exporting by album?  I want to delete these permanently from the Library -- from my MAC.
    QUESTION 2:  Is there a smarter way to get these photos onto my external drive than using "export?"  And, is there a way to re-size a batch of files as opposed to one by one?  I made all my camera photos the largest size possible, one reason I've run out of disk space.  But to individually re-size would be impossible.
    Note:  I'm in a mess with photos.  Have 20K on MacBook and about 25K on my iMac.  There are 8 different iPhoto Libraries on my iMac, created by me in an effort to organize but I didn't know what I was doing and they are a total mess.  My goal is to get them all into this hard drive from both computers then start all over again.  But they need to be by album.  I'm not an "Event" person -- doesn't make sense to me, so I've put all my photos in albums.  When I start over I may not use iPhoto.  Thinking of going back to Windows actually.

    Sorry I'm terrible at explaining and even using my macbook haha. Let me try again. I imported some photos that I wanted to group together into an album. I forgot to create the album before importing a new set of photos which then took the place of the previous ones in the "last import" album. Is there anywhere or any way I can easily find the selection of photos I forgot to put into an album together without having to select them one by one from the "all photos" section? These would be the only pictures in my Photos application that haven't been organized into an album yet if that helps; however, these photos were not taken on the same date.

  • How to find "Discrete manufacturing family   pack J"

    All,
    Please suggest, how can i find the family pack level of discrete manufacturing. Because as per on patch " This patch should be applied only if you are on discrete manufacturing family pack J or above."

    Hi;
    I suggest make search from below link wiht your EBS-version
    https://rpl.oracle.com/ViewRPLBody.jsp
    Also see:
    11i10 Discrete Manufacturing Documentation [ID 295179.1]
    Oracle Applications Discrete Manufacturing Family Pack G [ID 174258.1]
    Regard
    Helios

  • How to find original tracks in iTunes to delete

    I use a MicroMemo with iTunes and 80GB G5 iPod. Once recorded, I convert recordings to AAC then delete the originals which are about 700MB in size each. Lately I accidentally clicked the "Keep files in iTunes Folder" option when deleting them from the iTunes Library instead of sending them "to Trash" to totally get rid of them. Now I want to find those tracks and put them into Trash once and for all. How can I find them?

    Open your iTunes Music Folder in the Finder and type the file extension you are looking for into the search box (like .mp3). It will list all of the files that fit that criteria. If you need more refined search capability, click on the little "+" next to the "Save" button and choose from the list of criteria. The Other... option will allow you to choose just about any metadata criteria, but it may take a while to load.
    Once done, you can save the search so you can use it again, if needed.

  • How to find original image file names in Reader?

    How do I display the original file names of digital images in Reader? I am using Reader 8. In previous versions I used the "Picture Tasks" button in the menu bar to open various dialog boxs that showed the original file names. I am a photographer and clients often order prints using original camera file names. Currently I have to tediously match images between my image browser and Reader placing them side by side. Would be so helpful to display in Reader the original file names. Help anyone? THanks in advance.

    Command-D provides info on the PDF itself but nothing on the image files' metadata. I create PDF docs inside Php CS4 if this is any help. If there is a way in Reader to display all image files' original file names simultaneously please clue me in.

  • How to find original document for which settlement has been carried out.

    Hello Friends,
    As a process of period end, we have executed the automatic settlement for assets under construction for an internal order through KO8G.
    After completing the run system has posted a document successfully.
    When I want to check the original document for posted document through FB03, through   Environment  Document Environment  Original document. System is showing the same settlement document rather than the original document. 
    Can any one explain me how to check the original document for which settlement has been carried out.
    Regards,
    RS

    "Original document" means from where the document originated. Means for eg MM invoice will be original document for FI invoice. Hoever for settlement document, Settlement process it self is the origin for posting. This way, You cannt trace back the Fi postings which got settled. You need to run line item report for the object and analyse the Fi postings and corresponding Settlement postings

  • How to find original location of song

    If a song comes up with a "!", it means itunes can no longer find the file. Is there any way to find out where the song used to be,ie, where itunes is looking for it ?

    I had the same issue. I started bulding a music database on my laptop, and unchecked the 'keep iTunes music folder organized' option (Edit->Preferences->Advanced, the General tab). This allows you to organize the folders of music how you like, and iTunes will leave them alone. I had them by Artist with a subfolder for each Album. I then moved everything over to my new desktop computer (both are WinXP), and forgot to uncheck that option, oops.
    iTunes moved everything, and doesn't remember where they came from. The thing is, iTunes uses the mp3 tags in each song to create new folders and also rename the song. So the resulting folder hierarchy depends on the correctness of these tags.
    In my case many songs had no tags so I ended up with a lot of songs renamed to "Track X" (X being a number), in a folder Unknown Artist\Unknown Album. Hours of mp3 tag editing later I had the collection organized.
    There's a useful freeware mp3 editor called "ID3-TagIt", available from http://www.id3-tagit.de/english/index.htm
    Home Built   Windows XP Pro  

Maybe you are looking for

  • Will Quicktime support PPAPI? Does it already?

    Quicktime is blocked in Chrome, IE Explorer, and Firefox, but not yet in Safari. Can I count on this being true in the future? Let me explain my problem: I'm developing a website that will show literally hundreds of video clips of American Sign Langu

  • Recording from Itunes radio stream

    Is it possible to record playback from a internet radio stream. If so, how?? I have station that i would like to record their broadcast.

  • Error in Sync Bo Creation

    Hi I am on WAS 6.40. And have defined my two own RFC's to be used for GetDetail and GetList. When I am generating the SyncBo. It gives the following error <b>'Function modules from the function pool Z_MEREP_GEN_T01_ZMIDELV contain syntax errors'</b>

  • Firefox 7 + youtube

    This keeps happening to me: Can't go forward or pause the video and this happens, can anybody help me? I know there's a lot of people with problems with flash, I tried downgrading flash, unninstall and start firefox in safe mode, keeps happening. Unn

  • I have purchased a new MacBook Pro. I purchased and download Elements 12 on my old one and want to download it to my new one. How?

    I need help transferring my Photoshop Element12 from my old MacBook Pro to a new 13 in Retina Display Macbook Pro. How can this be done? Both computers are using Yosemite 10.10.2. I'd appreciate any help.