What is the Purose of t-code IL06 how to use it....

hi
what is the purpose of T-code IL06 AND  how to use it
regards
ganesh

Hi
refer the following thread
Plant Maint  t-code IL06
regards
thyagarajan

Similar Messages

  • HT2534 what is the itunes gift card code

    what is the itunes gift card code and how can I get it?

    iTunes gift cards are an alternative method of paying for content from the iTunes content. They are not available in all countries and they are country-specific - they can only be redeemed and used in their country of issue. If they are available in your country then you might be able to get them from Apple, or from electrical stores, supermarkets, online retailers etc. The field on the screen when creating an account is optional, and if gift cards aren't available in your country then you won't be able to fill it in anyway.

  • What are the difference in transaction codes in 4.6 C and ECC 6.0 HCM syste

    Hi
    What are the difference in transaction codes in 4.6 C and ECC 6.0 in HCM SAP.
    Regards,
    Sanjay

    Believe there will not be any change in Tcodes.
    check these links
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://www.sap.com/solutions/business-suite/erp/pdf/BWP_ERP2006_Upgrade.pdf
    http://service.sap.com/releasenotes
    http://service.sap.com/upgrade for functional
    https://websmp105.sap-ag.de/upgrade

  • I was trying to pair my iPhone 5 with my car's bluetooth and it asked me for a 4 digit code, what is the 4 digit paring code?

    I was trying to pair my iPhone 5 with my car's bluetooth and it asked me for a 4 digit code, what is the 4 digit paring code for the iPhone 5?

    The code must be mentioned in the manual for the car read http://support.apple.com/kb/ht1664 it may help

  • What's the problem in this code

    import java.lang.reflect.*;
    import java.awt.*;
    class ABC
         public Integer i;
         ABC()
         public void setInt(Integer t)
              i = t;
    public class SampleName {
    public static void main(String[] args)
    ABC g1 = new ABC();
    g1.setInt(new Integer(10));
    printFieldNames(g1);
    static void printFieldNames(Object o) {
    Class c = o.getClass();
    Field[] publicFields = c.getDeclaredFields();
    for (int i = 0; i < publicFields.length; i++)
    try {
    Object ref = publicFields.get(c);
    System.out.println(" ref.toString() : " + ref.toString());
         }catch(Exception e)
                   e.printStackTrace();
    What is the problem with this code,at run time Iam getting this exception
    java.lang.IllegalArgumentException: object is not an instance of declaring class
    How can we get the value of field of an object

    Now it got this exception
    java.lang.IllegalAccessException
    at java.lang.reflect.Field.get(Native Method)That's strange - I didn't! ;-)
    Are you running exactly the same code as the code you posted (except for the one line I said to change)?

  • Please tell me what is the problem with this code

    Hai,
    Iam new to Swings. can any one tell what is the problem with this code. I cant see those controls on the frame. please give me the suggestions.
    I got the frame ,but the controls are not.
    this is the code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ex2 extends JFrame
    JButton b1;
    JLabel l1,l2;
    JPanel p1,p2;
    JTextField tf1;
    JPasswordField tf2;
    public ex2()
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setTitle("Another example");
    setSize(500,500);
    setVisible(true);
    b1=new JButton(" ok ");
    p1=new JPanel();
    p1.setLayout(new GridLayout(2,2));
    p2=new JPanel();
    p2.setLayout(new BorderLayout());
    l1=new JLabel("Name :");
    l2=new JLabel("Password:");
    tf1=new JTextField(15);
    tf2=new JPasswordField(15);
    Container con=getContentPane();
    con.add(p1);
    con.add(p2);
    public static void createAndShowGUI()
    ex2.setDefaultLookAndFeelDecorated(true);
    public static void main(String ar[])
    createAndShowGUI();
    new ex2();
    }

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ex2 extends JFrame
        JButton b1;
        JLabel l1,l2;
        JPanel p1,p2;
        JTextField tf1;
        JPasswordField tf2;
        public ex2()
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setTitle("Another example");
            b1=new JButton(" ok ");
            p1=new JPanel();
            p1.add(b1);
            p2=new JPanel();
            p2.setLayout(new GridLayout(2,2));
            l1=new JLabel("Name :");
            l2=new JLabel("Password:");
            tf1=new JTextField(15);
            tf2=new JPasswordField(15);
            p2.add(l1);
            p2.add(tf1);
            p2.add(l2);
            p2.add(tf2);
            Container con=getContentPane();
            con.add(p1, BorderLayout.NORTH);
            con.add(p2, BorderLayout.CENTER);
            pack();
            setVisible(true);
        public static void createAndShowGUI()
            ex2.setDefaultLookAndFeelDecorated(true);
        public static void main(String ar[])
            createAndShowGUI();
            new ex2();
    }

  • Vector, what is the problem with this code?

    Vector, what is the problem with this code?
    63  private java.util.Vector data=new Vector();
    64  Vector aaaaa=new Vector();
    65   data.addElement(aaaaa);
    74  aaaaa.addElement(new String("Mary"));on compiling this code, the error is
    TableDemo.java:65: <identifier> expected
                    data.addElement(aaaaa);
                                   ^
    TableDemo.java:74: <identifier> expected
                    aaaaa.addElement(new String("Mary"));
                                    ^
    TableDemo.java:65: package data does not exist
                    data.addElement(aaaaa);
                        ^
    TableDemo.java:74: package aaaaa does not exist
                    aaaaa.addElement(new String("Mary"));Friends i really got fed up with this code for more than half an hour.could anybody spot the problem?

    I can see many:
    1. i assume your code snip is inside a method. a local variable can not be declare private.
    2. if you didn't import java.util.* on top then you need to prefix package on All occurance of Vector.
    3. String in java are constant and has literal syntax. "Mary" is sufficient in most of the time, unless you purposly want to call new String("Mary") on purpose. Read java.lang.String javadoc.
    Here is a sample that would compile...:
    public class QuickMain {
         public static void main(String[] args) {
              java.util.Vector data=new java.util.Vector();
              java.util.Vector aaaaa=new java.util.Vector();
              data.addElement(aaaaa);
              aaaaa.addElement(new String("Mary"));
    }

  • HT1212 i just bought an ipad air ... what's the default 4 digit code to unlock the ipad? i never set one on this device since it's brand new

    i just bought an ipad air ... what's the default 4 digit code to unlock the ipad? i had not had a chance to reset it yet

    There's no default 4 digit code.
    You need to force iPad into Recovery Mode. Follow step 1 to 6 very closely.
    http://support.apple.com/kb/HT1808
    Note: You may have to repeat the above a few times.

  • What is the screen lock default code for iPod nano 5th gen?

    What is the screen lock default code for iPod nano 5th gen?

    There isn't one.  You'll need to connect the Nano to your iTunes library and restore to factory settings.  There is no other way.
    B-rock

  • What is the javascript (this.maildoc) code to link mail icon in Acrobat X1

    What is the javascript (this.maildoc) code to link mail icon in Acrobat X1

    The code to use is:
    this.mailDoc();
    This will generate a blank email with the current email attached to it. If you want to specify additional parameters, like the address to send the email to, subject line, body message text, etc., have a look here:
    http://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address
    Notice that this command does NOT actually send the email, it just generates it. It's still up to the user to press Send in their email application/website.

  • What  is the difference between T.CODES  SE10  SE09 SE01

    DEAR EXPERTS
    what  is the difference betweemn T.CODES  SE10  SE09 SE01

    Hi,
    SE09 is the transaction code for workbench organiser.Workbench organiser is the set of utilities for development change management.All Development changes are tracked via Workbench organiser.
    SE10 is for Customosing organiser.Customising organiser is the set of tools for customising change management.All customizing changes are tracked via customising organiser.
    SE01
    Transport Organizer (extended view)
    You call the initial screen of the extended view of the Transport Organizer with Transaction SE01. You can access this transaction from the standard Transport Organizer by choosing Goto ® Transport Organizer (extended view).
    Provided you have configured the system correctly, transportable change requests and Customizing requests automatically ensure that the subsequent systems are supplied consistently with your development work.
    Extra transport types are provided in the extended view to meet any special requirements:
    Piece Lists
    Client Transports
    Delivery Transports (SAP/Partner ® Customer)
    Individual display
    Unlike the Workbench and Customizing requests, there are no automatically assigned transport routes for the transport types described here. Similarly, these requests do not follow configured deliveries.
    Reward If Helpful
    Jagadish

  • What's the right version of codes for this hybrid 6509?

    I have a 6509 running CatOS on the Sup720 and IOS on the MSFC. I''ll be putting in a 2nd Sup720 as the standby, but not sure what are the right version of codes to load. Here is the hardware info and the Cisco release notes I found:
    Active Sup: SUP720-BASE with PFC3A. Cisco recommends 8.3.3, minimum 8.1.1.
    Standby Sup: SUP720-3B with PFC3B. Cisco recommends 8.4.2, minimum 8.3.7.
    6548-GE-TX: Cisco recommends 7.6.9, minimum 7.6.1.
    6516A-GBIC: Cisco recommends 7.6.9, minimum 7.5.1.
    Thanks for any help.
    Gary

    This is not a supported Redundancy configuration:
    Understanding How Supervisor Engine Redundancy Works
    Note The redundant supervisor engines must be of the same type with the same model feature card. The WS-X6K-SUP1-2GE and the WS-X6K-SUP1A-2GE (both without PFCs) are compatible for redundancy. For supervisor engines with PFCs, the PFCs must be identical for redundancy (two PFCs, two PFC2s, two PFC3As, two PFC3Bs, or two PFC3BXLs).
    http://www.cisco.com/univercd/cc/td/doc/product/lan/cat6000/sw_8_4/confg_gd/redund.htm#wp1079325

  • What is the 4-digit pin code?

    What is the 4-digit pin code?

    Apparently it is a bug with OSX Mavericks. See this discussion:
    https://discussions.apple.com/message/23641556#23641556?ac_cid=tw123456#23641556
    Sorry,
    GB

  • What is the factory setting pin code for my ipod touch?

    im looking to make a purchase in app on my ipod touch and i need to switch off the restrictions under general settings. in order to this i need the pin code which is 4 digits. this must be factory set as ive not set it previously.
    thanks

    A: what is the factory setting pin code for my ipod touch?

    There is no default setting. You have to set the passcodes. If you cannot remember them, then see:
    If you cannot remember the passcode, you will need to restore your device using the computer with which you last synced it. This allows you to reset your passcode and resync the data from the device (or restore from a backup). 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. Refer to Updating and restoring iPhone, iPad and iPod touch software.
    Try restoring the iOS device if backing up and erasing all content and settings doesn't resolve the issue. Using iTunes to restore iOS devices is part of standard isolation troubleshooting. Restoring your device will delete all data and content, including songs, videos, contacts, photos, and calendar information, and will restore all settings to their factory condition.
    Before restoring your iOS device, Apple recommends that you either sync with iTunes to transfer any purchases you have made, or back up new data (data acquired after your last sync). If you have movie rentals on the device, see iTunes Store movie rental usage rights in the United States before restoring.
    Follow these steps to restore your device:
    Verify that you are using the latest version of iTunes before attempting to update.
    Connect your device to your computer.
    Select your iPhone, iPad, or iPod touch when it appears in iTunes under Devices.
    Select the Summary tab.
    Select the Restore option.
    When prompted to back up your settings before restoring, select the Back Up option (see in the image below). If you have just backed up the device, it is not necessary to create another.
    Select the Restore option when iTunes prompts you (as long as you've backed up, you should not have to worry about restoring your iOS device).
    When the restore process has completed, the device restarts and displays the Apple logo while starting up:
    After... [Show more]

    Read other 6 answers

  • I can't send email from my iPad. I am from Australia but on holidays in Greece. Does anyone know what is the smtp outserver for Greece that I should use?

    I can't send email from my iPad. I am from Australia but on holidays in Greece. Does anyone know what is the smtp outserver for Greece that I should use?

    As you haven't told us who your email provider is, no.
    There isn't an SMTP server for Greece - it is either provided by your email provider, or the Internet provider you are connected through.

Maybe you are looking for

  • How do I sync MacBook Pro to my Mac Pro (everything - not just mail, but every single file.

    I can hook my laptop to time machine when I get home, then I can use migration assistant to put exact data on user account on my Mac Pro desktop computer, but that is silly. 10 years ago or more, I just connected the laptop with my desktop computer a

  • Same dimensions in one application

    Hi experts; My question is about the same dimensions in one application. I have customer dimension and customer_z dimension.There is no problem when enter bpc for excel. If i want to open dynamic table screen or  evdre function in blank sheet , the s

  • How to get Locale from Character.UnicodeBlock

    Hi All, For Ex: I enter Japanese language (Hiragana/KATAKANA characters) in the text field. My expected result is Locale: 'ja' (this is belongs to Japaneses language) How to get locale value from Character.UnicodeBlock. or we have any other way to ge

  • DST changing

    Database - 10.2.0.3 Two node RAC Storage - ASM OS - AIX 5.3L We have DST enabled at OS level on both the nodes in RAC enviornment, because of which server timigs have gone one hour behind IST (Indian Standard Time). So we need to remove DST settings

  • TS3367 Change facetime image size on iPad 4

    Using FaceTime over wifi how do I obtain full size image of person called and they can view full image on there device iPhone 4 have archived once but don,t know how But now cannot see image only voice So have reverted back to using iPhone 4S to iPho