Can someone modify this program plzzzz help................

hi i am building a small application n i need ur help . I want to take password from console in hidden format.
as i am not a good programmer plzzzz dont advice to use passwordfield or Jpasswordfield or setEcho or setEchoChar as i hav tried it .....as i am taking input from console...... if its possible plzzzzz help me
here is the code
import java.io.*;
class login
     public static void main(String[] args) throws IOException
          String name,password1="",password2="",login1="",login2="";
          char ch12[]=new char[40];
          File f=new File("PASSWORD.txt");
          BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
          if((f.exists())==true)
          System.out.println("Enter User name");
     name=br.readLine();
     System.out.println("ENTER THE PASSWORD");
     password1=br.readLine();
     login1=name+":~"+password1;
          else
System.out.println("WELCOME TO VOS FOR THE TIME PLZ ENTER THE USER NAME N PASSWORD");
System.out.println("Enter User name");
     name=br.readLine();
System.out.println("ENTER THE PASSWORD");
     password1=br.readLine();
System.out.println("plz CONFiRM THE ENTERED PASSWORD");
     password2=br.readLine();
while(!(password1.equals(password2)))
System.out.println("SORRY U HAVE Entered TWO DIFFERENT PASSWORDS");
System.out.println("plz ENTER THE PASSWORD again");
          password1=br.readLine();
System.out.println("plz CONFORM THE ENTERED PASSWORD");
     password2=br.readLine();
login1=name+":~"+password1;
byte ch[]=login1.getBytes();
     FileOutputStream out=new FileOutputStream(f);
     out.write(ch);
     out.close();
System.out.println("USER NAME AND PASSWORD IS SAVED");
     System.out.println("ENTER USERNAME AND PASSWORD TO LOGIN");
     System.out.println("Enter User name");
     name=br.readLine();
     System.out.println("ENTER THE PASSWORD");
     password1=br.readLine();
     login1=name+":~"+password1;
          FileInputStream fis=new FileInputStream(f);
          int x=fis.available();
          for(int i=0;i<x;i++)
          ch12=(char)fis.read();
          login2=login2+ch12[i];
     if(login1.equals(login2))
System.out.println("LOGIN IS SUCCCESSFUL");
else
     System.out.println("INCORRECT USER NAME OR PASSWORD");
do
System.out.println("AUTHENTICATION FAILS");
System.out.println("PLZ ENTER THE USER NAME AGAIN");
     name=br.readLine();
System.out.println("PLZ ENTER THE PASSWORD AGAIN");
password1=br.readLine();
login1=name+":~"+password1;
          if(login1.equals(login2))
System.out.println("LOGIN IS SUCCESSFUL");
          while(!(login1.equals(login2)));
Message was edited by:
omerali0527

