Subject line of length 100 to 150 char

Hello Gurus,
I have written a report to send mail from sap to external user.
i have written the code by using the function module SO_DOCUMENT_SEND_API1. In SOST tcode the document title description should be of 100 to 150 char but i am able to display only 50. Is there any other FM which accepts more subject in the TITLE.
Can anybody please help me out in this issue.
This is very urgent. I will reward you with points.
Thanks,
Karan

hi check this report
REPORT  ZMAIL.
TABLES: ekko.
PARAMETERS: p_email   TYPE somlreci1-receiver .
TYPES: BEGIN OF t_ekpo,
  ebeln TYPE ekpo-ebeln,
  ebelp TYPE ekpo-ebelp,
  aedat TYPE ekpo-aedat,
  matnr TYPE ekpo-matnr,
END OF t_ekpo.
DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
      wa_ekpo TYPE t_ekpo.
TYPES: BEGIN OF t_charekpo,
  ebeln(10) TYPE c,
  ebelp(5)  TYPE c,
  aedat(8)  TYPE c,
  matnr(18) TYPE c,
END OF t_charekpo.
DATA: wa_charekpo TYPE t_charekpo.
DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                WITH HEADER LINE.
DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                WITH HEADER LINE.
DATA:   t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
        t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
        t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
        t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
        t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
        w_cnt TYPE i,
        w_sent_all(1) TYPE c,
        w_doc_data LIKE sodocchgi1,
        gd_error    TYPE sy-subrc,
        gd_reciever TYPE sy-subrc.
*START_OF_SELECTION
START-OF-SELECTION.
  Retrieve sample data from table ekpo
  PERFORM data_retrieval.
  Populate table with detaisl to be entered into .xls file
  PERFORM build_xls_data_table.
*END-OF-SELECTION
END-OF-SELECTION.
Populate message body text
  perform populate_email_message_body.
Send file by email as .xls speadsheet
  PERFORM send_file_as_email_attachment
                               tables it_message
                                      it_attach
                                using p_email
                                      'Example .xls documnet attachment'
                                      'XLS'
                                      'filename'
                             changing gd_error
                                      gd_reciever.
  Instructs mail send program for SAPCONNECT to send email(rsconn01)
  PERFORM initiate_mail_execute_program.
*&      Form  DATA_RETRIEVAL
      Retrieve data form EKPO table and populate itab it_ekko
FORM data_retrieval.
  SELECT ebeln ebelp aedat matnr
   UP TO 10 ROWS
    FROM ekpo
    INTO TABLE it_ekpo.
ENDFORM.                    " DATA_RETRIEVAL
*&      Form  BUILD_XLS_DATA_TABLE
      Build data table for .xls document
FORM build_xls_data_table.
  data: ld_store(50) type c.  "Leading zeros
  CONSTANTS: con_cret(5) TYPE c VALUE '0D',  "OK for non Unicode
             con_tab(5) TYPE c VALUE '09'.   "OK for non Unicode
*If you have Unicode check active in program attributes thnen you will
*need to declare constants as follows
*class cl_abap_char_utilities definition load.
*constants:
   con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
   con_cret type c value cl_abap_char_utilities=>CR_LF.
  CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR' INTO it_attach SEPARATED BY con_tab.
  CONCATENATE con_cret it_attach  INTO it_attach.
  APPEND  it_attach.
  LOOP AT it_ekpo INTO wa_charekpo.
*Modification to retain leading zeros
  inserts code for excell REPLACE command into ld_store
  =REPLACE("00100",1,5,"00100")
    concatenate '=REPLACE("' wa_charekpo-ebelp '",1,5,"'
                             wa_charekpo-ebelp '")' into ld_store .
  concatenate ld_store into .xls file instead of actual value(ebelp)
    CONCATENATE wa_charekpo-ebeln ld_store  wa_charekpo-aedat wa_charekpo-matnr  INTO it_attach SEPARATED BY con_tab.
    CONCATENATE con_cret it_attach  INTO it_attach.
    APPEND  it_attach.
  ENDLOOP.
ENDFORM.                    " BUILD_XLS_DATA_TABLE
*&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
      Send email
