In which SAP table Jobname and Jobnumber data was stored.

Hi Experts,
when we are executing the job_open FM one Job Number was generated,In which SAP table this job number was stored.
Thanks in advance.
Regards,
Bhaskar

Check..
SELECT JOBNAME JOBCOUNT STEPCOUNT STRTDATE STRTTIME
    FROM TBTCO
    INTO TABLE IT_JOB_ID
   WHERE JOBNAME IN S_JOB
     AND STATUS = 'F'
      ORDER BY STRTDATE DESCENDING STRTTIME DESCENDING.

Similar Messages

  • Workflow attchment data stored in which SAP Tables

    Hi,
    In Leave workflow when approver rejects it the approver(Agent) provide the reason for rejection as an attachment.
    I have to send the external mail to the employee.
    I am able to send the mail with fixed information, however unable to extract the information from attachment ( want to know in which SAP Tables say SW* this information is stored) or any other solution.
    Help Please.
    Praveen Jain

    You really shouldn't worry about that. Use the access functions instead.
    If you are thinking about the e-mail address for a user, use the function module BAPI_USER_GET_DETAIL.
    If you are thinking about the e-mail address for an employee (which is not stored in the same table), one solution is to use BAPI_EMPLCOMM_GETLIST and look for an entry with subtype 10 (this one is SAP standard I believe) or any custom subtype which should hold e-mail address.

  • In which SAP tables where INCOTERMS COST are stored?

    Dear All, Costing/Financial Experts,
    <b>Could you please let me know,
    In which SAP tables are cost details  for "INCOTERMS" stored?</b>
    OR if someone can help me navigate to find the <b>cost</b> data for incoterms ?
    Thanks in Advance.

    Try these:
    A033
    A034
    A127
    A301
    Rob

  • Which SAP tables does CM read to update data

    Hi
    Please can someone tell me which SAP tables in FI, MM and SD that SAP Cash Management  (CM) selctes data from when updating FSCM-CM.
    In other words, if I delete CM data and then recreate it using programs RFFDDL00  (delete) and RFFDKU00 / RFFUEB00 / RFFDMM10 / RDDSD10 / RFFDMM20  (create for OIs, GLs/Bank Bal, MM/POs, SD/SOs and MM/PRs resp) which tables are the source tables for SAP CM?
    Thanks for any help anyone can give me. I'm trying to undesrstand the data creation process to trace why the drill-down to AP/AR OIs is not working and why the GL drill-down lists 000's more OIs than the CM balance shows and why the drill-down for POs/PRs in MM and SOs in SD works correctly.
    Wayne

    Hi Priyanka,
    Please take a look at these..
    http://help.sap.com/saphelp_erp2005/helpdata/en/04/964e38533e3860e10000009b38f889/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/5a/5b5738ed5a1d36e10000009b38f889/frameset.htm
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • Tables in which DB15 and DB02 data is stored

    Hi All,
    I'm interested in knowing the tables in which the DB15 and DB02 data is stored. To be more specific..
    1) DB15 - I want to know the tables in which the relationships between Archiving OBjects and Tables is stored. I have identified some tables namely - ARCH_DEF ,ARCH_DELE ,ARCH_DELE,CLASS_DELE,CLASS_DEF.. but the data from these tables does ot directly match what is being displayed in transaction DB15.     
    2) DB02 - I also want to know the tables in which the DB02 statistics is stored, namely the tables in which the Table & Index sizes are stored.
    Thanks in advance,
    Deepika.
    Message was edited by: Deepika Bhaskar

    Hi Deepika!
    ad 2) That's database related stuff. Information is gathered with native SQL out of database system tables.
    Even some data preparation is done by calls of database functions.
    Regards,
    Christian

  • 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

  • Which SAP table stores the ABAP program Source Code

    Hi All,
    Which SAP table stores the ABAP source code .
    Is it possible to retrieve the abap program code from database table
    wherein it is stored .
    Scenario :
    In our project SAP got decommissioned and SAP database is migrated to Oracle . As SAP is decomissioned , we are not able to access the SAP frontend . But we need a program code to service a request . Is it possible to retrieve the program code from the database
    which is migrated to oracle .
    Thanks
    Shikha

    This is an interesting question as the answer is may be different depending on your version.  For example, in new releases the table REPOSRC appears to hold a compress version of the course code in the DATA field, but you would need to be able to decompress it if trying to read this directly out of the DB.  I would assume that it uses gZip to do the compression, and there are ABAP utilities built in to do the compress/decompress.  Of course you can always read the source code by using the READ REPORT statement in any release, but of course this will not help you if you can not log on to your system.  Basically, if you system is corrupt for some reason, the best option is to restore from a backup.
    REgards,
    Rich Heilman

  • IN which SAP tables Email id is stored

    In which sap tables Email Id is stored

    You really shouldn't worry about that. Use the access functions instead.
    If you are thinking about the e-mail address for a user, use the function module BAPI_USER_GET_DETAIL.
    If you are thinking about the e-mail address for an employee (which is not stored in the same table), one solution is to use BAPI_EMPLCOMM_GETLIST and look for an entry with subtype 10 (this one is SAP standard I believe) or any custom subtype which should hold e-mail address.

  • How to extract data from SAP 4.7 and upload data to SAP ECC 6.0

    Hi,
        How to extract data from SAP 4.7 and upload data to SAP ECC 6.0? Can i use BDC,BAPI,LSMW? Help me please.

    hi
    good
    both works not possible simultaneously.
    If you want to do it in two separate task than you can use the GUI_UPLOAD function module to fulfill your requirement.
    thanks
    mrutyun^

  • As the per  corresponding to the BSI  which sap table  should be in sync?

    Hi
    As the per  corresponding to the BSI  which sap table  should be in sync? is it BTXRATE?

    Hi Arun,
    You are right. You have to choose MDSD_APPLICATION_AWT only for the mobile ID.
    Best Regards
    Sivakumar

  • My pc crashed and I lost all my pictures and music that was stored on the pc.  Now i have a new pc and when i connect to itunes using my password all my music and photos are not available.  they appear to be lost.

    my pc crashed and i lost all my pictures and music that was stored on the pc. now i have a new pc and when i log into itunes all my music and photos are not available.  I guess i dont understand the pupose of itunes and its worth.  I thought it backed up all my photos and music, but apparently not.  So what do I use so that when i lose data on  my pc i can retrieve it again at a later date or after a crash?/

    Your content will only be where you put it.  It has always been very basic to always maintain a backup copy of your computer.
    You can transfer itunes purchases from your iphone: File>Device>Transfer purchases.
    You can import your pics taken with the iphone as you would with any digital camera.
    You can e-mail the other pics to yourself, they will never be of the original quality.
    You can out a unique contact and calendar entry on the computer.  You should get the option to merge the data when you sync.

  • Datasource and Data flow for SAP table AFVC and field AUFPL

    Hi
           During mapping of SAP fields to datasource field we have come accross AFVC table and field AUFPL .I am not able to find datasource for above mentioned table or field.Can any one please help me out ?
    Thanks
    Datta

    Hi DLK,
    You can search using SE11.
    goto SE11 in ECC system, give the table name and click on where used list.
    in the next screen select structure and press enter.
    in the result screen you will get the list
    Regards,
    Venkatesh

  • Code for Connection to SAP R/3 and acess data from it

    Hi all,
    I am new to this java field.Here i have a swing application with 2 input fields.Upon entering the values of 2 inputfields followd by submit button ,a connection to the backend SAP has to be created and the 2 input values has to be given as input and the data related to those fields has to be displayed in the table.
    Till now i never created connection to SAP using a java application..i know only connection to Oracle..Can any one please help me out in this
    Regards
    Padma N

    To get things straight: both Oracle and SAP are company names. It's like asking "how to connect to IBM".
    I assume you mean the E-Business Suite and R/3, respectively. In that case, your friendly SAP consultant will gladly help you out.

  • In which SAP table attchment link stores ?

    Dear All,
    I have connected SAP to one external DMS as a content server.
    It is working fine
    my scenario:
    say for example i create a finance document(business object BKPF) and attach the link of the document which is lying  there in my DMS and its link is there in SAP table TOA01
    query : once i attach a document to this finance document , where this link of attachment gets stored?
    ---sandeep

    dear deepak
    thnx for reply
    As rightly pointed by you, links get stored in the SAP link tables as per the configuration vix TOA01, TOA02,TOA03,TOAHR.
    these table contains the link of the document which are lying there in DMS
    my query is once i want to attach any of this link (for ex : i created a finace document in tcode FB03 (BO : BKPF) and then i attached a link of these documents lying in DMS   ... using option create attachment)
    now my query is where  is this link of attachment gets stored
    regards
    sandeep
    Edited by: sandeep sharma on Nov 9, 2011 7:37 AM

  • Upgrade on SAP Plant Maintenance and Product Data Management

    Hi Gurus,
    I assigned to a upgrade project for Plant Maintenance and Product Data Managemet modules.
    Please guide me what are the steps to follow and provide more information on this ...
    Thanks in advance!!!!!!!!!
    Regds,
    RK

    Hello Kurni,
    In PDM/PLM latest version is PLM 7.0.
    There are many new functionalities available in this version.
    Earlier version can be accessed from SAP GUI, but the latest one can be accessed from Portal/NWBC.
    DMS side many notes have to be applied as you will be instaling EHP4.0 as part of the upgrade.
    ECM side some standard reports are missing in PLM 7.0, which were available in ECC6.0.
    Regards
    Prasad K

Maybe you are looking for