Find table which contains "job name" and "Mail sent to users"

Hi Folks,
I have a requirement” whenever I run a job(xyz), it send mail to users”, Can you please let me know the table which contains both “job name” and “successfully mail sent to users”.
Thanks in Advance.
Lakshmi.

Hi,
You can find the job name in TBTCJOB.
Regards,
Ravi
Note : Please mark the helpful answers

Similar Messages

  • How to create a table which contains relational data and Document data

    hai all
    i need to create a table which contains relational data(i mean coulumns whose data types are type NUMBER,VARCHAR) and documents(like xml file/html file/image)using iFS.
    when i store the document data(xml data/html data) in the iFS ,it will be stored as Document Object.so how do i relate this document object belongs to a particular row in a table.
    do guide me
    thanks

    Please see reply at http://technet.oracle.com:89/ubb/Forum36/HTML/000778.html

  • Adding a summary column in a table which contains the start and end dates in the week

    Hi,
    I've got a DIMENSION DATE table and want to add in another column which shows the start and end date of the week.
    See below, the new column is WEEKOFYEARTEXT.
    Does anybody know how i may generate this column using SQL and using the existing columns?
    Umar Javed

    See:  http://www.sqlusa.com/bestpractices/datetimeconversion/
    DECLARE @Year INT = '2015';
    WITH cteDays AS (SELECT DayOfYear=Dateadd(dd, number,
    CONVERT(DATE, CONVERT(char(4),@Year)+'0101'))
    FROM master.dbo.spt_values WHERE type='P'),
    CTE AS (SELECT DayOfYear, WeekOfYear=DATEPART(week,DayOfYear)
    FROM cteDays WHERE YEAR(DayOfYear)= @YEAR)
    SELECT WeekOfYear, StartOfWeek=MIN(DayOfYear), EndOfWeek=MAX(DayOfYear)
    FROM CTE GROUP BY WeekOfYear ORDER BY WeekOfYear;
    WeekOfYear StartOfWeek EndOfWeek
    1 2015-01-01 2015-01-03
    2 2015-01-04 2015-01-10
    3 2015-01-11 2015-01-17
    4 2015-01-18 2015-01-24
    5 2015-01-25 2015-01-31
    6 2015-02-01 2015-02-07
    7 2015-02-08 2015-02-14
    8 2015-02-15 2015-02-21
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • Table which contains name of the report generated from table

    Hello everyone,
    Is there any table which stores the report names that are created from table.
    For example if my table name is 'ABC' a new report will be created for table at run time '/1BCDWB/DB/ABC'.
    I also need to have table names, which stored the values when a layout is changed
    For example if I have ten fields in my table, first time ill choose 5 fields, second time ill change the layout and choose 10 fields and ill save the layout.
    If any Function modules are there please let me know
    Please let me know, if anyone has details.
    Thanks,
    Gayatri.
    Moderator message : Duplicate post locked. Continue with the thread - [Name of the table which stores report contents and layout changes|Name of the table which stores report contents and layout changes;.
    Edited by: Vinod Kumar on Jun 14, 2011 3:42 PM

    Hi,
    Thanks for reply.
    I know about ttxfp and tnapr. but none of the two table contain form name with its description. actully I m looking for a table which contain form name with there desription. please if you have info regarding this, Do share with me . this is really urgent
    regrads,
    Ruchika saini

  • Table which contains Start & End Destination details

    Hi All,
    I was trying to find out the table which contains the start and end destination details of a mileage claim in Travel Management.
    Can any one let me know the table names.
    Thanks and Regards
    Sri

    Hi Srinivas,
    Thanks for the reply!
    but what iam trying to find out is during mileage claim we usually enter the start destination and end destination . Now i wanted to know where will these details go and get stored as i need to amend some changes on the PDF form and i need to fetch these details to get them displayed.
    Thanks and Regards
    Sri

  • How to get Current Background Job name and Job Count programmically?

    Hi all,
            I have a requirement wherein I need to get the Current Background Job name and Job Count in the program and store it in a custom table. In other words, whenever I schedule a particular program ( This is a Std program) in background, I need to update this table with the Job Name and Job Count. This will be used by another program later to read the Job Information from table TBTCO. TBTCO has key fields Job Name and Job ID. The sheduled program will be a SAP standard program and I'll be writing the logic to get the info in an Implicit Enhancement Spot.
    Is there anyway I can do this? Any FM to get this information?
    Thanks,
    Mahesh.

    Hey Adrian,
                             Thanks a lot. This is what exactly i was looking for. Appreciate it.
    Mahesh.

  • Please help me to know the tables which contain details of APD and Open hub destination

    Hi experts,
    I need to know the list of APDs that have been created in our system. So can you please let me know the table name (if there is any) which contains the name of the APD and as well as the status (active / inactive) of the APD.
    Thanks ,
    Shalini

    Hi Shalini,
    Go to RSANWB  T-code and select any analysis process. Then press the "monitor" button. On the monitor screen, you can see the selection criteria in a table on the right. Now double-click on the table and a popup will come up where you can set the selection criteria. in particular, you can set the time frame and the analysis process selection.
    Hope it 'll help you..........
    Regards,
    Mukesh

  • Reg:table which contains open STO's and P2P orders

    Hi,
    Can any body please tell me the table which contains open STO's and P2P orders.
    Thanks&Regards,
    Usha.

    Please refer to table EKPO where field ELIKZ is not equal to "X".
    Regards
    Bhavesh Mistry

  • How to get the job name and details in a report format - sm37 details I mea

    I need to extract the Job names and the job steps that comeout of a report?
    Is there a standard program for this ?
    Which tables store this information for me to write a custom report?
    thanks,
    Ven

    Hi Venkatabby,
    Check out the table:
    TBTCS
    Thanks,
    Chidanand

  • Optimise query on the table which contain 1000 column

    Hi ,
    I have query on the table which contain 1000 columns
    when i am executing query on same table .It is taking time .
    Select * from abc
    where col1 between start_date and end_date ;
    abc table contain 1000 columns.
    please tell me how to optimise query

    Yeah, that was my thought as well ... 1000 columns? wtf?
    I can't think of many reasons for why you'd need to do a select * on it, and the scenarios that would require that are better addressed at the DBA level, perhaps using db replication and the data pump, etc. So to start with try selecting just the data you would need.
    One thing you can do right off the bat is to partition that table by date, and also to analyze and run statistics on it (this was a nightly operation at my last job).
    You can also create a materialzed view that refreshes overnight, just on the slice of the data you need. Use a forced fast refresh to make it current before you use it.

  • Job name and Job frequency

    Hi All,
    Can any one help me out in finding the Job name and Job frequency.
    I wanted to know the Job name and Job frequency for eash & every message type specified in particular Partner Type in we20.
    For example:
    Let suppose my partner profile name is some country name like 'INDIA'.Ok. For Partner Name 'INDIA" we have some message type, message variant as Outbound and Inbound Parameters.
    Now,there might be some Job running on background to process these message type.
    I want the exact name of the Job Name and Its frequency.
    Thanks

    Hey
    Please ask the function people what is the business logic they have configured.usually we activate change pointers for any IDOC and as soon as any changes are made for that IDOC,it is triggered.the functional person will tell you at what stage they are posting this IDOC.
    RBDMIDOC is the report which is used for creating IDOC's based upon the change pointers.but there are other ways too in which IDOC's can be triggered,so you would be better off asking the function person.
    Thanx
    Aamir

  • Creating a report containing Report Names and associated Groups in XIr3.2

    Hi -- Does anyone know if we have the ability to create a report that contains Report Names and their associated Groups (like LDAP groups)? 
    We actually have Groups associated at the Report Level as well as the Folder level. 
    This functionality did not exist in XIr2.

    I'm inferring you want to report on the CMS repository database, specifically UserGroups and which reports are accessible by those UserGroups.
    That would involve Java SDK coding if you're looking for detailed ACL list information.  You'd need to implement Enterprise Java SDK code to retrieve the InfoObject/SecurityInfo2/Principal information, and create adapter classes to make that information consumable via one of the supported reporting connectivities.
    For this, you'd need experience with both Enterprise Java SDK and supported reporting connectivity APIs (such as POJOs or JavaBeans).
    Sincerely,
    Ted Ueda

  • List of PT TABLES which contain digital certificate

    Team,
    We have implemented self sign certicate in our environment.
    So, can someone share the list of PT TABLES which contain digital certificate .
    Because, we are going to refresh the environemnt and I dont want to lose the digital certificate after the refresh.
    Thanks

    On the safer side, I am taking export of below tables too. Please have a look.
    -- PROCESS SERVERS
    EXPORT PS_SERVERCLASS;
    EXPORT PS_SERVERDEFN;
    EXPORT PS_SERVERDEFN_LNG;
    EXPORT PS_SERVERNOTIFY;
    EXPORT PS_SERVERMESSAGE;
    EXPORT PS_SERVEROPRTN;
    EXPORT PS_SERVERCATEGORY;
    EXPORT PS_SERVERSTAT;
    --Report Node
    EXPORT PS_CDM_DIST_NODE;
    -- URL DEFINITIONS
    EXPORT PSURLDEFN;
    EXPORT PSURLDEFNLANG;
    EXPORT PS_PT_URL_PROPS;
    -- DIRECTORY
    EXPORT PSDSDIR;
    EXPORT PSDSSRVR;
    EXPORT DSCONNECTID;
    EXPORT PSDSEXT_INSTALL;
    EXPORT PSDSSECMAPMAIN;
    EXPORT PSDSSECMAPSRVR;
    EXPORT DSUSRPRFLMAP;
    EXPORT PSDSUSERPRFL;
    EXPORT PSDSSECROLERULE;
    EXPORT DSSRCH_SBR;
    EXPORT DSSRCHATTR;
    EXPORT DSSECFILTER;
    EXPORT PT_WF_NOT_DSCFG;
    -- WEB Data
    EXPORT PSWEBPROFBROW;
    EXPORT PSWEBPROFCOOK;
    EXPORT PSWEBPROFDEF;
    EXPORT PSWEBPROFILE;
    EXPORT PSWEBPROFPROP;
    EXPORT PSWEBPROFNVP;
    EXPORT PSGATEWAY;
    --Digital Certificates
    EXPORT PSCERTISSUER;
    EXPORT PSCERTDEFNDEL;
    EXPORT PSCERTDEFN;
    EXPORT PSCERTDB;
    -- Search Attribute
    EXPORT PSPTSF_ATTRS;
    EXPORT PSPTSF_ADD_PRMS;
    EXPORT PSPTSF_ATT_PROP;
    -- Search Definition
    EXPORT PSPTSF_SD;
    EXPORT PSPTSF_SD_ATTR;
    EXPORT PSPTSF_SD_ATTRH;
    EXPORT PSPTSF_SD_DCATR;
    EXPORT PSPTSF_SD_DCACL;
    EXPORT PSPTSF_SD_LANG;
    EXPORT PSPTSF_SD_PNLGP;
    EXPORT PSPTSF_SD_SRACL;
    -- Search Category
    EXPORT PSPTSF_CATADVFD;
    EXPORT PSPTSF_CATDSPFD;
    EXPORT PSPTSF_CATFACET;
    EXPORT PSPTSF_CAT_LANG;
    EXPORT PSPTSF_SRCCAT;
    EXPORT PSPTSF_SRCCATAT;
    -- Search Context
    EXPORT PSPTUS_CTX;
    EXPORT PSPTUS_CTX_DET;

  • Table where the last name and the first anme are stored

    Hi ALL,
    I would like to know the table in which the last name and the first name of the employee gets stored?

    Hi,
    You can use the table PA0002 for first and last name of the employee.
    Please refer the below fields in table PA0002
    First name- PA0002<VORNA>
    Last Name-PA0002<NACHN>
    Second Name-PA0002<NACH2>
    Regards
    Raviiiiiiiiiii

  • 1.- I´m creating a Muse site which contains videos, photos and sound. All videos, sounds and pictures are located in diferent folders in my PC. Since Muse doesn't organize the project and its files like Dremweaver (all files in a single folder). How can I

    1.- I´m creating a Muse site which contains videos, photos and sound. All videos, sounds and pictures are located in diferent folders in my PC. Since Muse doesn't organize the project and its files like Dremweaver (all files in a single folder). How can I manage my site (containing all the media)  in order to upload it to a server?
    2.- Is there a Adobe Muse community in spanish language?
    Thanks for your help
      Mauricio444

    Kevin is suggesting that you store the projects you create while working through his book in a folder called RoboHelpProjects. It is not where you have to store every project you ever create.That is for the purposes of his book.
    RoboHelp initially defaults to My RoboHelp Projects but it's up to you whether you do. Generally on the forums we advise against that as  it is part of your profile and can result in excessively long path names in a few cases. Generally where authors create file names that are so long they almost serve as the content.
    Projects always have a root folder, call them Project 1 and Project 2 for this purpose. You can have those folders directly off your C drive (or other local partition) or within in a parent folder as above.
    Now to what you can and cannot do. You can delete a whole project by selecting Project 1 or Project 2 in Windows Explorer. Obviously if you delete the parent folder you will delete all your projects within.
    What you must not do is delete individual files within a project using Windows Explorer, for that you use RoboHelp's Project Manager. The exception is if you go to Tools > Reports there is a report Unused Files. Files listed there will have to be deleted using Windows Explorer for the very good reason they do not appear in Project Manager and, therefore, cannot be deleted that way.
    If you think about it, it is similar to Word. There is no option to delete a document there other than using File > Open and right clicking. Not very intuitive.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

Maybe you are looking for