FORM send_file_as_email_attachment tables pit_message
                                          pit_attach
                                    using p_email
                                          p_mtitle
                                          p_format
                                          p_filename
                                          p_attdescription
                                          p_sender_address
                                          p_sender_addres_type
                                 changing p_error
                                          p_reciever.
  DATA: ld_error    TYPE sy-subrc,
        ld_reciever TYPE sy-subrc,
        ld_mtitle LIKE sodocchgi1-obj_descr,
        ld_email LIKE  somlreci1-receiver,
        ld_format TYPE  so_obj_tp ,
        ld_attdescription TYPE  so_obj_nam ,
        ld_attfilename TYPE  so_obj_des ,
        ld_sender_address LIKE  soextreci1-receiver,
        ld_sender_address_type LIKE  soextreci1-adr_typ,
        ld_receiver LIKE  sy-subrc.
  ld_email   = p_email.
  ld_mtitle = p_mtitle.
  ld_format              = p_format.
  ld_attdescription      = p_attdescription.
  ld_attfilename         = p_filename.
  ld_sender_address      = p_sender_address.
  ld_sender_address_type = p_sender_addres_type.
Fill the document data.
  w_doc_data-doc_size = 1.
Populate the subject/generic message attributes
  w_doc_data-obj_langu = sy-langu.
  w_doc_data-obj_name  = 'SAPRPT'.
  w_doc_data-obj_descr = ld_mtitle .
  w_doc_data-sensitivty = 'F'.
Fill the document data and get size of attachment
  CLEAR w_doc_data.
  READ TABLE it_attach INDEX w_cnt.
  w_doc_data-doc_size =
     ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
  w_doc_data-obj_langu  = sy-langu.
  w_doc_data-obj_name   = 'SAPRPT'.
  w_doc_data-obj_descr  = ld_mtitle.
  w_doc_data-sensitivty = 'F'.
  CLEAR t_attachment.
  REFRESH t_attachment.
  t_attachment[] = pit_attach[].
Describe the body of the message
  CLEAR t_packing_list.
  REFRESH t_packing_list.
  t_packing_list-transf_bin = space.
  t_packing_list-head_start = 1.
  t_packing_list-head_num = 0.
  t_packing_list-body_start = 1.
  DESCRIBE TABLE it_message LINES t_packing_list-body_num.
  t_packing_list-doc_type = 'RAW'.
  APPEND t_packing_list.
Create attachment notification
  t_packing_list-transf_bin = 'X'.
  t_packing_list-head_start = 1.
  t_packing_list-head_num   = 1.
  t_packing_list-body_start = 1.
  DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
  t_packing_list-doc_type   =  ld_format.
  t_packing_list-obj_descr  =  ld_attdescription.
  t_packing_list-obj_name   =  ld_attfilename.
  t_packing_list-doc_size   =  t_packing_list-body_num * 255.
  APPEND t_packing_list.
Add the recipients email address
  CLEAR t_receivers.
  REFRESH t_receivers.
  t_receivers-receiver = ld_email.
  t_receivers-rec_type = 'U'.
  t_receivers-com_type = 'INT'.
  t_receivers-notif_del = 'X'.
  t_receivers-notif_ndel = 'X'.
  APPEND t_receivers.
  CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
       EXPORTING
            document_data              = w_doc_data
            put_in_outbox              = 'X'
            sender_address             = ld_sender_address
            sender_address_type        = ld_sender_address_type
            commit_work                = 'X'
       IMPORTING
            sent_to_all                = w_sent_all
       TABLES
            packing_list               = t_packing_list
            contents_bin               = t_attachment
            contents_txt               = it_message
            receivers                  = t_receivers
       EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            document_type_not_exist    = 3
            operation_no_authorization = 4
            parameter_error            = 5
            x_error                    = 6
            enqueue_error              = 7
            OTHERS                     = 8.
Populate zerror return code
  ld_error = sy-subrc.
Populate zreceiver return code
  LOOP AT t_receivers.
    ld_receiver = t_receivers-retrn_code.
  ENDLOOP.
ENDFORM.
*&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
      Instructs mail send program for SAPCONNECT to send email.
FORM initiate_mail_execute_program.
  WAIT UP TO 2 SECONDS.
  SUBMIT rsconn01 WITH mode = 'INT'
                WITH output = 'X'
                AND RETURN.
ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
*&      Form  POPULATE_EMAIL_MESSAGE_BODY
       Populate message body text
form populate_email_message_body.
  REFRESH it_message.
  it_message = 'Please find attached a list test ekpo records'.
  APPEND it_message.
