How come inspection points with DESTRUCTIVE MICs don't affect sample size?

Hi guys,
i have a case i tried on IDES and i need an explanation for it if you can.
@ the beginning we have an in-process inspection with inspection points and non-destructive MICs, the interval of 10 mins (of the inspection point) generated 3 inspections, and my sampling procedure led to a sample size of 1 PC, in the inspection lot display the sample size is "1", which is normal and i understand this.
here comes the problem
we will change one of the MICs and make it destructive. Now we have our 3 inspections. The normal logic says that I'm having 3 inspections and there is on of the MICs DESTRUCTIVE, therefore I'm must get 3 samples, one for each inspection, which means that when we check the sample size in the inspection lot we must get a size of 3, but when i tried this i got a size of 1 again....and this is not logical because my sample will be destructed in the first inspection so how can I carry on the remaining 2 inspections ???
so i need to know how come I'm getting a size of 1 and is that right or wrong ???
i hope i made it clear and wish you can help
Regards,
Mahmoud Osama

Hi Amol,
i'm sorry i don't understand what do you mean by operation confirmation quality  ???
and about stock posting, i know as you said that it is not possible with in-process inspection, as the lot is not stock relevant, but whether it is stock relevant or not has nothing to do with the sample size calculation, my problem is that the logic says that i must get 3 samples because with each inspection i'll destruct my sample, but SAP calculations give only one sample !!!!
i hope you can help with that, thanks for you concern.
Regards,
Mahmoud Osama