You need the latest JDK for this:
http://java.sun.com/javase/6/docs/api/java/io/Console.html
look at the readPassword() method.
Next time please
- use code tags (http://forum.java.sun.com/help.jspa?sec=formatting);
- stop using that silly sms-language (plz = please, u = you, n = and).
Thanks

Similar Messages

  • Can someone execute this program?

    Can someone execute this program for me and tell me if it works correctly? My DOS is acting funny.
    look for these things:
    - accepts input from keyboard and places them into an array
    - continues to accept names until a blank name is entered
    - array can contain up to 15 names
    - after all names are entered, it displays the contents of the array
    and writes them to a file
    - output should be in 2 columns
    if you see a problem, please tell me how to fix it.
    import java.io.*;
    * the purpose of this program is to read data from the keyboard
    * and put it into a sequential file for processing by ReadFile
    * @author Maya Crawford
    public class Lab0
    * this function will prompt and receive data from the keyboard
    * @return String containing the data read from the keyboard
    * @param BufferedReader that is connected to System.in
    */ (keyboard)
    public static String getData(BufferedReader infile)
    throws IOException
    System.out.println("enter a name");
    return infile.readLine();
    * this is the main program which will read from the keyboard and
    * display the given input onto the screen and also write the data
    * to a file
    * @param Array of Strings (not used in this program)
    public static void main(String[] args)
    throws IOException
    int i;
    String[] outString = new String[16];
    DataOutputStream output=null;
    // this code assigns the standard input to a datastream
    BufferedReader input= new BufferedReader(new InputStreamReader(System.in));
    // this code opens the output file...
    try
    output= new DataOutputStream(new FileOutputStream("javaapp.dat"));
    // handle any open errors
    catch (IOException e)
    System.err.println("Error in opening output file\n"
    + e.toString());
    System.exit(1);
    // priming read......
    for(i=0;i<outString.length;i++)
    outString=getData(input);
    // this is the loop to continue while nnonblank data is entered
    while (!outString.equals(""))
    for(i=0;i<outString.length;i++)
    outString[i]=getData(input);
    outString[i] = input.readLine();
    System.out.println("Name entered was:"+ outString[i]);
    output.writeBytes(outString[i]+"\r\n");
    int rcol=(outString.length+1)/2;
    for(i=0;i<(outString.length)/2;i++)
    System.out.println(outString[i]+"\t"+outString[rcol++]);
    // flush buffers and close file...
    try
    output.flush();
    output.close();
    catch (IOException e)
    System.err.println("Error in closing output file\n"
    + e.toString());
    // say goodnight Gracie...
    System.out.println("all done");

    Ok, here is what I came up with. I commented most of what I changed and gave a reason for changing it. My changes aren't perfect and it still needs to be tweeked. When you run the program you have to hit the enter key every time once before you type a name. When you are done typing names hit the enter key twice and it will output the names entered into the array. Like I said, it isn't perfect, and that part you will need to fix.
    import java.io.*;
    * the purpose of this program is to read data from the keyboard
    * and put it into a sequential file for processing by ReadFile
    * @author Maya Crawford
    public class Lab0
         * this function will prompt and receive data from the keyboard
         * @return String containing the data read from the keyboard
         * @param BufferedReader that is connected to System.in
         */ //(keyboard)
         //On the above line where you have (keyboard), it wasn't commented out in your
         //program and it was throwing a error.
         public static String getData(BufferedReader infile)
         throws IOException
              System.out.println("enter a name");
              return infile.readLine();
         * this is the main program which will read from the keyboard and
         * display the given input onto the screen and also write the data
         * to a file
         * @param Array of Strings (not used in this program)
         public static void main(String[] args)
         throws IOException
              int i;
              String testString; // Created to hold the string entered by the user, because your
                                 // outString array wasn't working for that.
              String[] outString = new String[16];
              DataOutputStream output=null;
              // this code assigns the standard input to a datastream
              BufferedReader input= new BufferedReader(new InputStreamReader(System.in));
              // this code opens the output file...
              try
                   output= new DataOutputStream(new FileOutputStream("javaapp.dat"));
              // handle any open errors
              catch (IOException e)
                   System.err.println("Error in opening output file\n"
                   + e.toString());
                   System.exit(1);
              // priming read......
              testString = " ";  // Initialize testString
              int placeMark = 0; // to input the String entered by the user into the outString
                                 // array, it needs to know which position to enter it into.
              while (!testString.equals(""))
                   testString=getData(input);
                   testString = input.readLine();
                   System.out.println("Name entered was:"+ testString);
                   // Put the testString into the outString[] array.
                   // A lot of the time when you used outString you forgot to use the [x] to indicate
                   // which position you wanted to access.
                   outString[placeMark] = testString;
                   output.writeBytes(testString+"\r\n");
                   placeMark++;
            // Created a do/while loop to display the list of outString.
              int nextEntry = 0;
              do
                   System.out.println(outString[nextEntry]);
                   nextEntry++;
              }while(!outString[nextEntry].equals(""));
              // flush buffers and close file...
              try
                   output.flush();
                   output.close();
              catch (IOException e)
                   System.err.println("Error in closing output file\n"
                   + e.toString());
              // say goodnight Gracie...
              System.out.println("all done");
    }

  • Hi can someone keep this simple for me! my iPhone is due for a renewal. but my old laptop that it is backed up to no longer works! how do i go about saving all my songs pics etc to a new laptop without losing anything? please help!!!

    hi can someone keep this simple for me! my iPhone is due for a renewal. but my old laptop that it is backed up to no longer works! how do i go about saving all my songs pics etc to a new laptop without losing anything? please help!!!

                     Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • I am updating iphoto 9.1 to 9.3 and every time when I clicked for update aps store asked to open it in the account where you purchased. I am using the same account and its available in the purchased item of this account. Can someone resolve this problem.

    I am updating iphoto 9.1 to 9.3 and every time when I clicked for update aps store asked to open it in the account where you purchased. I am using the same account and its available in the purchased item of this account. But in my purchased item library it indicates that you update iPhoto. I am not sure which account the aps store asking. Can someone resolve this problem.

    Contact App Store support. They're the folks who can help with Account issues.
    Regards
    TD

  • CAN SOMEONE FIX THIS????

    Hello, I can't get my program to work at all, I keep getting errors. Can someone please see if they can fix these Exception errors. I've posted tons of topics but I still can't get this program to run.
    I use these text files in the program.
    EVENT.txt
    1 C++ Programmer
    2 Business Management
    STCLASS.txt
    1 Tech Apps
    2 Computer Programming
    3 AP Computer Science
    4 AB Computer Science
    5 AP Biology
    6 AP US History
    STINFO.txt
    34865-Joe Peace-2003-01-02-1-2-3-4-5-6
    89398-John Carr-2003-04-05-1-2-3-4-5-6
    Here is The Actual Program, Can anyone get rid of the Exception Errors:
    //Program Starts Here
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class TrivialApplet extends Applet implements ItemListener, ActionListener
         TextField text1;
         CheckboxGroup checkboxgroup1;
         Checkbox checkbox1, checkbox2, checkbox3;
         Button adder;               //Button in addperson()
         Button cpsubmit;          //Button in clienpart()
         Button quit;               //Button in addperson() and search() - Returns to clientpart() when pressed
         Button ssubmit;               //Button in search()
         int where;                    //'Where' is the current position the user is in the program
         int what;                    //'What' is current checkbox that the user has selected
         int searcher;               //What User Is Searching for (ID, Event, Or Class)
         String line;               //'line' is used when a line is taken from a text file
         PrintWriter fileOut;     //Output to textfile Variables
         BufferedReader fileIn1,fileIn2,fileIn3;     //Inputting from textfile variables
         ******************************************** init() *******************************************************************
         public void init()
              what = 0;
              where = 0;
              searcher = 0;
              quit = new Button("Return To Menu");
              clientpart();
         ******************************************** clientpart() *************************************************************
         public void clientpart()
         removeAll();                                             
         setSize(300,200);
         where = 1;
         setLayout(new GridLayout(4,1));                                        //Sets Layout of Screen
         checkboxgroup1 = new CheckboxGroup();                         
         checkbox1 = new Checkbox("Search For A Person",false,checkboxgroup1);                    //Check Box
         checkbox2 = new Checkbox("Enter New Person Into Database",false,checkboxgroup1);
         cpsubmit = new Button("Submit");
         Label info;
         info = new Label("Select An Option And Press Submit", Label.CENTER);
         add(info);
         add(checkbox1);
         add(checkbox2);
         add(cpsubmit);
         checkbox1.addItemListener(this);
         checkbox2.addItemListener(this);
         cpsubmit.addActionListener(this);
         ******************************************** addperson() **************************************************************
         public void addperson() throws IOException
         setSize(400,300);
         PrintWriter fileOut = new PrintWriter(new FileOutputStream("C:/Documents and Settings/Joe/AP Programs/BPA Database/STINFO.TXT", true));
         where = 2;
         removeAll();                                                            //Remove everything from applet
         Label stat;
         stat = new Label("Select A Field, Enter Info, And Click Submit", Label.CENTER);
         setLayout(new GridLayout(5,1));
         add(stat);
         text1 = new TextField("ID-Name-Graduating Year-Event 1-Event 2-Class 1-Class 2-Class 3-Class 4-Class 5-Class 6");//New TextField
         checkboxgroup1 = new CheckboxGroup();                              //A group of checkboxes, allows only ONE click
         adder = new Button("Submit");                                        //Submit button
         add(text1);                                        
         add(adder);
         add(quit);
         adder.addActionListener(this);                                        //Checks for button actions
         quit.addActionListener(this);
         ************************************************** search() ***********************************************************
         public void search() throws IOException
         setSize(400,300);
         /********************************************** Variables to get info from text files *******************************/
         fileIn1 = new BufferedReader(new InputStreamReader(new FileInputStream("C:/Documents and Settings/Joe/AP Programs/BPA Database/STINFO.TXT")));
         fileIn2 = new BufferedReader(new InputStreamReader(new FileInputStream("C:/Documents and Settings/Joe/AP Programs/BPA Database/EVENTS.TXT")));
         fileIn3 = new BufferedReader(new InputStreamReader(new FileInputStream("C:/Documents and Settings/Joe/AP Programs/BPA Database/STCLASS.TXT")));
         where = 3;                                                                 //User Is At Position '3'.....or search()
         searcher = 0;
         removeAll();                                                            //Remove everything from applet
         /************************************* Creates a label that cannot be edited ***************************************/
         Label stats;
         stats = new Label("Click Field You Wish To Search By, And Click Submit", Label.CENTER);
         setLayout(new GridLayout(6,1));                                        //Makes applet a 6x1 Array for objects
         add(stats);
         checkboxgroup1 = new CheckboxGroup();                              //A group of checkboxes, allows only ONE click
         ssubmit = new Button("Submit");                                        //Submit button
         checkbox1 = new Checkbox("ID",false,checkboxgroup1);          //Sets The First Checkbox into checkboxgroup1
         add(checkbox1);                                                            //Add this to window
         checkbox2 = new Checkbox("Event",false,checkboxgroup1);               
         add(checkbox2);
         checkbox3 = new Checkbox("Class",false,checkboxgroup1);
         add(checkbox3);
         add(ssubmit);
         add(quit);
         /*********************************************** Calls itemStateChanged() when clicked ***************************/
         checkbox1.addItemListener(this);                                   
         checkbox2.addItemListener(this);
         checkbox3.addItemListener(this);
         ************************************************ Cals actionPerformed() when clicked *****************************/
         ssubmit.addActionListener(this);
         quit.addActionListener(this);
         ******************************************** actionPerformed() ********************************************************
         public void actionPerformed(ActionEvent e)
              /************************ clientpart() buttons **********************************************************/
              if (e.getSource() == cpsubmit && what == 1)               //If User wants to search for a person then search()
                   search();
              if (e.getSource() == cpsubmit && what == 2)               //If User wants to Add A New Person then addperson()
                   addperson();               
              /************************ quit button returns to clientpart() *******************************************/
              if (e.getSource() == quit)                                   //If User wants to return to main menu then clientpart()
                   clientpart();
              /************************ addperson() buttons ***********************************************************/
              if (e.getSource() == adder)                                   //Prints New Person To STINFO.txt
                   fileOut.println(text1.getText());
              /************************* search() buttons *************************************************************/
              if (e.getSource() == ssubmit && searcher == 1)          //Shows Everyone In School     
                   while((line=fileIn1.readLine()) != null)
                        System.out.println(line);
              if (e.getSource() == ssubmit && searcher == 2)          //Shows Events With Numbers
                   while((line=fileIn1.readLine()) != null)
                        System.out.println(line);
              if (e.getSource() == ssubmit && searcher == 3)          //Shows Classes With Numbers
                   while((line=fileIn3.readLine()) != null)
                        System.out.println(line);
         ******************************************** itemStateChanged() *******************************************************
         public void itemStateChanged(ItemEvent e)
              /*************************************** Checkboxes in clientpart() *****************************************/
              if (e.getItemSelectable() == checkbox1 && where == 1)               
                   what = 1;
              if (e.getItemSelectable() == checkbox2 && where == 1)
                   what = 2;
              /*************************************** Checkboxes in search() *********************************************/
              if (e.getItemSelectable() == checkbox1 && where == 3)
                   searcher = 1;
              if (e.getItemSelectable() == checkbox2 && where == 3)
                   searcher = 2;
              if (e.getItemSelectable() == checkbox3 && where == 3)
                   searcher = 3;

    An error
    1> exception not caught
    public void actionPerformed(ActionEvent e)
    try{
    <your code>
    catch(Exception ex)
    ex.printStackTrace();
    Explaination: your methods like search() and etc are throwing excpetion but it is not caught so you will have to catch it. The example up here is catching for all but you should tune it a bit to specific exceptions
    A suggestion
    1> your removeall() method is not very nice. Why don't u use card layout and hide the panel instead of removing and adding all again

  • Can I modify standard program RFASLD20?

    Hello experts,
    I Get the modification option when I try to change the program RFASLD20.  Can I modify the program? 
    I actually need to change the program at the FM FI_PAYM_FILE_OPEN , to add the Code page (unicode system).
    Cheers,
    Balaji

    Hi Balaji,
    I've never had a problem with the modification assistant not working. To modify a standard SAP report, you need a modification key from OSS. You should always use the modification assistant to record your amendments. Think carefully about whether there is another way of acheiving what you want -- perhaps using SUBMIT...EXPORTING LIST TO MEMORY, a couple of standard reports, and then merging them into yours.
    You could copy the standard report, and modify the copy, but then you put yourself outside of SAP's maintenance and bug-fix track -- you might end up having to re-copy to incorporate new features. I'd always recommend modification over copying.
    Thats all i can suggest........
    Let me know if you need some help.
    Manas M.

  • I am trying to burn a .mov file from fcp xpress timeline to a dvd.  The popup message I receive prior to inserting the dvd is that I need 20.05 gb of space available on dvd (a 1.25 min). How can I get this program onto a dvd that shows a max of 8.5gb?.

    I am trying to burn a .mov file from fcp xpress timeline to a dvd.  The popup message I receive prior to inserting the dvd is that I need 20.05 gb of space available on dvd (a 1.25 min program). How can I get this program onto a dvd (where the max available gb's  for off the shelf dvds-r)  shows a max of 8.5gb?.  Please help.  Thank You!

    You have posted your question in the Final Cut  Pro X forum. You want to be in this forum instead; https://discussions.apple.com/community/professional_applications/final_cut_expr ess_hd
    Good luck.
    Russ

  • Can someone awnser this question please

    '\ my sound card and my tv is digital but my stereo surround system is analogue but my question is.
    how well to the analogue to digital converts work which i can buy for 40 quid.
    will it give me the same quality digital to digital if im using analogue to digital.
    any help will be much apreciated

    +Re: can someone awnser this question pleased
    deebs986 wrote:
    my sound card and my tv is digital but my stereo surround system is analogue but my question is.
    how well to the analogue to digital converts work which i can buy for 40 quid.
    will it give me the same quality digital to digital if im using analogue to digital.
    any help will be much apreciated
    Depends on
    the analog part of A/D Converter and the converter as well ... there are cheap ones which (if you're audiophile)? may give weak results but normally, those are suitable even being that cheap ... you name ones you have in mind to get more exact answers<
    the source ... D to D is : (lossless (theory))? , A to D (lossy (why, ... read above))<
    jutapa
    @9.56.77.37

  • Hi, I have set up my PC new and want to get my music from my Apple TV back, how can i do this ? Pls Help

    Hi, i set my PC new up, and now i want to get all my music from my apple tv (first generation) back on my PC, how can i do this ? Pls help me.

    Sorry, but you probably can't. You cannot sync from an Apple TV to a PC except for items purchased from the iTunes Store on the Apple TV. You'll need to restore from the backups you made of your iTunes library, which I presume you made?
    Regards.

  • I have Photoshop CS4,on how many computers can you install this program ?

    Hello,
    I got Photoshop CS4. On how many computers can you install this program ?
    Sonste

    The license and activation rights are for a single user on two computers that are not used simultaneously—such as your desktop machine and your laptop.

  • 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

  • I bought Photoshop CS6 Extended(education edition) for Mac. Now ik want to install it on my (new) macbook. I have the product code and serial number. I receive an error code: may be a false copy. How can I install this program?

    In 2012, I bought Photoshop CS6 Extended (education edition) for Mac. Now I want to install it on my new Macbook. I have the correct serial number and product code, but I receive an error message: the software may be a false copy etc....What to do?

    Here is a copy of the error
    This means : Installation failed.
    Verification of the Adobe Software failed
    The product you want to install is no valid Adobe product and seems to be falsified.
    HUgo
    Op 29-aug.-2014, om 23:42 heeft Jeff A Wright <[email protected]> het volgende geschreven:
    I bought Photoshop CS6 Extended(education edition) for Mac. Now ik want to install it on my (new) macbook. I have the product code and serial number. I receive an error code: may be a false copy. How can I install this program?
    created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion
    Hugo please turn off your e-mail signature.
    If your serial number is listed as being valid at http://www.adobe.com/ then I would recommend obtaining a fresh copy of the installation files.  You can find details on how to locate your serial number at Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.
    To download a fresh copy of the installation files please see Download CS6 products.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6685617#6685617
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How can I downgrade iOS 7.0.4 down to iOS 6.1.3? I know there is no Apple licensed way to do so, but can someone find a software that helps downgrade?????

    I know there is no Apple licensed way to do so, but can someone find a software that helps downgrade?????
    Please help me.
    Here is my list of things that suck about iOS 7:
    -motion sickness (i know how to fix that, i already did)
    -buggy
    -glitching out during games
    -apps shut down on me while i use them
    -battery life (apple says) lasts for 48 hours. for me it lasts 2 hours
    -no way to downgrade
    -terrible background choices (kinda lame, but still)
    -apps are neon (ick)
    -terrible design layouts
    -safari ***** (as usual) with its search bar functioning as web address search as well
    -mail badge says i hate not read mail when i have
    -passcode can be surpassed
    -game center push notifications will not go away
    -will not sync with my mac
    APPLE PLEASE LET US DOWNGRADE

    I'm sorry, but Apple does not provide a downgrade path for iOS. Because downgrading is unsupported by Apple we cannot discuss it on these forums.
    You may leave comments at Apple Feedback.

  • How can I get this program to work -- Adobe Send or Adobe SendNow

    How can I get this program to work?  I have used Adobe SendNow successfully for several years and am on automatic renewal and getting nothing but frustration for my money!  I have been unsuccessful at sending anything in the past several months.  Today while working on a deadline and many unsuccessful attempts to upload files, I signed up for a free trial at a competitor in order to get my files sent.  Want a refund  -- or better yet, keep my money and get it to work right again.

    You can't.
    Sounds like it he gave you a stolen iPhone or at least a worthless one.

  • Hi iam using IPHONE4 , when i coonect it to my PC , itunes get hang and don't detect my iphone , how i can sort out this issue plz help me

    Hi iam using IPHONE4 , when i coonect it to my PC , itunes get hang and don't detect my iphone , how i can sort out this issue plz help me

    iPhone, iPad, or iPod touch not appearing in iTunes

Maybe you are looking for

  • How to set up a password or security using wireless g broadband router wrt54g

    Hello Everyone I have had my router for a while and a friend mentioned I should password protect my connection so other people can't lech off of my wireless connection. My roter is installed and connected to my main office computer and I only bought

  • MBP not detecting video camera via FireWire 800

    Hey all, I bought a MacBook Pro late 2008 mainly for video editing. Also, I purchased a 3rd-party FireWire cable because Apple doesn't distribute them here in Singapore (-_-). I've tried many times to connect my 2 video cameras to my Mac and NONE of

  • Solaris 10/services network

    I set up a network using Solaris 10...but was unable to set up the network....so I did sys-unconfig and the network. come up. I am able to assign IP addresses and get them with ifconfig -a. But I am unable to access the internet with the browser.. Al

  • AE uses huge amount of memory (computer low on memory error)

    I'm not sure if its just me, but After Effects seems to use a huge amount of memory. I'm not doing anything fancy: I have a b/w image (2478*774) which I opened in AE. I created a comp (25 frames) with the same dimensions of the image. On my timeline

  • IMG configuration for Cancellation of production order

    Hi all SAP experts, where to see the production order confirmation IMG config setting ? Regards, sim