Problem with email out put

Hi SD gurus,
I have enabeld emailing fucnitnality for an out put.
Maintained record for the same.
When I am creating order it is pulling the out put in to the order.BUt when i am saving the order the out put didnt get succes and it is red color.
I checked  proceeing log and the error is " Maintain an output device in your user master record "
I even maintined out put device as per above error message in SU01.
But sill getting same error in the out put.
Can somebody help resolve this.
Thanks in advance,
Vivek

Hi,
Goto VV12 T.Code.
Select your output type.
Execute.
Click on Communication.
Here maintain the output device as LP01/LOCL or as the entry required for you from F4 help.
Tick print immediately.
Save.
Regards,
Krishna.

Similar Messages

  • Problem with Input out put parametes of IViews in callable objects

    Dear Friends,
    I have designed model which contains 2 IViews
    Apply leave IViews
    Approve leave Iviews
    In both the cases i have exposed the in & out parameters using start & end point.
    Finally deployed in portal successfully
    Guided procedures ->Design Time
    I have created folder
    when i create callable objects using this IViews , i dont see the input & out put parameters exposed in context parameters tab for this IView.
    Any step i missed.
    Regards
    shekar Chandra

    HI Nishi
                struck up with minor problem,
    We have a application designed in VC.It contains
    Create request
    Approve Request(approve or reject buttons)
    IF approved then
    a.Book Request IView
    b.Summary Iview
    If Rejected then
    a.rejected IView.
    When i am designing Process with Sequential block,
    all the actions namely
    create request
    appprove request
    reject
    book
    summary
    are processingone one by as action mentioned in sequential block irrespective of approved or rejected.
    I cannot go for alternative block, since the result state buttons are desinged in IView only namely(Approve/reject).
    How to overcome this probelm any suitable solution?
    regards
    shekar chandra

  • Problem with dispalying out put of report RLLI0400

    i have added one field in the report by copieng the report to zprogram...
    i want see the out of the report ,but i am not getting any out put just giving the message saying that tha document is printed...
    i need to change code in this report?
    i need to change any thing in form DRUCKER_EINSCHALTEN,
    if yes please tell me what changes are needed.....

    Hi Kranthi,
    in sub routine DRUCKER_EINSCHALTEN omit the code NO-DIALOG with NEW_PAGE command. i think it is genreating output into a spool request and suppress the dialog. if you omit this NO-DIALOG it will generate output.
    Regards
    Krishnendu

  • Problem with an Out Put Stream Writer

    I want to open an URL so I use the following code inside a try bolc
    URL recup = new URL("http://www.sun.com");
    getAppletContext().showDocument(recup,"_blank");but once I add the following line of code
    writer = new OutputStreamWriter(conn.getOutputStream Ican't open the URL mentioened above
    that means the following code doesn't work
    writer = new OutputStreamWriter(conn.getOutputStreamURL recup = new URL("http://www.sun.com");
    getAppletContext().showDocument(recup,"_blank");
    conn is a connexion that I establish before
    that is just a piece of my code

    Your post is not correct,
    Ask yourselve the following questions:
    1. does accint.dll support POST data or only GET?
    2. does accint.dll need a cookie (session)?
    3. what do you want to post?
    4. does it need authentication
    what does this give you, it will read the response if there is any:
    import java.io.*;
    import java.applet.*;
    import java.net.*;
    public class test extends Applet implements Runnable {
         public static void main(String[] args) {
              new test();
         public test() {
              new Thread(this).start();
         public void init() {
              System.out.println("this is init");
         public void run() {
              try {
                   SendPostRequest();
              } catch (Exception e) {
                   e.printStackTrace();
         public void SendPostRequest() {
              URL url = null;
              URLConnection conn = null;
              OutputStream writer = null;
              try {
                   // set value for provenance
                   StringBuffer b = new StringBuffer();
                   b.append(URLEncoder.encode("provenance","UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("CTLIDT", "UTF-8"));
                   // set value for environnement
                   b.append("&");
                   b.append(URLEncoder.encode("environnement", "UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("expsv", "UTF-8"));
                   // where is your & here, what value are you setting here????
                   b.append("=");
                   b.append(URLEncoder.encode("0", "UTF-8"));
                   // set value for CODLANG
                   b.append("&");
                   b.append(URLEncoder.encode("CODLANG", "UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("0", "UTF-8"));
                   // set value for password
                   b.append("&");
                   b.append(URLEncoder.encode("password", "UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("AAAAA", "UTF-8"));
                   // set value for nom
                   b.append("&");
                   b.append(URLEncoder.encode("nom", "UTF-8"));
                   b.append("=");
                   b.append(URLEncoder.encode("XYBI5400", "UTF-8"));
                   url = new URL(
                   "http://portail-sav2000.francetelecom.fr/binaccdi/accint.dll");
                   conn = url.openConnection();
                   conn.setDoOutput(true);
                   conn.setDoInput(true);
                   //Send request
                   writer = conn.getOutputStream();
                   writer.write(b.toString().getBytes("UTF-8"));
                   writer.flush();
                   writer.close();
                   // the probleme is here I can't open the " francetelecom" page in
                   // the browser
                   //this is independent from the connection above
                   // I mentione that no problem happens during the compiltaion and
                   // no exception throwed during the execution
                   System.out.println(readResponse(conn));
              } catch (Exception e) {
                   e.printStackTrace();
         public String readResponse(URLConnection urlc) {
              // it is VERRY importaint to read the entire response
              // if you want to connect to the same server again
              // this is because closing the inputstream does not close the socket
              // and response data from a previous request could be mixed up with the
              // current
              InputStream is;
              byte[] buf = new byte[1024];
              String returnValue = "";
              try {
                   is = urlc.getInputStream();
                   int len = 0;
                   ByteArrayOutputStream bos = new ByteArrayOutputStream();
                   while ((len = is.read(buf)) > 0) {
                        bos.write(buf, 0, len);
                   // close the inputstream
                   is.close();
                   returnValue = new String(bos.toByteArray());
              } catch (IOException e) {
                   try {
                        // now failing to read the inputstream does not mean the server
                        // did not send
                        // any data, here is how you can read that data, this is needed
                        // for the same
                        // reason mentioned above.
                        e.printStackTrace();
                        System.out
                                  .println(((HttpURLConnection) urlc).getResponseCode());
                        InputStream es = ((HttpURLConnection) urlc).getErrorStream();
                        int ret = 0;
                        // read the response body
                        while ((ret = es.read(buf)) > 0) {}
                        // close the errorstream
                        es.close();
                   } catch (IOException ex) {
                        // deal with the exception
              return returnValue;
    }

  • Problems with email and SMS after 1.3.5

    Let me first say that I love the Pre. Up until this point it has been perfect - I have a replacement, but that is because I dropped it (wrong angle, wrong location, broken screen). However, following the 1.3.5 update I'm now having a fairly important problem with email and sms - I can receive email and messages, but not send them.
    I have two email accounts. My personal account is with earthlink. My work account goes through an ISP using the domain name of my employer. I'm not using Microsoft Exchange or Outlook. I have tried deleting and reentering the accounts and that did not work. I can receive messages but get error messages when I try to send. 
    The same for messaging. I don't use it very often. But yesterday I get a text message  and tried to respond and got the error message.
    I power the phone off every night because I have a landline and use that as the primary phone at home.
    I have been looking around message boards trying to find a fix for this.  Has anyone had this issue and resolved it?
    Thank you.
    Post relates to: Pre p100eww (Sprint)
    Message Edited by starburst42 on 01-05-2010 07:06 AM
    This question was solved.
    View Solution.

    I forgot to add that this is a stock Pre. There are no patches or homebrew apps. 
    Edit:
    I found a fix for the email problem, in posts on precentral and this board from a few months ago. The info came up in a Google search, and not searches of the boards, which is kind of frustrating.  Here is the info, and the link.  I really wish Palm would put info about this work around on their site, or at least make it easy for people to find.  The solution is the last message in the thread linked below:
    Had the same problem.  Checked with Earthlink - no help.  Checked with Sprint - no help.  Checked with Palm - no help.  Here is what finally worked:
    Delete the earthlink account and start over.  When you do - this is the key - set up the account manually!  If you use the Pre defaults and try to change the settings it will not correct the problem. Your settings for outgoing mail must be:
    "smtpauth.earthlink.net"
    Use Authentication set to "on"
    username is your email address
    your email password
    port set to "587"
    encryption "none"
    Again, the key is to set up manually.
    smtp email fix
    Message Edited by starburst42 on 01-06-2010 12:08 PM
    Message Edited by starburst42 on 01-06-2010 12:09 PM

  • Why is Apple so bad at providing customers with information on what the problem with email is and what they are doing to fix it?

    Why is apple not providing information on what the problem withe email is and what they are doing to fix, along with a time frame for fixing the problem.

    It was because the problem was major.  If you do not know tech, you should know that a two day outage usually indicates some type of virus, hack, or a bad software load that they had to unravel.  The common way to solve that is to rebuild servers and put back into service.  That takes time.
    Apple did not want to admit this problem.  My guess at this stange was that they loaded new software that might be associated with the new IOS and it crashed.  To reveal this would be to cast into doubt their future revenue.
    Either way.  Run do not walk away from Icloud products and services.  Apple has demonstrated they can not be a business partner.

  • Problems with filling out PDF forms

    We have problems with filling out PDF-forms. Aotomatic filling of forms is deactivated and we use the Adobe Reader 11.0.05. The problem is: After some time the inputs are wrong put down in the form. For example: I write 120 and in the form stands 125. We have already extinguished the cache. Thanks for your help in advance.

    You will get that first message when the document has been changed in a way that invalidates the internal digital signature that's applied when a document is Reader-enabled. Certain changes are allowed (e.g., filling fields, commenting, signing) and will not invalidate the signature, but others are not. The exact cause of the change is often hard to track down, but it can be due to font problems, some type of file corruption, or something that Acrobat/Reader attempts to correct when the file is opened/saved. You will also get the message if the users system time is not correct and is currently set to some time before the document was Reader-enabled. It seems best to use the most recent version of Acrobat to enabled the documents and recent versions of Reader to work with them.
    It problem is probably not related to the user using anything in the Sign pane.

  • Problems with email, Macbook Pro, Yosemite

    Keep getting knocked out of email. Different errors, mostly cannot connect to server. Per Apple's mail support page. One of the settings should be Password. When I change to password in settings, it keeps switching to MD5 Challenge -Response. Could this be causing my problems with email?
    I have a macbook pro & am using the latest Yosemite. But have been having these problems before installing Yosemite. No email problems on an iPad.
    Thanks for your help.

    UPDATE for anyone who's interested.
    I called Apple support. The woman was very helpful and, so far, seems to have corrected my issues. She removed & reinstalled my email accounts. The problem was that the accounts were set up as POP accounts when they should have been IMAP accounts. The authentication is now set to Password and all mail settings are as shown in the Apple's Mail Settings Lookup page. 

  • Please can anyone help with the continuing password rejection problem with email.Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    Please can anyone help with the continuing password rejection problem with email on my imac.My Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    I use free Yahoo mail webMail access because folders I created in webmail access doesn't get set up in Apple Mail. While I was searching for post about password and keychain issues, I stumbled on several threads that complain about Mail folder issues, so I'm holding off on Apple Mail.
    On the password and keychain issue that your post is all about.  I've been using login keychain to save and automatical fill my login screens for a year or so successfully, with Safari and Chrome. Automatic form fill also works for Facebook login. Unfortunately, about 4 to 6 months ago, automatic password form fill stopped working with Yahoo webmail, while still worked for GMail (Safari and Chrome). I tried deleting the password entry for my two Yahoo email accounts to start fresh, but neither Safari not Chrome will even ask me if I want to save the password. I was so frustrated that I eventually installed the keypassX 0.43 (password manager) that is quite primitive sompare to OS X's keychain (when it works). Probably no surprise to you yet.
    The surprise, to me at least, is that, for whatever reason, password auto form-fill from keychain started working again for Yahoo webmail login on Safari about 5-7 days ago. Still doesn't work on Chrome!
    Two tips I can share, at least with webmail access:
    1. Password is save only for one of my yahoo mail accounts. When I login in with my other yahoo account, I get no prompt to save the password, and form fill doesn't work when I try to log in a second time with my other Yahoo mail account.
    2. On inspection of my login keychain, I see a webform password item saved for my Yahoo account that works with keychain. The name of the password is: login.yahoo.com(MyAccountName1#). When I open the password item and look in the Access Control tab, I see Safari and Chome are listed as allowed to access this password item..
         I also an "Internet password" item with a name of just login.yahoo.com. When I open the the password item, it looks just like the password item created for MyAccountName#1, but the MyAccountName#2 is listed in the Account field. Inside the Access Control tab, no apps are listed in access permission. I added Safari and Chrome to the lists of allowed app, saved the password item.
    Now when I bring up the Yahoo login page(by bookmark) on Safari, form fill fills in MyAccountname#1 for name and the proper password and I can login in. When I change the name to MyAccountName#2, the correct password is retrieved and I can log in! Alas, it still doesn't work on Chrome.
    BTW, I changed the password item type from "Internet password" to "Web Form password" and saw no difference! I also edited the name to be "login.yahoo.com (MyAccountName#2)" to look like the web form password item that works, but it has no effect either.
    From my experimentation, here's my observation:
    1. A Web Form password item is created for the first account name(MyAccountName#1) for login.yahoo.com and typed as Web Form password. When I log in using MyAccountName#2, an Internet Password is created, but no applications are listed as allowed to access the password item, even when the password item was created after just logged in and logged out to yahoo with the account name and password for MyAccountName#2.
    2. Manually adding Safari as an app that is allowed to use the password item works. Doesn't work with Chrome!
    The version of Safari I'm using is Version 5.1.7 (6534.57.2). My installed version of Chrome is Version 21.0.1180.79 beta.

  • Several problems with email

    I've been having several problems with email.  
    1. I sent email on Dec 10 and the people didn't receive them until Dec 16.
    2. I often get two, three or even four copies of the same email in my Thunderbird client.
    3. My Moto X (2nd gen) phone sometimes says it can't connect to email. 
    What's the problem?

    Thanks for reaching out to us JoAnn108. We'll do everything possible to address this for you.
    Could you tell me how long this has been an issue? I noticed you mentnioned Thunderbird; do you experience the same problems when working with your emails directly from the Verizon webmail portal? Also, are there any error messages you notice when the issue occurs? If we can get some answers to these questions it'll help determine our troubleshooting path.
    Thanks,
    ^FCN

  • Problem with email being tagged as spam

    We recently changed our ISP, and up to this point we had no problems with emails to partners being tagged as spam. I've setup the send and receive connectors as the public FQDN, but we're seeing the following NDR:
    p01c12m113.mxlogic.net #554 Denied[CS] [50e56f35.0.4929.00-2377.9578.p01c12m113.mxlogic.net]
    (Mode: normal) ##
    I've emailed McAfee to see what the problem is, but I haven't heard back. When I do a query on their web site, the web interface doesn't indicate there is a problem with this mail server, but it's continued to reject messages today. Even though the send
    and receive connectors are set to mail.domain.com, but there still a portion of the header with the domain.local. I'm wondering if that might be causing a problem. Can anyone help me out here? Thank you.
    Return-path: <[email protected]>
    Envelope-to: [email protected]
    Delivery-date: Thu, 21 Aug 2014 16:16:30 -0500
    Received: from mail.domain.com ([68.106.69.243]:51586)
    by server.rcvdomain.com with esmtps (TLSv1:AES128-SHA:128)
    (Exim 4.82)
    (envelope-from <[email protected]>)
    id 1XKZiX-00065C-Kj
    for [email protected]; Thu, 21 Aug 2014 16:16:21 -0500
    Received: from server.domain.local ([fe80::69d5:9cfa:1b4e:dfa3]) by
     server.domain.local ([fe80::69d5:9cfa:1b4e:dfa3%10]) with mapi id
     14.01.0438.000; Thu, 21 Aug 2014 16:16:21 -0500
    From: User <[email protected]>
    To: "[email protected]" <[email protected]>
    Subject: Help
    Thread-Topic: Help
    Thread-Index: Ac+9hSb9q5a7FGZpQG2YPEX62Lunhw==
    Date: Thu, 21 Aug 2014 21:16:20 +0000
    <o:p></o:p>

    ok lets start one by one.. to rule out the problem with your Email system go to www.testexchangeconnectivity.com and perform the exchange tests like inbound/ outbound and other relevant tests and share the results. once this is confirmed then come to Mcafee
    Let me know which Exchange and which Mcafee versions you are using as i also have Mcafee and it needs some tuning. May be i can help you. but need to know the info and if you can paste a NDR which are tagged as SPAM
    MARK AS USEFUL/ANSWER IF IT DID
    Thanks
    Happiness Always
    Jatin

  • I am having a problem with email, when I delete messages from my Ipad, they come back into trash whether they are on my PC or not. The only way I can delete them is to to my providers site and delete everything there.

    I am having a problem with email. I can receive and send, but when I delete, the deleted messages return into either Trash or Bin or both whether or not I have deleted them from my PC.
    The only way I can get rid of them permanently, is to go into my area of my providers site(Sky) and empty all of the boxes there. I imagine it's a setting, please advise.

    For IMAP mail only.
    Settings>Mail, Contacts, Calendars>tap on mail account>Archieve Messages>OFF

  • Problems with TV Out signal after upgrading to iOS 5.1

    Has anyone experienced problems with TV Out signals on their iPad 2 using the Apple HDMI Adapter after upgrading to iOS 5.1?  I am trying to connect to my HDTV after upgrading and cintunally receive an "Unsupported Video Signal" message with a blank/back screen.  Prior to upgrading, I had no connection problems and could view TV Shows, Movies, Music Videos, Keynote, etc...without problems.  I've been unable to find any resolution to this problem, even followed Apple guidance to detach and reattach the HDMI adapter without success.  Seems like a software bug to me and it's a major problem when trying to conduct business or personal activities.  Hopeing Apple has a fix in work already...anyone else have any ideas?  Thx in advance...

    Try a reset. Press & hold the Power and Home buttons together for 10+ seconds, ignoring the red power-off slider, until you see the Apple logo. It is safe to do, there should be no content loss. It is the same as rebooting your computer.
    If that does not work, restore the iPad to the factory settings.

  • Problem with fading out particles in cs5

    I have a problem with fading out particles or anything for that matter in my CS5 after effects!  I set up the key frames right.  O opacity at first and whatever number at next and it fades in fine,  But when I try to do the reverse it will not fade out and only stops the effect if I cut its durration at the red par representing it on the top of the time line. This produces and rough aburpt cut of the effect which will not due.  Please can anyone tell me what I am doing wrong that I can't fade out particles with opacity?

    First question: What OS and what's the build of CS5.5?
    Second question: What effect are you using? There are a bunch of ways to generate particles.
    Last question: if you turn off the effect can you get the layer to fade out? Pressing Alt/Option + t will set a keyframe for opacity on your layer and reveal the keyframe in the time line. Do that, set the value to 0, then move down the timeline a few frames and set the value to 100. This should generate another keyframe. Now move down a few more frames and press Alt/Option + t or change the value for opacity to anything and then back to 100, or copy the previous keyframe and paste to set a 3rd keyframe. Finally move down a few more frames and set the value to 0. You should have 4 keyframes in your tlimeline for opacity. If you want to clean up the layer press Alt/Option + ] to set the out point for the layer.
    Everything should work just fine. Turn on the effect and your layer and the effect should fade out.
    If you want to do something else with the particles, like fade out a particle over the lifetime of the particle we'll need to know which plug-in you're using.

  • Problems with email account on ipad2 when changing from mobileme to icloud

    Problems with email account on ipad2 when changing from mobileme to icloud

    Would you please give us some more information about your problems.

Maybe you are looking for