Inspection using Multiple specifications

Hi All,
I am trying for Inspection using Multiple Specifications
I have done the below settings:
Step 1: Customization Requirements - Maintain Settings at Client Level.
Step 2: Customization Requirements - Define Object Types for Multiple Specifications
Step 3: Customization Requirements - Define Objects for Multiple Specifications
Step 4: Customization Requirements - Define Default Values for Inspection Type
Step 5: Master Data setting - The Multiple Specs check box is flagged in Material Master.
Step 6: Master Data setting - The Multiple Specs check box is flagged in Engineering Workbench.
Step 7: Master Data setting - Do the Material task list assignment
Step 8: Master Data setting - Enter the Dependent Characteristic Specifications.
But the Inspection plan is not getting assigned to the Inspection lot created....?
-Mohan

Check the date of the task list should be prior to that of inspection plan.
Make sure that status is released.

Similar Messages

  • Inspection plan with multiple specifications

    I have to maintain 1 inspection plan for 2 vendors for incoming inspection.
    Eg: Vendor A & B
    Vendor A, I have to check parameter Fe, Mn, Si
    Vendor B, I have to check parameters Fe, Moisture (For B, no need to check Mn, Si. Also Fe specification will vary for A and B vendors)
    How can we do this in SAP. I cannot maintain 2 inspection plans.
    Vineeth

    Dear Vineeth
    1) Dependent characteristic
    For MIC 1000 - Vendor  A specification 10 to 20, For Vendor B spec is 30 to 50
    Suppose we receive 10 pc from vendor A , after GR inspection lot will be created from the 10 pc and the specification for MIC (1000) will be automaticaly assgined to the inspection lot ie 10 to 20. If the vendor was B then the specification would be 30 to 50.
    In inspection lot there will be only one specificaton either it will be of Vendor A or that of B
    2) In multiple specification is normaly used for Customer, country etc.
    you have customer A , B , C & D with differnet specs for one  single mic and you want to valuate the mic with all specification seperately at one time
    In this multiple specification is used. here we can valuate the mic with all the specification of A, B , C & D and results in a seperate window in the result recording tab. accordingly you can check wehter the mic has passed as ok with all cusomter specification
    Regards
    Gajesh

  • My question is in regard to pc to mac migration. How do I migrate information from my pc with specific user account to an existing user account on my mac? I do not want to use multiple mac user accounts.

    My question is in regard to pc to mac migration. How do I migrate information from my pc with specific user account to an existing user account on my mac? I do not want to use multiple mac user accounts.

    https://discussions.apple.com/message/16371308#16371308

  • UNABLE TO CREATE DEPENDENT REQUIREMENT FOR MIC - MULTIPLE SPECIFICATION REQ

    Dear Gurus,
    We have to create multiple specification for one MIC --> ECC 6.
    We did the following activities.
    1.Inspection Type 89 --> Multiple Specification is activated in customizing - Default Values.
    2. For the material 1259, Inspection Set up - for the Inspection Type 89 carried out in QM View  of Material Master.
        Multiple spec is activated in Material Master also.
    3. Inspection Plan is created.MIC
    4. I HAVE CREATED THE INSP. PLAN --> GROUP 236 AND COUNTER 1 USING QP01.
    5.I HAVE ASSIGNED THE MIC --> TESTQC  TO THE OPERATION.
    6.In customizing,
        QM --> Quality Planning --> Inspection Planning --> General --> Multiple Specification
        For the OBJECT TYPE 01 --> COUNTRY,
       I HAVE ASSIGNED 4 COUNTRIES --> (1) BAHRAIN (2) DENMARK (3) FRANCE AND (4) GERMANY.
    7.Now I want to create the Multiple specification using the Eng. Work Bench --> EWB.
    8.  Multple Spec. check box activated in EWB.
    9 While creating a dependent requirement for the MIC in EWB, if I assign the object type --> Country   
        and the Object -->  Bahrain, I am getting the error as -->
    =====================================================================
    Assignment of material 000000000000001259;1000; is not available
    Message no. QP306
    ================================================================================================================================================
    I could not proceed.
    HOW TO CREATE THE DEPENDENT REQUIREMENT IN EWB
    Please guide.
    With Best Regards,
    Raghu Sharma

    Dear Gajesh,
    I appreciate for your prompt reply.
    I have activated the multiple specification at client level as a first step.
    Will you please check and confirm?
    Expecting your reply,
    With Best Regards,
    Raghu Sharma

  • Problem in multiple specification

    Hi all,
      I have mantained all setting for multiple specification at clientel & in QM view of material master  ( acctivated the indicator multiple specification), also i have maintained multiple specification through engineering workbench.
              But while doing result recording i am unable to see these multiple specification .
    What i am  missing , please suggest what to do
    Thanks
    Edited by: asd sha on Oct 21, 2008 12:53 PM

    Hi,
    You should keep at least one material plant combination that is not used for multiple specification.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/0b/a82442f53cde2ce10000000a1550b0/frameset.htm
    Multiple Specifications in Inspection Lot Creation:
    "At the level of the material-task list (or material-inspection plan) assignments in the inspection plan, a material-task list assignment was created (that is, an assignment that is not used for multiple specifications, for example, that only specifies a material and a plant for an inspection plan). This assignment is necessary so the system can find and assign the inspection plan as the inspection specification during inspection lot creation"
    KR
    Arno

  • How can I use multiple row insert or update into DB in JSP?

    Hi all,
    pls help for my question.
    "How can I use multiple rows insert or update into DB in JSP?"
    I mean I will insert or update the multiple records like grid component. All the data I enter will go into the DB.
    With thanks,

    That isn't true. Different SQL databases have
    different capabilities and use different syntax, That's true - every database has its own quirks and extensions. No disagreement there. But they all follow ANSI SQL for CRUD operations. Since the OP said they wanted to do INSERTs and UPDATEs in batches, I assumed that ANSI SQL was sufficient.
    I'd argue that it's best to use ANSI SQL as much as possible, especially if you want your JDBC code to be portable between databases.
    and there are also a lot of different ways of talking to
    SQL databases that are possible in JSP, from using
    plain old java.sql.* in scriptlets to using the
    jstlsql taglib. I've done maintenance on both, and
    they are as different as night and day.Right, because you don't maintain JSP and Java classes the same way. No news there. Both java.sql and JSTL sql taglib are both based on SQL and JDBC. Same difference, except that one uses tags and the other doesn't. Both are Java JDBC code in the end.
    Well, sure. As long as you only want to update rows
    with the same value in column 2. I had the impression
    he wanted to update a whole table. If he only meant
    update all rows with the same value in a given column
    with the same value, that's trivial. All updates do
    that. But as far as I know there's know way to update
    more than one row where the values are different.I used this as an example to demonstrate that it's possible to UPDATE more than one row at a time. If I have 1,000 rows, and each one is a separate UPDATE statement that's unique from all the others, I guess I'd have to write 1,000 UPDATE statements. It's possible to have them all either succeed or fail as a single unit of work. I'm pointing out transaction, because they weren't coming up in the discussion.
    Unless you're using MySQL, for instance. I only have
    experience with MySQL and M$ SQL Server, so I don't
    know what PostgreSQL, Oracle, Sybase, DB2 and all the
    rest are capable of, but I know for sure that MySQL
    can insert multiple rows while SQL Server can't (or at
    least I've never seen the syntax for doing it if it
    does).Right, but this syntax seems to be specific to MySQL The moment you use it, you're locked into MySQL. There are other ways to accomplish the same thing with ANSI SQL.
    Don't assume that all SQL databases are the same.
    They're not, and it can really screw you up badly if
    you assume you can deploy a project you've developed
    with one database in an environment where you have to
    use a different one. Even different versions of the
    same database can have huge differences. I recommend
    you get a copy of the O'Reilly book, SQL in a
    Nutshell. It covers the most common DBMSes and does a
    good job of pointing out the differences.Yes, I understand that.
    It's funny that you're telling me not to assume that all SQL databases are the same. You're the one who's proposing that the OP use a MySQL-specific extension.
    I haven't looked at the MySQL docs to find out how the syntax you're suggesting works. What if one value set INSERT succeeds and the next one fails? Does MySQL roll back the successful INSERT? Is the unit of work under the JDBC driver's control with autoCommit?
    The OP is free to follow your suggestion. I'm pointing out that there are transactions for units of work and ANSI SQL ways to accomplish the same thing.

  • How to use multiple VCI strings for lap 1300 and 1200 (option 60) in one pool?

    Hi All,
    Hope to you a very happy new year,
    I have two differnt LAP 1300 and 1200 in my network and I need to add theme to the WLC,
    I successed to add one of theme by the option 60 in the DHCP pool at the Core SW,
    So my quetion is below:
    How to use multiple VCI strings for lap 1300 and 1200 (option 60) in one pool?
    Thanks in Advanced,
    Ahmed,

    To add to Scott's post.  Option 60 would be useful if you needed to put certain types of AP on specific controllers.  Otherwise, no real need to use it for the most part.
    Though, I do recall an issue a few years ago that some windows machines had issues getting DHCP if option 43 is being returned.
    Now, on an IOS switch, you can only configure one option 60 per DHCP scope
    HTH,
    Steve
    Please remember to rate useful posts, and mark questions as answered

  • Using multiple ipods on a single itunes

    I currently have a 40GB ipod and have bought for my wife and daughter 2 2gb ipod nanos'. i have all our music on itunes in one library, how can i download only the songs my wife or daughter want onto their ipods as opposed to downloading every item which is what happens with my ipod currently
    Hope you can help
    Thanks
    Dave

    There are a couple of recommended methods for using more than one iPod on a single computer. Method one is to have individual Mac or Windows user accounts which by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. Each iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists.
    Method two is to set your preferences so that either one or all iPods get updated with only certain playlists within one library. Have a look at this article and see what you think and go for whichever you feel suits your needs best: How To Use Multiple iPods with One Computer
    Another option when using a single library is to set the iPods to manual update: Managing content manually on iPod
    Choosing the update option "automatically update selected playlists only" (called Sync Music - Selected playlists in iTunes 7) allows you to create a playlist specifically for each iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used by the other iPods. Make your playlist a Smart playlist and limit the size to just below the advertised capacity of your iPod ( for example, around 3700MB for a 4GB or 1800MB for a 2GB Mini or Nano). You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes

  • Using multiple ipods on the same computer

    I have three ipods in the family. Is it possible to have three different libraries that can sync when each different ipod is connected? At the moment. my libray syncs with al three.

    There are basically three ways of using multiple iPods on a computer and these involve:
    a) Sharing a single iTunes library
    b) Creating Multiple Libraries in a single user account
    c) Creating multiple user accounts.
    Note: When you are sharing an iTunes library, you don't have to set each iPod to update in the same manner, you can mix and match from the options below as each iPod has it's own update settings
    Sharing a Library and/or User Account
    If you want to share the one library, you can set either or all of the iPods so that they only get updated with only certain playlists (you can update from more than one if you wish): Loading songs onto iPod automatically - Windows
    Choosing the update option "Sync Music - Selected playlists" allows you to create a playlist specifically for the iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used some other time if you choose. You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes
    Or you can choose to update any or all of the iPods manually and just drag whatever content you want to them: Managing content manually on iPod
    Loading the iPod shuffle differs slightly but it can still be used with the others, for details have a look at this page:
    Loading songs onto iPod shuffle - Windows
    Loading songs onto iPod shuffle - Mac
    Multiple Libraries
    It's also possible to have multiple libraries in a single account. To create or access a second (or more) library, hold down the Option key (or Shift key in Windows) when launching iTunes 7. In the resulting dialogue you will get the option to create a new library or navigate to the other Library.
    Note: You can only have one Library open at a time and iTunes will default to the last library opened if you don't use the keyboard command to choose one. This can prove tricky when using multiple iPods, if you don't use the keyboard command you can risk syncing to the wrong library:Using multiple iTunes libraries -Windows
    Separate User Accounts
    Another option is to create a separate User account for each person on your PC or Mac. Different accounts by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. The iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists
    I don't use Windows so I can't give you a step by step on that one, however I can point you to another web page which should help you out. You can read about Windows user accounts here: Create A New User Account In Vista

  • Can I use multiple Apple store gift cards per transaction or is it has to be one gift card per transaction?

    Can I use multiple Apple store gift cards (£25 each) per transaction or is it has to be only one gift card per transaction?? Does anyone know thanks

    Hola, Eddy
    notice that you have posted to an old thread (Oct-Nov2013) that actually took quite some time to get attention back then**
    I recommend that you contact the Store Group regarding your purchase question - don't let the "iTune-ish" URL and page title throw you off... it's the right place
    Store Group - Contact Us - Apple Support
    ** next time you have a question, I advise to check the dates carefully and if older than a month or so, AND it has no answer to your specific issue, start a NEW Question. You did a fine job of stating your exact issue - many folks, not so much.
    buenos dias
    CCC

  • I use multiple libraries with itunes - should I create a new library for a 2nd iphone

    I use multiple iTunes libraries to manage multiple devices from the same PC.  I'm purchasing an iPhone 6 and currently have a library for my iPhone 4.  Would I create a new library for this new device?  Also, to restore all content to my new phone, Will this restore be done from the existing iPhone 4 library?  Is this process documented?

    I can't address specific issues regarding iPhones, but in general you can manage multiple iDevices from a single iTunes library.  The test approach is to maintain one or more playlists for each iDevice you use, and configure the latter to sync only from the relevant playlists:
    This article: Transfer content from an iPhone, iPad, or iPod touch to a new device - Apple Support documents Apple's guidance regarding transferring content from one iOS device to another.

  • Is there a way where you can get Siri to use a specific email account to send messages?

    I have multiple mail accounts (three) on my phone - work, personal (gmail), and one that's affiliated with a volunteer group. I set them up in that order. When I last sent new message using Siri, it defaulted to use my gmail account. I can't seem to figure out the command to get Siri to use a specific account. Does anyone know how to do this?

    I don't know enough about Siri yet, but I would imagine that it links to the email account listed as "Default Account" toward the bottom of the Mail Settings options (Settings -> Mail, Contacts, Calendars -> Default Account).
    If true, to link Siri with a different account, you would have to switch the default email account.
    Give it a try and let me know if that works?
    H

  • What are the things taken care while using multiple suites?

    Hi all,
    I have created a plugin which sends the current file path to an url,
    its working fine with debugging in Visual studio 2005 and while it is added to the Adobe Illustrator its works only once.
    That is its sending the file path only for one file. While i tried for the second time its not working
    I am using following suits in my plugin
    AIDocumentSuite
    AIFilePathSuite
    AIActionManagerSuite
    AIUnicodeStringSuite
    AIURLSuite
    I am using the "AIURLSuite" for calling the url and it is calling the url multiple times while its used alone, and its only working once with the multiple suites.
    What are the things taken care while using multiple suites? , is it neccessary to release all variables and the suites after completing the task?
    Should they released in the same order in which they are acquired?
    Thanks in advance
    Sreejesh K V

    Hi,
    The problem was with the "sAIDocument->GetDocumentModified(mod);"
    The "GetDocumentModified" is crashing after  executing once, i just removed that statement , and now
    i am forcefully saving the document with out checking the modification status!
    Its working fine now!
    Could you please tell me how can we lock a plugin , or a particular function in a plugin.
    There is any specific standard to use the GetDocumentModified function?
    Thanks and Best Regards
    Sreejesh K V

  • Single item shipment using multiple trucks

    Hi Friends,
    I have a typical requirement where my client want to ship one of their product ( A Huge item, which they dismantle it for shipment) using multiple trucks. How we can handle this situation using SAP LES module? They can hire multiple trucks to ship this item by road to the destination using multiple service providers. So the service cost also need to be settled for all these service providers.  Will SAP allow to split a single item through multiple shipments? I really appreciate a solution for this.
    Thanks

    There are a couple of recommended methods for using more than one iPod on a single computer. Method one is to have individual Mac or Windows user accounts which by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. Each iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists.
    Method two is to set your preferences so that either one or all iPods get updated with only certain playlists within one library. Have a look at this article and see what you think and go for whichever you feel suits your needs best: How To Use Multiple iPods with One Computer
    Another option when using a single library is to set the iPods to manual update: Managing content manually on iPod
    Choosing the update option "automatically update selected playlists only" (called Sync Music - Selected playlists in iTunes 7) allows you to create a playlist specifically for each iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used by the other iPods. Make your playlist a Smart playlist and limit the size to just below the advertised capacity of your iPod ( for example, around 3700MB for a 4GB or 1800MB for a 2GB Mini or Nano). You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes

  • HP7680 inkjet printer prints narrow blank (white) lines in multiple specific parts of page

    My HP7680 inkjet printer prints narrow blank (white) lines in multiple specific parts of each printed page. It appears to happen in the same parts of each page printed.
    - I installed new ink cartridges
    - I verified that the paper I’m using is the standard inkjet paper that I always use
    - In the tools section of the printer setup menu, I ran the “Clean Printhead”, “Align Printer”, and “Calibrate Linefeed” options
    - In reading the printer’s manual, it seems to imply that the printheads could be the problem.
    - So, I manually cleaned the printhead contacts
    - When I print the self-test diagnostics page, it shows printhead health to be “Good” for both. One of them was installed in January of 2009, and the other was installed March of 2008.
    - With a Q-tip, I even cleaned the clear plastic band that runs parallel to the carriage rod. (It was pretty dirty.)
    Here's a scan of the printed output.
    Thanks for your help!

    After a 2hr phone call with tech support, here is the solution; the L7600 Series printer have a firmware update (file name: OfficejetProK7600_R2011PxN.exe) my printer was bought in 2008 thus my print head is a 2008 model, and new print heads are a 2011 modem, they don’t work right in a 2008 model this is PER the tech rep and his name was John unless you upgrade the firmware.
    So I upgraded the firmware from a 2004NxN to the 2011PxN and now my printer says damaged or missing print head, I place the original print head from 2008 back in the machine and it’s fine, so I bought a 3rd print head for 2011 and it says the print head is damaged.
    After another 30min or so I was told I have a bad printer and sorry the warranty is out, but the old print head works but any new print heads do not, this sounds like a HP Error firmware / hardware compatibility issue, not my issue, but HP will not repair.
    HP has no fix nor will they repair the printer.

Maybe you are looking for

  • COGS and Change in Inventory Reporting

    Dear All, Client want to Cross Verify the Cost of  Goods Sold (COGS) during the Month  with change in inventory  during the month in the system, how can we do that. Example In F.01 If we enter  1 to 5 period in Reporting periods And we enter 1 to 4 p

  • Java code to Ping on a server?

    I have multiple instances of JBoss server connected through different port on a single machine. I have IP address and port no. Now I want to write code to know which instance of the server is up(running) and which one is down using ip address and por

  • PE02(functions and rules)!!

    hi can we use function(custom) in the rule and pass the parameters at run  time like we do in case of operation(ie in the rule itself..eg zcustX...where X is an indicator)?

  • How to tell what Service Pack is installed?

    Hello, can anyone tell me how to determine what service pack is installed on my computer?  I am running Crystal Reports XI Release 2 .NET 2005 Server. Thanks in advance! Tim

  • Yahoo fantasy football videos crashes every time on firefox but not on IE, why

    <blockquote>Locking duplicate thread.<br> Please continue here: [/questions/753709]<br> Thanks - c</blockquote><br> Yahoo fantasy football videos crashes every time on latest Firefox but not on IE, why? What can be done since I like using Firefox so