SEND FAX IN LOTUS NOTES ENVIROMENT

HI,
HOW I CAN SEND A FAX TO LOTUS NOTES FROM ABAP SAPSCRIPT  OPEN FORM IN ABAP SAPSCRIPT RELEASE 4.7?

Another work around: in the new message tab change the "format" from rich text to plain text... then the send button works...

Similar Messages

  • Send mails via Lotus Notes using VFP

    Hi all,
    I have an VFP application which is allowing send emails from Lotus Notes. Currently it sends mails from the default account in Lotus notes. But now there is a requirement as follows.
    An email address can be defined from our application. Say
    [email protected] Lotus notes has been configured with two mail accounts such as
    [email protected] and [email protected] and the default email is
    [email protected] Now we have to send emails from our application with
    [email protected] email address. Not the default email address.
    To do this we have to read all email accounts configured in Lotus Notes using VFP. And look for the email address
    [email protected] and mail should be sent with that account. Can anybody guide me how to do this using VFP? Thanks.
    Best Regards,

    This is actually a Notes question. You need to find out whether the Notes automation server provides what you need and how to do it.
    Tamar

  • Out of office message when sending mail to Lotus Notes from SAP

    Hi,
    Is it possible to have an 'out of office' message when sending mail to Lotus Notes from SAP?
    I'm sending account statements by mail via a modified version of function FI_OPT_ARCHIVE_CORRESPONDENCE. The SAP username is send as a parameter, and later converted to the e-mail saved in the user profile. This works, - but I would like to have an out of office reply if the user I send to is out of office.
    Hope someone can help...
    Regards,
    Lene

    As Thomas pointed out, you can use regular SMTP mail to send the contents to Lotus Notes. You can use the function module SO_OBJECT_SEND or any of the SAP Office function modules to do this.
    Only thing to remember is that the SMTP may have been disabled by your basis team due to security risks involved. An alternative could be a lotus notes connector available from IBM.
    Srinivas

  • Java program to send email from lotus notes

    Hello,
    Please anyone suggest me how to send email from lotus notes using java.
    Thanks.

    I don't understand the question. Are you asking:
    1. How do I send e-mail from Lotus notes manually? Press the Send button.
    2. How do I send e-mail from Java? Look into the Java Mail API. Doesn't require Lotus Notes (or any other e-mail client, for that matter).
    3. How do I send e-mail to a Lotus Notes address? Just send e-mail to the address (see # 2 above). Nothing special required just because the recipient uses Lotus Notes. FYI: I use Lotus Notes (though I hate it) because it's our company's standard & have written Java apps that send e-mails to Notes. The only time I've had to be aware the recipient was a Notes client was when I was sending HTML formatted messages; then I had to pay attention to the limitations of Notes' brain dead HTML parser.

  • Unable to send FAX of Delivery Note Adobe form - Not visible in SOST

    Hello,
    I have created a delivery note adobe form and the output medium has been configured as FAX. But when we are doing any delivery in VL02N, the FAX output is not going to SOST.
    Let me tell you that, for printing it's working fine. It's going to SP02 successfully.
    Thanks
    Satya

    Hello Satya,
    This issue may be due to several reasons.    Here are some of the reasons.
    1. check the settings in the of fax in scot transaction.
    2. check the whether any virus scan profile is active, if it is active, check whether any default profile is maintained or not.
    Please provide me the procedure or function module which you are using to send fax.  so that it will be easy to understand the type of the error.  Also check whether email is working for the above scenario
    thanks,
    Rakesh.

  • Sending mail to LOTUS NOTES inbox.

    Hi all,
    I am working on WORKFLOWS and i need to send a mail to lotus notes inbox. I have got the function module to send the mail.I Created a method for sending the mail. But Where and how to impletement this method in the work flow.
    Please through some light on this.
    Regards,
    Gautham

    As Thomas pointed out, you can use regular SMTP mail to send the contents to Lotus Notes. You can use the function module SO_OBJECT_SEND or any of the SAP Office function modules to do this.
    Only thing to remember is that the SMTP may have been disabled by your basis team due to security risks involved. An alternative could be a lotus notes connector available from IBM.
    Srinivas

  • Can JavaMail send mail to Lotus Notes?

    Can JavaMail send e-mail to Lotus Notes?
    If I can't, is there any alternative method?
    I need it for my J2EE project.
    Thanks!!
    Dan. :)

    Cann you explain how?
    Can you put an example?
    Thanks in advance.

  • Sending email via Lotus Notes

    Does anyone have any examples of sending e-mail through Lotus Notes via forms 6i? I have searched the forum and there seems to be very few items on Lotus Notes.
    Thanks in advance.
    Jeff

    A simple way is the host-command.
    The command-string is "start mailto:address?body='Text'&subject='Text"
    The length of host-string is limited.
    Text_io can help: Create the cmd-file and then start it thru the host-command.
    Also simple: Create a html-file x.html and start this via host(Start x.html')
    I am interested und this topic, too, because I can't attach files with this simple methods.
    Wolfram

  • Send mail via Lotus Notes R5

    Does anyone have any examples of sending e-mail through Lotus Notes via forms 6i?
    I have searched the forum and there seems to be very few items on Lotus Notes.
    Thanks in advance.
    Lakmal

    Fainaly I found the way.. here is the coding
    PROCEDURE send_email(p_recipient_in IN VARCHAR2,
    p_copy_to_in IN VARCHAR2,
    p_blind_copy_to_in IN VARCHAR2,
    p_subject_in IN VARCHAR2,
    p_text_in IN VARCHAR2,
    p_return_receipt_in IN VARCHAR2,
    p_no_of_attachments IN NUMBER DEFAULT 0,
    p_mood_stamp_in IN VARCHAR2,
    p_view_icon_in IN NUMBER) IS
    -- Local Variable Declaration
    lv_args ole2.list_type;
    lv_db ole2.obj_type;
    lv_doc ole2.obj_type;
    lv_return_receipt VARCHAR2(1);
    lv_session ole2.obj_type;
    lv_attach1 ole2.obj_type;
    lv_attach2 ole2.obj_type;
    lv_mailserver VARCHAR2(200) := 'ew-cmb';
    lv_sqlerrm VARCHAR2(255);
    BEGIN
         lv_session := ole2.Create_Obj('Notes.NotesSession');
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, lv_mailserver); -- Mail Server
         ole2.Add_Arg(lv_args, 'names.nsf'); -- Mail File
         ole2.Add_Arg(lv_args, 'mail\Lakmal_M.nsf'); Mail File
         lv_db := ole2.Invoke_Obj(lv_session, 'GetDatabase', lv_args);
         ole2.Destroy_Arglist(lv_args);
         lv_doc := ole2.Invoke_Obj(lv_db, 'CreateDocument',lv_args);
         ole2.Set_Property(lv_doc, 'SendTo', p_recipient_in);
    If (p_copy_to_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'CopyTo', p_copy_to_in);
    End If;
    If (p_blind_copy_to_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'BlindCopyTo', p_blind_copy_to_in);
    End If;
    -- Guidelines for mood stamp as to what argument values should be passed
    -- ''- Normal
    -- P - Personal
    -- C - Confidential
    -- R - Private
    -- F - Flame
    -- Q - Question
    -- G - Good Job!
    -- M - Reminder
    -- J - Joke
    -- T - Thank You!
    If (p_mood_stamp_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'SenderTag', p_mood_stamp_in);
    End If;
    If (p_subject_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'Subject', p_subject_in);
    End If;
    If (p_text_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'Body', p_text_in);
    End IF;
    --To embed attachments add the following lines to code immediately after
    -- setting the 'Body' property :
    If (nvl(p_no_of_attachments,0) = 0) then -- No attachments
         null;
    Else
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, 'Attachments');
         lv_attach1 := ole2.Invoke_Obj(lv_doc, 'CreateRichTextItem', lv_args);
         ole2.Destroy_Arglist(lv_args);
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, 1454);
         ole2.Add_Arg(lv_args, '');
         Ole2.Add_Arg(lv_args, 'C:\Install.log');
         lv_attach2 := ole2.Invoke_Obj(lv_attach1,'EMBEDOBJECT', lv_args);
    End If;
    -- 1-Return Receipt
    -- 0-No Return Receipt
    lv_return_receipt := TRANSLATE(NVL(UPPER(p_return_receipt_in), 'N'), ' NY', '001');
    ole2.Set_Property(lv_doc, 'ReturnReceipt', lv_return_receipt);
    If (lv_return_receipt = '1') then
         ole2.Set_Property(lv_doc, 'DeliveryReport', 'B');
    End If;
    -- The following values can be used to set the icon that appears to the left
    -- of the senders name.
    -- 0 - none
    -- 10 - finger with ribbon
    -- 23 - newspaper
    -- 74 - flame
    -- 83 - thumbs up
    -- 85 - happy face
    -- 133 - envelope
    -- 159 - star
    -- 162 - question mark
    -- 163 - investigator
    -- 166 - glasses
    -- 169 - red circle
    -- 170 - gold circle
    If (p_view_icon_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, '_ViewIcon', p_view_icon_in);
    End If;
    ole2.Destroy_Arglist(lv_args);
    lv_args := ole2.Create_Arglist;
    ole2.Add_Arg(lv_args, 0);
    ole2.Invoke(lv_doc, 'Send', lv_args);
    ole2.Destroy_Arglist(lv_args);
    ole2.Release_Obj(lv_session);
    ole2.Release_Obj(lv_db);
    ole2.Release_Obj(lv_doc);
    EXCEPTION
         WHEN OTHERS THEN
         lv_sqlerrm := substr(sqlerrm,1,255);
         Message('Unable to send mail to ' || p_recipient_in);
         Message('Unable to send mail to ' || p_recipient_in);
         Message('Error is : '||lv_sqlerrm);
         Message('Error is : '||lv_sqlerrm);
         Set_Application_Property(CURSOR_STYLE, 'DEFAULT');
         RAISE;
    END;

  • Send email to lotus notes

    Dear All,
    First of all I don't know if this is the correct forum but I have not seen a specific forum for oracle 8 so I posted the message in this forum.
    I have stored into a table Lotus Notes address and messages.
    I want to schedule a job on Oracle Server that send messages to a Lotus Notes Server.
    Lotus Notes version is 4.6.x and Oracle database is 8.0.5 EE.
    Any suggestion are welcome.
    Bye

    Hi,
    If you want to be able to send email to the distribution list in Lotus Notes from SharePoint, you
    can set the SMTP service address of Lotus Notes server in Central Administration->System Settings->Configure Outgoing email settings->Outbound SMTP Server.
    And you need to set the Lotus Notes to accept anonymous email.
    Here are some similar threads for you to take a look:
    https://social.technet.microsoft.com/Forums/office/en-US/4f40f6de-7c1e-4543-9e48-2058a95ce468/email-setting-configuration-for-domino-server-85?forum=sharepointgeneralprevious
    https://social.technet.microsoft.com/Forums/en-US/04bf7b7a-8797-4e46-b3ca-bddbe5d6d9ba/sharepoint-foundation-lotus-notes-connector-for-outgoing-smtp-mails-?forum=sharepointgeneralprevious
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • SAPCONNECT Send mail to Lotus Notes

    Hi,
    I would like to know if is possible send mails from SAP to Lotus Notes.
    When I send a mail to other destination by SMTP Node, the process works successfully.
    But if the destination is a Lotus Notes address this process fails.
    Could you help me with this issue?
    Thank you very much in advance.
    Best regards.
    Emilio Dorado.

    Hi Alfredo,
    Yes its posible, please install Lotus Notes Domino MTA.
    And configure the notes.ini
    $SapDestination=MAIL_GATEWAY_CRMXXX
    $SapClient=XXX
    $SapUsername=MAIL
    $SapLanguage=E
    $ObjServerSearchChars="_"
    $ObjServerReplaceChars=" "
    $ObjClientSearchChars="@ "
    $ObjClientReplaceChars="&_"
    $ObjServerDontAttachBody=0
    $ObjServerAddressIsInternet=1
    $ObjServerMinConfirmation=6
    $ObjServerChangeRAWtoTXT=1
    Regards,
    Fendi Suyanto

  • Send button in Lotus Notes webmail won't work after Firefox update

    I've been using Firefox to connect to my company's Lotus Notes email servers with no problems for months now. Starting this past Friday, after an update, the send buttons no longer work. I can get and view my email but cannot send anything out. Anyone know how to fix this?

    Another work around: in the new message tab change the "format" from rich text to plain text... then the send button works...

  • Unable to send fax with verizon (not fios) landline

    Recently switched from comcast 2 verizon (not fios) and cannot send faxes. I have a dell all in one printer Photo 926. Can someone please help, I need my fax asap! Thank you!

    Do you have a dialtone at the phone jack which the fax machine uses?  I would recommend connecting a standard phone to this jack to check for dialtone.
    I do not know what settings are available for your fax machine, but it may also be worthwile to reset the fax machine to factory defaults and start from there.  We do not limit your ability to send faxes.
    If this does not resolve your trouble, please send me a Private Message and we can work on a resolution.

  • Send Emails Through Lotus Notes

    Dear Experts..,
    I am developing an object in which I have to send mails to the Users through Lotus Notes.
    The scenario is that..
    1. Smartforms has to me created for different cases.
    2. The corresponding Smartform has to be called based on the Case and it has to be populated with values.
    3. Then the Smartform output has to be converted to HTML Format.
    4. It has to be sent to Lotus notes along with "mail id" and "relevant Subject".
    5. Then I have to receive a acknowledgement from Lotus Notes about the successful delivery of the mail.
    Please explain me how to send the converted Smartform to the users email id (this mail id is a external mail id) through Lotus Notes.
    Thanks in advance.
    Regards,
    Naveen Kumar G

    Dear Experts..,
    I am able to do up to the conversion of the Smartform.
    The remaining is where I got messed.
    I am using a FM 'SO_NEW_DOCUMENT_ATT_SEND_API1'...., but this will send a mail directly.. not through Lotus Notes.
    But I was given a requirement like, I have to use Lotus Notes.
    Please help me in this regard.
    Thank you,
    Naveen Kumar G

  • 7520 can send faxes but can not receive faxes

    We just installed the 7520 and everything seems to work fine except receiving faxes. 
    We can send faxes just fine, however the strange thing is when I try to call the fax number from a phone it acts like its dead, you never hear it ring or anything then it just disconnects. If I switch the phone cord to the Ext connection in the back of the device and then call the number I can hear it ringing on the calling phone and on the 7520 device.  The display lights up because there is an incoming call and shows that auto answer is on, but when it answers we never hear the normal fax type tones and it never connects.
    The phone is being supplied by Time Warner Cable and it plugs into the cable modem. We called Time Warner and they told us that the line for the fax is an analog line but I have no idea how to check that or prove that.
    I can't figure out why it will send faxes with no problem but seems like its a dead line when trying to receive a fax.
    Any thoughts?
    This question was solved.
    View Solution.

    With the printer's phone cord connected to the wall jack and the "1-Line" {nothing plugged into the 2-Ext} port, try running the Fax Test.  See Step 5.  Does everything pass?
    Make sure the Distinctive Ring option is set for All Rings unless you have a distinctive ring set up with your phone service provider.
    If you use a filter for your telephone, try using a filter for the printer.
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input ! ___________________________________ _____
    Thank You,
    Rich
    Expert

