How to Modify bottom text in notification mail

Hi Experts,
I have an issue regarding sending mails from my portal. When any Notification mail is triggered from Portal to Users mails at the bottom of the mail in the Signature place they are getting company name as below:
ABCDCompany Pvt Ltd, Chennai, India
now i how to remove "Pvt" from the above signature? where do i need to make the changes?
Regards,
Mahesh

Hi,
I've a similar problem - I'm using Text2D to create labels for a node-link graph. I've set all the capabilities, etc., and am finally able to change the labels using setString in Text2D. With one slight problem - now I'm getting an error:
java.lang.IllegalArgumentException: Texture:illegal image size
        at javax.media.j3d.TextureRetained.checkImageSize(TextureRetained.java:389)
        at javax.media.j3d.TextureRetained.setImage(TextureRetained.java:423)
        at javax.media.j3d.Texture.setImage(Texture.java:869)
        at com.sun.j3d.utils.geometry.Text2D.setString(Text2D.java:118)
        at Label3D.setLabelText(Label3D.java:59)The only time I don't get the error is when I change the label from component ID to (which is a string containing an integer, e.g., 1234) to start/stop stage (which is another string containing an integer, e.g., 04, 11). If I attempt to change from component name (a string containing a string, e.g., "mesoderm"), say, to component ID, I get the error. So it's not about the length of the string, since component name is invariably longer than the ID, and the ID could be longer than the start/stop stage.
oh, this is the code I have for the capabilities bit - no more complaints there
private void setCapabilities()
  text.setCapability(text.ALLOW_APPEARANCE_READ);          
  text.setCapability(text.ALLOW_APPEARANCE_WRITE);
  Appearance appearance = text.getAppearance();
  appearance.setCapability(appearance.ALLOW_TEXTURE_READ);
  appearance.setCapability(appearance.ALLOW_TEXTURE_WRITE);
  Texture texture = appearance.getTexture();
  texture.setCapability(texture.ALLOW_IMAGE_READ);
  texture.setCapability(texture.ALLOW_IMAGE_WRITE);
}Any ideas, anyone?
aba.

