How can I generate automatic inspection lots every 15th day

Hello,
My client receives chemicals (Raw Mat) every day. Incoming inspn is done only for physical spec and Usage deciison is taken on same day itself.
As he is getting raw mat from good vendors, he usally do chemical analysis every 15th day.
Whats the best way for me to map this process of generating inspection lot on every 15 day. initial incoming lot we cant use as he already taken UD on that.
15 day chemical analysis dont have any impact on qty posting as Raw mat usally will be consumed.
Is there anything other than manual lot. I welcome all ideas.

In this case your looking at a pooled sample of the approx. 15 batches of material that were received in.  Correct?
If you are batch managed, then no.  Since the sample is a composite sample, you can't link it to anything else really and you don't have a batch number to enter into the inspection lot upon creation.  First, you'd have to create a dummy batch to hold the results.  Which you could do maybe by date if your system allows external batch numbering.
Then you could at least manually create the inspection lot.
The is no true "event" to trigger the creation of the inspection lot as there is when you do a GR.  The only why you could trick the system would be if your were willing to maintain a separate storage location, and do a stock posting to it of the sample quantity each day.  Then you could have an inspection plan that would create a skip lot each day.  On the 15th day it would become required.  You would probably utilize a copy of movement type 411 for this and use that custom one to make the moves. 
The problem with this is then you'll have to write off that little bit of material at some point for accounting purposes.
Another option.. you could create dummy batch and set a 15 day inspection interval on it.  Use deadline mointoring to create the lot one day in advance of expiration.
One more option:  Use standard calibration inspection to set up a calibration program.. I.e. recalibate every 15 days.
Craig
Edited by: Craig Snyder on Mar 25, 2008 1:08 PM

