How to replace this code!!!!????? please Help!!!!!!!!!!!

How I can replace following code as getServlet method is deprecated.
getServletContext().getServlet("trapenv");

this is Authenticator.java
package trap.content;
import javax.servlet.*;
import javax.servlet.http.*;
import trap.*;
import trap.publishing.*;
import java.io.*;
import java.util.Properties;
import java.util.Hashtable;
@SuppressWarnings("serial")
public class Authenticator
    extends TRAPServletBase{
    Default constructor
    public Authenticator() {
        super();
    public final void doGet(HttpServletRequest req, HttpServletResponse res)
       throws ServletException, IOException
         doPost(req,res);
    Overrides the default doGet() to perform login function.
    @param req HttpServletRequest that encapsulates the request to the servlet.
    @param res HttpServletResponse that encapsulates the response from the servlet.
    @exception javax.servlet.ServletException
               If the request could not be handled.
    @exception java.io.IOException
               If there is an error writing to the output stream.
    @SuppressWarnings({ "unchecked" })
     public final void doPost(HttpServletRequest req, HttpServletResponse res)
        throws ServletException, IOException {
        try {
            res.setContentType("text/html");   
            PrintWriter out = getServletPrintWriter(res);
            System.out.println("getting properties now");
       //  Properties properties = getTRAPEnvironment().getProperties();
           Properties properties =   (Properties) getServletConfig().getServletContext().getAttribute("TRAPProperties");
            System.out.println("got properties now");
            String loginTemplate = properties.getProperty("TRAP.template.login");
            String expiredTemplate = properties.getProperty("TRAP.template.expired");
            String mainTemplate = properties.getProperty("TRAP.template.mainFrameSet");
            String userid = req.getParameter("userid");
            String passwd = req.getParameter("passwd");
            if(userid == null) {
                userid = "";
            if(passwd == null) {
                passwd = "";
            // Overall properties are passed through to HttpTRAPConnection
            // to initialize ORB...
            Properties connectionProperties = getProperties();
            HttpTRAPConnection conn = new HttpTRAPConnection(
                connectionProperties, req.getSession(true)
            TRAPSession session = conn.login(userid, passwd);
            if(session.isPasswordExpired()) {
                Hashtable table = new Hashtable();
                table.put("MESSAGE","Your password has expired.<BR>" + "Please enter a new password now.");
  //              printTemplate(expiredTemplate, out, table);
            } else {
                Hashtable myData = new Hashtable();
                myData.put("DEFAULT_SERVLET",session.getMenu().defaultMenuItem.url);
   //             printTemplate(mainTemplate, out,myData);
        } catch(AccessViolation access) {
            HTMLElement element = HTMLElementFactory.getHTMLElement(
                HTMLElementFactory.ERROR_ELEMENT
            element.printHTML(getServletPrintWriter(res), access);
        } catch(Exception error) {
            printError(getServletPrintWriter(res), getClass().getName(), error);
}this is TRAPServletBase
package trap.publishing;
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import aif.persist.DbError;
import trap.*;
@SuppressWarnings("serial")
public class TRAPServletBase
    extends HttpServlet {
      @SuppressWarnings("unused")
     private CachedFileTemplateManager templateMgr = null;
    Default constructor, calls default HttpServlet constructor.
    public TRAPServletBase() {
        super();
    Returns the TRAPSession object for this session, or throws
    an AccessViolation if the session has not logged in.
    @param req The HttpServletRequest for this servlet thread.
    @return TRAPSession for the servlet thread.
    @exception trap.AccessViolation
               If the user has not yet logged in.
    @exception aif.persist.DbError
     if a database error occurs
    public TRAPSession getTRAPSession(HttpServletRequest req)
        throws AccessViolation, DbError {
        HttpTRAPConnection conn = HttpTRAPConnection.getInstance(req);
        if(conn == null) {
            throw new AccessViolation(AccessViolationType.Authentication);
        } else {
            return conn.getTRAPSession();
    Returns the TrapEnvironmentServlet.
    @return The TrapEnvironmentServlet.
    @exception javax.servlet.ServletException
               If there is an error retrieving the environment.
     public TRAPEnvironmentServlet getTRAPEnvironment()
        throws ServletException {
          System.out.println("getting TRAPEnvironmentServlet");
        return (TRAPEnvironmentServlet)
     //     getServletContext().getServlet("trapenv");
      //       getServletContext().getNamedDispatcher("trapenv");
   //  getServletContext().getAttribute ("trapenv") ;
     getServletContext().getRequestDispatcher("/servlet/trapenv");
    Prints a template as if getTemplateManager().getTemplate().printHTML()
    were called with null data.
    @param templateName The name of the template to retrieve.
    @param out          The output stream to print to.
    @exception javax.servlet.ServletException
               If there is an error printing the template.
    public void printTemplate(String templateName, PrintWriter out)
        throws ServletException {
        try {
            HTMLElement element = null;
            element = getTRAPEnvironment().getTemplateElement(templateName);
            element.printHTML(out, null);
        } catch(TemplateNotFoundException tnfe) {
            throw new ServletException(tnfe.getMessage());
    Prints a template as if getTemplateManager().getTemplate().printHTML()
    were called.
    @param templateName The name of the template to retrieve.
    @param out          The output stream to print to.
    @param data         The data object for the template.
    @exception javax.servlet.ServletException
               If there is an error printing the template.
    public void printTemplate(String templateName, PrintWriter out, Object data)
        throws ServletException {
        try {
            HTMLElement element = null;
            element = getTRAPEnvironment().getTemplateElement(templateName);
            element.printHTML(out, data);
        } catch(TemplateNotFoundException tnfe) {
            throw new ServletException(tnfe.getMessage());
    Logs the error message to the servlet logging mechanism and
    prints a standard error page to the output stream specified.
    @param out   The print writer to render the page to.
    @param where The class/location where the error occurred.
    @param error The exception which caused the error.
    public void printError(PrintWriter out, String where, Exception error)
        throws ServletException, IOException {
        log(error, where);
        HTMLElement element = HTMLElementFactory.getHTMLElement(
            HTMLElementTypes.ERROR_ELEMENT
        element.printHTML(out, error);
    Utility method that takes the HttpServletResponse, retrieves the output
    stream, and creates a new PrintWriter to write to it.
    @param res The HttpServletResponse to retrieve the output stream from.
    @return The PrintWriter that writes to the response's output stream.
    @exception java.io.IOException
               If the output stream cannot be obtained from the
               HttpServletResponse.
    public PrintWriter getServletPrintWriter(HttpServletResponse res)
        throws IOException {
        return new PrintWriter(new OutputStreamWriter(res.getOutputStream()));
    Returns the value of the specified property from the properties file
    that was loaded on initialization.
    @param propertyName The name of the property to retrieve.
    @return The value of the specified property.
    @exception javax.servlet.ServletException
               If the TRAPEnvironment cannot be found.
    @exception java.lang.IllegalArgumentException
               If the property is not found.
    public String getProperty(String propertyName)
        throws ServletException {
        return getTRAPEnvironment().getProperty(propertyName);
    Returns the value of the specified property from the properties file
    that was loaded on initialization.
    @param propertyName The name of the property to retrieve.
    @param required     <code>true</code> if the property must exist.
    @return The value of the specified property.
    @exception javax.servlet.ServletException
               If the TRAPEnvironment cannot be found.
    @exception java.lang.IllegalArgumentException
               If the property is not found, and it was required.
    public String getProperty(String propertyName, boolean required)
        throws ServletException {
        return getTRAPEnvironment().getProperty(propertyName, required);
    Returns the properties object loaded at initialization.
    @return The properties object.
    @exception javax.servlet.ServletException
               If the TRAPEnvironment cannot be found.
    public Properties getProperties()
        throws ServletException {
          TRAPEnvironmentServlet t = new TRAPEnvironmentServlet();
        return t.getProperties();
    public void log(String reason) {
        try {
            super.log(reason);
        } catch(Exception error) {
            System.err.println("Unable to use servlet logging for:");
            System.err.println(reason);
    public void log(Exception why, String reason) {
        try {
            getServletContext().log(reason);
        } catch(Exception error) {
            System.err.println("Unable to use servlet logging for:");
            System.err.println(reason);
            why.printStackTrace();
and this is TRAPEnvironmentServlet
package trap.publishing;
import java.io.*;
import java.util.Hashtable;
import java.util.Properties;
import javax.servlet.*;
import javax.servlet.http.*;
@SuppressWarnings("serial")
public class TRAPEnvironmentServlet
    extends TRAPServletBase
    implements TemplateManager {
    The system configuration information.
    private Properties properties  = null;
    The template manager that loads templates.
    private CachedFileTemplateManager templateMgr = null;
    private boolean initialized = false;
    private final static String TOKEN_NAME        = "MESSAGE";
    private final static String TOKEN_DEFAULT_REPLACEMENT =
        "Enter your user id and password to log into TRAP";
    Construct the servlet.
    public TRAPEnvironmentServlet() {
        super();
    Initialize the servlet.
    @param config The servlet config object, containing the init parameter
                  TRAP.properties=[path].
    @exception javax.servlet.ServletException
               If there is an error initializing the servlet.
    public void init(ServletConfig config)
        throws ServletException {
       System.out.println("in the init of TRAPEnvironmentServlet");
         if(initialized) {
            System.err.println("attempt made to reinitialize servlet.");
            return;
        super.init(config);
        try {
            if(config == null) {
                throw new ServletException(
                    "ServletConfig is not available for initialization."
         // String propertiesPath = config.getInitParameter("TRAP.properties");
            InputStream is = getClass().getClassLoader().getResourceAsStream("config/trap.ini");
          //  properties.load(is);
       /*     if(propertiesPath == null || propertiesPath.equals("")) {
                throw new ServletException(
                    "No initialize parameters specified for TRAPEnvironmentServlet."
            properties = new Properties();
            try {
                 //properties.load(new FileInputStream(propertiesPath));
                  properties.load(is);
                 String templateRoot = properties.getProperty("TRAP.templateRoot");
                String loadAllStr   = properties.getProperty("TRAP.loadAllTemplates");
                boolean loadAll     = false;
                if(loadAllStr != null) {
                    loadAll = new Boolean(loadAllStr).booleanValue();
                templateMgr = new CachedFileTemplateManager(templateRoot, loadAll);
                config.getServletContext().setAttribute("TRAPProperties", properties);
            } catch(java.io.IOException ioe) {
                log(ioe, "Unable to load properties file.");
            } catch(TemplateNotFoundException tnfe) {
                log(tnfe, "Unable to load one or more templates.");
        } catch(Exception error) {
            log(error, "An error occurred while initializing the servlet.");
    //    config.getServletContext().setAttribute("TRAPProperties", properties);
        initialized=true;
    public void doGet(HttpServletRequest req, HttpServletResponse res)
        throws ServletException, IOException {
        Hashtable<String, String> table = new Hashtable<String, String>();
        String why = req.getParameter("why");
        if(why == null) {
            table.put(TOKEN_NAME, TOKEN_DEFAULT_REPLACEMENT);
        } else {
            table.put(TOKEN_NAME, why);
        res.setContentType("text/html");
        Properties properties = this.getProperties();
        String loginTemplate = properties.getProperty("TRAP.template.login");   
        this.printTemplate(loginTemplate, getServletPrintWriter(res), table);
    public void doPost(HttpServletRequest req, HttpServletResponse res)
        throws ServletException, IOException {
        PrintWriter out = new PrintWriter(new OutputStreamWriter(res.getOutputStream()));
        out.println("<HTML>");
        out.println("  <BODY>");
        out.println("    <CENTER>");
        out.println("      <H1>");
        out.println("        This servlet should not be reference by a browser.");
        out.println("      </H1>");
        out.println("    </CENTER>");
        out.println("  </BODY>");
        out.println("</HTML>");
        out.flush();
    Returns the value of the specified property from the properties file
    that was loaded on initialization.
    @param propertyName The name of the property to retrieve.
    @return The value of the specified property.
    @exception java.lang.IllegalArgumentException
               If the property name is not found.
    public String getProperty(String propertyName) {
        return getProperty(propertyName, true);
    Returns the value of the specified property from the properties file
    that was loaded on initialization.
    @param propertyName The name of the property to retrieve.
    @param required     <code>true</code> if the property must exist.
    @return The value of the specified property.
    @exception java.lang.IllegalArgumentException
               If the property name is not found, but was required.
    public String getProperty(String propertyName, boolean required) {
        String property = properties.getProperty(propertyName);
        if(required && property == null) {
            throw new IllegalArgumentException(
                propertyName + " was not found in the properties object."
        return property;
    Returns the properties object loaded at initialization.
    @return The properties object.
    public Properties getProperties() {
         System.out.println("getting properties now");
        return properties;
    Wraps access to the template manager, returning the template root.
    @return The template root.
    public String getTemplateRoot() {
        return templateMgr.getTemplateRoot();
    Wraps access to the template manager, sets the new template root.
    @param root The new template root.
    public void setTemplateRoot(String root) {
        templateMgr.setTemplateRoot(root);
    Wraps access to the template manager, returns the
    template associated with the specified name.
    @param name The name of the template to return.
    @return The HTMLElement representing the loaded template.
    @exception trap.publishing.TemplateNotFoundException
               If the template cannot be successfully loaded.
    public HTMLElement getTemplateElement(String name)
        throws TemplateNotFoundException {
        return templateMgr.getTemplateElement(name);
}this is my code
thanks for help

Similar Messages

  • I can't forcequit firefox and shutdown my computer, nor can I open up any other programs or applications. Does anyone know how to fix this? please help this poor soul.

    I can't forcequit firefox and shutdown my computer, nor can I open up any other programs or applications. Does anyone know how to fix this? please help this poor soul.

    You can force quit applications
    >Force quit
    if that does not work you can force quit a computer shut down by hold the power button for an extended period.

  • After upgrading my iPhone 5 to iOS 7 iTunes will not stay open once the app launches...does anyone know how to fix this? Please Help :)

    After upgrading my iPhone 5 to iOS 7 iTunes will not stay open once the app launches...does anyone know how to fix this? Please Help :)

    I have exactly the same problem. I too have tried everything that's been suggested, but still not working. Don't really what to do next? I have an iPhone 4S.

  • Can Any one tell me. System considering the Sales District also in Delivery Split which is not in standard. How to resolve this. Please help me

       Hi
    Can Any one tell me. System considering the Sales District also in Delivery Split which is not in standard. How to resolve this. Please help me

    Dear Srikanth,
    I am not sure, if my answer will satisfy you, but anyway I will try:
    Field Sales District is technically called BZIRK. In delivery structure is this field located in header (table LIKP), what cause split, if origin document (Sales Order) has different Sales District in some positions. This is standard program behavior. Basically it shouldn't happen, as value is taken from customer master (Sold-to Party) and copied to header and items of sales document. But user can manually changer for particular items.
    Well, to solve situation you have few ways:
    1. Do not allow users to change value on items - can be managed by organizational decision or by authorization concept.
    2. If there is a reason to have different Sales District in items, then it can be managed in in routines for copy control between sales and delivery documents (delete value of BZIRK for all items for instance). But then will be this information lost for further usage. It seems to me to invoice is value copied directly from sales order (field VBRP-BZIRK_AUFT) then it mustn't be a critical for analyses.
    3. Your situation also can happen if you wants to collect more sales documents to one delivery. In this case can be that Sales District is different for same customer in different sales order (even seems to be little bit strange). Then solution from point 2 can help as well, I believe.
    Best Regards
    Arnost

  • I'm not sure how to explain this but PLEASE HELP! ...

    okay so I'm not quite sure if anyone is going to understand what I'm talking about...
    But for some reason when someone adds me to skype (sends me a request) it says "Hi, White Asian!... so and so wants to add you.. blahblah etc." It says something other than my current user name, or my current display name, or my first and last name. I have know idea why it says this. I've had skype for a long time now and several years ago I believe that I changed my display name to "White Asian" as a joke. It hasn't been that for a long time now and I have no idea why it shows up like that when someone sends me a request on skype. I've tried changing every possible thing to do with a name in the profile/user settings to no avail. THe only time it shows up (that I'm aware of) is when someone adds me.
    So if you have any idea how I can fix this or why it's happening please let me know immediately!
    Its driving me mad because I don't know how to fix this!
    Thanks!
    Attachments:
    Untitled.png ‏11 KB

    Try this website. Yes its sprint but it might help you. http://support.sprint.com/support/article/Troubleshoot_issues_related_to_your_Sa msung_Galaxy_S_II_not_turning_on_completely/WTroubleshootingGuide_542_GKB51165-T rend?INTNAV=SU:DP:OV:TSIS:SamsungGalaxySIi-AsYouGo:TroubleshootIssuesRelatedToYo urSamsungG

  • How to implement this? please help

    In my java class, I have a string array called strarray which hold serveral elements, some of the elements have the same value , for example, the first element is "swimming", the forth element is also swimming. I use a for loop to get each element and give it to arrayHolder which is also a array with the same size as strarray. Now, what I want is: I defined a Vector called element I want this vector to filter out the element from arrayHolder, get the name of non-duplicated name from the arrayHolder, the result should be inside the element vector (swimming,walking,running,dancing), no duplicated name. My code is like follows:
    import java.util.*;
    import java.io.*;
    public class arrayTest{
    public static void main(String arg[]){
    String[] strarray={"swimming","running","walking","swimming","dancing","running"};
    String[] arrayHolder=new String[strarray.size];
    Vector element=new Vector();
    for(int i=0;i<strarray.length();i++){
    arrayHolder[  i  ]=strarray[  i  ];
    /* What should I do next to get the non-duplicated element from arrayHolder and
    * add them into the element vector????
    I did not finnish it, since I am a little bit confused, how to implement? Need some help. thanks.
    Message was edited by:
    Mellon

    Not sure if I see the use of strArray & arrayHolder (I've not looked at your code - you might use code tags next time (check the "code" button above the message textarea), but may I suggest using a Map of some sort instead of a Vector? It will prevent duplicates for you.
    Good Luck
    lee

  • I bought a 2nd gen ipod touch without software over the internet, i cannot use any apps as i need the latest version of iOS and i don't know how to get this. Please help.

    please help

    decy95 wrote:
    When I clicked 'check for update' it just says that 2.2.1 is the current version
    It will - until you purchase iOS 3.
    Follow the link that stedman provided, and on that page, instead of choosing the link to iOS4, choose Purchase the iOS 3.1 Software Update directly from the iTunes Store. When you choose it, iTunes will open to the store and page for buying (purchasing) the update. It doesn't cost much (a few dollars although I cannot recall precisely) and it is the only way to update from you current iOS version. Once you do that, a further update to iOS 4.2.1 is free. That particular update may occur straight away, I don't know.
    By the way, iOS 4.2.1 is as high as the 2nd generation Touch can go, but don't let that put you off. I have one and although I cannot install the BBC iPlayer (because it requires iOS 5) there are many Apps that work perfectly well with iOS 4.2.1.
    decy95:
    I've just read the another discussion (to which you contributed), in which Illaass suggests that you may have a 1st generation Touch. If that is so, then your iPod will only be able to update to iOS 3.1.3. This will still need to be purchased, but be aware that many Apps require iOS 4 or higher, so your options would be more limited. So follow the link Illaass provided to confirm which model you have.
    Message was edited by: the fiend

  • TS3367 I'm having trouble making Facetime calls with my iphone 4s.  I can receive them; however, I can not make them.  Any ideas of how to fix this? PLEASE HELP!!!  Thank you!

    I am having a problem making phone calls using Facetime.  I was able to use it on two separate occassions; however, now I can not.  I can receive calls, but can not make them.  Not sure what to do.  Any ideas?  Any help would be greatly appreciated.
    Thank you VERY much!

    There are a lot of posts in the forums today with people having problems with iMessage.   There was also a published outage yesterday, so it's possible there are still some issues that may be impacting you both.
    I would just wait it out - I'm sure it will be sorted out soon.

  • HOw To Do This Idea :: Please Help

    Hello all folks .. i create employees table .. contain Name n Job n salary n Hiredate
    and i design the form like module the thing i want that when i insert new employees data that is similer to other i intserted before it came out as a pop menu so i can choose it so example if i insert in the Name: jean and save it then i type in the name item the j character it show me that there was jean inserted befor n so on i can choose it if it was what i want to insrt .. hope u got the idea n need the answer ......... thnx fellas

    Maybe populate some record groups with data when inserting? when doing a new insert, search in the record group after e.g. 'J' and display the result...
    regards
    Christian

  • I have an update required for Evernote in my Imac app store, but cannot find how to get this update. It says to sign in with my emailm address, but I cannot find a way to do this.  Please help!!

    I recently downloaded Mlountain Lion on my Imac. It shows that I have an update for Evernote that should be downloaded, but I cannot find out how to complete this update. It asks for me to sign in with my email address, but does not show how to do this.  Please help!

    I have done exactly what you said. When I check "update", a screen  drops down that asks that I enter my email address to continue........but i cannot find any way to do this.
    In the past, all I would do is check "update", and the update would take place. Since I upgraded to Mountain Lion, this has changed, and i do not know how to do this simple thing.......the app store shows an update is due to be updated, but i cannot find out how to do it.

  • I can't open Safari. It keeps giving an alert that says, "Suspicious Activity might have been detected." How do I fix this?Please help. thanks!

    Safari won't work. It flashes an alert. Alert says that a Suspicious Activity Might Have been Detected. Major Security Issue. How do i fix this? Please help. Thanks!

    You may have installed a variant of the "VSearch" ad-injection malware. Follow Apple Support's instructions to remove it.
    If you have trouble following those instructions, see below.
    Malware is always changing to get around the defenses against it. This procedure works as of now, as far as I know. It may not work in the future. Anyone finding this comment a few days or more after it was posted should look for a more recent discussion, or start a new one.
    The VSearch malware tries to hide itself by varying the names of the files it installs. To remove it, you must first identify the naming pattern.
    Triple-click the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination  command-C:
    /Library/LaunchDaemons
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder named "LaunchDaemons" may open. Look inside it for two files with names of the form
              com.something.daemon.plist
    and
               com.something.helper.plist
    Here something is a variable string of characters, which can be different in each case. So far it has always been a string of letters without punctuation, such as "cloud," "dot," "highway," "submarine," or "trusteddownloads." Sometimes it's a meaningless string such as "e8dec5ae7fc75c28" rather than a word. Sometimes the string is "apple," and then you must be especially careful not to delete the wrong files, because many built-in OS X files have similar names.
    If you find these files, leave the LaunchDaemons folder open, and open the following folder in the same way:
    /Library/LaunchAgents
    In this folder, there may be a file named
              com.something.agent.plist
    where the string something is the same as before.
    If you feel confident that you've identified the above files, back up all data, then drag just those three files—nothing else—to the Trash. You may be prompted for your administrator login password. Close the Finder windows and restart the computer.
    Don't delete the "LaunchAgents" or "LaunchDaemons" folder or anything else inside either one.
    The malware is now permanently inactivated, as long as you never reinstall it. You can stop here if you like, or you can remove two remaining components for the sake of completeness.
    Open this folder:
    /Library/Application Support
    If it has a subfolder named just
               something
    where something is the same string you saw before, drag that subfolder to the Trash and close the window.
    Don't delete the "Application Support" folder or anything else inside it.
    Finally, in this folder:
    /System/Library/Frameworks
    there may an item named exactly
                v.framework
    It's actually a folder, though it has a different icon than usual. This item always has the above name; it doesn't vary. Drag it to the Trash and close the window.
    Don't delete the "Frameworks" folder or anything else inside it.
    If you didn't find the files or you're not sure about the identification, post what you found.
    If in doubt, or if you have no backups, change nothing at all.
    The trouble may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • Sir, We have around 500 items as Insurance Spares in the stores. These spares are checked once in 6 months for their healthiness, storage, etc with a special checklist. We want this checklist an schedule in SAP ( MM). How to do it? Please help.

    Sir, We have around 500 items as Insurance Spares in the stores. These spares are checked once in 6 months for their healthiness, storage, etc with a special checklist. We want this checklist an schedule in SAP ( MM). How to do it? Please help.We are presently doing it as similar to PM schedule ( PM module) but want it in MM module.

    Hi Prerna
    Please refer the this doc ...it might help you
    http://www.erptips.com/Samples/ERPtips-SAP-Training-Manual-SAMPLE-CHAPTER-from-Basic-Quality-Management.pdf
    and kindly update the status if it works or not
    Regards
    Partha

  • When i try to boot itunes, screen goes black and a message pops up and says not compatible with the visual elements. how do i fix this? itunes wont even open at this point. please help. thanks :)

    When i try to boot itunes, screen goes black and a message pops up and says not compatible with the visual elements. how do i fix this? itunes wont even open at this point. please help. thanks

    Let's first try the following document, only be sure that none of the boxes in the compatibility mode tab are checked (not just the compatibility mode box itself):
    iTunes for Windows: How to turn off Compatibility Mode

  • I accidentally dropped macbook air that was in a book bag. The keyboard is working because I can see the light but the screen is black and it won't turn off. How should I fix this? Please Help ME!!

    I accidentally dropped my friend's macbook air that was in a book bag. The keyboard is working because I can see the light but the screen is black and it won't turn off. How should I fix this? Please Help ME!!
    I tried to turn it off and it didn't work... and I held on to the shift key too and it still doesn't work..
    Please help me..

    Accidental damage is not covered under Apple warranty.  And it seems there is much accidental damage.  Only a Genius Bar tech looking at it can tell how much it will cost to repair.
    Cost to repair will be high, I suspect (though Genius Bar will confirm/deny.
    There is no gentle way to say this sir/ma'am ... someone will need to pay for your friend's MBA repairs.

  • I downloaded Itunes to my computer today to update my ipod's ios (4.2.1 yes i know im way behind) but when i click check for updates it tells me my ios is the current one. How can i fix this? please help!

    I downloaded Itunes to my computer today to update my ipod's ios (4.2.1 yes i know im way behind) but when i click check for updates it tells me my ios is the current one. How can i fix this? please help!

    and at the same time....
    I guess you can be glad that you at least aren't "way behind"!
    Cheers,
    GB

Maybe you are looking for