Days for inspetion interval.

Hello ,
If i maintain 'Inspection interval ' in number of days in QM view as 2 days it is not taken in scheduling  of planned orders.
What are the settings i need to do so that this 'insp interval' is considered in basic / lead time schedulin ?
Regards
ShankarR

'Inspection interval ' in number of days in QM view as 2 days
This will not consider for the planning in the MRP.
THIS FIELD IS USEFUL IF you are using the inspection type 09 - 09 (recurring inspection)
For this inspection type 09 (recurring inspection) is active in the material master, then a periodically executed program can identify all batches that qualify for the creation of an inspection lot, a status change or a transfer posting.
'Inspection interval
If the interval for the recurring inspection is defined in the material master, the date of the next recurring inspection is recorded when a batch is created.
Edited by: raj on Jun 8, 2009 12:40 PM

Similar Messages

  • Count the varieties of transactions in a day for 15mins interval

    Hi All,
    I have transaction data for the whole day for multiple transactions like saleID1, saleID2 etc. I need to club them separately in 15 minutes interval and put as a file format. e.g,
    col1 col2 col3
    1 count of transaction A between 2.00-2.15 count of transaction B between 2.00-2.15
    2 count of transaction A between 2.15-2.30 count of transaction B between 2.15-2.30
    3 count of transaction A between 2.30-2.45 count of transaction B between 2.30-2.45
    4 count of transaction A between 2.45-3.00 count of transaction B between 2.45-3.00
    1 count of transaction A between 3.00-3.30 count of transaction B between 3.00-3.15
    2 count of transaction A between 3.15-3.30 count of transaction B between 3.15-3.30
    3 count of transaction A between 3.30-3.45 count of transaction B between 3.30-3.45
    And so on..
    I am using count (cloumn1) from table X . I belive it won't be optimal to add a time of 15 mins timing everytime.
    Please do revert if I can reach my target optimally.
    Cheers,

    Assuming you have a structure similar to this:
    SQL> SELECT * FROM t ORDER BY trans_date, item_cd;
    TRANS_DATE           I   ITEM_QTY
    05-jun-2005 21:50:38 A          9
    05-jun-2005 21:50:38 B          8
    06-jun-2005 02:45:51 A          6
    06-jun-2005 02:45:51 B          6
    06-jun-2005 03:34:23 A          9
    06-jun-2005 03:34:23 B          9
    07-jun-2005 10:36:17 A          6
    07-jun-2005 10:36:17 B          9
    08-jun-2005 03:24:50 A          7
    08-jun-2005 03:24:50 B          6
    08-jun-2005 17:43:15 A          6
    08-jun-2005 17:43:15 B          6
    09-jun-2005 06:20:35 A          9
    09-jun-2005 06:20:35 B          7
    09-jun-2005 08:44:44 A          8
    09-jun-2005 08:44:44 B          9
    11-jun-2005 04:58:01 A          9
    11-jun-2005 04:58:01 B          7
    11-jun-2005 08:47:48 A          9
    11-jun-2005 08:47:48 B          7Then to get counts by day by 15 minute interval, you could use something like:
    SQL> SELECT 'Between '||TO_CHAR(trans_15, 'dd-mon hh24:mi')||
      2         ' and '||TO_CHAR(trans_15 + (900/24/60/60), 'dd-mon hh24:mi')||
      3         ' Item A: '||itema||' Item B: '||itemb outp
      4  FROM (SELECT trunc(trans_date) +
      5                  (TO_NUMBER(TO_CHAR(trans_date,'sssss')) -
      6                   MOD(TO_NUMBER(TO_CHAR(trans_date,'sssss')), 900))/24/60/60 trans_15,
      7               SUM(DECODE(item_cd, 'A', 1, 0)) itema,
      8               SUM(DECODE(item_cd, 'B', 1, 0)) itemb
      9        FROM t
    10        GROUP BY trunc(trans_date) + (TO_NUMBER(TO_CHAR(trans_date,'sssss')) -
    11                 MOD(TO_NUMBER(TO_CHAR(trans_date,'sssss')), 900))/24/60/60)
    12  ORDER BY trans_15;
    OUTP
    Between 05-jun 21:45 and 05-jun 22:00 Item A: 1 Item B: 1
    Between 06-jun 02:45 and 06-jun 03:00 Item A: 1 Item B: 1
    Between 06-jun 03:30 and 06-jun 03:45 Item A: 1 Item B: 1
    Between 07-jun 10:30 and 07-jun 10:45 Item A: 1 Item B: 1
    Between 08-jun 03:15 and 08-jun 03:30 Item A: 1 Item B: 1
    Between 08-jun 17:30 and 08-jun 17:45 Item A: 1 Item B: 1
    Between 09-jun 06:15 and 09-jun 06:30 Item A: 1 Item B: 1
    Between 09-jun 08:30 and 09-jun 08:45 Item A: 1 Item B: 1
    Between 11-jun 04:45 and 11-jun 05:00 Item A: 1 Item B: 1
    Between 11-jun 08:45 and 11-jun 09:00 Item A: 1 Item B: 1If you do not care about the day, only the interval, then you could do:
    SQL> SELECT 'Between '||TO_CHAR(trans_15, 'hh24:mi')||
      2         ' and '||TO_CHAR(trans_15 + (900/24/60/60), 'hh24:mi')||
      3         ' Item A: '||itema||' Item B: '||itemb outp
      4  FROM (SELECT TO_DATE(TO_NUMBER(TO_CHAR(trans_date,'sssss')) -
      5                   MOD(TO_NUMBER(TO_CHAR(trans_date,'sssss')), 900),
      6                       'sssss') trans_15,
      7               SUM(DECODE(item_cd, 'A', 1, 0)) itema,
      8               SUM(DECODE(item_cd, 'B', 1, 0)) itemb
      9        FROM t
    10        GROUP BY TO_DATE(TO_NUMBER(TO_CHAR(trans_date,'sssss')) -
    11                   MOD(TO_NUMBER(TO_CHAR(trans_date,'sssss')), 900),'sssss'))
    12  ORDER BY trans_15;
    OUTP
    Between 02:45 and 03:00 Item A: 1 Item B: 1
    Between 03:15 and 03:30 Item A: 1 Item B: 1
    Between 03:30 and 03:45 Item A: 1 Item B: 1
    Between 04:45 and 05:00 Item A: 1 Item B: 1
    Between 06:15 and 06:30 Item A: 1 Item B: 1
    Between 08:30 and 08:45 Item A: 1 Item B: 1
    Between 08:45 and 09:00 Item A: 1 Item B: 1
    Between 10:30 and 10:45 Item A: 1 Item B: 1
    Between 17:30 and 17:45 Item A: 1 Item B: 1
    Between 21:45 and 22:00 Item A: 1 Item B: 1HTH
    John

  • I like and use Top Sites but it has become unsuable with this constant blacking out and reloading the thumbnails.  My MBP has not seen a problem at all.   I have been searching every other day for over a month trying to find a fix in Windows Safari with n

    I like and use Top Sites but it has become unsuable with this constant blacking out and reloading the thumbnails.  My MBP has not seen a problem at all.
    I have been searching every other day for over a month trying to find a fix in Windows Safari with no joy.  I want to resolve, not switch browsers. Please offer up a solution that only refreshes the Top Site thumbnails once a day or as some controlable interval.  Started about two versions ago, now on ver 5.1.5. Windows 7 64bit.
    Safari 5.1.5 for Win64 bit, Windows 7!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    I think I solved the wifi connection problem, just by switching off completely the router! sounds trivial, but in this case it worked!!!
    the funny behaviour of the trackpad/cursor still persists. any suggestion???
    thanks again

  • Does anyone know if it is possible to change the display in week view to show 24 hours per day for those of us that work irregular hours

    Does anyone know if it is possible to change the display in week view to show all 24 hours per day for those of us that work irregular hours.
    Also is it possible to have all of the 'all day' entries showing, not just 3.5 of them.
    The app Week Cal HD was the perfect calendar until Apple removed it so could they please offer the same facilities that it offered.

    Does anyone know if it is possible to change the display in week view to show all 24 hours per day for those of us that work irregular hours.
    Also is it possible to have all of the 'all day' entries showing, not just 3.5 of them.
    The app Week Cal HD was the perfect calendar until Apple removed it so could they please offer the same facilities that it offered.

  • How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?

    How can I create a new TC backup with ethernet, so I don't have to wait two days for a new wireless backup?
    Several times in the last year, I've gotten a message that Time Machine needs to completely redo my backup. Using the wireless connection, this takes almost two days. Is there a way to do the backup with ethernet and then switch back to wireless? Thanks.

    May I know what is needed to make sure the MacBook is able to see Time Capsule on ethernet?
    Connect an Ethernet cable from one of the LAN <-> ports on the 2Wire gateway to the WAN port (circle of dots icon) on the Time Capsule.
    If AirPort Utility cannot "see" the Time Capsule now, you will need to perform a "hard reset" by holding in the reset button for 7-8 seconds or so and then reconfigure the Time Capsule. You can use the same Time Capsule name and password, etc. as before.
    Configure the Time Capsule to "Create a wireless network" and select the Bridge Mode option when it appears during the setup using AirPort Utility.
    Once the Time Capsule is configured, restart the entire network again. Power down everything, start the 2Wire first and then start each other device after that one at a time about a minute apart.
    Now you can connect your Mac directly to one of the LAN <-> ports on the Time Capsule for the backup using another Ethernet cable. In general, about 20-25 GB per hour will transfer.
    The Time Capsule will broadcast a much faster wireless network than the 2Wire can provide, so you might want to leave the setup "as is" for awhile after the first backup is complete. If you decide to use the Time Capsule as your main wireless access point, you would want to turn the wireless off on the 2Wire since two wireless networks in close proximity can create interference problems.
    Or, if you want to use the wireless on the 2Wire, you could turn off the wireless on the Time Capsule. Then backups will occur over the 2Wire wireless, or over Ethernet.
    I don't really recommend the "Join a wireless network" setting on the Time Capsule for most users, but you could go back to that setup as well if you want after the first backup is complete.

  • Need working days for a particular month and year

    Hi,
    I need the number of working days for a particular month and year.Saturdays and Sundays are holidays.
    Regards,
    Vignesh

    Try this:
    SQL> var yr NUMBER;
    SQL> exec :yr := 2010;
    PL/SQL procedure successfully completed.
    SQL> with t as (select :yr yr from dual)
      2  SELECT TO_CHAR(dat,'MON-RR'),COUNT(*) FROM
      3  (select TO_DATE('01-JAN-'||yr) + lv dat FROM
      4  (select level - 1 lv,yr from t
      5  connect by level <= TO_DATE('31-DEC-'||yr) - TO_DATE('01-JAN-'||yr) + 1))
      6  WHERE TO_CHAR(Dat,'DY') NOT IN ('SAT','SUN')
      7  GROUP BY TO_CHAR(dat,'MON-RR');
    TO_CHAR(DAT,   COUNT(*)
    APR-10               22
    AUG-10               22
    DEC-10               23
    FEB-10               20
    JAN-10               21
    JUL-10               22
    JUN-10               22
    MAR-10               23
    MAY-10               21
    NOV-10               22
    OCT-10               21
    TO_CHAR(DAT,   COUNT(*)
    SEP-10               22
    12 rows selected.
    SQL> Edited by: AP on Jul 27, 2010 7:54 AM

  • HT201263 MY I 4S  CUTS OFF IN THE MIDDLE OF THE DAY FOR NO REASON. IT WON'T TURN ON UNLESS I PLUG THE USB INTO COMPUTER. THEN THE PHONE HAS "SEARCHING " AT THE TOP LEFT SCREEN.BATTERY IS 64% NOW AND SOFWAER IS UP TO DATEN

    MY I4S PHONE CUTS OFF IN THE MIDDLE OF DAY FOR NO REASON. IT WILL NOT TURN BACK ON UNTILL I PLUG THE USB INTO THE COMPUTER. THEN IT HAS "SEARCHING "  AT THE TOP LEFT PART OF THE SCREEN. BATTERY IS 64% RIGHT NOW.   IT DID THE SAME THING YESTERDAY SO I DOWNLOADED THE IOS61.1  AND IT SAYS IPHONE SOFTWARE IS UP TO DATE.  ANY IDEAS

    Nothing happened, i managed to get my computer to recognise it and now restoring... but it says 3 hours remaining?! Will i lose everything?

  • For iPhone4 with iOS7, how can i see the time of day for a voice memo instead of the length of time for the recording?

    For iPhone 4S with iOS7 version 7.0.2, how can I see the time of day for a voice memo, as opposed to its length (of time)?

    For iPhone 4S with iOS7 version 7.0.2, how can I see the time of day for a voice memo, as opposed to its length (of time)?

  • Calculation of due date based on Business Days for FICA documents

    Hi All,
    I am working on project where SD - FICA integration is in picture. We post some charges through SD and FICA document gets posted on relevant Contract Account.
    Normally we create Sales Order using transaction VA01 and then we do Billing for this Sales Order through VF01. After billng is done, FICA document automatically gets generated.
    We have following requirement to be fulfilled.
    For the SD bills posted as above, I want to calculate due date of these bills based on Business Days for FICA document generated (SAP Standard calculate due date based on Calander days). We can use factory calander for calculating business days in relevant function module.
    I have checked in the system and it seems that event 1330 ( FM - ISU_DUE_DATE_DETERMINE) is not working in this scenario. Is there any other FM which I can use?
    Can anyone help me on this?
    Regards,
    Pradeep

    Hello Praeva ,
    The event 1330 has a sample FM FKK_SAMPLE_1330. It doesnt even have a Standard Function Module.
    You need to create a Installation-Specific FM and put your code to determine the Due Date based on the logic.
    Rgds
    Ram Kumar.

  • DATE function to get name of day for a Date given?

    hi guys,
    can anyone tell me what is the DATE function to get the name of day for a date given
    (12/dec/2004)---returns SUNDAY

    Hi peter
    Your Query will return an error.
    SQL> select to_char(to_date('12/dec/2004', 'mm/mon/yyyy'), 'DAY')from dual;
    select to_char(to_date('12/dec/2004', 'mm/mon/yyyy'), 'DAY')from dual
    ERROR at line 1:
    ORA-01816: month may only be specified once.
    month is specified twice.
    select to_char(to_date('12/dec/2004', 'dd/mon/yyyy'), 'DAY')from dual;
    Regards
    Sasidhar.P

  • Diferent password expiration days for different users in the same system.

    Hi sdn gurus,
    We need to configure different password expiration days for different groups of users in the same system.
    We know how to configure the system to define a password expiration time for the complete system (parameter login/password_expiration_time), but we must configure some expiration time to a group of users and another expiration time to another one in the SAME system.
    Somebody know a way to do this?
    Thanks in advance for your help!!!

    Hi Sunny,
    Thanks for your reply!!!
    We know the parameter is for the complete system ... but we are trying to find out if exist another way to define diferent passwrod expiration days, to diferent group of users (may be with an additional system parameters or UME configuration).
    Thanks to all for your help.

  • I have forgotten my security question and I have tried for to days for uses to send me the resets and the email is not coming though?

    I have forgotten my security question and I have tried for to days for uses to send me the resets and the email is not coming though?

    If you've been unsuccessful resetting your security questions by signing into your account at appleid.apple.com (manage my apple I'd) and the going to password and security, and have also tried contacting iTunes support and have not heard back then:
    Call 1-800-APL-CARE and have the following info ready:
    Your verifiable and active apple I'd username, the serial number of a device registered in your name, and some billing info currently associated with your account.

  • Need working days for all months in a given year

    Hi,
    I need no of working days for all the months in a given year.
    (i.e year is the input and the query should return 12 columns(jan-dec). Saturday and Sunday are holidays)
    Regards,
    Vignesh

    Maybe you can use this:
    break on month skip 1
    set linesize 200
    set pagesize 2000
    column month format a20
    column week format a4
    with req as (select '&Required_Year_YYYY' as yr from dual)
        ,offset as (select case when to_char(trunc(to_date(yr,'YYYY'),'YYYY'),'IW') in ('52','53') then 1 else 0 end as offset from req)
    select lpad( Month, 20-(20-length(month))/2 ) month,
           '('||week||')' as week, "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"
    from (
      select to_char(dt,'fmMonth YYYY') month,
      case when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 0 then '53'
           when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 1 then '54'
           when to_char(dt, 'mm') = '01' and to_char(dt,'iw') in ('52','53') then '1'
           else to_char(to_number(to_char(dt,'iw'))+offset) end as week,
      max(decode(to_char(dt,'d'),'1',lpad(to_char(dt,'fmdd'),2))) "Su",
      max(decode(to_char(dt,'d'),'2',lpad(to_char(dt,'fmdd'),2))) "Mo",
      max(decode(to_char(dt,'d'),'3',lpad(to_char(dt,'fmdd'),2))) "Tu",
      max(decode(to_char(dt,'d'),'4',lpad(to_char(dt,'fmdd'),2))) "We",
      max(decode(to_char(dt,'d'),'5',lpad(to_char(dt,'fmdd'),2))) "Th",
      max(decode(to_char(dt,'d'),'6',lpad(to_char(dt,'fmdd'),2))) "Fr",
      max(decode(to_char(dt,'d'),'7',lpad(to_char(dt,'fmdd'),2))) "Sa"
      from ( select trunc(to_date(req.yr,'YYYY'),'y')-1+rownum dt
             from all_objects, req
             where rownum <= add_months(trunc(to_date(req.yr,'YYYY'),'y'),12) - trunc(to_date(req.yr,'YYYY'),'y') )
          ,offset
      group by to_char(dt,'fmMonth YYYY'),     case when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 0 then '53'
                                                    when to_char(dt, 'mm') = '12' and to_char(dt,'iw') = '01' and offset = 1 then '54'
                                                    when to_char(dt, 'mm') = '01' and to_char(dt,'iw') in ('52','53') then '1'
                                                    else to_char(to_number(to_char(dt,'iw'))+offset) end
      ) x
    order by to_date( month, 'Month YYYY' ), to_number(x.week)
    / L.

  • Average payment days for customer

    Hi to all,
    I need to calculate average payment days for customer in Crystal. Formula would be Accounts Receivables * Days in period / Invoiced Sales in Period. My main problem is in which tables can I find that data?
    Best regards,
    Duu0161ko

    I suggest posting to one of these forums. CR doesn't know the ERP data structure...
    http://forums.sdn.sap.com/index.jspa?categoryID=1#16

  • LOVE Firefox! I have just launched a website. One designer told me it takes 7-10 days for any changes to appear. Why? I have cleared caches and cookies etc. I need to be more responsive than 7-1o days. I need changes to appear within 24hrs.

    LOVE Firefox! I have just launched a website: www.animalhealingandhumans.com. My web designer told me it takes 7-10 days for any changes to appear. Why? I have cleared caches and cookies etc. I need to be more responsive than 7-1o days. I need changes to appear within 24hrs. How can I achieve a much better response time to good feedback?

    Hello binbingogoABC,
    Shopping on BestBuy.com should be easy and fun and not fraught with the kind of trouble that you describe. I regret very much that this has been your experience.
    Using the information you provided when you signed up for Best Buy Unboxed I was able to locate your cancelled orders. I have requested more information from my back-office partners. As soon as I have additional details about your situation, I will reply again to this message. In the interim, I'm sorry that I must impose upon your patience.
    I'm very grateful that you wrote to us with your concerns.
    Sincerely,

Maybe you are looking for