Inspection method update

Hi
i have created MIC with out assign  inspection method .. now i will assign to inspection method in MIC ..We can do throgh change MIC ..but thousands of MIC are there like .. i want to up load through Mass process.. is there any standard procedure..please could any one gude me in this issue.
regards
sesi

Sesi,
It is right that there is no standard method to mass-assign inspection method for MICs.
The most effective way is by using LSMW like other contributors suggest. Actually the procedure is quite simple, you just have to prepare the excel template (my favourite) and use is as the data source for the mass-assign process. The rest process is similar to every LSMW batch input process.
Regards,
Ilham Pratomo

Similar Messages

  • DMS: Objectlink to more than 50 inspection methods(QMBDOC) gives dump

    Dear All,
    I have a requirement of attaching more than 50 objectlink for inspection methods to one document info records.
    So when i attach 40 to 50 inspection methds by BDC program or manualy & then i again try to attach one more inpection method object by clicking on F4 it gives a Runtime error  RAISE_EXPECTION
    Short Text: Exception condition "INVALID_DYNPROFIELD" raised.
    A RAISE statement in the program "SAPLSHL2" raised the exception
    condition "INVALID_DYNPROFIELD".
    Since the exception was not intercepted by a superior
    program, processing was terminated.
    Is there any note to be applied for this.
    I got a note:896655, which says i can attach upto 100 object links to a DIR, but this is giving a error after 40-50 object links when ever i click F4 for attaching more.if i manually put value in the inspection method name it takes it & also saves it.
    Please advice.
    Regards
    Nishant..

    Dear Nishant,
    please check if the notes 880077 and 885977 are implemented. These notes solve several object link related issues too.
    Further please check the settings for object links in your customizing.
    First of of it is necessary to maintain the correct screen numbers for all needed objects within the customizing. Therefore go to transaction SPRO and select
    Cross-Application Components
      > Document Management
          > Control Data
              > Maintain Screen for Object Link
    Here you can enter all needed SAP objects with the name and
    the related screen number. If you do not know the object or the screen number you can display a list of all SAP standard objects in transaction SE80 under function group CV130 ("Screens").
    So for material master you maintain the following entry:
    SAP object    Screen    Description    Auth.
    MARA            201       material master      1
    Please note that the system automatically adds the leading "1" which is displayed in function group CV130 under
    "Screens". So for object MARA you just have to enter 201 instead of 1201.
    The value "1" in the column "Auth." is necessary to grant that always the latest dynpros and authorizations were used when linking this object to an document info record. This will avoid different problems by displaying linked documents from the object side.
    The next step is to decide which objects should be used in the different document types. Therefore please go to transaction DC10 and choose the relevant document type. Afterwards please select "Define object links". Here you can
    add all needed objects only by entering the object. The correct screen number is taken automatically. Also note the blue information buttons in the upper right corner which contain further necessary informations about the possible settings of the current screen.
    After doing these settings in customizing you should be able to link the maintained objects to document info records and oppositely.
    Important notes regarding the object link functionalities are:
    880077:  Performance problem using object links
    885977:  Extension to note 867241 on object links
    926060:  Extension of note 885977 for object link Purchase Order
    960202:  Object Links Deleted While Adding New Objects
    1002648: Wrong behaviour while using RFC_CHANGE_DOCUMENT_MASTER
    Best regards,
    Christoph

  • Cannot find symbl method update Date(int,java.util.Date)

    I get following error
    cannot find symbl method update Date(int,java.util.Date) on compling class called GuestDataBean at line ( rowSet.updateDate( 4, guest.getDate() ); ).
    GustBean.java. I need help on why I get it.
    // JavaBean to store data for a guest in the guest book.
    package com.deitel.jhtp6.jsp.beans;
    import java.util.*;
    public class GuestBean
       private String firstName;
       private String lastName;
       private String email;
       private Date date;
       private String message;
       //Constructors
       public GuestBean(){
            public GuestBean(String firstname, String lastname, String email,Date date,String message){
                 this.firstName=firstname;
                 this.lastName=lastName;
                 this.email=email;
                 this.date=date;
                 this.message=message;
       // set the guest's first name
       public void setFirstName( String name )
          firstName = name; 
       } // end method setFirstName
       // get the guest's first name
       public String getFirstName()
          return firstName; 
       } // end method getFirstName
       // set the guest's last name
       public void setLastName( String name )
          lastName = name; 
       } // end method setLastName
       // get the guest's last name
       public String getLastName()
          return lastName; 
       } // end method getLastName
       // set the guest's email address
       public void setEmail( String address )
          email = address;
       } // end method setEmail
       // get the guest's email address
       public String getEmail()
          return email; 
       } // end method getEmail
       public void setMessage( String mess)
          message = mess;
       } // end method setEmail
       // get the guest's email address
       public String getMessage()
          return message; 
       } // end method getEmail
       public void setDate( Date dat )
          date = dat;
       } // end method setEmail
       // get the guest's email address
       public Date getDate()
          return date; 
       } // end method getEmail
    } // end class GuestBean
    GuestDataBean.java/**
    * @(#)GuestDataBean.java
    * @author
    * @version 1.00 2008/7/18
    // Class GuestDataBean makes a database connection and supports
    // inserting and retrieving data from the database.
    package com.deitel.jhtp6.jsp.beans;
    import java.sql.SQLException;
    import javax.sql.rowset.CachedRowSet;
    import java.util.ArrayList;
    import com.sun.rowset.CachedRowSetImpl; // CachedRowSet implementation
    import java.sql.*;
    public class GuestDataBean
       private CachedRowSet rowSet;
       // construct TitlesBean object
       public GuestDataBean() throws Exception
          // load the MySQL driver
          Class.forName( "org.gjt.mm.mysql.Driver" );
          // specify properties of CachedRowSet
          rowSet = new CachedRowSetImpl(); 
          rowSet.setUrl( "jdbc:mysql://localhost:3306/virsarmedia" );
          rowSet.setUsername( "root" );
          rowSet.setPassword( "" );
           // obtain list of titles
          rowSet.setCommand(
             "SELECT firstName, lastName, email,date,message FROM guest" );
          rowSet.execute();
       } // end GuestDataBean constructor
       // return an ArrayList of GuestBeans
       public ArrayList< GuestBean > getGuestList() throws SQLException
          ArrayList< GuestBean > guestList = new ArrayList< GuestBean >();
          rowSet.beforeFirst(); // move cursor before the first row
          // get row data
          while ( rowSet.next() )
             GuestBean guest = new GuestBean();
             guest.setFirstName( rowSet.getString( 1 ) );
             guest.setLastName( rowSet.getString( 2 ) );
             guest.setEmail( rowSet.getString( 3 ) );
             guest.setDate( rowSet.getDate( 4 ) );
             guest.setMessage( rowSet.getString( 5 ) );
             guestList.add( guest );
          } // end while
          return guestList;
       } // end method getGuestList
       // insert a guest in guestbook database
       public void addGuest( GuestBean guest ) throws SQLException
          rowSet.moveToInsertRow(); // move cursor to the insert row
          // update the three columns of the insert row
          rowSet.updateString( 1, guest.getFirstName() );
          rowSet.updateString( 2, guest.getLastName() );
          rowSet.updateString( 3, guest.getEmail() );
          rowSet.updateDate( 4, guest.getDate() );
          rowSet.updateString( 5, guest.getMessage() );
          rowSet.insertRow(); // insert row to rowSet
          rowSet.moveToCurrentRow(); // move cursor to the current row
          rowSet.commit(); // propagate changes to database
       } // end method addGuest
    } // end class GuestDataBean

    This isn't a JSP question, it better belongs in the JavaProgramming, or JDBC forums.
    But the problem is because the updateDate method uses a java.sql.Date object and you are giving it a java.util.Date object. You have to convert from java.util.Date to java.sql.Date. See: [the api for java.sql.Date|http://java.sun.com/javase/6/docs/api/java/sql/Date.html] .
    Edited by: stevejluke on Jul 21, 2008 5:43 PM

  • Requirement of displaying inspection method in result recording

    Dear All,
    My clients requirement is to have the inspection method code in the result recording screen. I have the option of inspection method short text in the result recording screen. But i want a code should appear so that user can see the same for his convinient reference.
    Regards,
    Anil

    Dear Anil,
    You can create attachment in word of whatever data you want to maintain for inspection method. you can also save drawings in this attachment. assign this attachment to inspection method .You can assign attachment by
    Service for Object=> Create=>Create Attachment
    Now this attachment u can view while doing result recording & parallaly u can record results. Hope this will help you.
    Regards
    Amit

  • Mass Vendor master Payment method update

    Hi All
    Mass vendor master payment method update, is there any other alternative solution to update the new payment method in Vendor master. Normally we need to assign new payment method in Vendor master one by one instead of mass vendor master payment method update. Please help me to resolve the issue.
    Regards
    K.Gunasekar

    Thanks for your update
    I tryed to assign the new payment method in MASS transaction code and new value is updated but existing payment method has deleted. We need to maintain the previous payment method along with new payment method. Please provide me the necessary solution.
    Regards
    K.Gunasekar
    Edited by: KGUNASEKAR on Dec 6, 2010 10:15 AM

  • QM Module - How to get the Inspection Method & Characteristic value(Urgent)

    Hi All,
        I have inspection lot number (PRUEFLOS), batch number 
       (CHARGE), plant (WERK) & material number
       (MATNR) , using these fields how to get the inspection
       method (PMETHODE) & Characteristic Value (ATWRT) ?
       I don’t know the relation among them.
    Could you please help?
    Thanks in advance.
    Saket

    Hi Jose,
    Thanks for your help, could you please look into my requirement.
    For all inspection characteristics listed in the selected COA profile, I have to retrieve the Inspection Method for all listed inspection characteristics. And also I have to retrieve the characteristic value(uncertainty). Additionally, for inspection characteristics that are quantitative, being checked, the characteristic value(uncertainty) from that Inspection method will be retrieved from class 3050_UNCERTAINTY, class type 006, characteristic, P2150_UNCERTAINTY. 
    Please help me out.
    Thanks,
    Saket .

  • Change log in Inspection method

    Hi,
    I have a requirement for tracking status changes in QS32. When I try to use the change history I can't see the statuses in the inspection method. Is it possible to extend the change history to include this or is there any other way to solve this?
    Kind regards,
    Kristoffer Pehrson

    Hi,
    The history is already activated in the IMG under plant settings. The problem is that we need to be able to see who have changed the status and when. This is not working.
    We can see the history for short text and some other fields but we can't see the history for status. We can't see the time stamp for any of the fields.
    Any more suggestions on how to get this functionality either by config or by programming.
    K

  • Inspection method error in Ale

    Dear All,
    I am use ALE idoc to transfer inspection plan fron one client to another.
    While sending inspection plan i am getting an error that no valied version of inspection method found.
    But when i have checked this inspection metod , it is there with released version.
    For one material plan get uploaded with this inspection method but gives error for another material inspection plan for same method
    regards
    Edited by: amol shahane on May 26, 2009 11:51 AM

    Hi amol
    use ALE idoc to transfer inspection plan fron one client to another.
    While sending inspection plan i am getting an error that no valied version of inspection method found
    Check the date of Creation of Version of Inspection Method that you are trnasfering.This must be prior to that of Creation of inspection plan.
    For one material plan get uploaded with this inspection method but gives error for another material inspection plan for same method
    check the valide from date of this Inspection plan in MAPL
    for said material plan it must be prior.
    Regards
    Sujit S Gujar

  • Inspection Method (Quality Configuration)

    Hi,
    I have created a new Plant. Created the Material Specification Characteristics (T Code: QS21).
    While creating the Inspection Plan (T Code: QP01), the system throw an error saying 'METHOD INSDUMMY, VERSION, Plant 1100 is not available.
    When I cross-checked with old Plants, the Inspection Method INSDUMMY is assigned with the all old Plants.
    Pls. tell me from where I can assign the same.
    Regards,
    P K Karn

    PK Karn,
    You need to create inspection method "INSDUMMY" using transaction "QS31" for plant 1100.
    In the Initial screen you need to populate the plant and inspection method and key date from which this needs to be copied... so give the old plant referance which you were mentioning.
    Now you will be able to assign the Inspection method to MIC.
    Regards,
    Prasobh

  • Components method update not beeing called after repaint??

    Hello,
    I know that if I use Applet I can overwrite update(Graphics g) instead of paint(Graphics g). For use with repaint() method.
    This will prevent the super update class from repaint the background. Am I right to this point???
    In fact it works very well this way.
    Class Applet is inheriting the methods update and repaint from class Component.
    Now, I made a Class XX extending Component....
    why the hell is the method update not beeing calles in XX after I invoke repaint???
    In Applet it works, in Component it does not.
    Why???

    Does nobody have any ideas?
    It is very important for me to understand this basics.
    please please help, if you can.
    FatihC

  • Class and class type based on inspection method

    Hi experts,
              I have a requirement in my script like this i have a inspection method. based on this inspection method i have to get class and class type. and from which table we can get this class and class type based on inspection method. please suggest the solution.
    Thanks in advance
    Thanks and Regards
    D.Ramesh

    Hi Sai,
    Have you tried Run Time Type services?  If you need to perform some interspection of a class, you can use one of two classes:
      CL_ABAP_OBJECTDESCR  or
      CL_ABAP_REFDESCR
    there are several methods you can use:
      Describe_by_Name
      Describe_by_Object_Ref
      describe_by_data_ref
      describe_by_data
    One of these should do the trick...it just depends on what situation you are in.
    Hope this helps!
    Quack

  • QM-INSPECTION METHODS

    Dear friends
               Are inspection methods mandatory in Inspection Plan or optional.
               I created an inspn. method-QS31 and a document with details of the inspn. method -CV01N (in word format) . When I tried to link the document to the inspection method in the QS31 screen, display comes as "Document type- XXX  doesnot allow you to assign to object QMTBDOC.
                Please give solutions.
    regards
    Selva

    Hi Selva,
    Are inspection methods mandatory in Inspection Plan or optional.
    Optional
    When I tried to link the document to the inspection method in the QS31 screen, display comes as "Document type- XXX doesnot allow you to assign to object QMTBDOC.
    Define Object here
    Go to spro>Cross Application Component>DMS>Control Data>Define Doc.Type
    Select Typ as Doc and Goto Define Object Type as Typ> Doc,Object>QMTBDOC and Scr. no.-->221
    Now try ... it should allow
    Regards,
    Ravi.

  • Inspection method

    Dear experts,
    I am new to QM.
    What is the effect of inspection method in QM. Can you pls give some inspection methods which probably used for incoming,inprocess and final inspection methods.
    I have gone through F1 help doc. I did not clear.
    Pls help me
    Thanks in advance
    R.D.I

    As said above, You use inspection methods to describe how to carry out an inspection for an inspection characteristic.
    for example: there can be various methods to carry out inspection for a particular characteristics like check resistance. u can check resistance with various methods various equipments. each method will be inspection method master.
    inspection mathods can be used in MIC or directly in insp.plan but single insp. method can be used for single char.
    Using the Inspection Methods, you can:
    Specify how an inspection characteristic should be inspected
    Define the qualifications for inspectors. The specifications in the inspection method take precedence over the specifications in the inspection characteristics.
    Create different versions of an inspection method (for example, with different validity periods)
    Find the desired version of an inspection method with different validity periods by specifying the key date
    Make changes to inspection methods with or without history. You specify the required plant-specific default value for this function in the Customizing application. However, you can also create a new version for a validity period manually. A version management function ensures that all changes are documented.
    Create a where-used list to determine the master inspection characteristics and inspection plans in which an inspection method is used

  • In QS21 Qualitative is it necessary to assign Inspection method?

    Hi All,
    i created QS41 and it assigned in QS51.
    now In QS21 Qualitative is it necessary to assign Inspection method?

    hi
    it is not necessary to assign inspection method to master inspection characteristics
    Regards
    Pravin

  • How to read Inspection Method classificatino data

    Hi all,
    Can anyone let me know about how to read the Inspection Method Classification data.The transaction code for Inspection Method Classification is QS34.
    Thanks,
    Balaji

    Hello gopi,
                  i know that but I am asking whether there is any FM to read just like for Material classification,Batch classification etc we have FM's.
    Thanks,
    Balaji

Maybe you are looking for