N82 - Creating line spaces in Emails

Hi
I often check my webmail account on my N82 by connecting to a wireless network.  If I want to write or reply to an email I can't find the equivalent of an "Enter" button to create a line space.  Consequently any emails I write on my N82 end up as one long paragraph.
So that I can break the emails I write into paragraphs is there a combination of keys I can press on my N82 to simulate pressing the Enter button a PC keyboard?
If its of any use, my webmail account is NOT Hotmail or Gmail.
Thanks

That's an RTFM question. Press the '0' button 3 times in succession.
Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

Similar Messages

  • Can you create a To Do from the Subject line of an email?

    Does anyone know if it's possible to create a To Do from the subject line of an email in Mail?
    Here's what I'm trying to do. I open a mail message, then I can highlight any text in the body of the message. When I do this, the To Do button becomes enabled. If I highlight the subject of the message, the To Do button remains disabled.
    Is there any way of doing this aside from highlighting text, then changing the text?
    Thanks!

    Open Mail Help from the Help menu. One of the main topics listed is how to create to-dos. Click on it to see what you are able "to do."

  • Creating 2 line space under header

    It seems simple, but I can't figure it out. How can I create a space (preferably 2 lines) below the header before text is entered?

    Increase the Top margin dimension.
    That will work on every page. If you only want to increase the spacing on the first page, increase the "Before" margin in the Layout Inspector, Layout Tab.
    Jerry

  • Outlook New email extra line space

    When composing a New email under Outlook 2007 the line spacing between sentences is too large, as shown in the screenshot below. Can this spacing be changed?
    I have checked the paragraph line space settings (single) and the style (Normal). I have tried HTML and Rich Text formats.
    When replying to emails the line spacing between sentences is fine.

    In Outlook check the following settings:
    Tools -> Options, open "Mail Format" tab and click "Stationary and Fonts". In the
    New Mail Messages section click the "Font" button and in the new windows click "Character Spacing". Check your settings there.
    Hope it helps you.
    Kind regards

  • What is the proper way to create a new line space int the output?

    I want to create a space in between each input so the output would look something like this,
    Name of item 1: lollipops
    Quantity of item 1: 10
    Price of item 1: .50
    Name of item 2: diet soda
    Quantity of item 2: 3
    Price of item 2: 1.25
    Instead of this:
    Name of item 1: lollipops
    Quantity of item 1: 10
    Price of item 1: .50
    Name of item 2: diet soda
    Quantity of item 2: 3
    Price of item 2: 1.25
    Here is my code:
    for (i = 1; i < 4; i++)
                   System.out.print( "Name of item " + i + ":");
                   name = keyboard.nextLine();
                   System.out.print( "Quantity of item " + i + ":");
                   quantity = keyboard.nextDouble();
                   keyboard.nextLine();
                   System.out.print( "price for item " + i + ":");
                   price = keyboard.nextDouble();
                   keyboard.nextLine();
              }I know i can use the an empty output statement but is there something that will make my code neater?
    Edited by: RandellK on Sep 27, 2009 6:23 PM

    Just use an empty println.
    It's a pretty common idiom and no messier than printing a newline.

  • Sending PDF forms (created using SFP) as Email Attachment

    Hi,
         I have created bunch of ADOBE forms using SFP. They are not interactive forms. created using ADOBE Live cycle designer.
    I have the Function module and by executing I can view the PDF form in print preview mode. But I have to save this in backend and attach to email.
    I have a program that have to send one of the forms created in SFP as email attachment to outside SAP.
    Please advice how to achieve this.
    Thanks,
    Sanjeev

    Hi ,
    Please find below a code sample for your requirement
    *& Report  ZENVOI_PDF_MAIL
    REPORT  zenvoi_pdf_mail MESSAGE-ID ad.
    TYPE-POOLS : abap .
    DATA : data_for_update TYPE zdemopdf ,
           hexa            TYPE solix_tab.
    DATA : fm_name   TYPE funcname ,
           param     TYPE sfpoutputparams,
           doc_param TYPE sfpdocparams ,
           output    TYPE fpformoutput .
    param-nodialog = abap_true. " suppress printer dialog popup
    param-getpdf = abap_true.
    doc_param-langu = sy-langu.
    doc_param-country = 'FR'.
    doc_param-fillable = abap_true.
    doc_param-dynamic = abap_true.
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
        i_name     = 'ZDEMO_PDF'
      IMPORTING
        e_funcname = fm_name.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = param
      EXCEPTIONS
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4.
    CHECK sy-subrc EQ 0.
    CALL FUNCTION fm_name
      EXPORTING
        /1bcdwb/docparams  = doc_param
        data_for_update    = data_for_update
      IMPORTING
        /1bcdwb/formoutput = output
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3.
    CALL FUNCTION 'FP_JOB_CLOSE'
      EXCEPTIONS
        usage_error    = 1
        system_error   = 2
        internal_error = 3
        OTHERS         = 4.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer     = output-pdf "PDF file from function module
      TABLES
        binary_tab = hexa.
    * Envoi du mail
    ** CLASS-DEFINITIONS
    DATA: send_request       TYPE REF TO cl_bcs.
    DATA: document           TYPE REF TO cl_document_bcs.
    *DATA: sender             TYPE REF TO cl_sapuser_bcs.
    data: sender            TYPE REF TO if_sender_bcs.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    ** INTERNAL TABLES
    DATA: l_mailtext TYPE soli_tab.
    DATA: iaddsmtp   TYPE TABLE OF bapiadsmtp.
    DATA: ireturn    TYPE TABLE OF bapiret2.
    ** VARIABLES
    DATA: mail_line  LIKE LINE OF l_mailtext.
    DATA: bapiadsmtp         TYPE bapiadsmtp.
    DATA: subject    TYPE so_obj_des.
    DATA : att_subject TYPE so_obj_des.
    DATA : w_except TYPE REF TO cx_root .
    CONSTANTS : c_defmail TYPE ad_smtpadr VALUE
                     '[email protected]' .
    FIELD-SYMBOLS : <smtp> TYPE bapiadsmtp.
    *Set subject of the mail
    subject = 'Exemple de PDF interactif'.
    * Set text of the mail
    mail_line = 'Merci de remplir le formulaire et nous le retourner'.
    APPEND mail_line TO l_mailtext .
    att_subject = 'Template du PDF'.
    TRY.
    * Create persistent send request
        send_request = cl_bcs=>create_persistent( ).
    * Get sender object
        sender = cl_sapuser_bcs=>create( sy-uname ).
    *    sender =
    *      cl_cam_address_bcs=>create_internet_address( '[email protected]' ) .
    * Add sender
        CALL METHOD send_request->set_sender
          EXPORTING
            i_sender = sender.
    * Read the E-Mail address for the user
    *    CALL FUNCTION 'BAPI_USER_GET_DETAIL'
    *      EXPORTING
    *        username = sy-uname
    *      TABLES
    *        return   = ireturn
    *        addsmtp  = iaddsmtp.
    *    LOOP AT iaddsmtp ASSIGNING <smtp> WHERE std_no = 'X'.
    *      CLEAR bapiadsmtp.
    *      MOVE <smtp> TO bapiadsmtp.
    *    ENDLOOP.
    *    CASE bapiadsmtp-e_mail.
    *      WHEN space.
            recipient =
         cl_cam_address_bcs=>create_internet_address( c_defmail ).
    *      WHEN OTHERS.
    *        recipient =
    *     cl_cam_address_bcs=>create_internet_address( bapiadsmtp-e_mail ).
    *    ENDCASE.
    * Add recipient with its respective attributes to send request
        CALL METHOD send_request->add_recipient
          EXPORTING
            i_recipient  = recipient
            i_express    = 'X'
            i_copy       = space
            i_blind_copy = space
            i_no_forward = space.
    * Set that you don't need a Return Status E-mail
        CALL METHOD send_request->set_status_attributes
          EXPORTING
            i_requested_status = 'E'
            i_status_mail      = 'E'.
    * set send immediately flag
        send_request->set_send_immediately( 'X' ).
    *Build Document
        document = cl_document_bcs=>create_document(
                            i_type    = 'RAW'
                            i_text    = l_mailtext
                            i_subject = subject ).
    *     add attachment to document
        CALL METHOD document->add_attachment
          EXPORTING
            i_attachment_type    = 'PDF'
            i_attachment_subject = att_subject
            i_att_content_hex    = hexa.
    * Add document to send request
        CALL METHOD send_request->set_document( document ).
    * Send document
        CALL METHOD send_request->send( ).
        COMMIT WORK.
      CATCH cx_send_req_bcs INTO w_except.
      CATCH cx_address_bcs INTO w_except.
      CATCH cx_document_bcs INTO w_except.
    ENDTRY.
    Hope this help you .
    Best regards

  • Form Line Space Work Around (permanently set leading)

    Hi All,
    new to the forums – I find the format confusing, but I'll try to do my best!
    I have discovered a way to permanently set the line space (leading) of a form field. If you all discover a better way, then let me know!
         Create a small, multiline text field anywhere. Name it "Reference". This field will become hidden and read only later, so don't worry too much about it.
         Enable it to have rich text formatting. This is done in the form field properties under "Appearance".
         Exit form field editing. Place a single space in that field (no other characters).
         Select that space, then hit command + e (ctrl +e on PC) to bring up the rich text formatting options.
         Select a font and size, then press "More."
         Click the paragraph tab, then select a line height. I prefer to use the "exactly" option from the drop down menu, makes it the most similar to setting type in Illustrator or Indesign.
         We're halfway done! Exit out of this field and save.
    This next part gets a little trickier because it requires some event javascript.
         Create a new miltiline text field. Worry about this one more, because this is the one the user will use. For this example, name it "Text"
         Like before, enable it to be multiline and rich text in the appearance settings.
         Go to the "Actions" tab of the form field properties.
         Choose event "on blur" and action "run javascript".
         Insert the following code:
    if (this.getField("Text").value == "") {this.getField("Text").richValue = getField("Reference").richValue;}
    This code tells the form field that when exited, if it is left empty, it should copy the exact rich text found in the form field "reference."
    Now set the field "Reference" to read only and hidden under "general" in form field properties. Exit form field editing. Select "Text" and type anything you want, then delete it. Click the field again. There is now a single space there! (invisible to user at first) that has saved all your formatting! If the user starts typing, it will be properly formatted. Make sure to save your document with the field "Text" having only the properly formatted space.
    Other Notes:
    There 100% is a value in the javascript to set line height. Otherwise, copying the ".richValue" of a field wouldn't allow this to work. Problem is, no one seems to know the syntax and can't find it in the API. My challenge to you guys is to find it! We've proven it exists. If we can find the syntax then we can avoid these complicated workarounds.

    Sorry, when I instruct you to adjust settings in the "appearance settings," I actually meant the options settings. Sorry for the confusion!

  • How to leave half line space in SAP Script

    Actually , I have a doubt regarding half line spacing on SAP Script ..
    I am working on Cheque Printing with  fbz5
    Now the issue in  the date, there are 8 box for the date in cheque .
    i.e  0 2 0 7 2 0 1 4
    Currently the date is comming on the cheque box ..like half up the box and half inside
    IF I give one space in cheque  window of my script with  /   its taking complete 1 space
    and result is ,it going down ..with one space
    I want to leave exact half line space ..so date is  adjusted  in the middle .
    I also tried moving my cheque  window from  upper margin in all format(CH , CM , MM  IN ..) above
    But it is taking exact one space .

    Hi Darshit,
    While creating the tab position, you have a option of line spacing.
    make it to 0.5 lines, to make exact half line.
    And also another way out, you can check by moving the 8 box created for the date up by 0.5 lines.
    Regards,
    Ganesh Lathi.

  • Incorrect PO number in the subject line of a email

    Dear All,
    Our customer has implemented the PO be email functionality. Configuration is done to get the PO number on the subject line. This works fine when individual release is done. But when we perform the collective release, only One PO number is picked in the subject line of the email for all the Purchase orders.
    The following is the customization:
    Replacement of Text symbols
    Program                      SAPLMEPO
    FORM routine             TEXT_SYMBOL_REPLACE
    Processing routines for the output type : ZSAPFM06P
    FORM Rotine: OLD_ENTRY_NEU
    Kindly let me know if somebody has had a similar problem.
    Best regards
    Vinod

    Goto NACE .
    u2022 Select EF and click on OUTPUT TYPES.
    u2022 Then select Output Type NEU and click on processing routines .
    u2022 In that you have to add a new entry - medium 5 .
    u2022 Then you need to assign a program, form routine and form.
    u2022 You can use the standard program i.e. SAPFM06P, FORM routine is always ENTRY_NEU and standard MEDRUCK.
    u2022 Then in PARTNER FUNCTION you need to add a new entry : medium - 5 and function - VN .
    u2022 For subject of the mail goto Mail Title and Texts. In title give PO No. &EKKO-EBELN& .
    u2022 Under General data -> Replacement of text symbols give programm as SAPMM06E and Form Routine as
    TEXT_SYMBOL_REPLACE .
    u2022 Now the subject will be PO No. XXXXXXXXXX.
    u2022 You need to maintain your email id in tcode SU01 and also the vendor's email id.
    u2022 Now while creating a new purchase order , change the medium to External Send .
    u2022 Then goto Communication Method and select CS01 . ALSO make sure that the Cover Page Text has value PO No. &EKKO-EBELN& .
    u2022 Goto tcode ME9F .
    u2022 Execute.
    u2022 Select the checkbox and click on Output Message.
    u2022 You will get a message MAII 00000000000001 generated .
    u2022 Use note no 191470

  • Textfield Title to populate in the subject line of a email button

    I need for the a textfield title to automatically populate in the subject line of the email button
    What code goes in sub = ?
      var sub
    sub =
    var ebody
    Thanks

    I created two buttons - one named "Real Email Button"(submit) and one named "Submit Button (regular)"
    Real Email button has the addresses listed and the "Submit As" set to PDF:
    Submit Button has the following code:
    Button2.event__click.submit.target
    = "mailto:[email protected],?cc=[email protected]; [email protected]?subject= " +
    CTitle.rawValue;Button2.execEvent("click");
    I would like the textfield title (CTitle) to automatically populate in the subject line - what is missing in my code?
    Thanks

  • When we create Line item dimension Like before implementation or  productio

    Hi BW experts ,
    i have doubt Regarding the creation of Line item Dimension
    When we creating the lineitem dimension means After Implementation or Before implementation plz Give the Exact answer .
    if u give the exact answer i will assign the moer points
    Regards
    prakash.v
    [email protected]

    Hi Prakash,
                     You can create the line dimension before implenmentation and after implementation.. if u know the size of data u can create at initial stage otherwise go RSRV tcode u can know the size and can create the line dimension, otherwise if dimension table is bigger than fact table u can create line dimension.

  • Leaving one line space before starting the text in smartforms

    Hi,
    I want to leave one line space before starting a text.
    i LEFT one line space on the text node but it's not working.
    eg: i need to print "Header text". Before printing this i need one line space. Created a blank node for space still not working. Can anyone help me on this.
    Thanks,
    Rose.

    Hi Rose,
                Enter a Line Feed in the Smartform Editor.
    in the editor type as ,
      "Header text"
    where / is Line feed and * is a Default Paragraph Format.
    Regards,
    Balakumar.G.

  • Can I enter a subject line into automated emails from the web?

    Hi everyone
    I'm setting up a button on my website to enable visitors to subscribe to my mailing list.
    The button opens up a new email, addressed to me, which the visitors will send back to me, thus giving me their email address.
    Is there any way I can fill in the subject line for these emails so it says something like "Add me to your mailing list".
    I suppose it's a bit like when you email photos from iPhoto and the subject line e.g. "10 great photos" is already filled in.
    Would really appreciate any advice.
    Thanks in advance

    You need to break it down into several pieces:
    1. An event that causes mail to be sent.
    2. Creation of the content to include in the mail.
    3. Creation and sending of the mail message.
    JavaMail will help you with #3. The rest are up to you.
    JavaMail comes with several examples that show you
    how to create a mail message and send it, given the
    email address of the recipient, the content, the mail
    server address, etc.
    There's also pointers to many documents and tutorials
    that will help you learn JavaMail. See the JavaMail
    web site. And don't forget to read the FAQ.
    If you have more specific questions, feel free to
    post them here.

  • Line space removed when selecting save or print options

    I created a form in CS3, converted to PDF in Pro 9 and filled-in the text.  I edited the form to include additional information, and now each time I select "Save" or "Print" option the line spaces I entered are removed as though there is some compression feature that's doing this. This also happens if I click on the form outside the text box with any tool..Does anybody have a suggestion or answer for me?  If you'd like to be placed on the list of my most favorite people, I'd appreciaate your response!

    Are you sure this is happening when you print to PDF?
    And not, later, when you print the PDF?
    What print scaling do you choose in Adobe Reader/Acrobat?

  • IPad2 and a new MacBook running Lion, Both Devices use the same Apple ID which is a Hotmail eMail id. Can I create a new iCloud eMail Id and use iCloud eMail and continue to use my Hotmail Id for my Apple Id and use it for iTunes, iCloud

    I have an iPad2 and a new MacBook running Mountain Lion. Both Devices use the same Apple ID which is a Hotmail eMail id. Can I create a new iCloud eMail Id and use iCloud eMail and continue to use my current Hotmail Id for my Apple Id for iTunes, iCloud.
    Note, I will use both Hotmail and iCloud eMail.

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")

Maybe you are looking for