About the first inspection before mass production ,and the end inspection after mass production

Hi ,experts :
       There is a scenario about my customer : before mass production they need to do first inspection avoid a lot of defect for the finish goods ; and he also need  doing the end inspection to check whether the mold can be used for next batch or need to do some repair .
     I want to add two operations in the routing ,but it seems unreasonable .
     Can anyone give me some advice  for it ? thanks advance .

Hi Avril Liu,
OPTION - A
I think, you can try the below option which may not be the best solution but looks logical to me -
a) Create to inspection types 8901 (Initial Mold Manual Inspection) and 8902 (Final Mold Manual Inspection) and assign them to inspection lot origin 89. Please note these inspection types are manually created and these are not linked to stock movement.
b) Use the inspection type 8901 to test the initial condition of the process. In case if the UD = R, then use enhancement to create a new 8901 inspection lot by linking the old number in "TEXT" field.
c) If the next inspection UD = R, then repeat the manual inspection lot 8901 inspection lot creation step. If the inspection lot 8901 UD = A, then this process is Good to start he process. So create a follow-up action and send emails to stakeholders.
d) If you are not interested in testing the in-process quality of the produced materials, then you need not need 04 inspection type to be added for GR inspection. If you do test (I think yes, based on your answer...) you can add this inspection type to your material. Then you will be able to Release/Block your produced materials too using UD= A/R  respectively.
e) Once the production process is complete, you can create manual inspection 8902 to test the mold characteristic. If the UD = R, then again execute the enhancement to create a new inspection lot 8902, by adding the previous inspection lot number in TEXT field, and keep repeating this process. If the UD = A, then there is no further need for testing, and follow-up mail can be send to the stakeholders for the completion of the process.
OPTION - B
Else, you may need to use inspection type 14 linked to your equipment doing the production, to test the mold characteristics. This process will be linked to PM-QM module, and you need to map this process too.
1st inspection can be linked to 89 manual inspection to double check the process and the final inspection after entire production can be done through inspection type 14. Checking the produced material quality will again need inspection type 04 activation like normal process.
Thanks,
Arijit

