Has somebody who can help me please  with JavaMail and JSP ?

I am new in JSP
And I would wish to create a JSP to send an email with attachment.
For the compilation of my JavaBeans I use JBuilder 9 Personnel version
Then I have j2sdk1.4.0
In C:\j2sdk1.4.0\
For the installation of the API javamail
it is necessary to download two jar files Mail.jar and activation .jar
http://java.sun.com/products/javamail/javadocs/index.html
it is done!
then, I copied my two files mail.jar and activation.jar in the directory
C:\j2sdk1.4.0\lib
And in
C:\jBuilder 9 \jdk1.4\lib
I have family Windows XP
Then from DOS in the the directory c:\ Documents and Settings\MEBARKIA
I have to add this line:
SET CLASSPATH=c:\j2sdk1.4.0\lib\mail.jar;c:\j2sdk1.4.0\lib\activation.jar;
Finally,
for a test, I downloaded an example of Javabean from : http://java.sun.com/developer/qow/archive/74/
the source code is:
import java.beans.*;
import java.util.*;
import java.io.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;
public class XYZMail extends Object
implements java.io.Serializable {
private ArrayList mailTo
= new ArrayList();
private String mailFrom ;
private String mailSubject ;
private String mailMessage ;
private String mailHost;
private ArrayList mailAttachments = new ArrayList();
private Properties props;
private javax.mail.Session sess;
private InternetAddress[] address
= { new InternetAddress() };
public XYZMail() {
props = new Properties( ) ;
props = System.getProperties();
public long sendMail () throws MessagingException {
props.put("mail.smtp.host", getMailHost() );
sess = javax.mail.Session.getDefaultInstance(props, null);
sess.setDebug( Boolean.valueOf( "false" ).booleanValue() );
int i = 0;
MimeMessage msg = new MimeMessage(sess);
msg.setFrom(new InternetAddress( getMailFrom() ));
for ( Iterator itr = mailTo.iterator( ); itr.hasNext(); ) {
address[i] = new InternetAddress((String) itr.next()) ;
msg.setRecipients(Message.RecipientType.TO, address);
msg.setSubject( getMailSubject() );
MimeBodyPart mbp1 = new MimeBodyPart();
mbp1.setText( getMailMessage() );
Multipart mp = new MimeMultipart();
mp.addBodyPart(mbp1);
if ( ! mailAttachments.isEmpty() ) {
MimeBodyPart mbp2 = new MimeBodyPart();
FileDataSource fds=new FileDataSource( (String)
mailAttachments.get(0) );
mbp2.setDataHandler(new DataHandler(fds));
mbp2.setFileName( (String) mailAttachments.get(0) );
mp.addBodyPart(mbp2);
msg.setContent(mp);
msg.setSentDate(new Date());
Transport.send(msg);
return 1;
public ArrayList getMailTo ( ) {
return mailTo;
public String getMailFrom ( ) {
return mailFrom;
public String getMailSubject ( ) {
return mailSubject;
public String getMailMessage ( ) {
return mailMessage;
public ArrayList getMailAttachments ( ) {
return mailAttachments;
public String getMailHost ( ) {
return mailHost;
public void setMailHost ( String host ) {
mailHost = host;
public void setMailAttachments ( ArrayList attachments ) {
mailAttachments = attachments ;
public void setMailMessage ( String msg ) {
mailMessage = msg ;
public void setMailSubject ( String subject ) {
mailSubject = subject ;
public void setMailFrom ( String from ) {
mailFrom = from;
public void setMailTo ( ArrayList to ) {
mailTo = to;
I have all these error messages:
"XYZMail.java" : Erreur No. 704 : acc?s impossible au r?pertoire javax\mail en ligne 6, colonne 1
"XYZMail.java" : Erreur No. 704 : acc?s impossible au r?pertoire javax\mail\internet en ligne 8, colonne 1
"XYZMail.java" : Erreur No. 704 : acc?s impossible au r?pertoire javax\activation en ligne 9, colonne 1
"XYZMail.java" : Erreur No. 302 : classe javax.mail.Session non accessible ; aucune classe ni source trouv? pour javax.mail.Session en ligne 22, colonne 20
"XYZMail.java" : Erreur No. 300 : classe InternetAddress introuvable dans classe gestionbadges.XYZMail en ligne 23, colonne 9
"XYZMail.java" : Erreur No. 300 : classe MessagingException introuvable dans classe gestionbadges.XYZMail en ligne 31, colonne 32
"XYZMail.java" : Erreur No. 300 : classe InternetAddress introuvable dans classe gestionbadges.XYZMail en ligne 24, colonne 9
"XYZMail.java" : Erreur No. 302 : classe javax.mail.Session non accessible ; aucune classe ni source trouv? pour javax.mail.Session en ligne 34, colonne 19
"XYZMail.java" : Erreur No. 300 : classe MimeMessage introuvable dans classe gestionbadges.XYZMail en ligne 38, colonne 1
"XYZMail.java" : Erreur No. 300 : classe MimeMessage introuvable dans classe gestionbadges.XYZMail en ligne 38, colonne 23
"XYZMail.java" : Erreur No. 300 : classe InternetAddress introuvable dans classe gestionbadges.XYZMail en ligne 40, colonne 17
"XYZMail.java" : Erreur No. 300 : classe InternetAddress introuvable dans classe gestionbadges.XYZMail en ligne 42, colonne 18
"XYZMail.java" : Erreur No. 302 : classe Message.RecipientType non accessible ; aucune classe ni source trouv? pour Message.RecipientType en ligne 46, colonne 27
"XYZMail.java" : Erreur No. 300 : classe MimeBodyPart introuvable dans classe gestionbadges.XYZMail en ligne 50, colonne 1
"XYZMail.java" : Erreur No. 300 : classe MimeBodyPart introuvable dans classe gestionbadges.XYZMail en ligne 50, colonne 25
"XYZMail.java" : Erreur No. 300 : classe Multipart introuvable dans classe gestionbadges.XYZMail en ligne 53, colonne 1
"XYZMail.java" : Erreur No. 300 : classe MimeMultipart introuvable dans classe gestionbadges.XYZMail en ligne 53, colonne 20
"XYZMail.java" : Erreur No. 300 : classe MimeBodyPart introuvable dans classe gestionbadges.XYZMail en ligne 57, colonne 1
"XYZMail.java" : Erreur No. 300 : classe MimeBodyPart introuvable dans classe gestionbadges.XYZMail en ligne 57, colonne 25
"XYZMail.java" : Erreur No. 300 : classe FileDataSource introuvable dans classe gestionbadges.XYZMail en ligne 59, colonne 1
"XYZMail.java" : Erreur No. 300 : classe FileDataSource introuvable dans classe gestionbadges.XYZMail en ligne 59, colonne 24
"XYZMail.java" : Erreur No. 300 : classe DataHandler introuvable dans classe gestionbadges.XYZMail en ligne 61, colonne 25
"XYZMail.java" : Erreur No. 300 : variable Transport introuvable dans classe gestionbadges.XYZMail en ligne 70, colonne 1
Thanks for your's help!!!!!

Thank you very much for your answer wew64.
Yes, I have a local server TOMCAT
But the problem
It is on the compilation I do not arrive has to compile my javabean XYZMail java
With jbuilder 4
However I have to configure my CLASSPATH on the level of DOS
And on the variables of enivrements of Windows XP.
I copied the two files mail.jar and activation.jar everywhere
In
C:\j2sdk1.4.0\lib
And in
C:\j2sdk1.4.0\jre
C:\j2sdk1.4.0\jre\lib
Even case with
c:\jBuider 4
thanks.

Similar Messages

  • When I try to install the latest version (10.5) of iTunes, the following message appears: "There was a problem with this Windows Installer package. A program running during installation is terminated unexpectedly." Is there somebody who can help me?thanks

    When I try to install the latest version (10.5) of iTunes, the following message appears: "There was a problem with this Windows Installer package. A program running during installation is terminated unexpectedly." Is there somebody who can help me?thanks

    I used this site and it fixed my problems. Hoping it will help with yours too
    http://support.microsoft.com/mats/Program_Install_and_Uninstall

  • Why i don't have facebook in my share list?? who can help me please???

    why i don't have facebook in my share list?? who can help me please???

    This will be given to us sometime in the Fall as an update.

  • Who can help me deal with the question?

    My JSP platform is JDK1.3+RESIN1.1.5,whern i write these code ,i found something wrong!
    <%@ page contentType="text/html;charset=gb2312"%>
    <%@ page info="database handler"%>
    <%@ page import="java.lang.*"%>
    <%@ page import="java.awt.*"%>
    <%@ page import="com.caucho.sql.*"%>
    <%@ page import="java.io.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import="java.sql.*"%>
    <%@ page import="javax.servlet.*"%>
    <%@ page import="javax.servlet.http.*"%>
    <%! String username;%>
    <%! String password;%>
    <%! String sql;%>
    <%
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String url="jdbc:odbc:jsptest";
    Connection conn=DriverManager.getConnection(url,"sa","hulachen");
    Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
    String username=request.getParameter("username");
    String password=request.getParameter("password");
    sql="select * from tbl_accounts where username='"+username+"' and password='"+password+"'";
    ResultSet rs=stmt.executeQuery(sql);
    while (rs.next())
    String name=rs.getString("username");
    out.print(name);
    if (name==null)
    out.print("error");
    else
    out.print("welcome");
    %>
    whether the name is null or not ,it will print error,i don't know why,who can help me?Thanks!

    I did the same as you said,but the same thing happened!
    the code is:
    while (rs.next())
    String name=rs.getString("username");
    out.print(name);
    if (name==null)
    out.print("True");
    else
    out.print("False");
    If the name is null,it printed False,but if the name is nothing,it didn't print True,but nothing!

  • Who can help - several problems with HDV editing in Premier Elem. 8

    For several years I have edited DV video with Ad. Prem. Elem. 3.0 without serious problems. Now I'm also shooting HDV video and have bought and installed Ad. Prem. Elem. 8 (PE8). To try out PE8 I have started up two projects, but only to be met with several very serious problems. Before buying PE8 I tried a 30 days version of Ad. Prem. Pro on the same PC without problems.
    My PC (from march 2010) is as follows:
    Operating system                   Windows 7 Ultimate 64 bit  (PE8 update is also installed)
    Processor                              Intel(R) Core(TM) i7-930  4x2.8GHz 4.8 GT/s (Gigabyte GA-EX58A-UD3R)
    Ram                                      DDR-3-1333 12GB (Kingston)
    Graphic card                         ATI HD 5870 1GB DDR5 PCI-5 (AMD)
    Harddisc for opr. system  C:   Intel X25-M SSDSA2M080G2GN  80GB
    Harddisc for photo 1.5TB D:  HDS 1500GB SATAII ST31500341 AS (Seragate)
    Harddisc for video 1.5TB E:   HDS 1500GB SATAII ST31500341 AS (Seragate)
    Disc drive                             Plextor BD-R PX-B940SA SATA
    Disc drive                             Samsung DVDWBD SH-B083L
    Software installed                  C:  Office pro/Ad. reader/RegistryBooster/Syst.Tweaker/Canon camera and
                                                 printer software/Q.TimePlayer/AVG free (anti virus)
                                                 D:  ACDSee Pro3/Photosh.Lightroom 2.7/Photosh.Elem. 8.0
                                                 E:  PE8
    Video cameras                       Sony HVR-Z5P (HDV 1080i) / Sony DCR-TVR 10E Pal (DV)
    PROB. 1:  When capturing HDV there is no picture in the Capt. Window and no sound. The window is plain black surrounded with a thin red line, which together with a red dot in the windows upper left corner indicates, that the capture should be taking place. But to the right after the text "Capture:", "Video" and "Audio" with there checkmarks, are only half lighted (not active). Only on the camera screen can I follow, what should be captured. With the mentioned indications, capture sometimes takes place, and sometimes not. This is first to see, when capturing is stopped.Very irritating and time wasting, as many of my clips has a length up to one hour (live music scenes). The Device Control in the Capt. Window is working o.k.. When capturing DV, everything is working all right from both the HDV and the DV camera.
    PROB. 2:  When capturing, "drop-outs", not existing on the tape, but generated in the capt. process, can occur - probably because some other small process takes place on the PC. F.ex. if one is looking around in PE8's Preferences Menu.
    PROB. 3:  The worst thing concerning these "drop-outs" + those eventual existing ones from the tape, is, that after a drop-out the picture/sound no longer are synchronized. From the drop-out and to the end of the clip, the sound is 11-12 frames behind the picture.
    PROB. 4:   When editing/looking at a film in the Monitor Panel, the picture is not very fluent. It is hacking a bit, which makes it very difficult to adjust the lost synchronization (see prob. 3), which I did by moving just the Sound Bar 11 frames in the Timeline, precise from the spot the drop-out had been before it was cut out.
    PROB. 5:  When HDV is played back in the Monitor Panel, the sound is not to be heard the last 10-11 sec. of the last captured clip, although the sound signals are easily seen in the Timeline. After a restart of PE8, it is o.k.
    PROB. 6:  When HDV is played back in the Monitor Panel, it happens, that it suddenly stops unprovoked (none else activity has been done, just looking at the Monitor Panel).
    PROB. 7:  After having just done a few cuts + adding a bit of text + working with the synchronization (see prob. 4) in the two mentioned HDV projects, I burned a Blue-ray disc (BD-RE) of project I, and after adjusting a bit more on the synchronization, I burned one more, both without problems. Then I tried to burn HDV project II, but now the burning window showed several empty little windows (only Rescan/Copies/Status/Quality had text) - the text in "Status" was: "Invalid disc name". That happens both with and without a disc in the drive. Whit a disc in the drive, I tried to Rescan, but each time only to get a warning window saying:"[..\Src\DVD\MPEGEncoder.cpp-121]". By doing anything with "Quality", the same warning turns up. When "Continue" in the warning window is activated, PE8 goes down. I then tried to burn project I again, but although I succeeded burning 2 disces of that earlier, no success - same problem. And again the same with a new third little HDV project, I had made. If I choose to burn a DVD instead of a Blue-ray disc, everything works well.
    PROB. 8:  I'm now so frustrated, that I nearly see no other possibility than to give up, and feel depressed over wasted good money + not getting my projects done. But I still have a little hope, that someone out there are able to help me out - and if you try, please don't write in an all too complicated way, as English is not my language (Danish it is). Just to illustrate my difficulties, it took me nearly 8 hours to put this rapport together.
    Ulf Olsen, Denmark  -  mail. [email protected]  -  tlf. +45 4678 8807 / +45 40 555 888

    It's very difficult to answer several questions at once on a forum, Ulf. Is there any chance you could ask just one at a time?
    As for your installation -- from your notes, it looks like you may have installed Premiere Elements on your E drive. If this is the case, it will not work. You must install the program on your C drive.
    Also, if you can not see video of your capture, it is likely related to an out-of-date video driver. Have you gone to the ATI web site and downloaded the latest driver for your card?
    If that doesn't work, you can always capture your HDV footage with HDVSplit, which is available here:
    http://strony.aster.pl/paviko/hdvsplit.htm
    Also, be sure to go to the Premiere Elements Help menu and select Check for Updates. This will ensure you have the latest patch for the program, which resolves many of the challenges you're experiencing.
    Finally, have you ensured that your video project is using the HDV project preset? One of the most important steps you can take in working with this program is to ensure that your project preset matches your source footage.

  • Who can help me out with my built-in iSight issue?

    Okay, so I have a question regarding my built-in iSight.
    Now, I know... This question may have been asked before but I just can't find it, I guess it got lost in the mass.
    If you would be friendly enough to forward me the message or instruct me on what I need to do to solve this, that would be a great help.
    Also, I'd like to know if I have to reset anything will I lose everything on my Mac? Should I make an external backup?
    So basically the issue is that whenever I turn on Photo Booth the only thing I get is a black screen.
    The program will let me take a picture, but when I want to see a preview of the image, it's not there.
    I then tried to use my iSight with iChat, which worked perfectly fine. After that I did the same with Skype,
    but Skype didn't let me see anything but black as well.
    Can anyone help me please?? Is this an issue that can be fixed myself or should I bring it to the Apple Store?
    As this is a very important matter to me, because my parents are moving out of the country soon and I would like
    to keep in touch through Skype, I would really appreciate all the help!!!
    Thank you in advance guys!

    abegail.gielen wrote: ... this is a very important matter to me, because my parents are moving out of the country soon and I would like to keep in touch through Skype...
    You have a software problem that will require troubleshooting.  With your parents moving soon, I understand your concern.
    Because you have been unable to correct the problem using the suggestions that are already posted in iSight discussions, I suggest you make an external backup and then take your Mac to the Apple Store for service.
    If you like, the Apple Store may even be able to suggest training that will allow you to troubleshoot and fix future occurrences on your own.
    Message was edited by: EZ Jim
    Mac OSX 10.8.2

  • I am very very sure there is somebody who can help me!

    i am sorry but i nead nead body to help me for a question regarding C lenguage!
    i am reading a file and after doing some calculations on it writing another file.now i have six lines of data in the reading file but my programe just reads on line and writes the corresponding answer in writing file.i want the programe to read all the six lines and then write the correspoding six linx in the writing file.
    could some body help me !
    this is how i am scaning :
    while((io=fscanf(fr,"%c %d %d %d %d",&letter,&hoursin,&minutesin,&hoursout,&minutesout)!= EOF))
    and this is how i am printing:
    fprintf(fw,"%c\t%d\t%d\t%d\t%d\t%.2lf\n",letter,hoursin,minutesin,hoursout,minutesout,totalcharge)

    I don't remember the command exactly but there is a command in C that you can get the size of the file that you want to read and the you can read the file with this known size with "fread" command.
    Payam

  • Who can help by problems with picking?

    Hallo all.
    Last time I asked "How to get the textures name".
    ---- >> I created a box and gave it six various textures. With a mouse event I try to get information about the pick.
    It is possible to get the x,y,z values and other more, but I need the information witch side of the cube is picked.
    The name of the texture (I set it by the creation) is the best for me. But I can't get this data.
    There is a sample program in the java 3d pack. Here you can pick one of several cubes or spheres. Then the pickpoint and the closest vertex is marked. Is it possible to identify the side of a cube?
    Today I want to extend my question.
    I want to get the identity of a picked object from a scene with two or mor objects. (by excample two cubes are shown, one will be picked, the message should by like " cube xxx is picked" cube yyy is not picked..."

    It's very difficult to answer several questions at once on a forum, Ulf. Is there any chance you could ask just one at a time?
    As for your installation -- from your notes, it looks like you may have installed Premiere Elements on your E drive. If this is the case, it will not work. You must install the program on your C drive.
    Also, if you can not see video of your capture, it is likely related to an out-of-date video driver. Have you gone to the ATI web site and downloaded the latest driver for your card?
    If that doesn't work, you can always capture your HDV footage with HDVSplit, which is available here:
    http://strony.aster.pl/paviko/hdvsplit.htm
    Also, be sure to go to the Premiere Elements Help menu and select Check for Updates. This will ensure you have the latest patch for the program, which resolves many of the challenges you're experiencing.
    Finally, have you ensured that your video project is using the HDV project preset? One of the most important steps you can take in working with this program is to ensure that your project preset matches your source footage.

  • Who can help me, please? i have to finish up my homework by tomorrow!!

    I have to finish up my java homework by tomorrow. I dont know anythink about java. all i need is to create a few basic java programmes. and i also need to use "//(explanation)" for some parts in order to make the pragramme more readible. there are 2 links below. each link has 4 easy java questions. so i have to answer those 8 questions. please help me. it is very important. you can send the answers to my email: [email protected]
    thank you,
    Volkan
    http://sepc.twi.tudelft.nl/onderwijs...A-2006-eng.pdf
    http://sepc.twi.tudelft.nl/onderwijs...A-2006-eng.pdf

    class Java101 extends School
      public static void main(String[] args)
        if(
          yourHomeworkIsDue   &&
          youDontKnowWhatToDo    &&
          yourWorkRepresentsYourKnowledge  &&
          thisIsImportantToYourCollege )
          /*** Then why do you even care to ask someone to do it for you?
          are you going to do this your whole life?  OK so we help you now
          and you've learned nothing.  You move on to a later part of the class
          and have nothing to build on.  Are you going to ask for help all the
          way through the class?  Then what happens if you geta  job in IT?
          Are you going to ask for someone else to do the work for you there?
          I'll tell you what.  I'll do the work for you, pass the class for you,
          get the job for you, and earn the money for you.  Then I'll spend
          the money for you, and live your life for you.
          Oh, I'm already doing that.  Glad I could help.
          Have a nice day.    ********************/
          // BTW - the preceeding was an example of a comment.
          // Maybe that will help you on your final exam.
    }

  • Need to generate the payment from my credit card for adobe muse ... who can help me please

    hello, a banking problem, my card has no funds when the automatic payment of adobe muse, and I resolved the problem and I want to pay now,  can do I now ?

    Hi Jhon,
    Please contact the customer service team using this page here and get further assistance on this, Contact Customer Care
    - Abhishek Maurya

  • Oh boy, nothing so far has worked, who can help on this one

    Here is the deal...
    Apple logo would not dissapear from the screen of my 4 year old ipod (dockstation version, 15GB),
    I reformatted (FAT32 as per this forum) and restored my ipod in itunes. When this was done (multiple times now) I was asked to connect my ipod to the power supply.
    Doing that right now but the 'Disk Mode' and 'OK to disconnect' screen simply continue to show on the display and the battery icon is charging continously.
    This has been for about 2 hours now..
    Oh yeah, never had a problem before and I am a mild/medium user..
    Any suggestions appreciated as I do not have the money to buy a new Ipod or go to the Apple fixers..
      Windows XP  

    thanks for your comments but I have tried all of that.
    Apple logo appears and I can even get fase 1 of the restore program in itunes to run.
    After part1 of the restore program I am asked to unplug the ipod from itunes and hook it up to power. Then supposedly fase 2 or restoring is tarting but unfortunately nothing happens..
    I just listened closely and the ipod makes ticking noises when the apple logo is showing..
    Is that bad?

  • Someone who can help me please. I have a Ipod Shuffle 4th generation and it gives me a red light and i cant use it. What i have to do?

    It give me red light for 3 seconds and Itunes and my computer dont reconize my ipod and i dont know what to do

    Did this shuffle previously work with this computer, and does not now for some reason?  Or is this the first time you are using this shuffle with this computer?
    If the computer is a laptop, connect its power adapter, so that it is not running on battery power.
    As as test, shut down (power off) the computer, and disconnect all USB devices (you can leave standard keyboard/mouse connected if used).  Do this to Reset the shuffle
    http://support.apple.com/kb/ht1655
    Start up the computer, run iTunes, and connect the shuffle to a direct USB port on the computer, by itself.

  • I have a MacBook5,1 OSX version 10.5.8 and I want to upgrade it, who can help me?

    I have a MacBook5,1 OSX version 10.5.8 and I want to upgrade it, who can help me?

    Click here and buy a Mac OS X 10.6 DVD. Once you've installed it, you can then run the 10.6.8 combo updater and buy Mac OS X 10.8 from the Mac App Store.
    (84117)

  • Hello is there anybody who can help me in german? i have the same problem like the guy with i tunes. it won´t open an give me an error "An application has made an attempt to load the C runtimelibrary incorrectly" Please contact the application´s support..

    I´ve so many privat things on I tunes like pictures, music etc.and i won´t loose them. is there anybody who can help me to save my private things and help me to solve teh problem
    Thanks you for help greetings from austria

    I just had the same error: 
    R6034
    An application has made an attempt to load the C runtime library incorrectly.  Please contact the apps support team for more info.
    I went to http://support.apple.com/kb/ht1925 and did a complete removal and reinstallation of iTunes. You MUST follow the directions here exactly...it's more than just iTunes that must be removed, and it MUST be done in the order in which the support article says.  I followed the exact instructions, and iTunes is back on my machine (no more C runtime error) and you do NOT lose your music...it's all in my library, as it was before.
    Good luck!

  • Have installed MacOsX Lion has trouble hooking up to my StoraNas server with my usual username and password, some who can help me?

    Have installed MacOsX Lion has trouble hooking up to my StoraNas server with my usual username and password, some who can help me?

    This is a common problam discussed on the Netgear forums.  I have yet to see a solution, just comments that there will need to be a fix from Netgear.  if anyone has heard of a solution or of the update being issued, please let us know.

Maybe you are looking for

  • Firefox doesn't display the upper part of my screen, to I can't navigate!

    When I updated to version 4, the screen is so large that no navigation tools are visible. To exit firefox, I have to go to task manager to shut it down

  • SPRO setting for Shipping screen in Purchase Order

    Hi Friends, I am working at Purchase Order in AFS and I added a custom screen using BADI (ME_GUI_PO_CUST) at item level that behave same as standard shipping screen but I want this custom screen should display in all condition, actually it disapper w

  • Creating Image

    Hello, Is it possible to get the image if we have memory address? I am using JNI for my project. Using VC++, i am getting the handle of the image and passing it to java. How to get the image using that handle in java? I want to display the image usin

  • Why did my macbook start installing while I was shutting down?

    I was trying to shut my macbook down and it began to do so, but suddenly you could see a transparent window show up that had an install bar initiate. My macbook then installed an unknown update that I did not initiate. I was not in update software at

  • Billing and cancellation

    I just signed up for a subscription and skype to make payment, but it was the wrong subscription. how can I change the subscription and/or get my money back.