How to Unlock Batch/Material in my code?

I would like to unlock this batch/material in the system at runtime. The problem evolves from another program that gets called and submitted from the origianl program that locks the DB in the first place. Bit, I'd need to do the update in the submitted called program. How do I unlock to get rid of the message below?
       Batch KJKJ01 of material 8232143636 is already locked by USERNAME
     Thank-You.

I am locking the data because I am executing from a calling program. It is a material and batch that is locked and needs to be released. So what exactly is the name of the FM I am calling.
    DEQUEUE_OBJECTNAME ................What goes in objectname?
     Thank-You

Similar Messages

  • How to unlock MacBook Air System Pim Code

    I have a big problem for my MacBook Air (A1370) System Lock Pim Code. How to unlock System Pim Code for MacBook Air (A1370) ?

    You have to take the computer to the Apple store along with ownership documents like invoice.
    Best.

  • Does anyone know how to unlock an iPad if the code is forgotten?

    Is there anyway of unlocking an iPad if the code is forgotten? Thank you!!

    If you've forgotten the passcode then you will need to connect the iPad to the computer that you normally sync to and you should then be able to reset the iPad and restore/re-sync your content to it (http://support.apple.com/kb/HT1212) - you may need to put the iPad into recovery mode to be able to reset it : http://support.apple.com/kb/ht1808
    If you do it via a different computer then :
    If you restore on a different computer that was never synced with the device, you will be able to unlock the device for use and remove the passcode, but your data will not be present.

  • How to create a material for company code ??

    hii
    Is it possible to create material company code wise .???
    If not , explain me the reason ??
    Only plant wise is possible in standard SAP??
    Thanks

    Hello,
    Their is no such Company code level data for material master. So material master can be maintained at three level  1) Cleint level 2) Plant level  3) Storage location level
    Basic data 1 and Basic data 2 views-----General data --Client level data
    Purchasing , MRP Veiws and ---Plant level data
    General plant/Stor 1 and Stor 2---Storage location level.
    SO you are having the only one company code then, you can say Client level data is company code data.
    Regards
    Mahesh Naik

  • HT1350 how to unlock ipod touch: forgotten pass code

    My son was trying to keep his sister from playing with his ipod touch, he set a pass code, then forgot the code himself. Karma I guess! after several attempts with the wrong codes, he is now locked out-- can anyone help me with this problem...Thank You in advance.
                                                                                                                                            kirbyfromky

    You need to connect the device to iTunes in recovery mode and restore it using the instructions in this Apple support document.
    iOS: Unable to update or restore
    B-rock

  • How to unlock material in SAP?

    Hello everbody:
    I want to know how to unlock some material, before of that I have entered to the transaction mm06 for locking my material in some centers and warehouses.
    Thanks.

    Hi Robert,
    SM12 is the Tcode used to handle lock object's which are already opened  by a User, but to unlock a material we can do it using MM06 or MM02 also .
    Refer the below link for SM12 lock objects :
    SM12 - Unlocking an ABAP (TADIR) Object
    Regards,
    Lokeswar.

  • Please help me how to check a material does existed group code in system (w

    Hi all,
    Please help me...
    I have inputted quantity for  tx MC 94  but when I input them into  tx MC94, I met  a message " Structure  not yet maintained for  this conbination characterstics". Step by step to show a error message as below:
    Step 1: Launch MC 94
    step 2: Enter Planning
    Step 3: Enter  Prod.Code. Material (ex: enter material code :0101010260008, this code is existed  Prod.Code )
    Step 4: Click on "Inactive Version " button
    ==> A error message is showed.
    Please help me how to check a material does existed group code in system (which table to  check  it)?
    How to record the message" Structure  not yet maintained for  this conbination characterstics" to catch up it in my program?
    Thank in advance.

    Karenloria,
    1. Check in MC8C, which Infostructure is used for Planning type "Planning" or the one you are entering in the intial screen of MC94.
    2. Using transaction MC63 for the infostructure identified in step 1, check the planning hierarchy maintained. If this product is not maintined maintain using MC62.
    You can also check using SE16 transction the current infostructe records(Plan) for the table name = infostructure identified in step 1.
    Regards,
    Prasobh

  • How to Change Batch Classification of material master

    Hi,
    How to Change Batch Classification of material master  in a production system,Pl note that there is no stock and no open qty still system is not allowing me to delete the old Classification and add my new classification.
    Guys any solution for this.
    Thanks in advance
    rgds
    bijaya pradhan

    I believe there is a FM VB_CHANGE_BATCH for this, any body tried this FM?

  • How to pass arguments to a batch file from java code

    Hi
    I have a batch file (marcxml.bat) which has the following excerpt :
    @echo off
    if x==%1x goto howto
    java -cp C:\Downloads\Marcxml\marc4j.jar; C:\Downloads\Marcxml\marcxml.jar; %1 %2 %3
    goto end
    I'm calling this batch file from a java code with the following line of code:
    Process p = Runtime.getRuntime().exec("cmd /c start C:/Downloads/Marcxml/marcxml.bat");
    so ,that invokes the batch file.Till that point its ok.
    since the batch file accpets arguments(%1 %2 %3) how do i pass those arguments to the batch file from my code ...???
    %1 is a classname : for ex: gov.loc.marcxml.MARC21slim2MARC
    %2 is the name of the input file for ex : C:/Downloads/Marcxml/source.xml
    %3 is the name of the output file for ex: C:/Downloads/Marcxml/target.mrc
    could someone help me...
    if i include these parameters too along with the above line of code i.e
    Process p = Runtime.getRuntime().exec("cmd /c start C:/Downloads/Marcxml/marcxml.bat gov.loc.marcxml.MARC21slim2MARC C:\\Downloads\\Marcxml\\source.xml C:\\Downloads\\Marcxml\\target.mrc") ;
    I get the following error :
    Exception in thread main java.lang.Noclassdef foundError: c:Downloads\marcxml\source/xml
    could some one tell me if i'm doing the right way in passing the arguments to the batch file if not what is the right way??
    Message was edited by:
    justunme1

    1 - create a java class (Executer.java) for example:
    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    public class Executer {
         public static void main(String[] args) {
              try {
                   for (int i = 0; i < args.length; i++) {
                        System.out.println(args);
                   Class<?> c = Class.forName(args[0]);
                   Class[] argTypes = new Class[] { String[].class };
                   Method main = c.getDeclaredMethod("main", argTypes);
                   // String[] mainArgs = Arrays.copyOfRange(args, 1, args.length); //JDK 6
                   //jdk <6
                   String[] mainArgs = new String[args.length - 1];
                   for (int i = 0; i < mainArgs.length; i++) {
                        mainArgs[i] = args[i + 1];
                   main.invoke(null, (Object) mainArgs);
                   // production code should handle these exceptions more gracefully
              } catch (ClassNotFoundException x) {
                   x.printStackTrace();
              } catch (NoSuchMethodException x) {
                   x.printStackTrace();
              } catch (IllegalAccessException x) {
                   x.printStackTrace();
              } catch (InvocationTargetException x) {
                   x.printStackTrace();
              } catch (Exception e) {
                   e.printStackTrace();
    2 - create a .bat file:
    @echo off
    java -cp C:\Downloads\Marcxml\marc4j.jar; C:\Downloads\Marcxml\marcxml.jar; Executer %TARGET_CLASS% %IN_FILE% %OUT_FILE%3 - use set command to pass variable:
    Open MS-DOS, and type the following:
    set TARGET_CLASS=MyTargetClass
    set IN_FILE=in.txt
    set OUT_FILE=out.txt
    Then run your .bat file (in the same ms dos window)
    Hope that Helps

  • How to unlock my sprint iphone5 with the code provided

    I have this iphone5 given by a friend. Sprint has offered an unlocking code supposedly allows me to use it internationally.
    But i found nowhere to input such code, and the phone still doesn't recognize my chinese sim card. Could anyone help with this?

    There is no unlock code that can be used with an iPhone.
    http://sprint.com/legal/unlocking_policy.html
    How to unlock your iPhone for use with another carrier - Apple Support

  • How to Remove batch mangement indicator from Material Master

    Hi
    I am trying to remove batch mangement indicator from Material master..but system does not allow
    Before this .. I have done all activities also ...clear open SD documnets ,deliveriy documents ,PO documents ,Process order teco and . reservations and activae deletion flag in  batch  ... and made current period  stock an previous period  stock zero... i have cleard all documnets ...still system does not allow remove indicator..could you please guide in this issue ..how to remove batch indicator.
    Regards
    Sasi

    Hi,
    Please refer the below links.
    Re: untick Batch Manegement Indicator on Material Master
    Remove batch management flag and deletion of material documents
    How to remove Batch Management in the Material
    Re: How to remove Batch Management Check in the Material
    Thanks.

  • HT1937 How to unlock a three Mobil. Phone .  And what do I do when they give me the code?

    How to unlock a three mobile. IPhone 4 GSM And They sent me a code what do I do with it ?   3 mobile are very vague on this 

    There is no "code".
    Information on how it works can be found here: http://support.apple.com/kb/ht5014

  • How do I batch unlock files in nested folders in Time Capsule

    I am attempting to back up my computer to my Time Capsule, but Time Machine is unable to complete the backup because of lack of space. Part of the problem is that my wife used the TC a couple of years ago to back up some folders manually (i.e. not using Time Machine) and these take up a lot of room. I am unable to delete them, as there are a number of files deep within the folder structure of her photo library that are locked. To locate and unlock them all one by one would take weeks of work, so I either need to find a way to unlock them as a batch, or I will have to reformat the drive. I'm reluctant to do the latter, as that would mean also deleting the most recent backups that my wife and I have both made of our machines using TM.
    I have tried using terminal to do the batch unlock, by moving into the relevant high level folders and using the command
    chflags nouchg *
    as advised elsewhere in these forums, but this doesn't seem to have worked. I am guessing that perhaps it doesn't get into all the nested folder structure. Other advice I have found relates to forcing the trash to empty, but as the TC is an external drive I can't even get as far as dragging these folders into the trash.
    So I would be grateful if anyone could advise how I might batch unlock the files in the nested folders within TC.
    Thanks in advance

    Awesome. Thanks Matthew for finding this utility. I downloaded it used it on 7,000 locked files in all sorts of different folders and it worked within minutes. Saved me a lot of time because Terminal was a pain to use. And it didn't always work.

  • How to find batch class based on material number

    Hi experts,
    Can any one say how to get Batch class number by giving material number as input
    regards
    subbu

    Hi ,
    check in MCH1 table.....
    or  try this way..
    By using this function module you can get the batch class related to material..
    * Retrieve Material Batch Classes
      CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
        EXPORTING
          classtype          = zc7b1_batch_class_type
          features           = 'X'
          language           = 'E'
          object             = w_object             "Pass material Number with leading zeros
          objecttable        = 'MCH1'              "Pass table MCH1
          initial_charact    = 'X'
        TABLES
          t_class            = t_lclass             " check here what are all the classes related to material
          t_objectdata       = t_objectdata
        EXCEPTIONS
          no_classification  = 1
          no_classtypes      = 2
          invalid_class_type = 3
          OTHERS             = 4.
    Prabhudas

  • How to unlock iphone4 with the code

    how to unlock iphone4 with the code

    the page where i will put the codes is not coming up on itunes.
    any help further.

Maybe you are looking for