Maybe you are looking for

  • Pdf links that work in XP won't work in Windows8

    I have 100's of pdfs created via msword/acrobat8pro with hyperlinks between the docs. These work fine on my old pc running XP, but the links fail to work in Windows 8. Links within docs and to the web work, but its the links between different pdfs th

  • Compare all records in a table

    Hi, I have this table CRN Building Room 1 TH 100 2 TH 100 3 MC 200 4 MC 200 5 MC 100 6 DA 300 7 TH 100 Output: Table Course CRN Building Room 1 TH 100 2 TH 100 7 TH 100 3 MC 200 4 MC 200 I want to go through the whole table and and select 2 or more c

  • Mail has collapsed: No Content - Emergency

    I am reposting this question, becuse I mistakenly marked it as solved. It is far from solved. Mail keeps losing its content. I have reindexed mailboxes, and the content comes back, but the slightest action in Mail, like trashing one email, and it all

  • Apple should allow a method to revert to iOS 5

    I had been avoiding iOS 6 due to the known problems with the inferior maps app.  Recently, due to a hardware problem, Verizon had to send me a new iPhone 4.  Configuring the phone hung up several times but eventually I restored my data. Unfortunately

  • Regarding ALE and IDOC

    Iam an Infant as far as ABAP is concerned. I have some basic ABAP knowlegde and i know SAP scripts and smart forms. But no idea about data transfer techniques. I have one silly question : Is it possible to learn ALE and IDOC on a home PC. I mean can