Similar Messages

  • How can Modify the Text of a MessageArea in a Application WD ABAP Standard?

    Dear Experts.
    How can Modify the Text of a MessageArea in a Application WD ABAP Standard?
    I found the following link in the helpsap, but in this moment I don't know How found this text? and Modify this text with a new text.
    http://help.sap.com/saphelp_nw70/helpdata/en/3a/f6ba42a950da11e10000000a155106/frameset.htm
    The text of a MessageArea are in a table of configuration or can do the system for get this text and show in the application in the portal? How can get this and modify by a new text.
    Please help me with a suggestions.
    Thanks
    Regards
    Carmen G.

    Dear Kranthi..
    The datas of the Application is the following:
    General Information About the Application and Component
    Application: FITE_REQUEST
    Web Dynpro Component: FITV_FPM
    Window Information: FPM_WINDOW
    View Information: Layout_view
    Information on Field
    Field ID: HELPTEXT
    Type of UI Element : Explanation
    Attributes of UI Element
    TEXT_DOCUMENT_NAME: FITE_FPM_REQUEST_GENERAL_DA
    I dont found this method L_MESSAGE_MANAGER->REPORT_T100_MESSAGE.
    Please can give more suggestions for found the method
    Thanks in advance
    Regards
    Carmen G.

  • How to sending simple text in the mail body

    Hi friends,
                 How to send simple text in the mail body through ABAP code
       plz send me the related code and setting for that mail.
      Thanks&Regards,
      Srinivas

    try this...
    FORM send_file_as_email_attachment .
      DATA: objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
      DATA: objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
      DATA: objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
      DATA: reclist LIKE somlreci1 OCCURS 5 WITH HEADER LINE.
      DATA: objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
      DATA : i_body TYPE soli_tab WITH HEADER LINE.
    DATA: it_attach LIKE it_display1 OCCURS 0 WITH HEADER LINE.
      DATA: doc_chng LIKE sodocchgi1.
      DATA: tab_lines LIKE sy-tabix.
      DATA: att_lines TYPE i.
    DATA: lv_lines TYPE i.
      DATA: file TYPE string.
      data: g_datum like sy-datum.
      data: g_datum1(10) type c.
      DATA: len TYPE n.
      LOOP AT it_email.
        CLEAR : objpack,
                objhead,
                objbin,
                objtxt,
                reclist.
        REFRESH: objpack,
                 objhead,
                 objbin,
                 objtxt,
                 reclist.
        g_datum =     sy-datum - 1.
        concatenate g_datum6(2) '.' g_datum4(2) '.' g_datum+0(4) into
        g_datum1.
    doc_chng-obj_descr = 'Aged Stock more than 45 Days'.
        CONCATENATE 'Aged Stock more than 45 Days' '-' it_email-vkbur INTO
        doc_chng-obj_descr.
        CONCATENATE 'Please find enclosed Aged Stock Details ( >45days ) report as on'
        g_datum1
        INTO objtxt-line SEPARATED BY space.
        APPEND objtxt.
        objtxt-line = ' '.
        APPEND objtxt.
        objtxt-line = 'Regards'.
        APPEND objtxt.
        objtxt-line = 'LIS SAP Projects'.
        APPEND objtxt.
        objtxt-line =
        'PS: Pls send feedback for futher improvements to SAP office.'.
        APPEND objtxt.
        DESCRIBE TABLE objtxt LINES tab_lines.
        READ TABLE objtxt INDEX tab_lines.
        doc_chng-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
       CLEAR objpack-transf_bin.
        objpack-head_start = 1.
        objpack-head_num = 1.
        objpack-body_start = 1.
        objpack-body_num = tab_lines.
        objpack-doc_type = 'TXT'.
       objpack-obj_name = 'Run_prog'.
       objpack-obj_descr = 'Agestock.txt'.
       lv_lines = tab_lines.
        APPEND objpack.
    *CONCATENATE 'Plant'   'Material Number' 'Qty(More than 45days)'
    *'Amount' INTO
           it_display SEPARATED BY space.
           append objbin.
           clear: objbin.
        CLEAR:it_display2.
        REFRESH it_display2.
        it_display2-werks = 'Plant|'.
        it_display2-matnr = 'Material Number'.
        it_display2-qty = '|Qty > 45 days'.
        it_display2-amount = '      |Amount'.
        APPEND it_display2.
        it_display2-werks = ''.
        it_display2-matnr = ''.
        it_display2-qty = ''.
        it_display2-amount = ''.
        APPEND it_display2.
        CLEAR : it_display2.
        sort it_display1 by amount descending.
        LOOP AT it_display1 WHERE werks = it_email-vkbur.
         AT FIRST.
    *CONCATENATE 'Plant    '   'Material Number' 'Qty(More than 45days)'
    *'Amount' INTO
           objbin-line SEPARATED BY space.
           append objbin.
           clear: objbin.
         ENDAT.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
            EXPORTING
              input  = it_display1-matnr
            IMPORTING
              output = it_display1-matnr.
          it_display1-qty = TRUNC( it_display1-qty ).
          MOVE-CORRESPONDING it_display1 TO it_display2.
          APPEND it_display2.
          CLEAR:it_display1,it_display2,objbin.
          CLEAR:it_display1.
        ENDLOOP.
        objbin[] = it_display2[].
        DESCRIBE TABLE objbin LINES tab_lines.
        objhead = 'Suug'.
        APPEND objhead.
        objpack-transf_bin = 'X'.
        objpack-head_start = 3.
        objpack-head_num = 1.
        objpack-body_start = 1.
        objpack-body_num = tab_lines.
        objpack-doc_type = 'RAW'.
        objpack-obj_name = 'Run_prog'.
        objpack-obj_descr = 'Agestock.txt'.
        APPEND objpack.
        reclist-receiver = '[email protected]'.
        reclist-rec_type = 'U'.
        APPEND reclist.
    =====================================================================
        CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
          EXPORTING
            document_data              = doc_chng
            commit_work                = 'X'
          TABLES
            packing_list               = objpack
            object_header              = objhead
            contents_bin               = objbin
            contents_txt               = objtxt
            receivers                  = reclist
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            operation_no_authorization = 4
            OTHERS                     = 99.
        CLEAR : it_email.
      ENDLOOP.
    ENDFORM.                    "send_mail
    Message was edited by:
            Sugumar Ganesan

  • Rejection Applicant: How to add plain text to the mail E Mail Letter?

    Dear All:
    I'm working with a ECC6 version.
    In transaction PB60, when we do the candidate rejection activity, the E Mail letter generates a mail with empty body text, and an attachment with the letter in PDF format. The letter is OK, but I would like to know how to add some plain text to this E Mail letter. An empty mail is not a good practise.
    I searched across the forums and SAP documentation, but I could not find any clue.
    I would appreciate any help regarding to this matter.
    Best regards
    Jordi

    Here you go !  ( you need to create Text in t-code SO10 for ID = PAML " )
    Two Default texts under  ID = PAML :
    *MAIL-APP-INTERVIEW     *EN     TEXT     PAML     SYSTEM
    MAIL-APPLICANT     EN     TEXT     PAML     SYSTEM
      Personnel Management->Applicant Activities->Mail Connection ->Create standard texts for mail connection
    Create standard texts for mail connection
    In this step you can create the standard texts to be used in mails.
    Example
    u2022     Request for return of applicant file
    u2022     Notification of date of job interview
    Requirements
    u2022     You should have assigned a standard text to the activity.
    u2022     You should also have set the variables which are to be used.
    u2022     Finally, you should also have made the settings for supplying the variable with values.
    Standard settings
    The standard system contains two examples of standard texts. You can use these examples as references to help you create your own standard texts. The standard texts have the following names:
    u2022     MAIL-APPLICANT (note on an applicant activity)
    u2022     MAIL-APP-INTERVIEW (note on appointment for interview)
    Please note that the standard texts are stored under text ID PAML.
    Activities
    Now create the standard texts you require under text ID PAML.
    Further notes
    Every mail is made up of a heading and contents. In the first line of the standard text you enter the heading of the mail and from the second line on, the contents.
    The standard default settings for style and layout are used for mails.
    The SAP System treats standard texts as application data. This is why there is no automatic connection to the transport system. If you want to copy texts from one client to another within the same system, please use the functions of the transaction to create the texts. If you want to send the texts to a different system, please enter the transport manually as follows:
    PgmID   Obj     Objectname
    R3TR    TEXT   TEXT,XYZ,PAML,E
                     |    |   |   --- Language (e.g. E for English)
                     |    |   -
    Text ID (e.g. PAML for standard mails)
                     |    -
    Text name (probably not XYZ)
    Text object (TEXT ist fixed)
    Good luck
    Saquib Khan

  • How to modify the text in login page?

    In login page , there are some lines text:
    This network is to be used only for legitimate business purposes. If you are not authorized to have access, do not enter this network. By entering the network, you agree to maintain its confidentiality and not to disclose or misuse the information contained in the network and you further agree to our monitoring of your use of this network.
    How to modify or delete these words ?
    Thanks

    This text is not a translation managed in the DB.  you can modify the aspx page, directly.  web\webcommon\login.aspx

  • How to modify the text in java3d??

    I want to modify the text in java3d.What should I do ??
    first , I add the text to the java3d;
    then , I pick it by using behaior;
    third, I setString("My dog") to change text!!
    but there have some capability error!
    how can I do that??
    thanks in advance!!

    Hi,
    I've a similar problem - I'm using Text2D to create labels for a node-link graph. I've set all the capabilities, etc., and am finally able to change the labels using setString in Text2D. With one slight problem - now I'm getting an error:
    java.lang.IllegalArgumentException: Texture:illegal image size
            at javax.media.j3d.TextureRetained.checkImageSize(TextureRetained.java:389)
            at javax.media.j3d.TextureRetained.setImage(TextureRetained.java:423)
            at javax.media.j3d.Texture.setImage(Texture.java:869)
            at com.sun.j3d.utils.geometry.Text2D.setString(Text2D.java:118)
            at Label3D.setLabelText(Label3D.java:59)The only time I don't get the error is when I change the label from component ID to (which is a string containing an integer, e.g., 1234) to start/stop stage (which is another string containing an integer, e.g., 04, 11). If I attempt to change from component name (a string containing a string, e.g., "mesoderm"), say, to component ID, I get the error. So it's not about the length of the string, since component name is invariably longer than the ID, and the ID could be longer than the start/stop stage.
    oh, this is the code I have for the capabilities bit - no more complaints there
    private void setCapabilities()
      text.setCapability(text.ALLOW_APPEARANCE_READ);          
      text.setCapability(text.ALLOW_APPEARANCE_WRITE);
      Appearance appearance = text.getAppearance();
      appearance.setCapability(appearance.ALLOW_TEXTURE_READ);
      appearance.setCapability(appearance.ALLOW_TEXTURE_WRITE);
      Texture texture = appearance.getTexture();
      texture.setCapability(texture.ALLOW_IMAGE_READ);
      texture.setCapability(texture.ALLOW_IMAGE_WRITE);
    }Any ideas, anyone?
    aba.

  • How to schedule restart of Workflow notification mailer?

    We are facing this issue in all environments including production;
    Inbound IMAP Notification emails are pending in the INBOX folder of the mail box. These moves to PROCESS folder only after restart of the 'WORKFLOW NOTIFICATION MAILER' every 3 to 4 hours.
    I have raised an SR with Oracle support for a solution.
    For this temporary workaround of restarting the Notificaiton mailer, I want to know how can I schedule the automatic restart of the 'WORKFLOW NOTIFICATION MAILER', Please advice.

    Sami,
    See (Note: 466927.1 - How to Schedule Events for the Workflow Notification Mailer).
    Regards,
    Hussein

  • How can I highlight text in Mac Mail?

    I just switched from a PC to a Mac. How can I highlight text in a messge in Mac Mail? I can't find a highlighter in the tool bar.

    Welcome to mac!  As far as I know, this is not an option in Mac Mail. Here are some links you should find helpful:
    http://www.apple.com/support/mac101/
    http://www.apple.com/why-mac/
    http://www.apple.com/macosx/whats-new/mail.html?cid=wwa-naus-seg-mac10-029&cp=ww a-seg-mac10-operatingsystem&sr=sem

  • How To Send A Text Attachment Through MAIL Adapter

    Hi Experts,
       I Did A Scenario that is  By using file adapter at the sender side and PI as a middle ware i have sent one text file to database
    Now here my question is
    I have to send the same text file which i have sent database... my using Mail Adapter
    Simply  File to Mail Scenario
    FILE         PI                MAIL
    But I have to send the same text file which i sent to database... by using mail adapter... Here all the configuration are done ... And the channels are working properly... only thing  here is..to send same text file using mail adapter..
    It will be good if  any one can explain step by step..
    Regards
    aravindh

    Hi Rajendra,
       Tanq for connecting me ... This  Blog helped me a lot ....And it is a useful answer to me..
    For this file to mail scenario we have got .txt as an attachment ... Its fine ... But her my Client is asking me to add CONTENT in the mail... Content in the sense..
    Example of content...
    Hi,
    Please find the attachment
    Regards,
    sap pi,
    They need in the form of like this...  To add content in the mail  What i have to do...DO i need to add more configurations if it is what are they...
    Please solve the issue.. It is appreciated  some one can explain me step by step or .. By sending me screen charts..
    Thanks in  advance....
    Regards
    vinay

  • How to configure Eudora account for Notification Mailer?

    I'm trying to use Eudora 5.1 as my MAPI server for Notification Mailer, but I am not figuring out what to set in the ACCOUNT parameter of the Mailer configuration file. Any tip?
    Thanks in advance.
    Daniel Viero
    [email protected]
    iProcess Solugues em Tecnologia
    Porto Alegre, RS - Brazil

    The Account should map to a Postbox.
    I'm trying to use Eudora 5.1 as my MAPI server for Notification Mailer, but I am not figuring out what to set in the ACCOUNT parameter of the Mailer configuration file. Any tip?
    Thanks in advance.
    Daniel Viero
    [email protected]
    iProcess Solugues em Tecnologia
    Porto Alegre, RS - Brazil

  • How to eliminate default text in Photo Mail creations

    Every time I create a Photo Email in PSE 11 the email appears in my email client with this text added to it:  "Here are the files that I want to share with you".  I do not what this text and I have to select it and delete it for every email I create.  Is there any way to change and/or eliminate this text permanently within the PSE files?
    I found the text in the following file, but eliminating it from that file did not stop it from displaying.  How can I get rid of this unwanted message?
    I've searched this website and even Googled on this but cannot find an answer to such a simple request.
    Thank you in advance for any assistance you can provide!
    C:\Program Files (x86)\Adobe\Elements 11 Organizer\Assets\locale\en_US\email\signatures\standard_subject.txt
    -- Jon

    What you are changing through that text file is only the subject of email.
    The only way to change the body of the mail is to delete and retype. Sorry.
    Thanks
    Andaleeb

  • How to Modify The Text That Appear in Context Help?

    Hello,
    I searched, but could not find any result.
    Actually I am using a code from "Find Example" of Labview. I have modified it for my application and hence, I must modify the context help (as some of its dicription is not true anymore). Would anybody able to suggest me how to do it?
    Thanks,
    Dushyant

    Right click on the VIs Icon and select VI Properties. In the Category drop down ring select documentation. Edit the text. The text in VI description is what will be displayed in LabVIEWs context help.
    Chad

  • How to blank bottom portion of e-mail screen

    I would like the bottom half of my e-mail screen (below the listed e-mails) left blank. It now contains Thunderbird user information which I don't need to see. How do I "blank" it?

    You can remove that pane altogether. I don't know why you'd want to leave it blank, wasting screen space?
    '''View|Layout|Message Pane''' or F8.

  • How to send long text  in a mail using FM : SO_NEW_DOCUMENT_SEND_API1

    Hi All,
    In my BSp application user can enter long text   ( can be more than 300 char ) in TextEdit.
    problem is as below:
    1) i am getting all the text in oninput processing ...
    2) using the FM READ_TEXT to   get mail template built in SO10.
    3) Replacing all dynamic variables in mail template with user enterd text.
    4) then passing the data to FM SO_NEW_DOCUMENT_SEND_API1.  this FM has table parameter with 255 char ( please check once )
    i am able to send the data  in mail.   But long text more than 256 char is not comming as single paragraph.
    For expamle  ...user enter the following  text in text edit.
    Responsible for the development, implementation, and maintenance of human resource information systems (HRIS) associated with the collection, retrieval, accessibility, and usage of employee information for Human Resource department planning and activities.  Maintains internal database files and tables, and develops custom reports to meet the requirements of Human Resource management and staff.
    in inbox i am getting as below:
    Job Description for    : Responsible for the development, implementation, and maintenance of human resource information systems (HRIS) associated with the collection, retrieval, accessibility, and usage of employee information for Human Resource depa
      Maintains internal database files and tables, and develops custom reports to meet the requirements of Human Resource management and staff.
    Job Description for is fixed text from SO10 templete.   and  remainning text is user text.
    some data is missing in mail.
    SO10 template  is as below  :
    Job Description for : &INSTRUC1&
    &INSTRUC2&
    help to solve the above issue.
    Regads,
    Kishan
    Edited by: kishanrao.sap on Oct 11, 2010 3:12 PM

    Hi Krishna,
      Please use the object_type parameter of tthe FM as 'HTM'.
    Then divide the text by append them into the lines of the object_content. In the begining and end make sure you have
    <p> --  in the begining
    </p>-- in the end
    if i want to type the text in one para " My name is Imran and i am an ABAP developer".
    CLEAR: WA_OBJECT_CONTENT.
      WA_OBJECT_CONTENT-line = '<html>'<body><p> My name is Imran.
      APPEND WA_OBJECT_CONTENT TO T_OBJECT_CONTENT.
    CLEAR WA_OBJECT_CONTENT.
      WA_OBJECT_CONTENT-line = ' and i am an ABAP developer</p></body><html;>'.
      APPEND WA_OBJECT_CONTENT TO T_OBJECT_CONTENT.
    Hope this helps you.
    Regards
    Imran.

  • How to send Formatted text in send mail step

    Greetings
    I need to send a formatted email in the send mail step of WF, however I don't se any option to change the font/size/color etc. Currently the email body contains only simple text.
    Appreciate your quick response.
    Thanks

    >
    Weise, Roman wrote:
    > Hello Manas,
    >
    > sending a formated email with a standard mail step will not be posible as far as i know. in general sending formated emails only makes sense if you can be sure that you are in a completely consolidated environment, e.g. a company where everyone uses the same mail client with a configuration ensure through a company pc template. if you try to send formated mails to heterogeneous environment you won't be happy as email clients / web mail providers are so different that you will be busy triying to get an acceptable layout for eternity (i deal a lot with mail sending to externals and always have these discusions with my customers).
    >
    > If you are sure you have a consolidated environment you could try to send a smartform through a functional method in a workflow. smartforms allow a high flexibility in layout. If you want to try this option i can give you additional help on the implementation.
    >
    > Best Regards
    >
    > Roman Weise
    Hi Roman,
      I have the same issue and I'm in a consolidated environment. I'd like to know if sending through a smartform will produce an e-mail message with attachment or just a text mail and the steps required to do so.
    thanks in advance
    Stefano

