How to attache the error File ?

Hi All !!!
I want to attach the screen shot of error file in this forum? Can i do that ? If we are going attach the screen shots we can be easily understand the issue....am i right ?
I dont know whethere that option availble in this forum or not ?
Pls calrify
Regards
Kalai

Hi
You can  attach screenshots in any of the photo sharing sites and can provide a link here.
Easier option is that you can provide information on which T.code you face the error and you can simply copy and paste only the contents of the long text of the error message, after double clicking the error message.

Similar Messages

  • How to send the error file as a attachment

    Hi All,
    Is it possible to send a mail by attaching the error file.
    I am writing the code in the events,if import failed then i need to send the mail with import failed error file as an attachment.
    Thanks.

    In your mail code, include something like the following prior to the .Send command. strAttach is the path to the Attachment:
    If Not strAttach="" Then' Attach file(s) to message
         Set fso = CreateObject("Scripting.FileSystemObject")
         If fso.FileExists(strAttach) Then .AddAttachment strAttach
         Set fso = Nothing
    End If

  • How to attach the .emp files and .rar files in this forum.

    Dear Sir ,
                          I want to attach the ".emp" file or .emp file stored in the "rar", how to attach these files in this forum because whenever I am going to attch the .emp file or .rar file , it is showing the error that " The contents of the attachment doesn't match its file type".

    Well, you might think that. But you would be wrong.
    I'm not aware of any unix OS with an undelete function at the filesystem level.
    Such things don't tend to work well in a multiuser/server environment where lots of things are writing to the disk in the background.
    And trying to guess what the filesystem used to look like is a good way to court random file system corruption.

  • How to attach the PDF file in spool to an email?

    Dear friends,
        I need to attach the PDF file generated in the spool (SP01) to email.
    The PDF file is generated from VL02N at the time of Post Goods Issue .
    Thanks,
    Vidya.

    Hi,
    Refer to the link it is explained how to configure the output type to send the email with PDF attachment on saving the Billing Document.. you need to do the same way..
    Email Billing document as PDF Attachment while saving from VF01/02

  • How to resolve the error "File could not open" in AL11?

    Hi Friends,
    When I am going to write a file via DATASET.
    But it's showing me a error"File Could not Found"?
    And I am unable to check my fiel at AL11.
    Please suggest me the solutions.
    Regards
    Ricky

    Hi,
    Try this code
    TYPES : BEGIN OF ty_emp,
    empno(2) TYPE c,
    empid(10) TYPE c,
    empname(3) TYPE c,
    END OF ty_emp.
    DATA : it_emp TYPE TABLE OF ty_emp,
    wa_emp TYPE ty_emp.
    DATA : pbk TYPE string.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS : p_file TYPE rlgrap-filename default 'D:\EMP.TXT'.
    PARAMETERS : p_asfile TYPE rlgrap-filename default 'EMP'.
    SELECTION-SCREEN END OF BLOCK b1.
    pbk = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                      = pbk
      FILETYPE                      = 'ASC'
    has_field_separator           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
        TABLES
          data_tab                      = it_emp
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    OPEN DATASET p_asfile FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc <> 0.
        EXIT.
      ENDIF.
      LOOP AT it_emp INTO wa_emp.
        TRANSFER wa_emp TO p_asfile.
      ENDLOOP.
      CLOSE DATASET p_asfile.
    ==============================================
    Regards,
    Krrishna

  • How to Email an Error File

    I just set up the CDF_Email function and was able to successfully send out an email after a calculation has finished, however, now I would like to send out an email after data has been loaded and say that the load was "Data Loaded Without Errors" or "Data Loaded With Errors". If the data has been loaded but with errors I would like to attach the error file in the email. Can this be achieved using the same CDF_Email function or do I need to go down another path. Thanks in advance!

    here you go
    '  Script      : sendmail.vbs
    '  Author      : Celvin Kattookaran  - Original Version
    '  Description : To send error file and log files
    '  Date        : 8th Mar 2011
    '  Updates     :
    '  Author Date  Description
    ' "Usage: 1st argument is the Text body which is the file location of your mail body"
    '            "2nd to 5th Arguments are the Attachments that you wish to send"
    '            "6th or the penultimate argument is the Subject of the mail"
    '            "7th or the ultimate argument is the recepient mail address"
    '            "All arguments should be sperated by space and should be enclosed in between,If there are multiple receipents then sperate them like""[email protected];[email protected]"
    '  celvin.v.kattookaran 08-Mar-2011 Creation
    ' -- Variable declarations --
    '  Option Explicit
      Dim arg
      Dim aArg(7)
      Dim i
      i=0
    For each arg in Wscript.Arguments
        aArg(i) = arg
        i = i + 1  
    Next
    ' -- Parameter declarations --
    ' Text Body   : aArg(0)
    ' Attachments : aArg(1)
    ' Attachments : aArg(2)
    ' Attachments : aArg(3)
    ' Attachments : aArg(4)
    ' Attachments : aArg(5)
    ' Subject     : aArg(6)
    ' To          : aArg(7)
    ' -- User ID and SMTP Server declarations --
      strMessageFrom = "[email protected]"
      strSMTPserver = "smtp.example.com"
      strSMTPPort = 25
      ' If your SMTP server needs authentication then uncomment the line below
      ' ***_*** strSMTPpassword = "password"
    ' # Please don't update below this point #
      strMsgBody =  CreateObject("Scripting.FileSystemObject").OpenTextFile(aArg(0), 1).ReadAll
    ' ############# MAIN PART OF SCRIPT ###################
    Select case Wscript.Arguments.count
    case 3
    strMessageTo = aArg(2)
    strEmailSubject = aArg(1)
    Set objMessage = CreateObject("CDO.Message")
    objMessage.Subject = strEmailSubject
    objMessage.From = strMessageFrom
    objMessage.To = strMessageTo
    objMessage.TextBody = strMsgBody
    case 4
    strMessageTo = aArg(3)
    strEmailSubject = aArg(2)
    strEmailAttachment = aArg(1)
    Set objMessage = CreateObject("CDO.Message")
    objMessage.Subject = strEmailSubject
    objMessage.From = strMessageFrom
    objMessage.To = strMessageTo
    objMessage.TextBody = strMsgBody
    Set fso = CreateObject("Scripting.FileSystemObject")
    if (fso.FileExists(strEmailAttachment)) then
    objMessage.AddAttachment strEmailAttachment
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment
    end if
    case 5
    strMessageTo = aArg(4)
    strEmailSubject = aArg(3)
    strEmailAttachment = aArg(1)
    strEmailAttachment2 = aArg(2)
    Set objMessage = CreateObject("CDO.Message")
    objMessage.Subject = strEmailSubject
    objMessage.From = strMessageFrom
    objMessage.To = strMessageTo
    objMessage.TextBody = strMsgBody
    Set fso = CreateObject("Scripting.FileSystemObject")
    if (fso.FileExists(strEmailAttachment)) then
    objMessage.AddAttachment strEmailAttachment
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment
    end if
    if (fso.FileExists(strEmailAttachment2)) then
    objMessage.AddAttachment strEmailAttachment2
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment2
    end if
    case 6
    strMessageTo = aArg(5)
    strEmailSubject = aArg(4)
    strEmailAttachment = aArg(1)
    strEmailAttachment2 = aArg(2)
    strEmailAttachment3 = aArg(3)
    Set objMessage = CreateObject("CDO.Message")
    objMessage.Subject = strEmailSubject
    objMessage.From = strMessageFrom
    objMessage.To = strMessageTo
    objMessage.TextBody = strMsgBody
    Set fso = CreateObject("Scripting.FileSystemObject")
    if (fso.FileExists(strEmailAttachment)) then
    objMessage.AddAttachment strEmailAttachment
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment
    end if
    if (fso.FileExists(strEmailAttachment2)) then
    objMessage.AddAttachment strEmailAttachment2
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment2
    end if
    if (fso.FileExists(strEmailAttachment3)) then
    objMessage.AddAttachment strEmailAttachment3
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment3
    end if
    case 7
    strMessageTo = aArg(6)
    strEmailSubject = aArg(5)
    strEmailAttachment = aArg(1)
    strEmailAttachment2 = aArg(2)
    strEmailAttachment3 = aArg(3)
    strEmailAttachment4 = aArg(4)
    Set objMessage = CreateObject("CDO.Message")
    objMessage.Subject = strEmailSubject
    objMessage.From = strMessageFrom
    objMessage.To = strMessageTo
    objMessage.TextBody = strMsgBody
    Set fso = CreateObject("Scripting.FileSystemObject")
    if (fso.FileExists(strEmailAttachment)) then
    objMessage.AddAttachment strEmailAttachment
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment
    end if
    if (fso.FileExists(strEmailAttachment2)) then
    objMessage.AddAttachment strEmailAttachment2
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment2
    end if
    if (fso.FileExists(strEmailAttachment3)) then
    objMessage.AddAttachment strEmailAttachment3
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment3
    end if
    if (fso.FileExists(strEmailAttachment4)) then
    objMessage.AddAttachment strEmailAttachment4
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment4
    end if
    case 8
    strMessageTo = aArg(7)
    strEmailSubject = aArg(6)
    strEmailAttachment = aArg(1)
    strEmailAttachment2 = aArg(2)
    strEmailAttachment3 = aArg(3)
    strEmailAttachment4 = aArg(4)
    strEmailAttachment5 = aArg(5)
    Set objMessage = CreateObject("CDO.Message")
    objMessage.Subject = strEmailSubject
    objMessage.From = strMessageFrom
    objMessage.To = strMessageTo
    objMessage.TextBody = strMsgBody
    Set fso = CreateObject("Scripting.FileSystemObject")
    if (fso.FileExists(strEmailAttachment)) then
    objMessage.AddAttachment strEmailAttachment
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment
    end if
    if (fso.FileExists(strEmailAttachment2)) then
    objMessage.AddAttachment strEmailAttachment2
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment2
    end if
    if (fso.FileExists(strEmailAttachment3)) then
    objMessage.AddAttachment strEmailAttachment3
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment3
    end if
    if (fso.FileExists(strEmailAttachment4)) then
    objMessage.AddAttachment strEmailAttachment4
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment4
    end if
    if (fso.FileExists(strEmailAttachment5)) then
    objMessage.AddAttachment strEmailAttachment5
    else
    Wscript.echo "No such file found in the system " & strEmailAttachment5
    end if
    end Select
    ' -- Please enable this part for testing purpose only --
    ' --- Steps for testing ---
    '     1. Remove ' **-**  from the script.
    '     2. Open a command prompt and move to the directory where sendmail.vbs is located.
    '     3. type sendmail.vbs "arguments" -- arguments must be seperated by space and should be enclosed in "".
    ' **-**  Wscript.echo Wscript.Arguments.count
    ' **-** if strMessageFrom = "" then
    ' **-**  msgbox("ERROR: Sender is not specified")
    ' **-**  end if
    ' **-** if strMessageTo = "" then
    ' **-** msgbox("ERROR: Receiver is not specified")
    ' **-**  end if
    ' **-**  if strEmailSubject = "" then
    ' **-**  msgbox("ERROR: Mail Subject is not specified")
    ' **-**  end if
    ' **-**  if strMsgBody = "" then
    ' **-**  msgbox("ERROR: Mail Body is not specified")
    ' **-**  end if
    ' **-**  if strMessageFrom <> "" then
    ' **-**  msgbox("Mail is send by: " & strMessageFrom)
    ' **-**  end if
    ' **-**  if strMessageTo <> "" then
    ' **-**  msgbox("Mail is send to: " & strMessageTo)
    ' **-**  end if
    ' **-**  if strEmailSubject <> "" then
    ' **-**  msgbox("Mail Subject is: " & strEmailSubject)
    ' **-**  end if
    ' **-**  if strMsgBody <> "" then
    ' **-**  msgbox("Mail body is: " & strMsgBody)
    ' **-**  end if
    ' **-**  if strEmailAttachment = "" then
    ' **-**  msgbox("ERROR: There is no Mail attachement, please specify one.")
    ' **-**  end if
    ' **-**  if strEmailAttachment <> "" then
    ' **-**  msgbox("Mail attachement is: " & strEmailAttachment)
    ' **-**  end if
    ' **-**  if strEmailAttachment2 = "" then
    ' **-**  msgbox("You have opted for sending only one attachement, if you wish to send one more attachment please specify the location of the next file")
    ' **-**  end if
    ' **-**  if strEmailAttachment2 <> "" then
    ' **-**  msgbox("Mail attachement is: " & strEmailAttachment2)
    ' **-**  end if
    ' **-**  if strEmailAttachment3 = "" then
    ' **-**  msgbox("You have opted for sending only one or two attachements, if you wish to send one more attachment please specify the location of the next file")
    ' **-**  end if
    ' **-**  if strEmailAttachment3 <> "" then
    ' **-**  msgbox("Mail attachement is: " & strEmailAttachment3)
    ' **-**  end if
    ' **-**  if strEmailAttachment4 = "" then
    ' **-**  msgbox("You have opted for sending only one or two or three attachements, if you wish to send one more attachment please specify the location of the next file")
    ' **-**  end if
    ' **-**  if strEmailAttachment4 <> "" then
    ' **-**  msgbox("Mail attachement is: " & strEmailAttachment4)
    ' **-**  end if
    ' **-**  if strEmailAttachment5 = "" then
    ' **-**  msgbox("You have opted for sending only one or two or three or four attachements, if you wish to send one more attachment please specify the location of the next file")
    ' **-**  end if
    ' **-**  if strEmailAttachment5 <> "" then
    ' **-**  msgbox("Mail attachement is: " & strEmailAttachment5)
    ' **-**  end if
    ' **-**  dim answer
    ' **-**  answer=msgbox("Do you wish to send a mail",vbYesNo)
    ' **-**  if answer = vbYes then
    ' **-**  msgbox("A mail will be send with the given arguments to " & strMessageTo)
    ' -- Configuration --
    '==Normally you will only change the server name or IP.
    objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
    'Name or IP of Remote SMTP Server
    objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strSMTPserver
    'If your SMTP server needs authentication then uncomment the lines below starting with obj
    'Your UserID on the SMTP server
    ' ***_*** objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = strMessageFrom
    'Your password on the SMTP server
    ' ***_*** objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = strSMTPpassword
    ' Set the authentication method
    ' ***_*** objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
    'Server port (typically 25)
    objMessage.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = strSMTPPort
    objMessage.Configuration.Fields.Update
    objMessage.Send
    ' **-**  elseif answer = vbNo then
    ' **-**  msgbox("Mail will not be send")
    ' **-**  end ifWhat i do in my bat file is then add a line after success
    call %LOG_ROTATE_SCRIPTS_DIR%\vb\sendMail.vbs "%BASE_DIR%\mail\LOG_ROTATE_Procedure_Sucess.txt" "%SCRIPTLOG%" "Oracle Hyperion %EPMENV% - Procedure for Log Rotate is successful" "%MAIL_RECIPIENT%"Regards
    Celvin
    http://www.orahyplabs.com
    Please mark the responses as helpful/correct if applicable

  • How to fix the .pdf file with error "invalid annotation object"

    how to fix the .pdf file with error "invalid annotation object"

    As long as the PDF opens, then just try saving it to a new file name. There may be a preflight script that would help troubleshoot the issue.

  • How to attach a PDF file TO the form so that recipients can access the file as a resource?

    How to attach a PDF file TO the form so that recipients can access the file as a resource?

    Sorry we do not support this. What you can do though is add a Formatted Text element and add a link to a PDF. To insert a link add some text, select the text and right click on the text (or look under the Insert menu in the top right of the scene)
    Gen

  • How to see the ms files attachment in outlook in iphone

    how to see the ms files attachment in outlook in iphone

    I believe JDK6 has the Desktop API which allows you to do this.
    Prior to that you can use the Runtime class. Read the HTML page that is displayed when running the example from this posting:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=5123633

  • Can any one tell me how to attach a pdf file to the mail through workflow

    I have a smart which i am able  to convert it to a pdf file...now.. can any one tell me how to attach a pdf file to the mail through workflow

    Hi,
    To create the task for attachment
    Use the BOR SELFITEM and method NOTES_APPEND.
    The out come of this task contain a link called attachment with a clip attached. Clisk on that icon and choose the type of attachment u want . RAW , EXCEL , TXT , PDF... Then using the import icon u can attach the document u like.
    But the TYPE : OBJ.
    Similarly using NOTE_DISPLAY method u can display the documents u like.
    In any work item u have the facility to attach any atttchment for further circulation .
    Attchment @ WORKITEM
    1.Click the workitem for which you want to create the attchment
    2.Press create attachment
    3. Add the attachment u like (PDF)
    Reward points for useful answer.
    Richard A

  • How to attach the files in SDN

    HI
    how to attach the files in SDN
    HOW ATTACH THE SEREEN SHORTS IN snd

    Hello Sasidhar,
    This question will get better response if you'll ask it in [Community Discussion|/community [original link is broken];
    Regards,
    Shyamal

  • How to write the errors into a specific file

    Hi all,
    How to handled the errors in the scenarios,By using fault messages we can informed about errors to sender.But in my case i have to gather all errors & write into a specific file.For this can i create another Communication Channel for File reciever.How can i gather error messages in the scenario.
    Early response is appreciate

    Hi,
    Bhavesh had already answered how to handle it. For saving it in a file yes you can use File Receiver adapter.
    Regards,
    Prakash

  • I have 6 pdf files to attach to an email. I don't want them all to open in the body of the email. How do I just attach the pdf file?

    I have 6 pdf files to attach to an email. I don't want them all to open in the body of the email. How do I just attach the pdf file?

    Never mind. Found the solution here: Re: How to mail PDF file as an icon

  • How to attach a text file as an attachment to email message?

    Hello Everybody,
    I have a .csv file, in which details about emp-id, emp-name, e-expenses for Reimbursement and email address are stored.
    My application reads this .csv file, and sends a mail to each employee with his id, salary details in text format. (by changing content type to "text/plain") The code is working fine. But,
    My problem is:
    The message is sent as message body to the end user.
    The end user / the person who receives this mail will not be a technical person. So,
    1) If he trys to take a print out of this e-mail, He get only half of it.(as no. of colums will be more than paper size).
    2) I am finding alignment problem. IF employee name is too big, other columns will shift to right and data will not be exactly under column header. (it is going in zig zag way)
    So, I thought sending text file with all the details as an attachment might do well.
    But, I don't know how to attach a text file to email-message body.
    code
    try
                   {               String s1="";
                                  File f1 = new File(the path);
                                  FileInputStream fstream = new FileInputStream(f1); //new
                                  BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
                                  int count=0;
                                  while((s1=br.readLine())!=null )
                                                 count++;
                                                 //out.println("within while loop "+count);
                                                 StringTokenizer st = new StringTokenizer(s1,",");
                                                 if ((st.hasMoreTokens())&&(count>1))
                                            String a=st.nextToken().trim();
                                                 String b=st.nextToken();
                                                 String c=st.nextToken();
                                                 String d=st.nextToken();
                                                 String e=st.nextToken();
                                                 String f=st.nextToken();
                                                 String g=st.nextToken();
                                                 String h=st.nextToken();
                                                 String i=st.nextToken();
                                                 String j=st.nextToken();
                                                 String k=st.nextToken();
                                                 String l=st.nextToken();
                                                 String m=st.nextToken();
                                                 String n=st.nextToken();
                                                 String o=st.nextToken();
                                                 String p=st.nextToken();
                                                 String q=st.nextToken();
                                                 String mail=st.nextToken();
                                                 String s=st.nextToken();
                                                 //out.println("b="+b+"c="+c+"d="+d+"e="+e+"f="+f+"mail="+mail);
                                                 %>
    <%
                                            String to =mail;
                                                 String from =request.getParameter("fromadd");                                        
                                                 String subject ="Statement of Expenses";
                                                 String smtp ="mail.xxxxxxxxxx.com";
                                                 String message="";                                        
                                                 message=message.concat("EMP ID");
                                                 message=message.concat("     ");
                                                 message=message.concat("Name");
                                                 message=message.concat("          ");
                                                 message=message.concat("Dept No.");
                                                 message=message.concat("     ");
                                                 message=message.concat("Acc No.");
                                                 message=message.concat("     ");
                                                 message=message.concat("*****************************************************************************************");     
                                                 message=message.concat(a);
                                                 message=message.concat("     ");
                                                 message=message.concat(b);
                                                 message=message.concat("          ");
                                                 message=message.concat(c);
                                                 message=message.concat("     ");
                                                 message=message.concat(d);
                                                 Properties props = System.getProperties();
                                                 // Puts the SMTP server name to properties object
                                                 props.put("mail.smtp.host", smtp);
                                                 // Get the default Session using Properties Object
                                                 Session session1 = Session.getDefaultInstance(props, null);
                                                 // Create a New message
                                                 MimeMessage msg = new MimeMessage(session1);
                                                 // Set the From address
                                                 msg.setFrom(new InternetAddress(from));
                                                 // Setting the "To recipients" addresses
                                            msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to, false));
                                            /* // Setting the "cc recipients" addresses
                                            msg.setRecipients(Message.RecipientType.CC,InternetAddress.parse(cc, false));
                                            // Setting the "Bcc recipients" addresses
                                            msg.setRecipients(Message.RecipientType.BCC,InternetAddress.parse(bcc, false)); */
                                            // Sets the Subject
                                            msg.setSubject(subject);
                                            // set the meaasge in HTML format
                                            msg.setContent(message,"text/plain");
                                            // Set the Date: header
                                            msg.setSentDate(new java.util.Date());
                                            // Send the message
                                            Transport.send(msg);
                                            // Display Success message
                                            result =result.concat("<tr><td>"+b+"</td>"+"<td>"+to+"</td></tr>");
                                                      }//end of if of hasmore element
                                       }// end of while loop
                        out.println(result);                    
    }catch(Exception e)
                        // If here, then error in sending Mail. Display Error message.
                        result="Unable to send your message";
                        out.println("e="+e);
    Any help will be appreciated.
    Thanks and regards.
    Ashvini

    <html>
    <p>
    MimeBodyPart mbp1 = new MimeBodyPart();
    mbp1.setText("Your Messages");
    MimeBodyPart mbp2 = new MimeBodyPart();
    FileDataSource fds = new FileDataSource("Your Attachments");
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setFileName(fds.getName());
    Multipart mp = new MimeMultipart();
    mp.addBodyPart(mbp1);
    mp.addBodyPart(mbp2);
    msg.setContent(mp);
    msg.saveChanges();
    msg.writeTo(System.out);
    msg.setSubject(subject);
    Transport.send(msg);
    </p>
    <B><U>See you can add above code in your program and see the magic</U></B>
    Bye
    regards--
    Ashish
    </html>

  • How to attach a .pld file in oracle Designer

    When we try to generate a form out of designer we are getting the error ilke
    sample.pld file is required. The Questions on it are,
    1. What is a .pld file in a designer mean.
    2. How to attach a .pld file in oracle designer for the generation of forms.
    Thanks,
    Ramesh.R

    Hi Erik,
    Thanks for the update.
    My problem in designer is in the desginer under the generator preference dialog window the property "Form/Libr" attachment the "module specific library attachment" has the value like "ABC". I am having ABC.pld file in my system. I have included the file path in the pll file path in the Generator options tab.
    While generating the forms from designer i am getting the error "CDG-01373 ERROR: Module ABC: Unable to attach library ABC".
    My Questions are how to attach the ABC.pld file for this error. Thanks in advance
    Thanks,
    Ramesh.R

Maybe you are looking for

  • USB remote access problem for E3000?

    Hi, I recently got the E3000 router because it has USB and is dual band simultaneous router. It's connected to ATT modem+router. I've disabled wireless on ATT 2wire modem and connected the linksys router to it. Now after a lot of messing with it i ha

  • ExtJS Create new panel programatically

    Good morning, I am trying to create a widget in a TabPanel extending Multifield Widget, when a field in the multifield is created this one creates a new Tabpanel in the Dialog. But the Tabpanel created, its content is not looking like if the tabpanel

  • Upgrading from GB2 to GB3 need to add  to inst library/own loops etc etc

    if you have examined as i have the innards of GB3 and compared it to GB2 there are many many additions in sampler sampler files, etc... let alone your already saved loops. This is not an easy task. GB2 has stuff 3 dont have and vc versa. I hope that

  • Can I run an action on all open files?

    I'm converting some of my images to grayscale with an action. The images are spread across hundreds of folders and only some of the images need to be converted. I want to be able to look at the image to make sure it should be converted (or not, as th

  • Enquiry about application

    Does Nokia C5-00 support video calls through skype application..