endform.                    " POPULATE_EMAIL_MESSAGE_BODY
regards,
venkat appikonda

Similar Messages

  • Creating truly custom mail rule - Subject line word length?

    hey, first post... i am noting tons of spam where the subject line is one long mess consisting of junk words. There is no custom rule category allowing me to set something similar to:
    if SubjectLine has word with length >20 Junk It..
    Until Apple catches up to spammers and gives that to us, can anyone help me perhaps do this sort of thing? thanks, drew..

    i solved this myself and can be contacted privately for the answer..

  • Sending email using CL_BCS in the background with subject line 255 chars

    Hello Gurus,
           Following is the sample code,. When I run in the foreground, I am getting the mail, with proper subject line. However my output medium type is '5-'External Send#. When I am trying to run this in my output program, it is resulting in dump.
           When I keep 'COMMIT WORK',  I am getting a dump saying tText * Invalid COMMIT WORK in an update function module.*
           When I remove this 'COMMIT WORK', I am still getting the error, saying Screen output without connection to user. (The current ABAP program "SAPLSTXC" statements could not be executed.)
          Hoping for a quick solution.
    Regards,
    Shaheen
    REPORT  Z_CL_BCS_TEST.
    * Trying classes
    DATA: send_request        TYPE REF TO cl_bcs.
    DATA: li_main_text        TYPE bcsy_text,
          lw_main_text        LIKE LINE OF li_main_text.
    DATA: document            TYPE REF TO cl_document_bcs.
    DATA: recipient           TYPE REF TO if_recipient_bcs.
    DATA: sender              TYPE REF TO if_sender_bcs.
    DATA: l_mtitle            LIKE sodocchgi1-obj_descr.
    DATA: sent_to_all         TYPE os_boolean.
    DATA: bcs_exception       TYPE REF TO cx_bcs.
    DATA: lv_sub TYPE string.
    TRY.
    *     -------- create persistent send request ------------------------
        send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document---------------
    *     Email title
        l_mtitle = 'attachment'.
        lv_sub = 'Email Title : I want to try for a subject which is more than 50 chars. will this work?'.
        CALL METHOD send_request->set_message_subject
          EXPORTING
            ip_subject = lv_sub.
    *     Fill the body of the mail
        REFRESH li_main_text.
        lw_main_text = 'This is test email'.
        APPEND lw_main_text TO li_main_text.
        CLEAR: lw_main_text.
        lw_main_text = 'Regards'.
        APPEND lw_main_text TO li_main_text.
        CLEAR: lw_main_text.
    *     Create Email Object
        document = cl_document_bcs=>create_document(
          i_type    = 'RAW'
          i_text    = li_main_text
          i_subject = l_mtitle ).
    *     Add document object to send request
        send_request->set_document( document ).
    *     add recipient (e-mail address)
        recipient =
            cl_cam_address_bcs=>create_internet_address(
                  'Shaheen.Taori at solvay.com' ).           " changed the email id purposefully
    *     Add recipient object to send request
        CALL METHOD send_request->add_recipient
          EXPORTING
            i_recipient = recipient
            i_express   = 'X'.
    *     ---------- send document ---------------------------------------
    *    sent_to_all = send_request->SEND_WITHOUT_DIALOG( I_WITH_ERROR_SCREEN = ' ').
        CALL METHOD send_request->SEND_WITHOUT_DIALOG.
    *      EXPORTING
    *        e_sent_to_all = 'X'.
    *    IF sent_to_all IS INITIAL.
    *      MESSAGE 'Erorr while sending email ' TYPE 'E'.
    *      EXIT.
    *    ENDIF.
          COMMIT WORK.
    *   exception handling
      CATCH cx_bcs INTO bcs_exception.
        MESSAGE i865(so) WITH bcs_exception->error_type.
    ENDTRY.

    Try using method SEND instead of SEND_WITHOUT_DIALOG.
    Also try calling method SET_SEND_IMMEDIATELY before calling method SEND.
    Use below code lines,
    send_request->set_send_immediately( i_send_immediately = 'X' ).
    sent_to_all = send_request->send( i_with_error_screen = 'X' ).   " Instead of CALL METHOD send_request->SEND_WITHOUT_DIALOG.

  • How to increase the length of the subject line in email using FM

    Hi
    we have maintained 50 characters for the subject line initially, but some subjects are having more than 50 characters. how can we increase the length of the subject line in email.
    urgent.
    points will be rewarded generousely.

    Hi Rana,
    In this case, you have to create a user defined field of required length under Journal Transactions Header to fill the data.
    Regards,
    Vijay Kumar
    SAP Business One Forums Team

  • String "iso-8859-1" found in subject line of java mail API(when German char

    We have written a mail client using java mail API and it works fine. Some body sends the email with subject line contains German chars(using some other mail client like outlook)
    and our mail client is running on the machine whose Local has been set 'German'.
    Now, while getting the subject line
    Javax.mail.Message email; //local variable
    // some how I am intializing email.
    String str = email.getSubject();
    the value of str returns "Bitte die 4 Items I�schen. Kein Bedarf. Ich kann die=?iso-8859-1?Q?_L=F6schung_nic?="
    but actual value subject line was "Bitte die 4 Items I�schen. Kein Bedarf. Ich kann die L�schung nic"
    So '�' char was repalced by some arbit chars.
    Moreover, Charset.defaultCharset().name() returns 'windows-1252'
    Please suggest me how I can get the actual subject line
    Thanks
    -Sanjeev

    http://forum.java.sun.com/thread.jspa?threadID=741111&messageID=4250621
    visit it
    by ghanshyam

  • Send an attachment in email with length more than 255 char per line

    Hi All,
    I have to send an attachment in email with length more than 255 char per line. I dont want to break the line after 255 char and add it in another line.
    Please suggest me any function module which can perform this.
    Thank you all.

    I looked at all threads in the forum, there was about 5 or 6 identical questions, but surprise, nobody knows! It seems that SO_NEW_DOCUMENT_ATT_SEND_API1 function module does not allow more than 255 characters by line.
    It would surprise me a lot if there is no workaround !
    As it is very easy to add any binary attachment which is like a very long line, PDF for example (several kilobytes), via the function module above (lots of examples in the forum), I would advise you to try to use the same way, i.e. use the contents_bin parameter instead of the contents_txt parameter (convert the text into binary) and add the line feeds yourself (okay I know, it's not very smart).
    Last thing, this function module is deprecated, and we should use BCS classes, maybe they work better.

  • How to filter to trash email w/ subject line of huge length of varying cryptic characters?

    example from cropped screen shot:
    could not load; abbreviated transcribing of just some of the subject line text:
    =?iso-8859-1?B?SWYgeW91IGhhdmUgYSBmZXcgYwVudHMgb...

    As the subject line will change for every email, it is not worth setting up a filter for every email.
    Suggest you set up your Junk controls and train them to recognise Junk mail.
    Then select the email as 'Junk'.
    You can also setup Junk to empty on a regular basis,
    Work through the info at the link to set up Junk Controls.
    http://kb.mozillazine.org/Junk_Mail_Controls
    However, are you sure it is junk mail and something in encoding has not been configured correctly?
    What version of Thunderbird are you using and what OS?
    View > character encoding
    what is selected?
    What happens when you select : Western ISO-8859-1
    Tools > Options > Display > formatting tab
    click on 'Advanced ' button
    character Encoding:
    What is set as outgoing mail?
    what is set as Incoming Mail?

  • How can we extend the subject line using SO_NEW_DOCUMENT_ATT_SEND_API1??

    Hi,
    I am triggering a mail using the function module SO_NEW_DOCUMENT_ATT_SEND_API1, where in the subject of the mail is passed using the DOC_CHNG-OBJ_DESCR, here the object_descr can only accomadate 50 characters.
    But requirement is to have more than 50 characters may be 100 to 150 in the subject line.Please help me to extend.
    Thanks in advance.

    Hi,
    Searched in the forum for the above requirement but didnt find the required info..
    Please help me in finding a solution to this
    Thanks in advance

  • Saving Outlook eMail to a hard drive folder with long subject lines

    I'm using Outlook 2010 on a WIN7 machine. I drag and drop eMails to folders on my desktop quite often and in the past (earlier version
    of Outlook) I would receive a warning that the file did not copy if the subject line was too long. When I drag and drop eMails with long subject lines now there is no visual warning or indication that the operation failed. I am aware of the file name/path
    character count limitation. My issue is the lack of a warning when the operation fails requiring me to have to check the length of the subject line before the operation or double check if the file is present after the operation. Checking after the operation
    is quite exacerbating when you are copying 15 - 20 files at a time. Is there a patch or something that can be done about this?

    Hi,
    We can also consider to get support about macro from MSDN forum:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Subject line of email question

    In a script the following is saving a file as Email Date then the date then the time.
    Instead of having the "name" Email Date I would like the subject of the email there. What is the command to put the subject line there?
    keystroke "Email Date " & short date string of (current date) & space & time string of (current date)

    I don't know if a script such as the one you wish to get will ever work in Leopard. Many people have already noted that the mail rules don't work properly with AppleScript in Mac OS X 10.5. See for example http://discussions.apple.com/thread.jspa?threadID=1226817.
    So I have written a more complete version of the script first proposed in http://discussions.apple.com/message.jspa?messageID=9451103#9451103. Each time it is launched, the new script will search for all the messages of your "inbox" mail box which have not yet been put into the "Prints" folder on the desktop; it will then open and save them as PDF files into that folder. Moreover, the name given to each PDF file will correspond to the first 20 characters of the subject of the message, followed by the date and time at which the message was received. This script surely still needs to be improved and adapted to your own needs, but it works. Better than nothing…
    property theMostRecentDate : (current date) - 5 * days -- an arbitrary starting point
    tell application "Mail"
    activate
    set theList to messages of mailbox "INBOX" of account 1 whose date received > theMostRecentDate
    repeat with theMessage in theList
    open theMessage
    set theSubject to subject of theMessage
    set theDate to date received of theMessage
    tell application "System Events"
    tell application process "Mail"
    keystroke "p" using command down
    repeat until sheet 1 of window 1 exists
    -- just wait
    end repeat
    click menu button "PDF" of sheet 1 of window 1
    click menu item "Save as PDF…" of menu 1 of menu button "PDF" of sheet 1 of window 1
    delay 1 -- 1 second should be enough
    keystroke "d" using command down
    if value of checkbox 1 of window 1 is 0 then click checkbox 1 of window 1
    click radio button 2 of radio group 1 of group 2 of window 1
    select item 1 of (rows of outline 1 of scroll area 2 of splitter group 1 of group 2 of window 1 whose value of static text 1 is "Prints")
    keystroke "o" using command down
    set L to the length of theSubject
    if L > 20 then set L to 20
    keystroke (text 1 through L of theSubject) & space & short date string of theDate & space & time string of theDate
    keystroke return
    delay 1
    keystroke "w" using command down -- to close the message
    end tell
    end tell
    if theDate > theMostRecentDate then set theMostRecentDate to theDate
    end repeat
    end tell

  • Email update notifications subject line could be a *lot* more useful.

    I only started using the discussions forums a while ago (although I read quite a few Apple Mailing lists).
    I am registered to receive notifications for a few forums. These typically have a subject line like this:
    ===
    Apple Discussions forum "Some Forum" has been updated by Some User
    ===
    and a line in the body that reads:
    ===
    You have requested mail to be sent to you when messages to the Apple Discussions forum "Some Forum" are posted. Some User posted "Some Topic" on May 25, 2006 11:20:09 PM.
    ===
    It would be much nicer and more convenient if the subject line of these mail also contained the topic name, so that I can weed out those that I'm not interested in without actually opening the message, and also so that I can recognise which messages are going to direct to me to the same topic.
    For example:
    ===
    "Some Topic" in Apple Discussions "Some Forum" has been updated by Some User
    ===
    Even the thread id would be useful, if the length of the subject line is a concern.
    This should be pretty easy, as the information is clearly available when the mail is constructed.
    cheers,
    Martin

    Hi Martin
    that's odd, since my notification emails come with a subjecy header like
    Topic "Movies/Flash" in the Apple Discussions forum "Safari" has been updated by someone
    iMac G5 rev B   Mac OS X (10.4.6)   2GB 250GB

  • Spam rule for long word in subject line..

    My apologies, but my last question on this topic is archived (that seems quick).. but
    Surely there must be a way to create a spam rule that checks for words in the subject line that are, say more than X characters long. The new spam that is driving my batty with very long single words in the subject line are just not filterable as the content, the site, the eddress etc are rotating so quickly.
    If not, APPLE, can you add this pleeeeeease? thanks, drew..

    You mean like "Offfice2010IissBetterThannEver.GeetItFfromAuthroizeddOEMOnlineStore"? (I suspect a lot of us get those!) While I agree with you in principle, I don't think Apple should hard-bake an option for "subject length" into the rule panel, since it's really something that you want Mail's own junk filter to pick up.
    Even better is if your mail provider can mark it as junk before it gets into Mail. Gmail has pretty strong junk filters. Some providers (especially if you own the domain) allow you to adjust the junk level to catch more spam. You can often set a spam prefix at the server, so that when Mail gets the message, the subject looks something like "* SPAM * [original subject]" - you can then set a rule that finds these and files them appropriately.
    Matt
    Matt

  • I want to use system and job variables to make the information dynamic in the Email Subject Line

    Someone could mention the subject line character limitation needs to be expanded. 50 chars is not much to work with! 
    Is it possible to make SUBJECT Line to make , use system and job variables to make the information dynamic , Right now there is a limit for Characters in the Subject line ... is it possible to expand ???  

    I've encountered the same issue and worked around it by using generic variables that would always be the same for a certain email alert. eg =  "System XYZ -source file delay for :"
    So a sample subject would then be: 
    Where ENV = DEV/UAT etc.
    This functionality allows you to use generic alert templates for all filewait jobs, and just filling in the variables.
    A slight problem is that although this works very well, the use of group variables in email / alert actions is (/ wasn't) officially supported by Cisco when I last ran it past then. Cisco, any update in this?

  • Mail received as subject line [Bulk]

    A lot of my mail comes into my mailbox as [Bulk].
    I have tried adding the email to my address book, I have tried deleting the message and having it resent, no matter what the [Bulk] does not go away.
    The only reason this bugs me is because mail gets sent to my BlackBerry. If a message is [Bulk], it never comes to my BlackBerry.
    Does anyone have an idea how to fix this?
    Your help is greatly appreciated.

    I've had this problem...intermittenly...for a few months. (Never before OS 10.5)
    In my case, a weekly newsletter to almost 1,100 bcc recipients.
    Sometimes it works just fine.
    Sometimes...and more, recently...the subject line disappears and many recipients don't get it.
    The subject line is usually fewer than 30 characters, though it's a mix of letters, numbers, and,
    God forbid, an apostrophe.
    VERY frustrating. If you search these boards, you'll find this question has been raised...and unanswered....before, except for one claim that the problem has been fixed in an update to 10.5.
    Not in my experience....
    Thanks for your help.
    Rick Gevers

  • Subject line to increase in correspondence

    Hi Experts,
    We are facing a .concern that whenever we send a correspondence through E Recruiting then we can't change the subject line.
    We need to increase the text length of subject beyond 50 characters & we want to pick interview date dynamically based on input in activity.
    Please help in resolution or guidance to proceed.
    Regards
    Puneet Handa

    Hi Punith
    The correspondence subject is description of the smartfomrs / adobe . If we want to change the description than we need to change the description of the forms.
    interview date is picked automatically once we execute interview process activity .
    Regards
    Sanjay.KN

Maybe you are looking for

  • Crystal Report Source is MS SQL Stored Procedure Causes Login Popup

    My environment is this:  Visual Studio 2010 with CRforVS_13_0_9 installed.  MS SQL Server is source for all report data.  I use three different databases for all my reports. I have a number of working CR reports that work fine in IDE and at runtime. 

  • How to create a custom application in Fusion Apps release 4 ?

    Hello Experts, My project has a requirement to define a custom application in Fusion Apps, the one that is equivalent to fnd_application from EBS. Any document or note explaining the creation of custom application in Fusion and its association with U

  • Problem in replicating the material from SRM to CCM

    Hi SRM gurus We have material created in ECC6 and replicated to SRM, but the same material is not being replicated to CCM. Back ground job for program BBP_CCM_TRANSFER_CATALOG is running. we are on SRM 5.0, Extended calssic scenario.

  • Roles included in Roles and how it effects User Content

    I want to have one role which generates a tab called "Budget Development" under this tab depending on the users other assigned roles I want from 1 to 3 addition tabs or selections to appear. Based opn user assigned Roles When I create 3 additional ro

  • Can I make a dual boot with Windows 7?

    After taking every precaution I can think of for installing Windows 7 on my wifes laptop. System recovery disk, backups(2 DVD's),and an image I made over 6 DVDs. I thought of why not just shrink the Vista Partition, install Windows 7 in the created p