Similar Messages

  • How do I get Pages to capitalize the first word of a sentence and the letter 'I?"

    How do I get Pages to capitalize the first word of a sentance and the letter "i" automacticly?

    I am also having this problem. Does anyone have an answer?
    I jus upgraded from Pages 4.3 and it's in Preferences. Not so in Pages 5.0.

  • I was in the middle of using my iPhone 4 running on the latest iOS before iOS 6 and the screen went black but you can see it is still on because the color of the screen is blueish blackish like when your phone is turning off. Any suggestions?

    I was in the middle of using my iPhone 4 running on the latest iOS before iOS 6 and the screen went black but you can see it is still on because the color of the screen is blueish blackish like when your phone is turning off. Any suggestions?

    Reset the device by pressing and holding the home and power buttons for 15-20 seconds until the white Apple logo appears.

  • How can I obtain the first 10 charcter from field and the last 4 characters

    Hi
       I need to obtaind the first 10 characters from field AWKEY from BSEG table, and the last 4 characters, how can I obtain certains position from field??
        Example:
      AWKEY field from BSEG can be for example :
    51000573112002
       This mean that you can obtain separately:
    5100057311 - BELNR (field)
    2002- GJAHR (field)
        As you can see, the first 10 positions are BELNR and the last 4 positions are GJAHR.
         But sometimes you find in old rows:
    5100057312US502001
         This mean that you can get from this field:
    10 positions for BELNR : 5100057312
    4 positions for BUKRS or WERKS : US50  - in this case, I don´t know if its is BURKS or WERKS...for this reason only I want to take only the first 10 positions and the last 4 position to compare.
    4 posiition for GJAHR: 2001
       I rewards all the answers.
       Thank you.
    Alicia

    Hi, thank you for yours answers
    Let me try to explain more what I need to do:
    I have a Internal Table that I create with EKBE table:
      SELECT  MANDT EBELN EBELP GJAHR BELNR BEWTP BUDAT
              MENGE WRBTR WAERS WERKS SHKZG DMBTR
              ZEKKN VGABE BUZEI
        INTO CORRESPONDING FIELDS OF TABLE LIST_EKBE
        FROM EKBE
          WHERE EBELN IN R_EBELN
            AND BEWTP IN ('E','Q','R').
    The result is all the rows that have this conditions..then with this internal table I need to looking for each BELNR in BKPF table, but sometimes you can find the row compare EKBE-BELNR with BKPF-BELNR...but in many cases, you don´t find the row in this way, you need to add EKBE-BELNR and EKBE-GJAHR and looking for in BKPF with field AWKEY..
    For this reason I CONCATENATE in this way:
    LOOP AT LIST_EKBE.
        V_BELNR = LIST_EKBE-BELNR.
        V_GJAHR = LIST_EKBE-GJAHR.
        CONCATENATE V_BELNR V_GJAHR  INTO V_AWKEY.
        SELECT SINGLE MANDT BUKRS BELNR GJAHR AWKEY
        INTO (BKPF-MANDT, BKPF-BUKRS, BKPF-BELNR,
             BKPF-GJAHR, BKPF-AWKEY)
        FROM BKPF
        WHERE AWKEY = V_AWKEY.
    ENDLOOP.
      But I saw that sometimes you don´t find the record in BKPF because the AWKEY is formed with BELNRBUKRSGJAHR....or may be with BELNRWERKSGJAHR ...I don´t know if is BUKRS or WERKS the second field...for this reason I try only read in the select..if its posible the first 10 postions and the last 4 positions...but Im not sure if its possible..
      The reason for that I looking for the BELNR field in BKPF field for AWKEY its because sometimes de BELNR in BKPF its different..example:
    In EKBE you have:
    BELNR: 5105618260
    GJAHR: 2006
    If you looking for in BKPF you don´t find sometimes exactly the field BELNR : 5105618260.. then you need try looking for the AWKEY field then you need to add BELNR+GJAHR..example:
    BKPF:
    BELNR: 5105611111
    GJAHR: 2006
    AWKEY: 51056182602006
    But in other cases... I found that in AWKEY exist for example:
    BELNR: 5105611111
    GJAHR: 2006
    AWKEY: 5105618260US502006
    In the last case I supouse that I can divide in:
    AWKEY: 5105618260-US50-2006 ... but I don´t know what its the field that have the information US50..may be is BUKRS or may be its WERKS
    May be some people know what its exactly this field and can help me..
    With the solution that some of yours give me..I don´t know the how I can make the select? and if its posible make in this way
    Thank you a lot

  • Tryin to install itunes for the first time on my laptop and it keeps stopping at producing product information.

    As it says. Tried 10-12 times and it's the same every time.

    Check your Windows update history and make sure you have installed all the updates.
    Also to SCAN and repair possible Windows system file corruption:
    Go to command prompt (START/ALL PROGRAMS/ACCESSORIES right mouse click "command prompt" and choose "Run as Administrator"
    type in
    sfc /scannow
    let Windows fix any system files that need to be repaired.
    Restart the computer if it did actually repair any files.
    Try your installation again.

  • I just opened iWeb for the first time in several months and the fonts have changed and are garbled in the headers.  Is this a result of switching to Lion, and does this mean I have to go through all 70 pages on my site and manually change them back?

    The text on my pages are messed up.  The letters in my headers are on top of each other and the letters in the body of my pages have no separation between them.  Is this a result of switching to Lion?  (I haven't opened iWeb in several months, since before I installed Lion.)  Any ideas of how to fix this, or do I need to go text block by text block and page by page to put it back right?  Thanks.

    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    For opening your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.

  • In my itunes library I have apps for the ipod.  All of the apps were together, and now I have two different sections to my apps. The first one says 44 apps and the second section says 143 apps.  When I connect my ipod only the first section goes on

    can anyone help me with my apps on my itunes.  They have separated for some reason.  I have one section of 44 apps and the other has 121 apps. Only the top section will sinc with my ipod because at the side where it says apps, it is only showing the 44 apps and not the section at the bottom

    Can you take a screen shot of the iTunes screen and post it? I do not really understand what you  mean by different sections.
    What model iPod and iOS do you have? Maybe the section that does not sync are not compatible with the iPod.
    Were all the apps purchased with one account?
    Do you have any Restrictions one that would prevent syncing? Settings>General>Restrictions.

  • I try to print a 4 page site at less than 100% the first page comes out right and the others revert to 100%. How can I change this?

    I am working on an iMac, OS10.6.8.
    There is a certain web form that I must fill out regularly. It is long and consists of several pages. I wish to keep either a PDF or printed copy of my completed forms. I change the percentage in Page Setup and when I go to print or make the PDF the pages after page 1 revert to 100% and copy is omitted between pages 1 and 2.

    You may have to crop pages to get the effect that you want. If you have the original, it would probably be easier to edit that and create a new PDF.

  • This morning I ask about the requirement to download the adobe Cs6 before i buy the product and the salesperson told me that i met the requirement for that particular software, so my surprise now when i open the file it says an error because my computer d

    this morning I ask to a sales person about the requirement to download the adobe Creative Cs6 before i buy the product and the salesperson told me that my computer met the requirement for that particular software, so my surprise now when i open the file it says an error because my computer doesn't meet this requirement,  my computer is a OS X 10.5.8 and the requirement  is OS X v10.6.8 or v10.7 what can i do?

    The requirements are online. For the Master Collection the requirements on Macs are:
    Mac OS
    Multicore Intel processor with 64-bit support
    Mac OS X v10.6.8 or v10.7
    4GB of RAM (8GB recommended)
    15.5GB of available hard-disk space for installation; additional free space required during installation (cannot install on a volume that uses a case-sensitive file system or on removable flash-based storage devices)
    Additional disk space required for disk cache, preview files, and other working files; 10GB recommended
    1280×900 display with 16-bit color and 512MB of VRAM; 1680×1050 display required and second professionally calibrated viewing display recommended for Speedgrade
    OpenGL 2.0-capable system
    DVD-ROM drive compatible with dual-layer DVDs (SuperDrive for burning DVDs; Blu-ray burner for creating Blu-ray Disc media)
    Java™ Runtime Environment 1.6
    Eclipse™ 3.7 Cocoa version (for plug-in installation of Flash Builder); the following distributions are supported: Eclipse IDE for Java EE and Java Developers, Eclipse Classic, Eclipse for PHP Developers
    QuickTime 7.6.6 software required for QuickTime features, multimedia, and HTML5 media playbackOptional: Adobe-certified GPU card for GPU-accelerated performance in Premiere Pro; see the latest list of supported cards
    Optional: Adobe-certified GPU card for GPU-accelerated ray-traced 3D renderer in After Effects; see the latest list of supported cards
    Optional: Tangent CP200 family or Tangent Wave control surface for Speedgrade
    Optional: 7200 RPM or faster hard drive (multiple fast disk drives, preferably RAID 0 configured, recommended) for video products
    Broadband Internet connection and registration are required for software activation, validation of subscriptions, and access to online services.* Phone activation is not available.
    You should have been given the correct information. Adobe offers 30-day money back guarantee.
    You can find return information here:
    Return, cancel, or exchange an Adobe order

  • Hi there, I updated to ML about 3 weeks ago I can not get in to my apps to download it again as when it was installing the first time I decided to skip the part where it said do i want to do the iTunes and iCloud thing. any sugentions how to go back and

    Hi there, I updated to ML about 3 weeks ago I can not get in to my pps to download it again as when it was installing the first time I decided to skip the part where it said do i want to do the iTunes and iCloud thing. any suggentions how to go back and change that part or do I have to download it again.
    Thanks
    GeeRic

    To set up iCloud, open System Preferences > iCloud, and follow its steps to use iCloud

  • I used my i pad for the first time to take pictures and videos. Do I download it on my I mac before using it as a power point presentation? I also want to separate my pictures and my videos?

    i used my i pad for the first time to take pictures and videos. Do I download it on my I mac before using it as a power point presentation? I also want to separate my pictures and my videos? This also the first time that I'm using the apple support communities.

    You can import the videos and photos using iPhoto or Image Capture on your Mac.
    Connect the iPad to the Mac with the cable and launch either of those two applications on the Mac. Your iPad should appear as a device in the left side of the app. Click on the iPad name and then you should have access to all of the photos and Vidoes in the camer roll and you can import them onto the Mac.
    Im not sure what the reference is to Power Point in this case. You can use the imported photos and videos in a Power Point presentation after you import them to the Mac.
    Are you trying to create a Slide Show on the iPad? Is that what you mean by a Power Point presentation?

  • Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Gavin Lawrie wrote:
    Once it had been established that the iWork rewrite had resulted in some features being lost and others broken, and once Apple had acknowledged the concerns* and suggested they are working on fixes**, I'm not sure what else there is to achieve.
    You are writing that in the perspective of having read about it here already. Repeated often enough that you encountered it somewhere in the posts.
    Users are flooding in here and don't know any of this. Of course we have to repeat everything endlessly.
    Because I like to give precise, understandable and workable answers to repeated questions, and Apple doesn't allow sticky posts here, I created a separate forum which users can consult to look up real answers, and contribute for themselves if they have something valuable to add:
    http://www.freeforum101.com/iworktipsntrick/
    There is a section purely devoted to Pages 5. Add whatever answers you feel will lighten the problems of Apple's 'upgrades'.
    Peter
    * Where have they acknowledged anything?
    ** They have barely anything listed, compared to the massive list of deleted features, and nothing but an extraordinarily long time frame considering they created the problems here and now. Apple has not said they will do anything at all about fixing the real issues, the biggest of which is that the new iWork apps break virtually all the work of existing users.

  • I bought  my MacBook Pro in 2010. This is the first Mac I have owned and recently it is having some difficulty loading we pages, often timing out. This Mac environment is entirely different for me and I am not sure where to begin troubleshooting/clean-up.

    I bought  my MacBook Pro in 2010. This is the first Mac I have owned and recently it is having some difficulty loading we pages, often timing out. This Mac environment is entirely different for me and I am not sure where to begin troubleshooting and/ or clean-up. I have moderate computer skills and try not to download or access questionable material, however recently I visited the Ap Store and purchased a couple of different aps to use in record keeping and for making a flyer. I am not even sure how to remove these programs to see if it helps.
    Any tips or tricks are appreciated.
    Thank you!

    Time to see about the PRAM battery.
    By the way iOS and OS X are different systems.
    iOS is the operating system for iPads, iPhones, and iPod touch.
    Mac OS X is the operating system for Mac labelled computers.

  • ...here goes...i plugged my iphone into my computer for the first time to charge it, and walked away....when i returned it showed i had to open an account, ... my phone was charged, but the problem is it deleted all my pics and my contacts.....  is there

    i plugged my iphone into my computer for the first time to charge it and was in a hurry and walked away, when i returned the add apple i tunes account information screen was up.....
    my problem is, all my pictures got deleted from my phone, all my contacts got deleted also......weird thing is it put pictures on my phone from another phone and also txt msg from another phone......  has this ever happened to anyone else? if so,....do you know how, or where the pictures got moved to? and if they were deleted, is there a way to pull deleted pictures form a phones memory??   thank you any body that can give me any assistance....i really need it...

    It can't do that by itself. You had to click through several prompts telling it to restore it from a backup of an old phone for that to happen.
    If the phone was not backed up to iCloud before this happened, or to another computer, then the data is gone. There is no way to recover it.

  • I have CS5 production, and the Sb program, has an analog delay effect. I deleted the default setting, and it disappeared. Is there any way to re-install it?

    I have CS5 production, and the Sb program, has an analog delay effect. I deleted the default setting, and it disappeared. Is there any way to re-install it?

    Hi Thanks a ton.. so I downloaded Sb from Cs5 download options
    and it won't take the serial number, from the box. I bought Cs5
    in 2010 in the box from adobe.  It lists Sb5 on the back
    of the box, and it's in line, and works fine.. paid about 1000 dollars
    for the software. But, the downloaded exe file will not accept the
    serial number. The same serial number in my account for Cs5
    production premium suite. I guess the new cloud community doesn't
    respond well to BOX installers or previous customers. Thanks a lot for
    your effort but, at 40$ a phone call, I'll suffer through without the default
    analog delay option.. everything else runs smooth so.. have a nice
    day up there in the cloud.
    Best Regards,
    R Daves

  • I am running LR 4.4 on a iMac with OS X (Yosemite).  Everything works in the develop module but when i get to the print module, clicl on print and the apple print dialogue box opens, and I click onn print there, the app closes.  It has now happened about

    I am running LR 4.4 on a iMac with OS X (Yosemite).  Everything works in the develop module but when i get to the print module, clicl on print and the apple print dialogue box opens, and I click onn print there, the app closes.  It has now happened about a dozen times.  I have downloaded LR 4.4 from the internet but the problem continues.

    Very Important, how much Free Space is on your Hard Drive first of all? Click on the Macintosh HD on the Desktop, then do a Get Info on it.
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Do they launch OK while in Safe Mode?

Maybe you are looking for

  • Unable to connect to apple store?

    Hi, Pls I need help in sorting out this problem. Since more than one month I am unable to connect to my apple store or make upgrade. The message is "unable to connect to apple store".. I don't have any problem with my connection as I can use all the

  • Sibelius 7.5 can't find "sounds library", I reinstalled and upgraded but no success. Any ideas. I'm on imac oxa 10.9.4.

    Sibelius 7.5 can't find "sounds library", I reinstalled and upgraded as Sibelius online help suggested but to no avail. Anyone have any ideas? My display speakers do work. Thanks, Jccnwmac

  • List Joins of all Folders

    Hi! Within my Business Area I have several Folders which have joins defined amongst each other. I would like to list those joins, eg. KEY_NAME, KEY_DESCRIPTION, what kind of join and most importantly the exact join formula like for example MYSCHEMA.T

  • Suggested DAM? Your favorites?

    We're a small group - 4 people - and use a common server for images. The files and folders have gotten out of control. We're using Mac and PC (Windows 7). We have CS6. I thought Bridge might be a good digital asset manager, but from searching the for

  • Dynamic lov switcher at UI

    Hi All, I am trying to use a dynamic LOV switcher for two LOVs which are cascading LOVs. The second dependant LOV has to conditionally switch between 3 data sources. I am able to acheive this at model layer. My BC tester works fine. But when i drag t