Duke Pt avail. 2nd time askin, (Flicker-free background) Simple Animation

2nd time askin, since didn't get sufficient help. Duke Pts available! I am trying to create simple animation on a solid constant background. I used double buffering for moving the object and it works fine. But the problem is with the background image. The image seems to flicker while the object is moving. Here's my code:
import java.awt.*;
import java.applet.Applet;
public class changed extends Applet implements Runnable{
Image buffer;
Graphics bufferg;
Thread main;
int x=0;
boolean flag=false;
public void init(){
setSize(500,500);
main=new Thread(this);
main.start();
buffer=createImage(getSize().width,getSize().height);
bufferg=buffer.getGraphics();
public void run(){
while(main!=null){
try     {
main.sleep(50);
catch(Exception e){}
repaint();
public void stop(){
if(main!=null){main.stop();}
public void paint(Graphics g){
update(g);
public void update(Graphics g){
Dimension d=getSize();
bufferg.setColor(getBackground());
bufferg.fillRect(0,0,d.width,d.height);
bufferg.setColor(Color.red);
Image img = getImage(getCodeBase(),"bliss.jpg");
if((x<500)&(!flag))
bufferg.fillRect(x+=5,10,25,25);
else
flag=true;
bufferg.fillRect(x-=5,10,25,25);
if(x==0)
flag=false;
g.drawImage(img,50,50,this);
g.drawImage(buffer,0,0,this);
Please help me with this minor problem. I think what's happening is that the background is been drawn over and over again. I don't know how to make it constant and flicker-free.

Possible 2 things:
1. You're reloading the image on each repaint:
Image img = getImage(getCodeBase(),"bliss.jpg");You shouldn't do that, you should just load it in init.
2. You're drawing the image with the non-buffer Graphics "g" instead of "bufferg." You should use bufferg and draw it before anything else.
I've modified the code for you, it should work but I can't test it because I don't have bliss.jpg. Let me know if it doesn't work.
Here's the modified code:
import java.awt.*;
import java.applet.Applet;
public class changed extends Applet implements Runnable {
     Image buffer,img;
     Graphics bufferg;
     Thread main;
     int x = 0;
     boolean flag = false;
     public void init() {
          setSize(500, 500);
          img = getImage(getCodeBase(), "bliss.jpg");
          main = new Thread(this);
          main.start();
          buffer = createImage(getSize().width, getSize().height);
          bufferg = buffer.getGraphics();
     public void run() {
          while (main != null) {
               try {
                    main.sleep(50);
               } catch (Exception e) {}
               repaint();
     public void stop() {
          if (main != null) {
               main.stop();
     public void paint(Graphics g) {
          update(g);
     public void update(Graphics g) {
          Dimension d = getSize();
          bufferg.drawImage(img, 50, 50, this);
          bufferg.setColor(getBackground());
          bufferg.fillRect(0, 0, d.width, d.height);
          bufferg.setColor(Color.red);
          if ((x < 500) & (!flag)) {
               bufferg.fillRect(x += 5, 10, 25, 25);
          } else {
               flag = true;
               bufferg.fillRect(x -= 5, 10, 25, 25);
               if (x == 0)
                    flag = false;
          g.drawImage(buffer, 0, 0, this);
}

Similar Messages

  • How can I sync my new iPad with my itunes account on my 4 yr old macbook? I plugged the iPad in once and all music synced. The 2nd time it said update needed. Mac says no update available.

    How can I sync my new iPad with my itunes account on my 4 yr old macbook? I plugged the iPad in once and all music synced. The 2nd time it said update needed. Macbook says no update available.

    " how can I sync my iphone to my mac book without losing all the music and pictures on it?"
    You cannot.  Copy everything you want form the old computer to the new one, then sync it.
    it basically says you have to erase your iphone to sync to a new itunes!
    Correct Iphone will sync, or manually manage, with one and only one computer/library at a time. Syncing, or manually managing, to another will indeed erase the current content.

  • Brand new ideapad u300s going into depot for 2nd time in in less than a month

    Hi,
    I can't seem to get any help on the phone, all I get told is send the unit in.  I ask to speak to a supervisor and you tell me they will call back in 24-48 hours; it's been a week.  I call back and ask to speak to a supervisor and you tell me it's the weekend and none are available, maybe we can have one call you back later.  This is considered lenovo support.  
    I bought a computer for my wife's birthday, an ideapad u300s, and the first week everything is working great.  However, the LCD turns out to be faulty.  So we send it in to the depot thinking no big deal they'll fix it immediately and send it back to us. However,  the computer sat in the depot for over a month and we heard nothing.  We called tech support and asked a for a refund or a new unit but, basically, we were just transferred, told a supervisor would call us - which they did not -  and given the standard answer that they would prioritize our situation.  Finally,  it's repaired and in the mail.
    We receive the computer everything seems fine, then my wife notices that it doesn't recognize the a/c adapter so the battery is now drained and we can't do anything.  We call lenovo again they tell us send it in, I ask for them to send someone here since last time I called you tried to sell me an extra warranty after I've only had the computer for a week.  Lenovo tells me that's impossible if you want someone to come onsite we have to pay for it.  Fine I give up I am tired of dealing with you over the phone I am sending the computer back for a 2nd time.  
    My wife has used the computer all of about 2 weeks and her birthday was in late March.  
    I cannot understand how you can operate like this; I've never experienced such poor customer support and general apathetic attitude of your phone reps.  
    Simply put, I will never buy another Lenovo product again; I am sure you don't care though if it's anything like your phone support.

    It depends on how critical your connection is. Business customers get a much faster repair time, and are given priority over residential customers, and will pay compensation on some of their SLAs.
    If you do not mind being without service for three to seven days, then the residential service should be fine, otherwise you should be on a business package, with a proper SLA (Service Level Agreement).
    Its not simply the amount of usage you make of the service.
    The residential service is aimed at the general public, who use it for web browsing, e-mail, gaming, and streaming services like YouTube.
    You can get advise on this forum from other residential customers, but they are not going to be able to fix your faults, as this is only a customer to customer forum.
    The firmware issue is discussed on a number of threads on the  forum. Alternative VHDSL modem/routers are also suggested.
    https://community.bt.com/t5/BT-Infinity-Speed-Connection/HH5-constantly-reboots-every-3-minutes/td-p...
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Songs dont even show up on my ipod anymore 2nd time happening

    I have a 4th generation ipod with color that shows the photo
    My ipod had recently somehow got rid of all my songs the first time i didnt kno how but by the 2nd time i had all my songs on there and i just plugged it into my computer last night to charge, there was songs on it before i plugged it in but in the morning when i check on it there was no songs left at all.
    I have zero songs, and about 7gb of free space left? wth is wrong with my ipod?

    Kingnitro wrote:
    I went to search for a song on my iphone 6+ the other day, it doesnt even show up on my song list!  Yet on my Mac Mini I open up my Itunes, its there and it plays right away!   What is wrong?
    The song is not on your iPhone.
    See this -> https://www.apple.com/support/itunes/syncing/

  • Problems after downloading the lastest version of iTunes for my iPod Touch. Now whenever I switch on my laptop and access the internet I get an error message. 2nd time this has happened and I'm fed up trying to fix it. Anybody having similar problems?

    I've downloaded iTunes 10.5 onto my iPod Touch, no problems but I've now got a constant error message on my laptop everytime I switch it on and access the internet. The message is "The procedure entry point xmlTextReaderConstName could not be located in the dynamic link library libxml2.dll"
    This is the 2nd time this has happened. Last time iTunes Support called and we ran through a load of checks to no avail. The only option was to delete iTunes completely off my laptop and go for a new download of it. Can anybody tell me how to do it - didn't write it down last time, silly me, never thought it would happen again. Also sent an email to iTunes Support - waiting for a response.

    Maybe:
    "Waiting for changes to be applied": Apple Support Communities
    Also I requested that your email address be deleted. Personal responses are not given in this forum

  • 2nd Time Capsule for redundant backup??

    Currently use a 14 month old 1TB time capsule that's only about half full to do incremental backups for 2 MacBook laptops. I also use SuperDuper to create disk "clones" every month or so in case of drive failure.
    I want a transparent / easy / painless backup (which I seem to have now), but am getting concerned about the Time Capsule problems I have been reading about. I know SuperDuper does incremental backups, but I like the version control that Time machine offers. I could lose a week's worth of data without too many problems, but more than that would cause quite a bit of grief to duplicate/reproduce.
    I have been thinking about getting a 2nd Time Capsule, and swapping them out every week. My thought is, it would be easy to keep offsite at my office, adding another layer of protection. That after swapping out, the time machine backups would "catch up". It sounds ideal (though little expensive), but it would meet my "easy" criteria -- cables would be the same, so just unplug, plug back in and I'm done...
    Big question -- will it work?
    Additional questions: Same / different SSID/IP range? Problems with windows laptop, and WIFI printer?
    Any input / suggestions / alternatives would be greatly appreciated!!!!

    mike808ec wrote:
    I know there are no guarantees in life, but I'm just trying to "hedge my bets". Is there a "verify" function available? Either as an option as part of the archive process, or a seperate run after the archive has finished.
    Nothing built-in.
    Alternatively is there a way to test the archive? You said i could attach the drive directly to my laptop. If I do this, and Time machine recognizes the archive does that mean it's "good", or could there be corrupted files within the archive?
    You can browse them, even restore some things (probably to alternate locations), but that doesn't mean there isn't something corrupted there, somewhere.
    You can also run +*Repair Disk+* (not permissions), to be sure the directory structure, etc., is good.
    And, of course, a backup of a backup is only as good as the original backup; if something is wrong on your TC's hard drive (or your boot drive, for that matter), the copy on the archive will be, too.
    I think this is my only hesitation to this solution. As I've said I've experienced bad / corrupted copies in the past when dealing with large file transfers. Shouldn't be a problem with a new drive, but as time goes by, and the archive grows and grows...
    But you will continue the SuperDuper backups, too, right?

  • I've just downloaded Sophos (yesterday) and commenced the scan. It keeps stopping part way through, the 2nd time when it was about 98% completed after 4 hours!!!! I've had to start again. What could be causing this? I have Mountain Lion.

    I've just downloaded Sophos (yesterday) and commenced the scan. It keeps stopping part way through, the 2nd time when it was about 98% completed after 4 hours!!!! I've had to start again. What could be causing this? I have Mountain Lion.

    Thomas A Reed wrote:
    You will be advised by people here that Sophos is "junk" and should be removed {...} Sophos actually works pretty well, in my testing, and so I would suspect that there may be an underlying problem with your file system that needs to be repaired.
    FWIW, I have used Sophos regularly for several years now (including on my new iMac running Mountain Lion versions 10.8.2 & now 10.8.3) & never had any problems with it on any of the half dozen or so Macs I have installed it on.
    Quite a few people automatically assume all Mac A-V software is troublesome junk, & many will leap to the conclusion it is the cause of some problem without considering other potential (& often much more likely) causes, regardless of which A-V product is installed.
    Obviously I hope, not all A-V products are alike, so it doesn't make a lot of sense to me to condemn them all because of problems with one of them. Regarding Sophos in particular, finding first hand reports of it causing problems is quite difficult -- typically, if you ask for the details it turns out to be a second or third hand report & there isn't enough info available to know for certain if it is the real cause or not.
    This is not to say it is impossible for it to cause problems, just that it is prudent to consider all the possibilities before concluding that any one of them is the cause.

  • Firefox will not start; new profile fixes it for 1 time, then 2nd time its back to broken

    Windows 7 x64, ff3.6.8
    ff3 will not run, clicking on .exe will not begin any app in taskmanager. the most i get is when clicking ff3 from the taskbar in win7 it will flash as if it is trying to do something, but nothing happens and the flashing stops.
    uninstalled ff3.6.5; reinstalled 3.6.8, still same issue.
    i created a new profile and started ff3, ff3 started & i got to a generic home page. i closed ff3, copied my bookmark file from the default profile to the new profile, restarted ff3, same problem as in the beginning.
    i created a new profile & again it starts up, but when i close out, even without copying the bookmarks over (i was assuming that was the corrupted file), it will not run the 2nd time.
    i have done this for 7 profiles and all of them work the first time, but none will work after that even without copying any profile information from the original default profile.
    in addition i cut all the profiles out of the profile folder and cc'd to another location on another drive thinking that'd prevent the default from corrupting the other files, nothing.
    brief history(sorry for the long post)
    I ran a windows update prior to leaving on vacation, shut the PC down & when I came back the pc wouldnt boot. reset my bios to default and finally got back into windows & it finished the update.
    when i got back in, ff3 was giving me problems and kept hanging up for some reason. so i hard reset & tried to implement my OC profile in bios. i was not able to get back into windows w/ my OC profile again, so i again went back to default bios.
    ever since then ff3 will not work. ie8 works fine, no viruses reported thru mse, i cant figure it out!
    any help would be greatly appreciated, thanks.

    well i kinda fixed it i spose...
    i deleted everything in appdata under mozilla & macromedia and deleted the plugins folder from my installation folder for ff3. uninstalled ff3, reinstalled ff3. now everything works fine. just have to redo my bookmarks & settings.
    sorry to waste anyone's time...but hopefully if someone else has the problem, now they can fix it. peace.

  • In iCal, "Available Meeting Times" greys out working hours one day off, MS Exchange

    I am using iCal, accessing an MS Exchange server. When setting up a meeting, "Available Meeting Times" greys out the non-working hours of potential meeting participants. However, the days are one day off. E.g. the working hours of my collegues are displayed are Tuesday-Sunday instead of Monday-Friday. The dates and times of meetings are relayed correctly. Only the display of the working hours seems to be off.
    Needless to say that my collegues are using Windows Outlook, and everything works there.

    I still have the same issue. Had it ever since at least 2010 and meanwhile we switched Exchange-Servers and I'm on Mavericks, but still. Looks to me as if iCal requests something like "getWorkDays" from teh Server. The Server probably replies [2,3,4,5,6]. When the week starts on Sunday, this is perfectly fine. But if the Week starts on Monday, this will give you Tue-Sat as available Days. So it might be a bug in either Exchange or iCal to treat that information correctly, but I'm not obv. not sure about that.

  • How do I show my available meeting times in iCal using iCloud?

    Currently, my "Available Meeting Times" are grayed out every day, including the invitees for an event when viewing via the Availability Panel on iCal 5.x (Lion) and also on iCal 6.x (Mountain Lion). Anyone have any advice?
    Thanks!

    William Lloyd wrote:
    Then in iTunes check the relevant projects are visible and that home sharing is turned on.  iTunes must also be running, I think.
    I have run the Previews in Aperture and also switched on the "share previews with iWork and iLife".
    Home Sharing is on, but what do you mean by "check the relevant projects are visible"?
    I cant see any reference to Photos within iTunes.
    Thanks.

  • 2nd time Loop error in rejection reason/changes req

    Hello experts,
    I have created an wf with loop step.
    In that loop branch,m displaying a doc in approvers inbox, then i have put a decision step with 2 button - 'Approve' and 'Changes req'.
    For button Changes req, loop will continue.ok
    In tht changes req branch, i hv put a task of BO SOFM, method- create for approver so tht he can enter thr wht r the changes he wants.
    thn i hv put task as BO SOFM, method-display for initiator so tht he can see the changes req.
    thn doc will opened in edit mode for initiator to make req changes.
    thn it will agn go back to approver for approval.
    he will agn get the decision screen with 2 buttons.
    now while testing this....this all worked fine when approver clicked in button 'changes req' in decision box..after tht SOFM create worked fine.
    But during 2nd time whn approver is checking the doc 2nd time and still he again wants some other changes to be done so he will agn click on button 'changes req'. this 2nd time tht SOFM-create is not working and wf goin to error as -
    1. Notification of completion cannot be generated
    2. Problems occurred when generating a mail
    3.Error '9' when calling service 'SO_OBJECT_SEND'
    4.Error handling for work item 000000006050
    PLz suggest how this can be solved.
    Best Regards
    Nitin

    I think you might have to use the EDIT method of SOFM Business Object as you are going to change the existing document.
    Thanks
    Arghadip

  • Error in sending mail 2nd time, Where is the fault- Help Please

    Hi friends,
    I had written a program to send mail. Everything is fine, when i send first time. But if I try to send mail 2nd time, It gives the error:
    Exception in Connect: IOException while sending message
    Here is the complete code what i had written, It successfully connects using t.connect();
    the problem in t.send();
    output on JBoss Console is :
    Inside Action
    After Transport t = session.getTransport(protocol)
    before t.connect()
    after t.connect()
    Exception in Connect IOException while sending message
    import java.io.*;
    import java.util.*;
    import javax.activation.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class MsgSend extends Action {
         @Override
         public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request
                   , HttpServletResponse response) throws Exception {
              response.setContentType("text/xml");
              PrintWriter out = response.getWriter();
              System.out.println("Inside Action");
                String to = request.getParameter("to");
             String bcc = request.getParameter("bcc");
             String cc = request.getParameter("cc");
             String subject = request.getParameter("sub");
             String user = request.getParameter("user");
             //String password = request.getParameter("pass");
             String message = request.getParameter("message");
             String from = user + "@domainname.com" ;
             /*Properties props = System.getProperties();
             props.put("mail.smtp.host", "smtp.vsginc.com");
              MailBean  bean = MailBean.getInstance();          
              Session session = bean.getSession();          
              String protocol = "smtp";
              Transport t = session.getTransport(protocol);
              System.out.println("After Transport t =              session.getTransport(protocol)");
             MimeMessage msg = new MimeMessage(session);
             msg.setFrom(new InternetAddress(from));
             InternetAddress[] address = {new InternetAddress(to)};
             msg.setRecipients(Message.RecipientType.TO, address);
             if(cc != null ){
                   InternetAddress ccAddr[]  = InternetAddress.parse(cc);
                   msg.setRecipients(Message.RecipientType.CC, ccAddr);
              if(bcc != null){
                   InternetAddress bccAddr[] = InternetAddress.parse(bcc);
                   msg.setRecipients(Message.RecipientType.BCC,bccAddr);
             msg.setSubject(subject);
             // create and fill the first message part
             MimeBodyPart messageBodyPart = new MimeBodyPart();
             messageBodyPart.setText(message);
             Multipart multipart = new MimeMultipart();
             multipart.addBodyPart(messageBodyPart);
             Attachment attachment = Attachment.getInstance();
             ArrayList<String> fileList = attachment.getFileNames();
             String parentFolder = null;
             for(String path:fileList){
                  File attachmentFile = new File(path);
                  messageBodyPart = new MimeBodyPart();
                  DataSource source = new FileDataSource(attachmentFile);
                  messageBodyPart.setDataHandler(new DataHandler(source));
                  messageBodyPart.setFileName(attachmentFile.getName());
                  multipart.addBodyPart(messageBodyPart);
                  parentFolder = attachmentFile.getParent();
             // add the Multipart to the message
             msg.setContent(multipart);
             // set the Date: header
             msg.setSentDate(new Date());        
             try {
                  System.out.println("before t.connect()");
                   t.connect(bean.getSmtpServer(),bean.getUsername() ,bean.getPassword());
                   System.out.println("after t.connect()");
                   //Error is coming here in this Line.
                   t.sendMessage(msg, msg.getAllRecipients());
                   * System.gc(); will relese the fileHandles, if some resource
                   * still holds it.               
                   System.out.println("before System.gc()");
                   System.gc();
                   * Deleting All the Files from Attachment Folders.
                  System.out.println("before attachmentFolder");
                  File attachmentFolder = new File(parentFolder);
                  System.out.println("Attachment Folder Name is : "+attachmentFolder.getAbsolutePath());
                  if(attachmentFolder.isDirectory()){
                       File[] files = attachmentFolder.listFiles();
                       System.out.println("No of Files For Attachments are: "+files.length);
                       boolean deleteResult = false;
                       for(int i=0; i<files.length; i++ ){
                            deleteResult = files.delete();
                        System.out.println(files[i].getName() + " Delete Staus is :"+ deleteResult);
              System.out.println("All attachments Deleted");
              out.print("<result>Mail has been sent successfully</result>");
              } catch (Exception e) {
                   out.print("<result>Mail sending failed</result>");
                   System.out.println("Exception in Connect "+e.getMessage());
              }finally{
                   t.close();               
              return null;
    Problem only comes, when i send 2nd time or more. What is the problem? Please help me out.
    Thanks for your response in advance. One more thing, Whether to send a mail & receive a mail, we need to create different sessions. one for sending & one for receiving mails.
    Message was edited by:
    Ashish.Mishra16

    I don't see anything obviously wrong in your code. Try adding
    session.setDebug(true);
    You can use the same Session for sending and for reading.
    A Session just encapsulates your configuration parameters,
    so as long as they're the same for both usages, one Session
    is fine.

  • USB HD no longer available in Time Machine

    I have had a USB HD attached to my Airport Extreme, in use as a backup disk for Time Machine.  This has worked fine for over a year, but I recently noticed that backups were no longer being completed due a full disk.  When I look in Time Machine and "Select Disk," the USB drive no longer appears in "Available Disks" list.  I plugged the disk into my MBP and completed a backup directly, so the disk works fine.  I looked in the Airport Utility and the disk appears under the "Disks" tab.  Why would it no longer be available for Time Machine use?  Has something changed regarding support for this type of setup? 
    Thank you.

    Apple has never fully committed support of the Time Machine/Airport Extreme combination.  I have a Airport Extreme 6th gen that supposedly supports the Time Machine, (page 13 of the installation manual).  After a year of experience I have concluded that it does not work - period.  If you have any critical data on your system(s) I would recommend that you use a dedicated backup/recovery product like Carbon Copy Cloner.

  • Can I use an external drive for a 2nd time capsule backup?  Other questions too

    My setup:
    1 Macbook Air
    1 Mac mini as HTPC
    1 Mac mini as a media server (5tb and growing) with external drives.
    I want to get a 2tb time capsule to back up my laptop and mac mini that i use as a HTPC.  Simple enough....
    Since the new gen airport extremes support external drives to a time machine back up i want to plug a CineRAID device with 4 6TB drives (12gb of storage in a RAID) and use that as a backup for my media server.  Could I just plug it directly into the mac mini?  Yes, but i am trying to have the lest amount of clutter possible visible. So i want to put in a closet where my router is..
    So can I plug in the CineRAID into the usb port for a 2nd time machine backup with massive storage?
    Option 2: 
    Just get an airport extreme and use the CineRAID for a backup via USB...
    Also,  how much space does the airport extreme support?  Like i said up time I am at 5tb but its growing fast

    So can I plug in the CineRAID into the usb port for a 2nd time machine backup with massive storage?
    There is conflicting advice about whether a RAID setup will work with Time Machine, so you can find information that will say that it will work and other info that will say that it will not. In general, Apple says that Time Machine must "see" the RAID drive as a single partition, but they also say that you need to check with the support folks at the drive manufacturer for more details.
    The only way that you will know whether it will work or not on your network, is try it out on your network.
    Please let us know about your results.
    Just get an airport extreme and use the CineRAID for a backup via USB...
    Same as above.
    how much space does the airport extreme support?
    The firmware on an AirPort Extreme will support up to a 4 TB drive, but I have not tried it on a larger drive, so we'll need another user to answer on that one. Here again, it would be wise to try a few "tests" before you try to backup or transfer a large amount of data.

  • My macbook pro (August 2010) keeps freezing when apple mail starts up. This happens every 2nd time I turn on my Macbook Pro. This forces me to hold down the power button to restart my Macbook Pro. Does anyone else experience this, and is there a fix? Thx

    My macbook pro (August 2010) keeps freezing when apple mail starts up. This happens every 2nd time I turn on my Macbook Pro. This forces me to hold down the power button to restart my Macbook Pro. Does anyone else experience this, and is there a fix? Thx.
    since upgrading to OS lion, my mac book pro (2010 August) keeps freezing (non responsive, requires restart) when i turn on my mac and the system is trying to open apple mail. while apple mail is attempting to collect new mail, the macbook pro freezes. this happens every 2nd time i try to start up my computer. this only started happening after i upgraded to OS lion. please let me know what I need to do to fix this. being forced to restart every 2nd time i turn on my macbook pro has been very frustrating. not sure if apple mail is also the cause of my macbook pro for being very slow during start-up (on the occasion the computer doesn't freeze).

    I am having similar 'freezing' problems with many programs (Mail, Safari, iTunes, etc.). I have done a clean install of Lion instead of an upgrade when it came out. Perhaps something went wrong with my install? I'm thinking about wiping and reinstalling.

Maybe you are looking for

  • Resend of quotations from CRM to R/3

    Hi all,   Quotes are created in CRM and they are marked as prefered quotes which means they need to reach R/3. But due to some problems the quote created is not in R/3. From that time onwards, whenever quotes is modified in Mobile sales with option "

  • Error message when installing iDVD 08

    Would love some help please. I have downloaded the iDVD program from Apple website and can't open it with out getting the following message " Alert: An eligible iDVD application was not found in the location /Applications." I have downloaded the iDVD

  • Customer payment limit

    Hi, How and where to check individual customer payment limit? Is there any T.code pls... Thanks Rafi

  • FM-CO integration

    Hi, I customized FM-CO integration. But when I run Periodic reposting I have in ONE item in FM document two equal value in both budgets -Commitment budget and Payable budget. My requirements is to do that CO posting influence only Commitment budget (

  • Opening a form and stopping a video

    I have a button on a page with a video running.  i want the button to open an html form I have already set up and i want the video to stop playing.  i tried this code and it achieves  neither objective. thanks for any ideas, Gregg my code on the butt