Similar Messages

  • How can we generate automatic id

    Hi,
    I want a automatic id like
    String str="java"+System.currentTimeMillis();
    if any other way we will generate automatic id.Please reply me

    Hai
    If u want to generate a random ID then u can use the Java Random class But we cannot make sure that the generated ID will be unique. But most probably it will not repeat. This problem can be avoided by setting primary key for the ID in the DB. So if the ID exists it will throw an exception , then u can generate the next ID.
    Random random = new Random();
              for (int i = 0; i < 100; i++) {
                   double d = random.nextDouble();
                   long l = random.nextLong();
                   l = Math.abs(l);
                   System.out.println("l : "+ l + "  d : " + d);
              }

  • Automatic Inspection lot not generated for Inspection lot origin 12

    Hi all,
    I am not able to trigger the automatic Inspection lot for General Delivery i.e Inspection lot origin 12.
    The scenario is, I am creating the STO ( Inter company stock transfer) and against the same STO i am creating the delivery but after delivery inspection lot is not generated. In the material master correct inspection type is maintained also the mvt type 641 is active for QM. The inspection lot origin is assigned to the delivery type in the configuration but still i am not able to generate the inspection lot.
    Please let me know i am missing something?
    Regards

    Hi,
    You are missing 1 Config
    Quality Management
    Quality Inspection > Inspection Lot Processing > Inspection Lot Creation > Inspection at Shipping (Tcode OQL8)
    mantain inspection origen agenist Delivery type u are using.
    also you need to create Sales Info record(QV51)
    I hope all other settings are OK then it should work
    Edited by: Jayashankardm on Jan 6, 2010 9:59 PM

  • Hello.  I have an old G4 Tower at 10.4.11.  The password for Keychain has been lost.  How can I generate a new password for Keychain?  Every time I use Safari it want me to enter the password.  Any suggestions?  Thank you

    Hello.  I have an old G4 Tower at 10.4.11.  The password for Keychain has been lost.  How can I generate a new password for Keychain?  Every time I use Safari it wants me to enter the keychain password.  Any suggestions?  Thank you

    See if this helps...
    Open Keychain Access in Utilities, use Keychain First Aid under the Keychain Menu item, then either check the Password under that item, change it, or delete it and start over.
    Keychain Access asks for keychain "login" after changing login password...
    http://support.apple.com/kb/HT1631
    Resetting your keychain in Mac OS X...
    If Keychain First Aid finds an issue that it cannot repair, or if you do not know your keychain password, you may need to reset your keychain.
    http://support.apple.com/kb/TS1544

  • Automatic inspection lot creation  upon reaching the next inspection date

    Hi qm experts,
    I have this scenario; my client wants to make an automatic inspection lot creation as well as posting to quality inspection stock of certain materials upon reaching its next inspection date defined in the msc2n transaction; how shall i make the inspection set-up of this materials??Thanks
    Regards,
    Matildo, Edsel F.
    QM Consultant

    Ok, you have me confused.  You want to do this as a one time thing?  I thought you want it to look every day, or every week, for batches that have reached their next inspection date?
    If its a one time thing, then yes, just run QA07 one time.  It only looks at unrestricted inventory.  Do not set up any parameters in the bottom half of the screen for expiration date.  If you do, any of those that have reached expiration date will be moved to blocked stock and no inspection lots created.
    If you want this to run regularly, you, or someone, needs to use QA05 to set up the batch job to run on a regular basis witht the approriate "days" value for how often your running it and how far in advance of the inspection date you want lots created.  And of course tick on "to inspection stock".
    There is no "automatic creation" as I think your thinking.  You either run QA07 once a day, or once a week or as often as you want to.  OR you set it up in a batch job (QA05) to be run once a day, once a week or as often as you want to.
    When the batch job is running, it 'appears' that the lots get created automatically.  But it is the QA07 program being run in batch that is creating them.
    Craig

  • How can I Generate two different reports from single execution of Test cases in NI teststand

    Hi,
    My requirement is to generate two different reports from NI teststand. One for the Logging of error descriptions and the other report is by default generated by the Teststand. How can i generate a txt file that contains error descriptions other than that mentioned in the default report?
    Solved!
    Go to Solution.

    Do you need to do that just for these two sequences but not for other sequences? I don't see a problem to use SequenceFilePostStepRuntimeError. Create this callback in both sequence files and configure them to log into the same file. SequenceFilePostStepRuntimeError callback is called after each step of the sequence file if it has runtime error. You can access the calling step error information via RunState.Caller.Step.Result.Error property. Take a look to attached example.
    The "other way" is useful if you need to log errors not for every step of the sequence file, but for some of them. This is more complex, because you need to create a custom step types for these steps. For the custom step you can create substeps (post-step in your case) which will be executed every time after step of this type executed. Then, this is you job to determine if error happened in the step, acces to step's error information is via Step.Result.Error property. 
    Also, be aware that step's post-expression is not executed in case of error in the step.
    Sergey Kolbunov
    CLA, CTD
    Attachments:
    SequenceFilePostStepRuntimeError_Demo.seq ‏7 KB

  • Can we create 2 inspection lots at the time of goods receipt.

    Hi experts,
         Can we create two inspection lots at the time of goods receipt from vendor.I will assign two inspection types in material master
    suppose 01,02.Both are releated to goods receipt.For one inspection lot when we take usage decision stock should not post into usage decision.for other inspection lot stock has to be posted.Is this possible?if possible how to do configuration?

    I think I made this recommendation in a previous post concerning this but this is exactly what reference operation sets are created for.
    Create the reference operation set for the characteristics that are used for all the materials.  You create this once.
    When you create the sepcific plan for the individual materials, you include the reference operation as one of the operations, (probably the first one in your case).  You don't have to add characteristics, modify or change it.  All the characeristics and settings come from the reference operation.  If you need to make a change you edit the reference operation and make the change once.   The change is immediately seen in all newly created inspection lots.
    In a second operation of the plan, you add the characteristics specific to the material.
    You can add different workcenters to the operations if you want.  That way you can set up security on the workcenters and control who can record results against which operations.
    Aside from creating lots manually, you can't create two lots at the same time from the same GR.
    Craig

  • How can I avoid automatic build of an User Code Block at SystemBuild

    Hi,
    I've created a simulation with a User Code Block at SystemBuild. I want the building process to be performed manually, so I changed the buildProcess tag in xml file which is generated by SystemBuild to "Manual". Unfortunately it doesn't work. When I try to execute the simulation, the xml file is overwriten, the buildProcess tag is set to "Automatic" and the software tries to build the library again. How can I avoid automatic build of an User Code Block at SystemBuild?
    Thanks.
    Attachments:
    fileInterface.zip ‏1 KB

    The xml file generated when a UserCodeBlock is linked usually contains the following at the top of the file:
    <DynamicLib xmlVersion="1"
                architecture="WIN32_DLL"
                rtLibLinkage="Dynamic"
                buildProcess="Automatic"
                debug="no">
    To prevent sim from automatically rebuilding your UCB dll change the tag buildProcess to "Manual"
    Bob Wilson
    MATRIXx R&D

  • How can I generate random password

    Hello...
    I use oracle 10g for windows,,,I have an employee table , there are a lot of colunms , their names are employee_name , employee_id ,employee_pass .....
    employee_pass colunm is empty
    I want to generate random password for employee_pass colunm
    How can I generate random password for employee_pass colunm
    thanks
    omer faruk akyuzlu
    in Turkey

    SQL>  exec dbms_random.seed(to_char(sysdate, 'sssss'))
    PL/SQL procedure successfully completed.
    SQL> select dbms_random.string('X', 8) from dual
      2  /
    DBMS_RANDOM.STRING('X',8)
    4YT1H150
    SQL> select dbms_random.string('X', 8) from dual
      2  /
    DBMS_RANDOM.STRING('X',8)
    WIA3QCIP
    SQL> Please be aware that storing the actual passwords in a the EMPLOYEES table is a very bad idea. Oracle has a pretty good password implementation. It's not perfect but it's a darn site better than hand-rolling our own.
    Cheers, APC

  • How can I generate SSL Keys from a Oracle 9iAS server version 1.0.2.2.0

    How can I generate SSL Keys for use on Oracle 9iAS server
    version 1.0.2.2.0. I have tried using the open_ssl method but
    was unsuccessful.

    <?xml version="1.0" encoding="UTF-8" ?>
    <nodes>
    <node>
    <category_id>3</category_id>
    <parent_id>2</parent_id>
    <name>Mobile</name>
    <is_active>1</is_active>
    <position>1</position>
    <level>2</level>
    <children>
    <node name="Nokia" category_id="6" parent_id="3" is_active="1" position="1" level="3">
    <node name="Nokia N79" category_id="7" parent_id="3" is_active="1" position="2" level="3" />
    <node name="Nokia N95" category_id="7" parent_id="3" is_active="1" position="2" level="3" />
    <node name="Nokia N97" category_id="7" parent_id="3" is_active="1" position="2" level="3" />
    </node>
    <node name="Samsung" category_id="7" parent_id="3" is_active="1" position="2" level="3">
    </node>
    </children>
    </node>
    <node>
    <category_id>4</category_id>
    <parent_id>2</parent_id>
    <name>Laptop</name>
    <is_active>1</is_active>
    <position>2</position>
    <level>2</level>
    <children></children>
    </node>
    <node>
    <category_id>5</category_id>
    <parent_id>2</parent_id>
    <name>Monitor</name>
    <is_active>1</is_active>
    <position>3</position>
    <level>2</level>
    <children></children>
    </node>
    <node>
    <category_id>8</category_id>
    <parent_id>2</parent_id>
    <name>Camera</name>
    <is_active>1</is_active>
    <position>4</position>
    <level>2</level>
    <children></children>
    </node>
    </nodes>
    Is this correct format to create dynamic menu?

  • How can we generate the reports in html or text file formats?

    Hi,
    Is there any package that can help in creating HTMLDB reports in .txt files or .html files? (Similar to TEXT_IO in Oracle Forms)
    How can we generate the reports in html or text file formats from HTMLDB?
    Thanks in Advance
    Renjith

    Hello all.
    Bi Publisher is great, but has a very high price tag. It's even more expensive than Forms & Reports Services. We are considering APEX to replace Forms & Reports on the web, but the reporting limitations are still a problem.
    I wonder if there is another option.
    Thanks

  • How can we generate the report of backup,tablesapcefrom OEM / RMAN

    How can we generate the report of backup status,tablesapce(usedf,free space) for all the databases from OEM / RMAN
    1.)we need generate the report of tablespace used,free, archive...
    2.)How can we generate the Backup status report also

    user13584223 wrote:
    How can we generate the report of backup status,tablesapce(usedf,free space) for all the databases from OEM / RMAN
    1.)we need generate the report of tablespace used,free, archive...There are DBA_* views that expose the necessary information. They are documented in the Reference Manual.
    2.)How can we generate the Backup status report alsoThere are rman commands that give that. They are documented in the Backup and Recovery User's Guide.
    =================================================
    Learning how to look things up in the documentation is time well spent investing in your career. To that end, you should drop everything else you are doing and do the following:
    Go to [url tahiti.oracle.com]tahiti.oracle.com.
    Locate the link for your Oracle product and version, and click on it.
    You are now at the entire documentation set for your selected Oracle product and version.
    <b><i><u>BOOKMARK THAT LOCATION</u></i></b>
    Spend a few minutes just getting familiar with what is available here. Take special note of the "books" and "search" tabs. Under the "books" tab (for 10.x) or the "Master Book List" link (for 11.x) you will find the complete documentation library.
    Spend a few minutes just getting familiar with what <b><i><u>kind</u></i></b> of documentation is available there by simply browsing the titles under the "Books" tab.
    Open the Reference Manual and spend a few minutes looking through the table of contents to get familiar with what <b><i><u>kind</u></i></b> of information is available there.
    Do the same with the SQL Reference Manual.
    Do the same with the Utilities manual.
    You don't have to read the above in depth. They are <b><i><u>reference</b></i></u> manuals. Just get familiar with <b><i><u>what</b></i></u> is there to <b><i><u>be</b></i></u> referenced. Ninety percent of the questions asked on this forum can be answered in less than 5 minutes by simply searching one of the above manuals.
    Then set yourself a plan to dig deeper.
    - Read a chapter a day from the Concepts Manual.
    - Take a look in your alert log. One of the first things listed at startup is the initialization parms with non-default values. Read up on each one of them (listed in your alert log) in the Reference Manual.
    - Take a look at your listener.ora, tnsnames.ora, and sqlnet.ora files. Go to the Network Administrators manual and read up on everything you see in those files.
    - When you have finished reading the Concepts Manual, do it again.
    Give a man a fish and he eats for a day. Teach a man to fish and he eats for a lifetime.
    =================================

  • How can I generate a table of contents from bookmarks

    How can I generate a Table of Contents from bookmarks in Adobe Acrobat XI?

    Something to try.
    Rick Bostein  provided a "Create Bookmark Report" Acrobat Action.
    With this report as a PDF you could insert it at the start of your PDF document to serve as a "TOC". 
    Go here:
    https://acrobatusers.com/actions-exchange 
    Scroll down some.
    Be well...

  • How can I generate javadoc in PDF format?

    Hi,
    How can I generate javadoc in PDF format?
    Thanks,
    Fayezin

    HTML to PDF with Java, using OpenOffice.org - example here: [http://www.dancrintea.ro/html-to-pdf/|http://www.dancrintea.ro/html-to-pdf/]
    You can use OpenOffice.org, running as a server and command it remotely for document convertion.
    Besides HTML to PDF, there are also possible other convertions:
    doc --> pdf, html, txt, rtf
    xls --> pdf, html, csv
    ppt --> pdf, swf
    Code example:
    import officetools.OfficeFile; // this is my tools package
    FileInputStream fis = new FileInputStream(new File("c:/test.html"));
    FileOutputStream fos = new FileOutputStream(new File("c:/test.pdf"));
    // suppose OpenOffice.org runs on localhost, port 8100
    OfficeFile f = new OfficeFile(fis,"localhost","8100", true);
    f.convert(fos,"pdf");
    -----------------------------------------------------------------------------------------------------------------------------------------

  • I need to get the latest version of Adobe Reader.  Is this still free?  How can I receive automatic upgrades?

    I need to get the latest version of Adobe Reader.  Is this still free?  How can I receive automatic upgrades?

    Of course the free Reader is still available: http://get.adobe.com/reader/
    To get automatic updates set the Updater in the Reader Preferences.

Maybe you are looking for