Similar Messages

  • 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

  • How to use blutooth with iPad  I don't know anything about blutooth

    How to use blutooth with iPad  I don't know anything about blutooth

    Start with the iPad User's Guide:
    http://manuals.info.apple.com/en_US/ipad_user_guide.pdf
    page 35.
    Regards.

  • How come my iPad with iCloud doesn't sync with my iPhone 4 that has same apple id and both ios5?

    How come my iPad with iCloud doesn't sync with my iPhone 4 that has same apple id and both ios5?

    Not sure if you just have an issue with your setup or something else.
    I had an issue where my numbers and pages documents were not syncing on my ipad, but were on my iphone. 
    I turned icloud off an on, reset the apps, even deleted them and reinstalled them.  I also checked all of the other icloud setting. 
    Only thing that worked (and it might be just a fluke)  I emailed from my iphone a numbers document to my ipad.  I opened then closed the document and the app.  When I opened it back up it started importing my icloud documents.
    If it is a settings issue then you need to be sure you have icloud setup in your mail settings.  Has to be there and active. 

  • HT1473 How come the rest of my songs don't show up in itunes on my new macbook air

    I just bought a macbook AirI It is only down loading my songs that I purchased on itunes How come it won't down load the songs that I down loaded from my cd's on my vaio computer?

    Hi Liz,
    Thanks for using Apple Support Communities.  This article has steps to try if your Mac isn't recognizing your iPhone 5s:
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/ts1591
    If that does not help you may also want to try a quick reset of SMC to see if that helps:
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    Cheers,
    - Ari

  • How come nobody pointed to the JVM Spec?

    Apologize for not knowing where the "usual channels" are to unlock this thread so the hearing of technical facts can continue.
    From the [JVM spec 3.6|http://java.sun.com/docs/books/jvms/second_edition/html/Overview.doc.html#17257] third paragraph:
    "The sizes of the local variable array and the operand stack are *determined at compile time* and are supplied along with the code for the method associated with the frame (4.7.3). Thus the size of the frame data structure depends only on the implementation of the Java virtual machine, and the *memory for these structures can be allocated simultaneously on method invocation*." (emphasis mine)
    The two principals in the locked thread both have support in the JVM spec- local variables are allocated statically at compile time but the actual physical memory for them is allocated dynamically at runtime. Am I understanding that paragraph correctly?

    pete_d wrote:
    jverd wrote:
    The closest Java comes to C++'s #1 static memory allocation is String literals. The compiler stores them in the .class file, and the "address" (the reference value) of the String objects remains the same throughout program execution, as far as I know. Granted, what's in the .class file still has to get allocated on the heap when the class loads--unless it's already there--but if you view that as an implementation detail, and squint real hard, and maybe hit yourself on the head with a hammer, you could almost imagine that String constants are "statically allocated."I'm sensing that the JVM has a very different architecture than a ordinary computer and thus the problem with the regular definitions.I don't see that.
    First it isn't that different. There isn't anything special about the VM. Interpreters existed before Java and have continued to exist. I am pretty sure interpreters existed at least in the 70s. Perl at least up until 6 was based on an intermediate form. You could actually save the intermediate form and run that rather than the 'normal' way of executing the perl script every time.
    Second one still needs to look at what is going on in terms of something resembling standard definitions.
    If one wishes to restrict oneself to the Java language itself, then regardless of the implementation details of the compiler it doesn't "allocate" anything. Because until the code runs there is no allocation.
    If one wishes to include the VM specification (rather than implementation) then one can note that there is nothing specifically that indicates any static allocation either and certainly nothing that the compiler controls.
    Consider a bytecode - istore, which takes an index. It stores into the position defined by the index. This is an instruction created by the compiler. The instruction itself does not suggest allocation. A direction to store is not a direction to allocate. The instruction presumes the allocation has already been done.
    Consider a method call defined in the following.
            // Basic java code
            test(1);
            static int test(int i){ return i; }
            //byte codes for call
           0:   iconst_1
           1:   invokestatic    #2; //Method test:(I)V
           // byte codes for method
           public static int test(int);
           0:   iload_0
           1:   ireturnThe above represent byte codes emitted by the compiler. I see nothing that suggests allocation. Again at that point the compiler assumes that the stack frame exists.
    Consider the class file structure which is generated by the compiler. From that the code_attribute defines code and it has the max_stack is nothing but a 16 int.
    It is just a size. One needs the size to do the allocation but the size is not the allocation.
    In terms of the above and what the compiler does it assumes that something will do correct allocations based on the data that it provides. Still isn't the same as doing the allocation.

  • How come when powering off iPhone they don't ask for lock code

    last time my iPhone was stolen I didn't have my imei number written down and apple wouldn't help me find phone so I lost a lot.  When someone has the pass lock activated Apple should have the pass lock used to power off iPhone.  That way if someone steals the device they can't power it off and lose find my iPhone ability.  Please Apple fix this issue, I think it would maybe deter people from stealing them and being able to sell them.

    robertfromsouth burlington wrote:
    last time my iPhone was stolen I didn't have my imei number written down and apple wouldn't help me find phone so I lost a lot.  When someone has the pass lock activated Apple should have the pass lock used to power off iPhone.  That way if someone steals the device they can't power it off and lose find my iPhone ability.  Please Apple fix this issue, I think it would maybe deter people from stealing them and being able to sell them.
    First, you are not addressing Apple. This is a user to user forum. You might be amazed to discover that you are not the first person to think of this. There are several thousand posts about it already. And there are several reasons why this is a bad idea:
    Yes, they can't power off to defeat Find my iPhone, but they can defeat it many other ways:
    Put it in Airplane Mode from the Control Center (which is enabled even when the phone is locked)
    Remove the SIM
    Wrap it in aluminum foil
    Drop it in a shoplifter's shopping bag lined with metal mesh
    Restore the phone using iTunes
    Run the battery down
    If your phone ever needs to be restored because you forgot the passcode, the FIRST STEP is to turn the phone off. But you've forgotten the passcode. So how are you going to do that?
    The phone will have to be turned on at some time if the thief or the one who buys it ever wants to use it. Find my iPhone will locate it then.
    Activation Lock is already a powerful deterrent to stealing an iPhone. Because it is locked to the rightful owner, neither the thief nor anyone they sell it to can ever use the phone. There is no workaround for this, despite almost 2 years of trying by hackers.
    The rightful owner can display a message on the phone saying it is stolen, with contact information. This will be displayed as soon as the phone connects to WiFi or cellular data. As anyone who buys a phone will want to verify that it works, this is also a powerful deterrent.
    It might encourage you to go and confront the thief if it can be tracked, thus risking your life in addition to losing your phone. Thieves are generally not nice people, and they don't always live in nice neighborhoods.

  • How come International Messaging with the MORE plan isn't free?

    I recently upgraded my plan to "MORE Everything" because International Messaging was promised to be free.
    My daughter planned a trip to India and we signed up for International Data to cover her data usage.
    When my daughter returned, we were charged $0.50 for each text message that she sent.
    How can Verizon advertise free International Messaging on the "MORE Everything" Plan  if it isn't free?

    READING the FAQ beforehand helps a lot. Notice the part I bolded and italics
    General Information
    What is International Messaging? International Messaging is a service that lets you send text and multimedia messages to select international locations from your mobile device. While you’re in the US in the Verizon Wireless coverage area, you can send text messages to over 200 countries and multimedia messages to over 100 countries around the world.

  • SQL INSERT / SQL UPDATE don't work with form page, don't affect table

    The subject line says it all. No matter what I try, my updates on the form don't appear on the report page, which accesses the table. When I look at the table using SQL WORKSHOP, the changes aren't made there either. What am I missing? I have another report page and form page with a different table in the same application and updates in that table work fine. I coded them both the same. What should I be looking at?
    Steve "the n00b" in Raleigh NC

    Steve,
    How you have created the FORM page? Using FORM WIZARD? Or You have created blank page and after that you have manually created all the form items?
    If you have used WIZARD to create form page, then you can see a page process with Automatic Row Processing (DML) type. Here you need can set DML (Insert/Update/Delete) you wish to use on this form. APEX will take care of the rest.
    If there is no such process in your page, then you need to create one. You may have one process to do both (Insert and Update) and you can have two sepate processes. I prefer having two seperate page processes (after submit), one for Insert and one for Update.
    Now you can make the Insert process conditional so that it only execute when you click button - Create (Add or any similar button you have ) Also make the Update process conditional so that it only execute when you click button - Save (Update or any similar button you have )
    Just a quick note - From the above trigger, I can guess you are allowing users to enter Primary Key manually? In my opinion, Primary key should be always system generated using SEQUENCE. Users can only enter BUSINESS KEY (if any) and we should not use Business key as Primary Key.
    Good Luck :-)
    - Hari
    Edited by: Hari_639 on Oct 23, 2009 8:02 PM

  • How AUTO stats job decides on histograms and sample size?

    Hi All,
    I am on Oracle 11.2.0.3 .
    I have a table with 161M records. In fact it is an IOT. We are running the default stats collection job from Oracle (not even the time is changed !!).
    This is the nature of stats on this table
    SQL> select column_name, num_distinct, num_nulls, num_buckets, sample_size, histogram
      2  from dba_tab_col_statistics where table_name='TABLE1';
    COLUMN_NAME                    NUM_DISTINCT  NUM_NULLS NUM_BUCKETS SAMPLE_SIZE HISTOGRAM
    COLUMN1                                   1          0           1   162988917 NONE
    COLUMN2                                   0  162988917           0             NONE
    COLUMN3                           119808000          0         254        5548 HEIGHT BALANCED
    COLUMN4                                3048          0         254        5548 HEIGHT BALANCED
    COLUMN5                                   1          0           1   162988917 NONE
    COLUMN6                                 173          0          77        5549 FREQUENCY
    COLUMN7                            43225088          0           1   162988917 NONE
    7 rows selected.I have so many question on this
    Why sample size is so small on the columns where histogram exists?
    Why sample size is 100% on the columns where there is no histogram? (I am assuming NONE means there is no histogram on this column)
    COLUMN6 is a really skewed column. There are actually 173 distinct values in there. How come Oracle found that correctly in such a small sample size?
    Thanks in advance

    rahulras wrote:
    SQL> select column_name, num_distinct, num_nulls, num_buckets, sample_size, histogram
    2  from dba_tab_col_statistics where table_name='TABLE1';
    COLUMN_NAME                    NUM_DISTINCT  NUM_NULLS NUM_BUCKETS SAMPLE_SIZE HISTOGRAM
    COLUMN1                                   1          0           1   162988917 NONE
    COLUMN2                                   0  162988917           0             NONE
    COLUMN3                           119808000          0         254        5548 HEIGHT BALANCED
    COLUMN4                                3048          0         254        5548 HEIGHT BALANCED
    COLUMN5                                   1          0           1   162988917 NONE
    COLUMN6                                 173          0          77        5549 FREQUENCY
    COLUMN7                            43225088          0           1   162988917 NONE
    7 rows selected.Why sample size is so small on the columns where histogram exists?
    Because the code decided that the histogram it generated at that size was sufficiently accurate - but I can't tell how it came to that conclusion.
    Why sample size is 100% on the columns where there is no histogram? (I am assuming NONE means there is no histogram on this column)
    COLUMN6 is a really skewed column. There are actually 173 distinct values in there. How come Oracle found that correctly in such a small sample size?
    The answer is probably that it didn't. I suspect you have enabled the approximate_ndv mechanism, which applies in the first pass for collecting simple stats, and the num_distinct in every case was therefore very close to perfect with a 100% sample size. The histograms would then have been collected in a second pass. You have only 77 buckets in the frequency histogram on column6, which means Oracle knows about just 77 values for that column despite reporting 173 as the number of distinct values. to my mind, the inconsistency between num_distinct (which should have been pretty accurate) and the number of buckets should have made Oracle collect another, larger sample size of the histogram.
    Regards
    Jonathan Lewis

  • Settings for inspection point user field

    Hai gurus,
    i want to know the settings for inspection point user field(150)
    1) Field combination = 150
    2 )Inspection type = ?
    3) Functional location- field active  = ?(predefined field)
    under user field
    1)Text length 18 - Field active = ?
    2)Text length 10 - Field active = ?
    3)Number  length 10 - Field active = ?
    4)Number length  3 - Field active = ?
    5) Date - Field active = ?
    6) Time - FIeld active = ?
    waiting for positive reply.
    regards,
    sekar chand

    dear Sekar
    1) 150 inspection point is maily used for production related inspection. 03 , 04 . it is a freely defined inspection point which means you want to carry out several inspections for each operation during the production process
    2) It is not Inspection type it is inspection point type- There are mainly 3 inspection point type
    Freely defined - explained
    Equipment related - You need this inspection point type if you want to carry out calibration inspections and record the results of test equipment inspections or inspections of functional locations
    Inspection points to identify samples-You need this inspection point type if you want to manage samples and record inspection results for physical samples
    3) Predefined field is for identification of the inspection point.
    Example for inspection point type  1
    For inspection point type 1 (inspection point for equipment) that is used, for example, in a calibration inspection, the equipment number must be entered. (To access the results recording function, however, you can use a different key word instead of 'equipment number', such as, 'test equipment').
    Example for point 3
    The sample-drawing procedure determines the number of samples to be taken. The system automatically creates an inspection point for each sample.
    4) User fields are again identification. You can add in key work text which will appear while result recording.
    5) Field Active  -This helps in sorting out the user fields.  An identification field is only active if you have made an entry in this field.Fields with numeric entries are required fields. The numbering sequence that you define for these fields uniquely identify an inspection point.
    a typical example can be User field/field active/keyword combination
    1)Text length 18 -1 -Inspector Name
    2)Text length 10 - 2- Location
    3)Number length 10 - 3- Shift No
    4)Number length 3 - 4- Section No
    5) Date - 5- Date
    6) Time - 6-  Time
    please Date and Time populates automaticaly. it is not mandatory that you use all the fields
    Hope this helps
    Regards
    gajesh

  • Sample size calculation for Source Inspection

    Dear Gurus,
    I have an issue regaring sample size calculation for Source Inspection.
    I created a PO for 500 nos.
    The sampling procedure assigned in the Quality Plan is %age based (10%).
    When Inspection lot is created, system is caluating the Sample size as 500 and not 50.
    Moreover, when I go to Result Recording, the Inspection qty for the MIC is shown as 1. If the system is calculating sample size as 500, then the inspection qty for the MIC should also be 500. Moreover, the sample size should be 50 only.
    Please provide your inputs on this.
    Regards,
    Nitin

    Thanks Sujit!
    Your are correct. It works in the same way as u told.
    Assigned you the points for the answer.
    Closing the thread.
    Regards,
    Nitin

  • How can I set up a guest access point with a Time Capsule and an Airport Extreme? I am using a Telus router with the Time Capsule used as a wireless access point (bridge mode). I don't want the guest access point to have access to my network.

    How can I set up a guest access point with a Time Capsule and an Airport Extreme? I am using a Telus router with the Time Capsule used as a wireless access point (bridge mode). I don't want the guest access point to have access to my network.

    The Guest Network function of the Time Capsule and AirPort Extreme cannot be enabled when the device is in Bridge Mode. Unfortunately, with another router...the Telus...upstream on your network, Bridge Mode is indicated as the correct setting for all other routers on the network.
    If you can replace the Telus gateway with a simple modem (that performs no routing functions), you should be able to configure either the Time Capsule or the AirPort Extreme....whichever is connected to the modem....to provide a Guest Network.

  • How come querystring variables don't work with Flash Slide Presentations

    How come querystring variables don't work with Flash Slide
    Presentations
    When I create a regular new Flash FLA and publish it I can
    add a querystring to the file name in the object tag and get that
    value back in the flash move like this:
    myflashfile.swf?myname=andrew
    But when I try the same thing using a new Flash Slide
    Presentation with screen, it doesn't work.
    Is there something I'm missing that I'm not aware of or does
    the Flash Slide Presentation not support the use of querystrings?
    I have tried this using a mix of PC and Mac with MX2004 Pro
    and Flash 8 Pro.
    Any reference links or ideas are much appreciated.
    Thanks,
    Andrew

    Good info found here:
    http://flashmx2004.com/forums/index.php?showtopic=971&hl=query

  • How come my albums in iPhoto don't sync with iPhone?

    Hi
    Something very frustrating I've been dealing with for a while now is photo albums.
    How come when I make an album in iPhoto, I cant have it on my iPhone; and when I make an album on my iPhone I can't have it on my iPhoto???
    This doesn't make any sense to me. Does anyone know if I'm missing something, or is this really the nature of these devices?
    Its such a waste of time for me.

    What system do you have on your Mac?  To share photos in Photo Stream the Mac must be running 10.7.5 or newer and iPhoto 9 or later while the phone must be running iOS 7.  For Shared Photo Streams the Mac must be running 10.8.2 or later.  Do your devices meet those requirements?
    OT

Maybe you are looking for

  • VGA.ini error during reboot?

    Hi.. I have allmost pulling all my hairs out in frustation about this. Every time I reboot it hangs on VGA.INI. So obviously Im thinking if its the graphicscard having trouble initializing when warm. It starts everytime when cold and have been turned

  • Database independant application [urgent]

    Hi, I need to design an application that should be database independant, meaning backend could be even MS Access. What are all the consideration one should take care off ?. Obviously, I can't have stored procedure, then where these business logic sho

  • One Plug-in Points with multiple status instances

    Hi, I deployed the following plug-in point that works as expected: <oimplugins> <plugins pluginpoint="oracle.iam.request.plugins.StatusChangeEvent"> <plugin pluginclass="com.zeropiu.custom.oim.pluginpoint.EmailNotificationOnRequestStatusChange" versi

  • Capturing TIVO on DVD

    I have a new MacBook Pro and want to capture my TIVO content on my MBP, then make DVDs of it. I spoke with TIVO support and they suggested I go wireless with the TIVO using a TiVo Wireless G USB Network Adapter and pick it up with the MBP. I would th

  • How can I reset and clear my iphone with no wifi

    How can I reset and clear m iphone without any wifi