Please any one help n this issue

ive done a code
aaa = window.showModalDialog(str,window,"dialogheight:280px;dialogwidth:380px;dialogleft:500px;dialogtop:500px;status: No;");
the window should not be dragged to some other position.it should b static at the same position.

hey ive mentioned only the line i got doubt. ive used that line of coding in my jsp page.ok r u clear

Similar Messages

  • Have just down loaded Yosemite over Mountain Lion, Indesign CS5 does not work ( Am dependant on it) although Bridge , Light Room and Elements operate OK How do I solve this rapidly. Can any one help on this issue. Thanks

    Have just down loaded Yosemite over Mountain Lion, Indesign CS5 does not work ( Am dependant on it) although Bridge , Light Room and Elements operate OK How do I solve this rapidly. Can any one help on this issue. Thanks

    Sorry to say it, but I think you can see from Bob's response that there's no way to solve this rapidly.
    Did you take an image of your Mountain Lion install before upgrading to Yosemite? Roll back to that. If you're not in the habit of taking a snapshot of your system before performing operating system upgrades - get in that habit. If you are dependent on anything at all on hour computer, having a reliable backup method in place is essential. If you don't have a Time Capsule, or some other way to run Time Machine onto a disk that's not in your computer, go set that up yesterday.
    If you can't just remove Yosemite and roll back to Mountain Lion for whatever reason, you can partition your drive so that you can install both Yosemite and Mountain Lion on the same drive, and then boot into Mountain Lion when you need to work in CS5. Or you can take your Mountain Lion disc (I assume you have one, no?) and then use it to create a virtual machine in something like VirtualBox to run Mountain Lion from inside Yosemite.

  • HT1338 Update bundle just released for Aperture 3.4.2, Safari 6.0.2, and iPhoto 9.4.2 will not install.  Keep getting error "The operation couldn't be completed. (NSURLErrorDomain error -3001.)(102)"  Any one else having this issue?  Please help.

    Update bundle just released for Aperture 3.4.2, Safari 6.0.2, and iPhoto 9.4.2 will not install.  Keep getting error "The operation couldn't be completed. (NSURLErrorDomain error -3001.)(102)"  Any one else having this issue?  Please help.

    Hi there!
    Yes, same problem too; I've already sent an email to apple support and just received a very vague and unpractical response with "call apple support in your country" as main advice. I've obviously emailed back stating that I need a clearer response and I don not have any intention to spend money calling for support when updates is a free tool. I do also believe this is a probem generated on Apple's end, I just wish they learned to say "sorry, it's us;  working on it!"
    Message was edited by: MacLuc

  • While executing TCode F13 and F13E, purchase order number is not appearing.how it should be displayed into tcode f.13, please any one help me

    While executing TCode F13 and F13E, purchase order number is not appearing.how it should be displayed into tcode f.13, what are the requirements need to display into tcode f.13, please any one help me, i am facing this problem in  production server

    Hi Nattu,
    Please check it will show the PO no under Purchasing doc field
    Check which layout you are applied.
    its should be
    SAP&F124
    Without Specification of Crcy
    Regd,
    Khan.

  • Please any one Help me

    Hi,
    I am prasanna.Please any one help me how to write case statement in dashboard prompt sql results.
    Thanks inadvance
    prasanna Undapalli

    Hi,
    While creating the dashboard prompts, you should be able to see 'Show' option which would have 'All Values' as Default. Change to SQL Results-
    For example- I have taken Customer Status from the samplesales RPD . So the result would come as -SELECT "D1 Customer"."C2 Cust Status" FROM "Sample Sales"
    Now modify the SQL as per requirement.
    For Example- SELECT case when 1=1 then 'YTD' else "D1 Customer"."C2 Cust Status" end FROM "Sample Sales"
    union SELECT case when 1=1 then 'QTD' else "D1 Customer"."C2 Cust Status" end FROM "Sample Sales"
    union SELECT case when 1=1 then 'MTD' else "D1 Customer"."C2 Cust Status" end FROM "Sample Sales"
    This is the syntax and in the 'Default to' put the 'YTD' as specific value so that the report shows the report for the 'YTD'.
    And dont forget to add presentation variable and refer them in the intermediate reports.
    Hope this should solve your problem.
    Regards
    MuRam

  • Hi i am unable to send mail from yahoo mail id.can any one help on this?

    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import java.io.*;
    import java.util.Properties;
    public class MailClient
      public void sendMail(String mailServer, String from, String to,
                                 String subject, String messageBody,
                                 String[] attachments) throws
    MessagingException, AddressException
             // Setup mail server
             Properties props = System.getProperties();
             props.put("mail.smtp.host", mailServer);
             // Get a mail session
             Session session = Session.getDefaultInstance(props, null);
             // Define a new mail message
             Message message = new MimeMessage(session);
             message.setFrom(new InternetAddress(from));
             message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
             message.setSubject(subject);
             // Create a message part to represent the body text
             BodyPart messageBodyPart = new MimeBodyPart();
             messageBodyPart.setText(messageBody);
             //use a MimeMultipart as we need to handle the file attachments
             Multipart multipart = new MimeMultipart();
             //add the message body to the mime message
             multipart.addBodyPart(messageBodyPart);
             // add any file attachments to the message
             addAtachments(attachments, multipart);
             // Put all message parts in the message
             message.setContent(multipart);
             // Send the message
             Transport.send(message);
         protected void addAtachments(String[] attachments, Multipart multipart)
                         throws MessagingException, AddressException
             for(int i = 0; i<= attachments.length -1; i++)
                 String filename = attachments;
    MimeBodyPart attachmentBodyPart = new MimeBodyPart();
    //use a JAF FileDataSource as it does MIME type detection
    DataSource source = new FileDataSource(filename);
    attachmentBodyPart.setDataHandler(new DataHandler(source));
    //assume that the filename you want to send is the same as the
    //actual file name - could alter this to remove the file path
    attachmentBodyPart.setFileName(filename);
    //add the attachment
    multipart.addBodyPart(attachmentBodyPart);
    public static void main(String[] args)
    try
    MailClient client = new MailClient();
    String server="pop3.yahoo.com";
    String from="[email protected]";
    String to = "[email protected]";
    String subject="Test";
    String message="Testing";
    String[] filenames = {"c:\\gopi.txt"};
    client.sendMail(server,from,to,subject,message,filenames);
    catch(Exception e)
    e.printStackTrace(System.out);     
    while compliling this one its compiled succesfully but i am getting exception at run time like..D:\mail>java MailClient
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/activation/re
    gistries/MailcapFile
    at javax.activation.MailcapCommandMap.loadFile(MailcapCommandMap.java:275)
    at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:128)
    at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:44)
    at javax.activation.DataHandler.getCommandMap(DataHandler.java:136)
    at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:568)
    at javax.activation.DataHandler.getContent(DataHandler.java:501)
    at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1253)
    at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:2012)
    at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java:1980)
    at javax.mail.Transport.send(Transport.java:97)
    at MailClient.sendMail(MailClient.java:35)
    at MailClient.main(MailClient.java:72)
    can any one help on this....plz
    thanks in advance
    Edited by: Konapalli.Gopi on May 20, 2010 5:42 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Something's wrong with your CLASSPATH.
    If you're not using JDK 6, you need to include activation.jar in your CLASSPATH.
    If you've got any other jar files that define the javax.mail.* or javax.activation.* classes
    in your CLASSPATH (such as javaee.jar or j2ee.jar), remove them.

  • I bought an iphone5 from saudi arabia,can i use it in india?is there any requirements i have to take?many one are saying i need to unlock it,please any one help me,i did'nt activate my phone yet.

    i bought an iphone5 from saudi arabia,can i use it in india?is there any requirements i have to take?many one are saying i need to unlock it,please any one help me,i did'nt activate my phone yet.

    If the phone is unlocked then you can use it in India.
    If your phone is locked, then the only way to get the phone unlocked is to contact your phone company/carrier. The person that sold you the phone in Saudi should have told you whether it was locked or unlocked.  Contact them to check and then contact the carrier to have it unlocked if it is locked.
    Other than that there is not a lot that you can do - perhaps it was unwise to purchase a phone in Saudi - it won't have Facetime on it if you got it there.

  • I have an iphone 4. Recently I have issues with certain apps closing immediately once they are open. ie Email. Tried re-booting entire thing and still having issues. Any one else having this issue or a fix for it?

    I have an iphone 4. Recently I have issues with certain apps closing immediately once they are opened.(ie Email). Tried re-booting entire phone and still having issues. Any one else having this issue or know a fix for it?

    Delete background Apps from memory and then Reset.
    To Delete background Apps, double click Home button, in the bar at bottom, hold down on an App Icon until the minus sign appears, tap all the minus signs, until all background Apps are cleared from memory. Then Reset, hold both Home and Power buttons until the iPhone begins to restart itself, ignor the 'slide to power off' let the iPhone restart itself. Usually takes about 10 seconds of holding both buttons.

  • Running Premiere PrO cs6. After upgrading to Yosemite 10.10.2 Adobe Premiere wont run, come up with system error and shuts down. Any one else had this issue?

    Running Premiere PrO cs6. After upgrading to Yosemite 10.10.2 Adobe Premiere wont run, come up with system error and shuts down. Any one else had this issue?

    can try this Premiere Pro CC, CC 2014, or 2014.1 freezing on startup or crashing while working (Mac OS X 10.9, and later)

  • After installing the safari 5.1.7 update when Im on aol and I go to ebay or certain web sites the sign in area and password area is blacked out? Has any one else had this issue and how to you correct it.

    On May 12th 2012 I updated Safari to 5.1.7 on my imac desktop. I also have snow leopard installed.After doing this update when I am on aol and I go to ebay, amazon and a few other sites the sign in area and the password area are blackened out. You could type in the area but not see what you are doing. Has any one else had this problem? Is there a fix?? I spoke to apple support last week and they dont have a clue on how to fix the issue nor does aol.Please help? Thanks.

    Hi..
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:  Remove All Website Data
    Now back to the menu bar, click Safari > Empty Cache
    Quit then relaunch Safari.
    Try one of the sites you had trouble accessing...

  • Hi help needed in Smart form using BAdi ( please any one help me )

    Hi,
        I am working in SRM.I am new to SRM and smartforms .My problem is I need to change the stndard smarform for BBP_BIDINV_BID into zprogram for The text for Published Bid Invitation email should read as:xxxxwith emp name and date,The text for email when Bid is rejected :XXXx,Accepted,Returned.I need to attch the text using BAdi's .So can any one help me how to find out the suitable BADi to this and please send me process to do the oject..
    thanks in advance.
       Regards
         Uday

    Hi,
    check this BADI :
    BBP_OUTPUT_CHANGE_SF
    Regards
    Appana

  • Please any one help

    Hi,
    I am trying to send a mail with attachment using jsp but I couldn't receive the attachment. My code is
    try{
    MimeMessage mm=new MimeMessage(session);
    mm.setFrom(new InternetAddress(from));
    mm.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to,false));
    mm.setRecipients(Message.RecipientType.CC,InternetAddress.parse(cc,false));
    mm.setRecipients(Message.RecipientType.BCC,InternetAddress.parse(bcc,false));
    mm.setSubject(subject);
    mm.setText(message);
    Transport.send(mm);
    // File attachment
    File attach=new File(attachment);
    System.out.println("This is the fileattached"+attachment);
    if (attach.exists()){
    MimeBodyPart mbp1=new MimeBodyPart();
    mbp1.setText(message);
    MimeBodyPart mbp2=new MimeBodyPart();
    FileDataSource fds=new FileDataSource(attachment);
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setFileName(fds.getName());
    Multipart mpt=new MimeMultipart();
    mpt.addBodyPart(mbp1);
    mpt.addBodyPart(mbp2);
    mm.setContent(mpt);
    }else{
    mbp.setText(message);
    Transport.send(mm);
    System.out.println("Mail was successfully sent");
    Kindly any one help me to fix the bug
    Thanks for ur help
    Regards,
    Arunkumar

    You are creating a File object called attach but passing attachment to the FileDataSource.
    Take a look at the following:
                   if (!attachmentFile.equals(testString))
                        int stringLength = attachmentFile.length();
                        int nameStart = attachmentFile.lastIndexOf("/");
                        nameStart = nameStart + 1;
                        String fileName = attachmentFile.substring(nameStart,stringLength);
                        String newFile = (attachmentPath + "/" + fileName);
                        File fileData = new File(newFile);
                        MimeBodyPart mbp2 = new MimeBodyPart();
                        FileDataSource fds = new FileDataSource(fileData);
                        DataHandler dh = new DataHandler(fds);
                        mbp2.setFileName(fileName);
                        mbp2.setDescription("Attached File:" + fileName);
                        mbp2.setDisposition(Part.ATTACHMENT);
                        mbp2.setDataHandler(dh);
                        mp.addBodyPart(mbp2);
                   }

  • I have upgrade my iMac to the new OS X Maverick but now my computer is extremely slow and takes longer to open up everything. Has any one else had this issue?

    Ihave just upgrade my imac to the new os x maverick and now its very slow to open everything.
    Have any one else had these issues

    MacKeeper is utter garbage!!!!
    Before even attempting an OS X upgrade, completely remove this serious "crapware" from your system!!!!!
    If you do not believe me, do a search in these support forums for MacKeeper and you can see for yourself!
    Get rid of it!
    See if your system speeds up after completely ridding your system of everything connected to MacKeeper.
    Please, start a new thread and do not hijack a thread of another user posting!
    Why are you so concerned about "cleaning out" your Mac?
    How full is your Mac's hard drive?
    How much RAM is installed in your Mac?
    Download and install and run Etrecheck.
    Copy and paste its information iinto a new posting so that we can see all the necessary details of your Mac system so we may begin to address your Mac issues.
    http://www.etresoft.com/etrecheck
    Good Luck!

  • Any one else have this issue with their Mophie?

    I am just wondering if anyone has this issue with their Mophie and can offer any tips.
    I recieved a Mophie from a friend for my iPhone 4. It has a crack on it that if you put a piece tape on it, part of the case can come out. It works, but you have to hold it basically still in order for it to work.
    At this point, it seems like I'm better off giving this Mophie a first class ticket to the trash but I just wanted to see if anyone else out there in the world has had a similar issue and can offer some tips but I'm sure it's beyond repair at this point.

       There is something really very very wrong in the land of Cellular Companies!!!!!!!   Verizon Wireless is not going to recover from this.   August 28th  was my time to be able to upgrade my phone.  I upgraded to a Samsung Notebook II.  Well I have it, its very pretty. BUT I CANNOT USE IT BECAUSE VERIZON WIRELESS IS SAYING  "THEY ARE HAVING A PROBLEM INTERNALLY WITH EVERYONE WHO UPGRADED THEIR PHONES THAT ENTERED INTO THE EDGE PROGRAM.  SOMEHOW THE PHONES CANNOT BE ACTIVATED FOR USE. THEY CAN GIVE ME NO TIME FRAME AS TO WHEN THIS WILL BE RESOLVED."  I will still in the meantime be billed for the phone as if I was using it. I WAS OFFERED NOTHING FOR THIS POOR PLANNING AND EQUIPMENT/PLANNING FAILURE ON THE PART OF VERIZON. I WAS NOT OFFERED ANY DISCOUNT, PRICE LOWERING, GIFT CARD, SKIP A PAYMENT.  NOTHING!!!!!!!!    I HAVE BEEN A LOYAL CUSTOMER TO THIS COMPANY FOR YEARS AND THIS IS HOW I AM BEING TREATED. 
    I am so disgusted by this.  Is there anyone else out there that is having this problem?   That is probably why I read on somone's blog that they are only letting new customers do the Edge program now.  It is a huge mess. 
    Right now what I want to do is return the phone and opt out of my contract early (it ends in December) with no dings against me. 
    One mad fed up and done with leaving Customer 

  • Since installing Mavericks I can no longer scroll in Mail.  Has any one else had this issue?

    I have only had this issue since the latest update.
    Any suggestions on a solution? 

    Miraculously, on starting up this morning, mail is functioning normally.  Have to consider this question "closed"!

