Sending mail in F.27 (Account statement)

Hi,
How can we send a mail (internet) in T-Code F.27.
There is any custo point? what's the T-Code ?

We are currently looking at a way to generate the statement and send automatically to the customer. Our requirement is to give the ability to either Fax or E-mail as well as send a copy to the accounting clerk.  The clerk we can get probably get via setting up a job and having it delivered to the SAP inbox.  The tricky part is getting this to the customer automatically.  Are you trying to do something similar.
Regards,
Sara Perry

Similar Messages

  • CANNOT SEND MAIL FROM .MAC SMTP ACCOUNT

    Hello everyone--
    I can receive mail from my .mac account and have done extensive troubleshooting including:
    1. Changing ports from 25 to 587
    2. Deleting and re-installing mailbox
    3. Reading a hosts of topics
    4. I have the serving settings with SSL unchecked
    ...but this still giving me the same trouble. I cannot send out because my email address keeps getting rejected.
    Any suggestions? Thanks!

    Are you also accessing an email account and SMTP server in Mail that is provided by your ISP used for connecting to the internet?
    If so, can you send mail with this account and SMTP server?
    If the answer is yes to both questions, select/use your ISP's SMTP server to send mail with your .Mac account which is invisible to all recipients.
    Most, if not all ISPs now block the use of SMTP servers outside of their network on Port 25. Some ISPs allow the use of an authenticated SMTP server only (such as the .Mac SMTP server) that is outside of their network on Port 25 but some block its use regardless.
    Changing the Port for the SMTP server that is outside of the ISP's network from 25 to 587 usually resolves it but sometimes not depending on the ISP's restriction.
    Have you contacted your ISP regarding their restrictions and/or requirements when using an SMTP server that is outside of their network or not provided by them?
    Using your ISP's SMTP server to send mail with your .Mac account should work and it may be required regardless.

  • Problem in sending mail for a pop3 account using transport.send(msg)

    hi,
    i am having problem in not able to send mail for a pop3 account ...
    I have written an email gateway which listens to my pop3 account...on email arrival it listens nd extract the contents and send it as an sms msg...upon failure it needs to deliver the mail to sender id.I am using quartz to listen.
    i am using jboss for server and java mail api.
    here is my code
    MimeMessage mimemsg = new MimeMessage(session);
                                                           mimemsg.setFrom();
                                                           mimemsg.setRecipients(Message.RecipientType.TO, to);
                                                           mimemsg.setSubject(subject);
                                                           mimemsg.setText(parsedText);
                                                           mimemsg.setSentDate(new Date());
                                                           mimemsg.setContent(strBuff.toString(), "text/html");
                                                           System.out
                                                                                    .println("Before sending mail");
                                                           Transport.send(m);
                                                                System.out.println("message sent successfully");
    excepition i am getting is :
    2008-09-12 11:45:11,140 INFO [STDOUT] Before sending mail
    2008-09-12 11:45:11,140 ERROR [STDERR] javax.mail.IllegalWriteException: POP3 messages are read-only
    2008-09-12 11:45:11,140 ERROR [STDERR]      at com.sun.mail.pop3.POP3Message.saveChanges(POP3Message.java:438)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at javax.mail.Transport.send(Transport.java:97)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at com.openstream.emailgateway.sources.ListenEmailGateway.execute(ListenEmailGateway.java:422)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at sun.reflect.GeneratedMethodAccessor89.invoke(Unknown Source)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at java.lang.reflect.Method.invoke(Method.java:585)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.invocation.Invocation.performCall(Invocation.java:359)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:495)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:158)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:116)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:63)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:121)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:350)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:181)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:109)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:205)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:138)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:402)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.ejb.Container.invoke(Container.java:960)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at sun.reflect.GeneratedMethodAccessor88.invoke(Unknown Source)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at java.lang.reflect.Method.invoke(Method.java:585)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    2008-09-12 11:45:11,140 ERROR [STDERR]      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.invocation.local.LocalInvoker$MBeanServerAction.invoke(LocalInvoker.java:169)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:118)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.invocation.InvokerInterceptor.invokeLocal(InvokerInterceptor.java:209)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:195)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:61)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.ejb.plugins.inflow.MessageEndpointInterceptor.delivery(MessageEndpointInterceptor.java:263)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.ejb.plugins.inflow.MessageEndpointInterceptor.invoke(MessageEndpointInterceptor.java:140)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.proxy.ClientMethodInterceptor.invoke(ClientMethodInterceptor.java:74)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at $Proxy73.execute(Unknown Source)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.jboss.resource.adapter.quartz.inflow.QuartzJob.execute(QuartzJob.java:57)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.quartz.core.JobRunShell.run(JobRunShell.java:203)
    2008-09-12 11:45:11,171 ERROR [STDERR]      at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    2008-09-12 11:45:11,171 INFO [STDOUT] USer flag ..[Ljava.lang.String;@115c6cb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    as i am writing the message failure details to a template...
         //on failure to send messages , reply to the sender about the failure
                                                                strBuff= tempDetail.writeToTemplate(smsmsg);     
    is that bcoz i am getting an exception

  • Can not send mail to my pop account

    My ipad1 will ot send mail in my pop account since I just upgraded today.

    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Also see:
    Reinstall OS X Without Erasing the Drive
    OS X Yosemite- Reinstall OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • Why can I Only send mail from my iCloud Account and none of my others yet can receive from all ?

    why can I Only send mail from my iCloud Account and none of my others yet can receive from all ?

    Morning Allan ,sorry hit the wrong button. Thank you for responding . Meant to reply not notify you that my issue was solved . It's not . I imported all my settings via iTunes and all of the accounts receive mail as I said but can't send . Can you tell me exactly what to change with regard to my outgoing smtp. and PE the authentication ?

  • I can t send mails with my telus account

    I can<t send mails with my telus account but I can received it. Does anyone of you knows how to fix it

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
     Cheers, Tom

  • My talk talk email account was set up by a helpful apple employee to only send mail using an iname account (it worked perfectly well before this). How do I undo this?

    my talktalk email account was set up by a helpful apple employee at one of their shops to only send mail via an iname account.
    It had worked perfectly well before.
    I have tried but been unable to undo this. Help!

    From the Mail menu bar, select
    Window ▹ Connection Doctor
    Look for the unwanted SMTP (outgoing mail) account in the window that opens. Double-click it. Another window will open, showing a list of all the outgoing mail accounts. The unwanted one will be selected. Click the minus-sign button to delete it, then click OK.
    If there's more than one unwanted account, repeat.

  • Sender email address for Customer Account Statement

    Dear Experts,
    Here's an issue that my colleague and I are currently facing:-
    The Customer Account Statements that are sent via email in the transaction F.27 show that the sender email address is not equals the Accounting Clerk (KNB1-BUSAB) maintained in customer master data (FD03). Instead, the sender email address here is the email address of the person executing the transaction F.27.
    I've looked through some programs (RFKORK00 and RFKORD10), and the variant used (SAPMA). Unfortunately, we still could not determine the root cause for this issue. What should we be looking into, and how can we resolve this issue too?
    Any inputs would be much appreciated. Thanks.
    Regards,
    Deborah

    Hi Ajay,
    Thanks for your input. Really appreciate it. Would you please enlighten me further?
    "The accounting clerk’s name is then printed in any correspondence with the customers or vendors."
    The statement above leads me to think that consequently, the accounting clerk's email address should be the sender email address for the mail that is sent to the customer.
    Also, when I hit the 'F1' key on the Accounting Clerk (in transactions F.27 or FD03), the following texts are shown:-
    "Accounting clerk
    Identification code for the accounting clerk.
    The name of the accounting clerk defined by this identification code can be used in the payment program for correspondence and reporting (for example, open item lists)."
    Again, this leads me to think that the sender email address should be the accounting clerk's email.
    P/S:
    The customer is saying that this should not happen, so my colleague and I are just investigating this issue further.
    Regards,
    Deborah

  • Cannot send mail from my hotmail account on my iphone 4s

    i bought a iphone 4s and set up my hotmail account through the Mail setting - Add accout - Hotmail.  I have never been able to send mail through this set up. i have deleted the account and re-setup the account several times and had no success.  I am able to recieve email but this is still useless if I cannot reply.  Is there anyone else with this problem? can anyone help me?
    I love this phone, but this is definately a major downfall and I am really %&#@...... unhappy.

    I was having trouble emailing from Gmail on my iPhone 5, because the server didn't allow relaying, as some folks in this thread described . Deleting and setting the account up again didn't help. Someone in this thread said to go to Settings, Gmail, Advanced, Server Port, and change it to 25.  It worked like a charm.  BUT- here's the weird part: when I went back to check the server port, it had changed itself back to the previous port # and it's still working fine.  Go figure.

  • After I downloaded Yosemite I can no longer send mail with my google account only receive mail

    I installed Yosemite and I wish I had waited , I can now receive mail on my google account but can't send
    I just get the drop down box with Google off line try another server
    My laptop works fine but that still has maverick on it any help would be appreciated.
    I have already deleted all my mail accounts and rebooted but no luck after reinstalling mail as per laptop installation

    Well, it happened again.
    This morning I was sending out a bunch of emails and around the 10th one they started kicking back.
    This time I did not fool with any of the settings on my computer.
    I turned off both the modem and router.  Started them back up and the problem still exists.
    The last time this happend, about a week ago, it started working again within an hour.
    This problem ony crops up when I am sending many emails at the same time
    Throughout the rest of the week it works fine.
    This time I by-passed the router and the mail will go out.
    So it looks like someting is going on with the router.
    Whenver I hook the router back up, outgoing mail will not work.
    It says it cannot send mail using my server.
    I double checked all of my mail setings and nothing has changed
    I also did a hard rest on the router, but it did not help.
    Again this problem is with 2 computers. 
    I have an early version of Airport Extreme Model A1143.
    It's around 5 years old.
    Whenever I call my ISP they claim everything checks out on their end and they don't offer any help.
    I am sure if I leave the router unplugged for a day or so, it will start working again.
    Is there any way a router can break down and allow incoming mail and internet but not outgoing mail?
    I am am at wits end with this problem.
    I would be willing to go out and get the latest Airport Extreme if I knew for sure it would cure this problem.

  • Sending Mail with multiple forward accounts

    I currently have approximately 4 email accounts being forwarded to my gmail account. This is the account I use through Mail. Is it possible to send mail out that is, say from my school email account and still have it say that it is from my school email account instead of from the gmail account? I really need this feature. Please Help

    WJAADAMS wrote:
    I currently have approximately 4 email accounts being forwarded to my gmail account. This is the account I use through Mail. Is it possible to send mail out that is, say from my school email account and still have it say that it is from my school email account instead of from the gmail account?
    if you send an email from your school account it will say that it's from your school account. if you want to send an email from gmail but have it say that it's from your school account, this is impossible. The best you can do is include a reply-to field so that if someone replies to it it will go to your school address.

  • Mavericks mail can't send mail from the correct account

    I have 5 mail account(index 1,2,3,4,5) in my mail app.
    the default account is account 1.
    After I new a mail and change the sender account to another account(not default account), the mail receiver always receive this mail from my default account address. This appeared from one week ago.
    Thanks for any feedback.

    btw: all the 5 mail accounts are gmail accounts.
    for icloud or other accounts, it works well.

  • "Unable to send mail" using Verizon email account

    No matter what I try, my Incredible will not send an email using my Verizon email account. I receive emails but cannot send. I've verified the account settings numerous times and the verifications always work. But I still get the "Unable to send mail" message. Initially I thought it was the port but I've tried both 25 and 587. Neither work. I know I've sent messages before but it's been a while. Anyone have any ideas?

    I tried SSL with 25 and 587 (Verizon recommendation). Still no go.
    BTW, there isn't any way to save the Mail size limit and Download options is there. Every time I go thru this I have to go back and set these up again.
    Thanks again for your help.

  • Migrating from Entourage and now can't send mail except from  Mac account

    I've just started using Mail after using Entourage for many years and I must say it's been a frustrating start (having separate applications for Mail, Address Book and Calendar is a pita so far). But most importantly I can't get Mail to allow me to send mail from any account other than from my .Mac account (no problems receiving mail). I'm using the same outgoing server settings as in Entourage but no joy - I get an error message saying it can't use the outgoing server. I have no problems with this in Entourage. For example, from Entourage I can send mail using my BT Internet account or my Bulldog Home account using the following outgoing mail server settings:
    SMTP SERVER: mail.bulldoghome.com
    ACCOUNT ID: [email protected]
    PASSWORD: my email password
    Also, how do I access my hotmail?

    Ok here's another one. When I delete a mail retrieved from a non Mac mail account (eg my BT Internet account) and empty my Trash in Mail it does not delete the email off the (BT Internet) server. I have not checked "remove copy from server after retrieving a message" so that I can access the email from multiple locations. But when I do delete it I obviously want it removed from the server.

  • How to set up my iphone to send mail on verizon pop account

    I have a Verizon account. I can receive mail on my iPhone just fine, but I can't send mail from it. I tried putting the user name and password under outgoing mail and still nothing. Any suggestions???

    If Verizon's SMTP server does not support authentication, using authentication will not work.
    Do you have a wireless network at home that you access via WiFi with the iPhone (connected to the internet via Verizon) and if so, does this occur when connected via WiFi or when connected via EDGE or both?
    First thing to try is using 587 as the server port for Verizon's SMTP server.
    Go to Settings > Mail.
    Select your Verizon account and under Outgoing Mail Server (SMTP) in the Host Name field (which is Verizon's SMTP server address), add 587 to the address separated by a colon.
    As an example only since I don't know Verizon's SMTP server address:
    smtp.verizon.com:587
    And the User Name and Password fields should be blank if Verizon does not support SMTP authentication.
    If this doesn't work when connected via the EDGE network, AT&T Wireless has an SMTP server you can use to send messages with the account.

Maybe you are looking for

  • Service Registry containend in SOA Suite?

    Bonjour! I just downloaded and installed Oracle SOA Suite 10.1.3.1 plus patch set 10.1.3.3. But now I wonder whether the Oracle Service Registry is really contained in the suite (as said in the documentation) and how I can configure it? Is there any

  • Split and merge frames.

    Hello everyone. Simple question. When i want to make rectangle path  with many rows and columns i use arrows on keyboard. (like this video  http://www.youtube.com/watch?v=5Gjhpk8Vmo0 )  But, how can i split and then merge created frame yet? Certainly

  • Metadata shows in Photoshop but not Bridge

    I have a question about files not showing metadata. It looks to be random - because it happens to psbs, tifs, and psds with no particular trend to help me narrow down the problem. Does anyone know what settings might be turned off / changed that are

  • Error description in ssis

    I have redirected the error rows and added script component to get the error description, the error description what I get is "No status available" instead I want it to be more meaning which in my case is "Foreign key constraint failed" . How someone

  • Why can't I receive video texts on my iPhone anymore?

    For some reason I can't open videos that are sent in a text to me anymore. It isn't a size or length issue because my friend sent an old one that she had sent me in the past and I could open, but I can't open it now.