Quality check for consumables

Hi ,
I want to do quality check for consumables . When doing GR it is directly expensed to Cost Centre . How can it be posted to quality stock and then then after usage decision it be charged to cost centre .
Regards
Nandini

Material procurement
. procurement to stock
me21n, migo- quality- UD to unres- miro
. procurement to consumption
me21n with K - migo - Cost centre Dr and Gr/Ir CR , miro
here it means it is already consumed, that is the reason why no storage loc is possible.
IF u want quality , u can do like this.
Normal PO 200 qty with mat (quality view) , GR - to quality stock, UD for unrest
Now u transfer post to cost centre as needed fro example 50 qty.
rewds

Similar Messages

  • Quality check for Pipeline Material

    Hi MM Guru's
    Is it possible to do quality check for Pipeline Material?
    If yes what is the process.
    Thank you
    Venu

    you can create a manual inspection lot, analyze a sample and record the results.
    but you cannot have a quality stock and do not do a transfer posting from quality to unrestricted or quality to blocked.
    There a many chemicals that are transported via pipeline and managed as pipleline materials, either supplied by a supplier in the neighborhood or even cross country. And it is needed that you want do quality checks on certain materials before you use them.
    Search the QM forum, you may find some discussions.

  • Suggestions about the best tool for quality check for an ADF application

    Hi All,
    I need a few suggestions about the best tool for quality check in our ADF applicaiton.
    ours is a small size WebCenter Portal application which neither uses any task flows nor consumes any portlets.
    It has many jspx pages that use ADF components like table etc, consume web services using web service clients, and has some java classes.
    We have come across below option to implement the code quality tools.
    1. Jdeveloper inbuilt Staus option in View tab
    2. PMD extension for Jdeveloper
    3. Red Samurai
    Few more suggestions or best practices would be really helpful.
    Thanks,
    Usha

    Some general ADF / Webcenter coding standards -
    http://umeshagarwal24.blogspot.com/2012/06/adf-coding-standards-check-points.html
    You can use JAudit as well as mentioned in the blog.

  • Quality check for block stock

    Dear QM experts,
    I want to know which inspection types is suitable for check a material in block stock.
    Here is the case,
    First i used insp type 04 for GR from production. After we got the result that the lot is rejected, then we post the stock into block stock. After that my client want to do quality rechecking with a new inspection lot.
    So, my question is how SAP can support this business process?
    Thanks in advance,
    Helly

    Hi Amol,
    Thanks a lot for ur reply.
    I just wanna make sure.
    If we use 08, is it means that every goods movement will create an inspection lot unless we make a customizing for the movement type with QM not active ?
    Helly

  • Incorporating Quality check in Repetitive scenario

    Hi PP Experts,
    I have a requirement which is as follows for Repetitive scenario
    I need to do Quality check (for total carbonate (TC) value -- say will be in decimal)on one of the semifinished material and based on that result the operator controls the input temperature to the machine (say for example if total TC is 10 then the temp is say 110 deg). The requirement is that the TC for the semifinished material shud be captured and that information will be used by the operator in the control room.
    Im trying to do this throug inspection character in the rate routing.
    My Queries are
    1. Do i woork with inspection lot?
    2. How do I work with inspection characters?
    Any suggestion as to how it shud be done wud be rewarded.
    Thanks in advance
    Vinod

    Vinod,
    You need to assign the insp characterisc TC in the routing operation.
    Enter the control key as PP04 for the operation in routing CA22.
    Select the operation and go to Insp charac. Enter the MIC in this.
    When you create Insp lot through MSPR the insp lot will have this charc.
    Hope now it is clear. Reward points and clos this thread.
    rgds
    ram

  • Quality check in Repetitive Scenario

    Hi Experts,
    I have a requirement which is as follows for Repetitive scenario
    I need to do Quality check (for total carbonate (TC) value -- say will be in decimal)on one of the semifinished material and based on that result the operator controls the input temperature to the machine (say for example if total TC is 10 then the temp is say 110 deg). The requirement is that the TC for the semifinished material shud be captured and that information will be used by the operator in the control room.
    Im trying to do this throug inspection character in the rate routing.
    My Queries are
    1. Do i woork with inspection lot?
    2. How do I work with inspection characters?
    Any suggestion as to how it shud be done wud be rewarded.
    Thanks in advance
    Vinod

    Vinod,
    You need to assign the insp characterisc TC in the routing operation.
    Enter the control key as PP04 for the operation in routing CA22.
    Select the operation and go to Insp charac. Enter the MIC in this.
    When you create Insp lot through MSPR the insp lot will have this charc.
    Hope now it is clear. Reward points and clos this thread.
    rgds
    ram

  • Implementation of Oracle Coding Standards and Code Quality Checks

    I wanted to implement a list of coding standards and code quality checks for my oracle packages,functions,views,tableetc .
    for example
    All variables with number datatype should start with N_ and charcter type with C_ in all my tables & views definition.
    This can be identified during peer review & can be corrected, but i think this is a repeated process which i don want to burden the developers rather i wanted a tool which does all these kind of checks which can be automated.
    Is there any tool which does this operation or can someone give me a little idea how can i automate these stuffs bu creating a generic oracle procedure which can run through all the tables,views and generate a error report for those which are deviating from the standards.
    Thus we can reduce the manual effort spent on peer review, please suggest.
    thanks in advance

    maru wrote:
    I wanted to implement a list of coding standards and code quality checks for my oracle packages,functions,views,tableetc .
    for example
    All variables with number datatype should start with N_ and charcter type with C_ in all my tables & views definition.Hungarian notation is dead. It has no place in modern programming languages. Has no place in PL/SQL. Anit ain't just me saying that.
    +"Encoding the type of a function into the name (so-called Hungarian notation) is brain damaged—the compiler knows the types anyway and can check those, and it only confuses the programmer."+
    Linus Torvalds
    +"No I don't recommend 'Hungarian'. I regard 'Hungarian' (embedding an abbreviated version of a type in a variable name) a technique that can be useful in untyped languages, but is completely unsuitable for a language that supports generic programming and object-oriented programming—both of which emphasize selection of operations based on the type an arguments (known to the language or to the run-time support). In this case, 'building the type of an object into names' simply complicates and minimizes abstraction."+
    Bjarne Stroustrup
    2) Conditional Statements
    IF (x = 1) --> Wrong
    IF ((x = 1) AND (y = 2)) --> wrong
    IF x = 1 AND y = 2 --> RightIdiotic rules. The simple rule should be readability of code. Not how many brackets to use, and when not to use brackets. Minute standards like detracts from designing and writing proper code, fast and efficiently.
    There are many more rules (which is specific to ur application) which can be incorporated in the tool, there by giving consistency ,readability and easy to maintain for the developers.Bull. The more rules there are, the more difficult it becomes for programmers to write code. As it is no longer about writing readable and flexible and performing code - it is about double checking every single statement line against a huge list of rules about do's and dont's. It is not about getting the programmer focusing on solving the problem - it is about distracting the programmer with a complex and large rule list of how the code should look like.
    Sorry - but this rubs me the wrong way. In that environment, I would be the first to tell you to shove your "+many more rules+".
    I've developed systems in over a dozen languages over the years. I've seen all kinds of standards. The standards that work are those that are short, simple and sensible. Hungarian notation is not sensible. Writing reserved words in uppercase is not sensible. Dictating how brackets should be used is not sensible.
    What is sensible is using the de facto naming standards in use today - as per .Net Guidelines for Names (MSDN) and Code Conventions for the Java Programming Language.
    What is sensible is providing guidelines like bulk collection needs to be justified (not possible using SQL only) and use the limit clause to manage memory spend on the collection variable. Or how packages need to be used to modularise code, providing a public interface and private implementation.
    Standards are about creating a sensible and easy-to-use framework for writing code. It is not about creating a list of a 1001 rules that a developer needs to remember and adhere to, as if the developer is now part of some weird religious sect that has rules for every single aspect of human behaviour.

  • Setup security for Consumer

    Hi experts,
    I have a requirement in my project where as part of system readiness check it has been asked to "Setup security for Consumer".Does anyone know as to how to proceed with the requirement.Is this related to HR or CRM?.
    Watever information you guys have please share it with me.
    Usefull answers will be rewarded subsequently
    thanks in advance,
    Abhinav Mahul.

    Hi Abhinav,
    To perform Security check for Consumer means to assign proper rights to the user who gonna use consumer master data and who gonna access consumer master data. Thus to ensure that no data of consumer getting changed illegally and every things happens within the system.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • GATP Check in R/3 not go to APO screen for Checking & not consuming Pro. Al

    Hi
    I have Material for which the Product allocation is not being consumed. We analysed the issue is that when the sales order is created and ATP check carried out the system will do the ATP check in R/3 and will not go to APO for CTP check which in turn will not consume the Allocation. We have checked the Master data for the material which is same. Please let us know what is the seeting we have to check for the CTP check to be carried out in APO. Waiting for the response.

    Hi
    I am not asking about the configuration setting. The issue is only with this material and is working for all the materials. The material has a Planning  type X0 and is their any other settings required for the material for this.The R/3 is integrated and it is working for all the material expect for this material.

  • IMovie capture quality better than anything FCP can offer for consumer DV?

    As a newbie to FCP, I have not found Capture, sequence, and export settings that is equal to or better than what iMovie 08 can create. Prior to this, I've been using iMovie 08 which is extremely user friendly. Just plug in the fire wire connections and it auto detects only one setting for DV. I am not sure what format it captures in but it does a good job. When I export out of iMovie 08 I use "using Quicktime" and choose the Uncompressed 8-bit NTSC method. The result is a decent, non-interlaced looking .mov file.
    The first time I tried to capture with FCP I chose the easy setup, where I would capture in the NTSC DV, sequence would be NTSC DV and export using the current settings in quicktime. The result was an interlaced and lowered quality vid.
    I have also tried the following combinations with no success with quality comparisons w/ iMovie 08:
    capt: NTSC dv, seq: NTSC DV, progressive exp: Uncompressed 8-bit
    capt: Uncompressed 8-bit, seq: Uncompressed 8-Bit exp: Uncompressed 8-bit
    This last one came close, but still iMovie 08 was better.
    My assumption is that FCP would contain the settings to duplicate or even out perform iMovie's export quality for consumer video dv. I viewed iMovie as little brother and FCP as big brother. Shouldn't FCP produce equal to or better quality than iMovie 08? And what are the settings for this?
    Thanks

    Thank you for clearing up my confusion. How is my export from iMovie 08, using "Uncompressed 8-bit" coming out progressive (I see no interlaced, odd/even scan lines)? Is this export dropping lines/information? If so, uncompressed is not an appropriate name for the export.
    I understand what you are saying about "getting quality back" on export. My initial question was comparing the quality of an iMovie 08 export vs. FCP export and having the problem of a lowered output from the FCP export.
    If anyone has the time, would they try a short experiment:
    1. From your DV source, camera or deck connect to your computer
    Capture a short clip via iMovie 08 a short clip in standard 4:3.
    Export using Quicktime, Uncompressed 8-bit setting
    2. From your DV source, camera or deck, connect to your computer.
    Capture the same short clip to FCP using Easy set up for NTSC DV. Export with current settings.
    3. Compare the two.

  • Bypass the quality check/inspection for intercompany POs.

    Hi Experts,
    Can anybody tell me step by step procedure /configuration change process for bypassing the Quality check/inspection for intercomapany POs.?As we have huge intercompany transaction ,wants to avoid the quality check specialy only for intercomapany POs.
    Thanks in advance
    Parag

    Hi
    1. You have to use the inspection type 03 ( In-process inspection)
    2. It is possible for results recording at a specific operation. You have to assign the MIC in the particular operation for which you want to do results recording.
    3. Giving usage decision for each operation is not possible in Standard SAP. Because only one inspection lot will be generated for an order, in the same lot  you have to do the results recording by selecting the required operation. But usage decision is possible for the whole inspection lot only not for each operation.
    Regards
    Bala

  • Compile class file, check for code structure quality

    now i am trying to develop a system for my college final year project..the main function is to help the lecturer to mark the student java assignment
    any way to compile the java file..just to check for the error? if got error then 0 mark..no error got mark..and then check for the code structure and so...base on that ..to decide the student mark..like if good structure 20 mark..bad? 5 mark and so.
    is it possible to do so?
    Junit?
    any sample?

    Checking for errors is easy, just write a script to check if javac completed successfully. You can use similar approaches (possibly needing to parse the output) for jlint/PMD/whatever to check code structure. If there's any custom checks you want to do, though, I suggest you grab a parser (possibly witgh semantic analysis; I've found the Eclipse one is rather easily extracted and is good for this stuff) and write manual checks. It might be easier to write PMD rules, but you won't have the flexibility.

  • Help - i recently made put together a high quality movie for a relative, it has taken me months to complete and it goes for a total of 9 hours and 43 minutes ,however, it won't let me export the video at all! please help - its taken ages to make it!

    Help - i recently made put together a high quality movie for a relative, it has taken me months to complete and it goes for a total of 9 hours and 43 minutes ,however, it won't let me export the video at all! please help - its taken ages to make it!

    9 hours??!
    Twice the length of a cinema epic?
    How are you expecting to distribute it?
    iDVD encoding settings:
    http://docs.info.apple.com/article.html?path=iDVD/7.0/en/11417.html
    Short version:
    Best Performance is for videos of up to 60 minutes
    Best Quality is for videos of up to 120 minutes
    Professional Quality is also for up to 120 minutes but even higher quality (and takes much longer)
    That was for single-layer DVDs. Double these numbers for dual-layer DVDs.
    Professional Quality: The Professional Quality option uses advanced technology to encode your video, resulting in the best quality of video possible on your burned DVD. You can select this option regardless of your project’s duration (up to 2 hours of video for a single-layer disc and 4 hours for a double-layer disc). Because Professional Quality encoding is time-consuming (requiring about twice as much time to encode a project as the High Quality option, for example) choose it only if you are not concerned abo
    In both cases the maximum length includes titles, transitions and effects etc. Allow about 15 minutes for these.
    You can use the amount of video in your project as a rough determination of which method to choose. If your project has an hour or less of video (for a single-layer disc), choose Best Performance. If it has between 1 and 2 hours of video (for a single-layer disc), choose High Quality. If you want the best possible encoding quality for projects that are up to 2 hours (for a single-layer disc), choose Professional Quality. This option takes about twice as long as the High Quality option, so select it only if time is not an issue for you.
    Use the Capacity meter in the Project Info window (choose Project > Project Info) to determine how many minutes of video your project contains.
    NOTE: With the Best Performance setting, you can turn background encoding off by choosing Advanced > “Encode in Background.” The checkmark is removed to show it’s no longer selected. Turning off background encoding can help performance if your system seems sluggish.
    And whilst checking these settings in iDVD Preferences, make sure that the settings for NTSC/PAL and DV/DV Widescreen are also what you want.
    http://support.apple.com/kb/HT1502?viewlocale=en_US

  • Data quality check or automation

    Apart from passing the report to the user for testing are there ways the process can be automated for a data quality check and how?
    Thanks.

    Hi Dre01,
    According to your description, you want to check the report data quality. Right?
    In Reporting Services, the only way to check the report data is viewing the report. So for your requirement, if you want to make this data processing automatically. We suggest to create subscription, it will process the data automatically based
    on the schedule and you will get the subscription of report to check if it shows data properly.
    Reference:
    Create, Modify, and Delete Standard Subscriptions (Reporting Services in Native Mode)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • I have a Macbook Pro purchased brand new. I take high quality pictures for customers, these display perfect on my laptop but appear CORRUPT on a USB stick. What is causing this? I can't seem to fix this issue. PLEASE HELP!!

    I have a Macbook Pro purchased brand new. I take high quality pictures for customers, these display perfect on my laptop but appear CORRUPT on a USB stick. What is causing this? I can't seem to fix this issue. PLEASE HELP!!
    I really need this issue resolved it is driving me insane!!! How can the images appear perfectly fine on my laptop then when transferring over to a USB stick they just  corrupt!?

    Check out this site:
    http://osxdaily.com/2012/04/22/format-drive-mac-pc-compatible/
    That will show you how to format a USB stick for use on both PC and Mac.
    If the problem continues take it to an Apple store and have them check it out.
    >Also what s exFAT?<
    From:
    http://en.wikipedia.org/wiki/ExFAT
    "exFAT (Extended File Allocation Table) is a Microsoft file system optimized for flash drives.[3] It is proprietary and patented."
    That first site explains it at length.

Maybe you are looking for