Maybe you are looking for

  • Audio back-up software... Is Time machine an option?

    Here's what's up... I'm currently installing and re-authorizing everything under the sun, on my new 8 core mac. One bit of software that I really made a lot of use of was LaCie's Silver keeper. It allowed me to keep a "list" of the 20 songs I was cur

  • Migration of Internal Orders data

    Hi My client is getting off from parent company and starting its own new SAP system.And data migration is done by LSMW. For this purpose i need to make a data extraction request with my client. Can any one please let me know which all tables data wil

  • Declaring Field Symbols in a work area

    Hi all! I'm triying to learn the use of FieldSymbols, and I wrote in  my code this: REPORT  zpractica01. Types TYPES: BEGIN OF ty_tabla,         name(25)    TYPE c,         address(60) TYPE c,         monto(3)     TYPE p decimals 2,         END OF ty

  • DVD-9 burning issue

    Hi, ... If I make DVD-9 video folder out of Encore and wish to burn it using Nero, should i use DVD-R or DVD+R? I have two of them, Verbatim. Not sure whitch one is better. And will I be able to view it on DVD players? Or maybe I should change book t

  • Got new computer, can't add my library

    How do I get my itunes library on my new computer? I tried to sync my ipod but it's asking me to erase the content. Is there any way around this?