Maybe you are looking for

  • K9n Platinum Won't Post!!! Memory Incompatible or Mobo failure???

    Like so many others, I am having trouble with my K9N PLatinum.  When I turn the system on, everything powers on, CPU fan, case fans, leds.  It begins to post, no video, but the D bracket just hangs on (1, 3, 4, red and 2, green).  I have tried all of

  • OSX Lion Fails To ShutDown

    Hi Community, I have a new MBP 2011, that came with OSX Lion Installed. The system statred off very well, with super startup and shut down times. Along the way the system beagn freezing while under load, and the problem was resolved after installing

  • How to save selected pages of a PDF file in Adobe 11.0.07

    I upgraded to Adobe XI version  11.0.07. Example: I have a 100 page PDF and I want to save a portion of the pages: Pages 49-57 of the 100. Is there a way to do that, I cannot seem to get it to do it, I think Adobe 9 it was possible Thanks

  • Starting PDF file from Excel 2003 via a hyperlink

    After updating to Reader X I can't open a hyperlink to PDF-files any more which are listed in an Excel-sheet. With Reader 9 it worked all-time. No I get the answer from the Reader, that the document can't be opened. What to do?

  • What can I do in Adobe that I can't in FCPX? + Why does FCPX have a bad reputation

    Somewhere else, I was told that disgruntled Apple users where going to Adobe and leaving FCPX Why is this? What can be done in the Adobe suite of programs that isn't handled well in FCPX? Is FCPX an all in one solution? Does it allow me to do everyth