What is the field in the tabel "Send mail to users"

Hi Folks,
if the job(Z or Standard prog)is completed successfully then it sends mail to user. i want to know what is the field to capture this information.
Could you tell me what is the field in the table TBTCO.
Thanks,
Lakshmi

Please check table SOST. MSGV1 field might hold this info.

Similar Messages

  • What are the possibilities sending notifications using TTY

    What are the possibilities sending notifications using TTY? And how to integrate TTY with Siebel

    Here are the possibilities of Content search webparts
    http://office.microsoft.com/en-in/office365-sharepoint-online-enterprise-help/configure-a-content-search-web-part-in-sharepoint-HA104119042.aspx
    http://office.microsoft.com/en-in/office365-sharepoint-online-enterprise-help/when-to-use-the-content-query-web-part-or-the-content-search-web-part-in-sharepoint-HA104206662.aspx
    Compare the strengths and limitations of the Web Parts
    It’s important that you understand the strengths and limitations of the two Web Parts because if you choose the wrong one, your site could run into performance problems. You can use both Web Parts to show content that is based on a query. In a simplified
    world, here’s how you can decide between the two:
    Use the CQWP when you have a limited amount of content, your query is simple, and you don’t expect your content to grow much in the future.
    Use the CSWP in all other scenarios when you want to show content that is based on a query.
    The table below gives a comparison of the two Web Parts:
    Web Part behavior
    Content Query Web Part
    Content Search Web Part
    Query configuration
    Easy
    You’ll need to know about certain search features such as
    managed properties.
    Query across large amounts of content
    Limited
    Yes
    Handle complex queries
    Limited
    Yes
    Scale to handle future content growth
    Limited
    Yes
    Display content from other site collections
    No
    Yes (see
    section below)
    Design of query results can be customized
    Yes, by using XSLT.
    Yes, by using HTML.
    Maintenance cost in a complex site architecture
    High
    Small (see
    section below)
    Narrow down the query results that are displayed in the Web Part
    No
    Yes, in combination with the
    Refinement Web Part.
    It was not there previously but then it was added to Office 365
    http://blogs.office.com/2013/10/29/search-innovations-for-site-and-portal-design-in-sharepoint-online/
    If this helped you resolve your issue, please mark it Answered

  • Is it possible to temporarily turn off receiving group messaging?  If so what will the people sending the message see?

    Is it possible to temporarily turn off receiving group messaging?  If so what will the people sending the message see?

    Welcome to the discussions!
    Is it possible to temporarily turn off the wireless signal being emitted from an Airport Extreme whilst still remaining connected to the internet via ethernet? If so, what do you need to do to turn off the wireless signal?
    Open AirPort Utility - Click Manual Setup
    Click the Wireless tab located just under the row of icons
    Wireless Mode = None
    Update to save your new settings
    You can reverse the process to turn the wireless back on when you are ready.
    Also, how strong is the wireless signal? If placed in a basement of a residential property, is it likely that the signal would reach two floors above?
    It's just not possible to accurately predict wireless performance in advance for any installation. A guess would be that the signal will be very weak, and likely unusable, but you won't know for sure until you try it out in your house.
    Message was edited by: Bob Timmons

  • Please explain what are the various procedures to find user-eixts

    Hi,
    Please explain what are the various procedures to find user-eixts ?
    Ramana

    Hi,
    1. By executing this Program.
    *& Report  ZFIND_EXIT
    REPORT  ZFIND_EXIT.
    *report zbadi_find .
    tables : tstc,
    tadir,
    modsapt,
    modact,
    trdir,
    tfdir,
    enlfdir,
    sxs_attrt ,
    tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode,
    p_pgmna like tstc-pgmna .
    data wa_tadir type tadir.
    start-of-selection.
    if not p_tcode is initial.
    select single * from tstc where tcode eq p_tcode.
    elseif not p_pgmna is initial.
    tstc-pgmna = p_pgmna.
    endif.
    if sy-subrc eq 0.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'PROG'
    and obj_name = tstc-pgmna.
    move : tadir-devclass to v_devclass.
    if sy-subrc ne 0.
    select single * from trdir
    where name = tstc-pgmna.
    if trdir-subc eq 'F'.
    select single * from tfdir
    where pname = tstc-pgmna.
    select single * from enlfdir
    where funcname = tfdir-funcname.
    select single * from tadir
    where pgmid = 'R3TR'
    and object = 'FUGR'
    and obj_name eq enlfdir-area.
    move : tadir-devclass to v_devclass.
    endif.
    endif.
    select * from tadir into table jtab
    where pgmid = 'R3TR'
    and object in ('SMOD', 'SXSD')
    and devclass = v_devclass.
    select single * from tstct
    where sprsl eq sy-langu
    and tcode eq p_tcode.
    format color col_positive intensified off.
    write:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    skip.
    if not jtab[] is initial.
    write:/(105) sy-uline.
    format color col_heading intensified on.
    Sorting the internal Table
    sort jtab by object.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type c.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    loop at jtab into wa_tadir.
    at first.
    format color col_heading intensified on.
    write:/1 sy-vline,
    2 'Enhancement/ Business Add-in',
    41 sy-vline ,
    42 'Description',
    105 sy-vline.
    write:/(105) sy-uline.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    format color col_group intensified on.
    write:/1 sy-vline,
    2 wf_object2,
    105 sy-vline.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    select single modtext into wf_txt
    from modsapt
    where sprsl = sy-langu
    and name = wa_tadir-obj_name.
    format color col_normal intensified off.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single text into wf_txt
    from sxs_attrt
    where sprsl = sy-langu
    and exit_name = wa_tadir-obj_name.
    format color col_normal intensified on.
    endcase.
    write:/1 sy-vline,
    2 wa_tadir-obj_name hotspot on,
    41 sy-vline ,
    42 wf_txt,
    105 sy-vline.
    at end of object.
    write : /(105) sy-uline.
    endat.
    endloop.
    write:/(105) sy-uline.
    skip.
    format color col_total intensified on.
    write:/ 'No.of Exits:' , wf_smod.
    write:/ 'No.of BADis:' , wf_badi.
    else.
    format color col_negative intensified on.
    write:/(105) 'No userexits or BADis exist'.
    endif.
    else.
    format color col_negative intensified on.
    write:/(105) 'Transaction does not exist'.
    endif.
    at line-selection.
    data : wf_object type tadir-object.
    clear wf_object.
    get cursor field field1.
    check field1(8) eq 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    set parameter id 'MON' field sy-lisel+1(10).
    call transaction 'SMOD' and skip first screen.
    when 'SXSD'.
    set parameter id 'EXN' field sy-lisel+1(20).
    call transaction 'SE18' and skip first screen.
    endcase.
    2. . Go to the screen>System>Status-->Program (Double
    click this program. It will take you to the program.
    2. Now, Goto-->Object Directory Entry.
    3. Make a note the package name.
    4. Now run the transactions SMOD, press F4 and enter the
    above noted package, press enter.
    5. It will display list of Exits.
    6. Now go back to the initial screen SMOD.
    7. Specify the exit name here and select the radio button
    Components.
    8. It will display four group boxes one for FM, second
    for Fcodes, thrid for Screen areas and last for
    includes.
    9. Goto transaction CMOD, create a new project, and
    click the button "Enhancement assignments" and
    specify your enhancements that you got in SMOD.
    10. Now bouble clikc the enhancement, it will take you to editor with some includes starting with Z, double clikc the include you want to edit and proceed.
    3. 1. in se11, goto table MODSAP
    View table contents
    in Type field, enter
    'E' (for user exit / Function Exit)
    OR 'S' (for screen exit)
    4. Calling Customer- fucntion in Main Program
    Thanks,
    Anitha

  • IMAC: What is the SMTP outgoing mail server?

    IMAC: What is the SMTP outgoing mail server?

    You need to get that information from your internet service provider if you are using an email address provided by them or, if you are only using iCloud, then the info can be found here:
    http://support.apple.com/kb/HT4864
    FWIW, in order to set up email, you need both an incoming and outgoing server address (in addition to your email address/user name and password). Those are the servers your email program uses when sending or receiving emails.

  • TS3988 what is the iCloud incoming mail server setting?

    what is the iCloud incoming mail server setting?

    imap.mail.me.com - but you shoudn't need to enter this manually. If you are having problems, sign out in System Preferences>iCloud, then sign back in again and enable Mail in the checklist. Your data will disappear from your Mac when you sign out but will return when you sign back in.

  • What is the smtp incoming mail server for iCloud?

    What is the smtp incoming mail server for iCloud?

    There is no such thing as an "SMTP incoming mail server." You set up iCloud mail by checking the box marked Mail in the iCloud preference pane. You don't need to know the addresses of the servers.

  • What is the outgoing (SMTP) mail server for iCloud?

    What is the outgoing (SMTP) mail server for icloud?

    dominic23:
    That's just the name/description you can give the server that appears in Mail's preferences for that account.
    After selecting Edit you can put in whatever you want in the description. 
    advisor81:
    Why do you need to know the name?  If you add an iCloud account in Mail all you really need is your Apple ID and password.  The servers are automatically assigned.

  • What is the pathname for mail that I can get to from a terminal window

    What is the pathname for mail that will allow me to get to mail from a terminal window?
    [ iMac 27-inch;  Mac OS X version 10.7.5 ]

    Your best bet would be to take the drive to the oldest/compatible with that drive Windows PC and grab the files off, right click and format it exFAT (XP users can download exFAT from Microsoft) and then put the files back on.
    Mac's can read and write all Windows files formats except write to NTFS (and in some cases not read) so if you can change the format of the drive to exFAT (all data has to be remove first) then you will have a drive that doesn't require paid third party NTFS software (a license fee goes to Microsoft) for updates.
    Also it's one less hassle to deal with too.
    .Drives, partitions, formatting w/Mac's + PC's

  • WHAT IS THE DEFAULT PASSWORD FOR GUEST USER

    what is the default password for guest user?

    There is no default password for a guest user unless you've created one:
    (screenshot from the System Pref Guest User Pane)

  • Auto Population of Email Definition fields while sending mails to user

    Hi,
    I have the requirement that after a resource object has been provisioned to an user, a mail should be sent to him for confirmation.
    I am able to successfully send mails to users after the resource object has been provisioned to him by making the configuation settings in the OIM system.
    I have made use of a Resource Object , Resource Form , IT resource of type mail server , Email definition etc.
    The point is while provisioning the resource object I am populating the User Defined Fields. These fields are visible at the xlWebApp console through the resource form. I am populating these fields while requesting the resource through the xlWebAPp UI.
    Now i need to send mails to the user with these fields populated with the values that i m providing while provisioning the resource. Currently my sent mails just consist of plain email definition with a subject line and a body text.
    Please let me know how can i include the values in the populated fields in the body of the mail through settings in OIM.
    Since i m a QA person i cannot go ahead and write code for creating an adpater for this task. Kindly let me know is there any way by which I can do the same through config settings in OIM.
    Thanks in advance.
    Pooja.

    Hello,
    Actually i have a resource object as "Laptop" suppose, so for me the user defined fields are Laptop_type, RAM value, ROM Value and Emp ID.
    These fields are made visible as UDF through Pre-pop adapters and all the other required settings.
    While provisioning the same in the xlWebApp console I am populating them.
    The resource form for me (Form Designer for the resource object) is made visible and i am filling in values while provisioning.
    Now while sending the mails these values should reflected in the mail body for the fields.
    Eg: Subject [hi] Mail body [ The following resource has been provisioned. Laptop_type : Dell, RAM value: 512, ROM value: 40, EMP ID: 123] where these values are filled in the resource form while provisioning the resource object.
    Pleased let me know how can i send such mails through config settings in OIM. Right now my mail simply looks like
    Eg: Subject [hi] Mail Body [The resource has been provisioned to you]
    Thanks again.
    Pooja.

  • What is the name of Mail's email database

    What is the name of the file for the Mail's database? Is it located in the User Library?
    I have many duplicates in the email database that are not in Contacts. So this must be a different database? Emails take forever to auto complete.
    If I delete this file, will the application automatically rebuild it using contacts? I have over 1800 contacts.
    Thanks, Ted

    Ernie, I appear to have two address files. One is called AddressBook-v22.abcddb and the other AddressBook-v22.abcddb. But they are in two different folders that hold all of their associated files like metadata. In other words, two databases.
    The dates on all files are recent in both folders. Are the two databases required because one if the iCloud database and the other Daylite? Why such a strange setup?
    When I open Contacts, I have "All on My Mac", "Daylite -- All Contacts" and then "iCloud". Can I not configure Contacts to use only iCloud or All on My Mac? Perhaps this would speed up the search on the nearly 2,000 record for each database.
    I configured the address and calendar that lives on this computer as primary and it is backed up to iCloud. Daylite accesses the iCloud integrating its data to iCloud and then back to Contacts/Calendar.
    Barnie, I deleted the file MailRecents-v4.abcdmr. But the slow down continues. The problem appears to reside with the Contacts data. As I start typing a name in the email address field, it takes five to 7 seconds to list suggestions. And most of the suggestions contain exactly the same information repeated 2 to 3 times (duplicates).
    I routinely dedupe the Contacts file with the dedupe function. It usually finds 50 or more.
    (As a side note, I think CardDav and CalDav are works in progress. Either that, or third party applications like Daylite have not figured out how to integrate with CardDav and CalDav properly at this time.)
    Any suggestions for modifying the configuration to get better performance?

  • What is the permission to restrict end user to use Report builder

    Hi experts,
     What is the permission to restrict send user to user report builder in SSRS?
    Thanks

    Only member of the role "Report Builder" can use the Report Builder to create reports:
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • What's the problem with having multiple users with the same UID?

    I've got three edit systems connected to the SAN using open directory off our server.
    I want all edit systems to have read/write access to everything created. I don't need to protect anything from any of the systems. With all three systems logged on using the same user, I never have to change permissions.
    The other cool thing about this is that Final Cut Pro will let me know if someone else is modifying a project that I have open with the warning:
    “The project "projectName" has been modified externally. If another user is working on it, saving will overwrite their changes. Do you still want to save?”
    This sounds great, right?
    RED FLAG!!!! Apple gives the warning in this article:
    http://docs.info.apple.com/article.html?artnum=302450
    "You should not allow two users with the same UID to access an Xsan volume at the same time."
    So why is it bad to have two (or more) users with the same UID?
    I can see that in some situations it means that you can't prevent people from read/write privileges. But I don't want to restrict privileges.
    What am I missing? With all of these warnings, it seems like if I do this my edit systems could all explode or something. Please help me understand the potential ramifications of having three users have the same UID.

    Hi Russell,
    1) If you have OD set up and "editor" has UID 1111, then when they log in to any machine that's bound to OD as editor, they will get UID 1111. Therefore, there won't be any of these permission errors. This is typically the recommended approach.
    2) I assume you mean "You'd prefer to not using open directory?" Whatever the case, OD isn't mandatory with Xsan -- it's just that with multiple user accounts, managing them centrally tends to be easier. For 3 or 4 accounts and 3 or 4 machines maybe it's no big deal. If you go larger, it could get a lot more complicated. That said, if you set it up such that each machine has the exact same set of users (as you said, Mary = UID 502, Fred = UID 503, William = UID 504), then you can do what you want. Mary can log in from multiple machines at the same time, and in general you won't have permissions problems. Of course, if you try and read and write the same file from multiple workstations at the same time, you will get file locking issues, which will prohibit somebody from successfully writing the file.
    File locking issues are different from general permissions errors. The former basically says "hey, someone else is editing this file. Therefore I won't let you edit it right now... you can read it if you want though." Permissions means somebody saves it, and Xsan thinks you saved it and own the file, when you really don't.
    Quad-Core PMG5, 4 GB RAM, 7800 GT, 1 TB disk.   Mac OS X (10.4.4)  

  • What is the purpose of having 'oracle' user with umask 022?

    Hello,
    What is the purpose with having the 'oracle' profile with a umask of 022? Isn't that a security risk having files created by 'oracle' with 755 permission? I mean why let others have the capability to read and execute on files that 'oracle' writes. Thank you.
    Paul

    Hi;
    You can set it as you wish. But from note:
    The umask utility sets the file mode creation mask of the current shell execution environment to the value specified by the mask operand. This mask affects the initial value of the file permission bits of subsequently created files. If umask is called in a subshell or separate utility execution environment, such as one of the following:
    +(umask 002)+
    nohup umask ...
    find . -exec umask ...
    it does not affect the file mode creation mask of the caller's environment. For this reason, the /usr/bin/umask utility cannot be used to change the umask in an ongoing session. Its usefulness is limited to checking the caller's umask. To change the umask of an ongoing session you must use one of the shell builtins.
    If the mask operand is not specified, the umask utility writes the value of the invoking process's file mode creation mask to standard output.
    The most common umask values are 022, 027, and 077.  A umask value of 022 lets  the owner both read and write all newly created files, but everybody else can
    only read them:
    Oracle recommended(also its a prereq for installation) to set umask 022 due to do upper explanation.
    http://docs.oracle.com/cd/E19253-01/816-5165/umask-1/index.html
    Regard
    Helios
    Source:
    +0666 Default file creation mode+
    +022 resultant mode+
    +0644 resultant mode+
    On many UNIX systems, the default umask is 022.  This is inherited from the  init process, as all processes are descendants of init.

Maybe you are looking for