Find out the time sheet data entry fields

hi
this is satish,
          i inserted the time sheet values in the time sheet data entry view. now the my problem is where these field values store in which tables.
thanks for all

Hi:
I need to transfer CATS data to FICO. I found out about transaction CAT7.
At the moment, I have 2 issues:
1) My CATSDB data have status "30". However, there is no corresponding entries in CATSCO. Could you tell me what I need to do to ensure that CATSCO has values?
2) My FICO system is running on 4.6C whereas my HR system is running on ECC6.0. Can CAT7 still works?
I appreciate your response.
Thanks,
Ash

Similar Messages

  • Table to find out the volume of data

    HI Experts,
    Is there any table to find  out the volume of data in the data targets(infocubes and DSO)
    Thanks & Regards,
    Prasad.

    Hey.  I am not aware of anything that can give you a flat list of providers and number of total records.  It would be a fairly simple program to write though. 
    But, you could just go the old school route and just lookup the number of entries on the active table for the DSOs.  Cube would be a bit different and would probably depend on what you really want to meassure but I guess the E table is a place to start.
    I also know there are some DB size summary tables that show you number of records per table.  One of those tables is DBSTATTORA (other similar tables exist).  But again it is at the actual table level and not a provider summary.  And I will not speak to how accurate the data is as I have not tried to validate.  I will say the FM in the link posted above actually just does a number of records select on whatever table you enter. 
    Thanks

  • Wmi script to find out the time when the user was added to local administration group

    Hi Friends,
    i need a script/query based on wmi/wql that find out the time when the user was added to local administration group on this computer
    Regards
    Tanoj
    OSLM ENGINEER - SCCM 2007 & 2012

    WMI does not keep security information.
    Unless you have enabled auditing, this information is not retained in any way.
    If auditing is enabled, you can write a powershell script to look for the specific event in the eventlog. More specifically, you should look for all security events with id 4732 containing the group.
    this one command does the trick
    get-eventlog -logname security -instanceid 4732 -message *administrators*
    https://technet.microsoft.com/en-us/library/dd772663(v=ws.10).aspx
    MCP/MCSA/MCTS/MCITP

  • How to find out the time when the ASE started?

    Normally, ASE not reboot for production. Only for maintenance or performance tuning, maybe need to reboot ASE.
    Question is how to find out the time when ASE was started?
    one way maybe is check errorlog. Any more simple way no need to login to server OS?

    Hi Kent,
    In ASE 12.5 and up, you can do 'select @@boottime'  For older releases, a general method is 'select crdate from sysdatabases where dbid=2'
    1> select @@boottime, crdate from sysdatabases where dbid=2
    2> go
                                     crdate
                 Jul 15 2014  9:19AM             Jul 15 2014  9:19AM
    (1 row affected)
    Cheers
    Dan

  • How to find out the top 10 data loads based on time duration?.

    Hi,
    We are working on performance tuning. so we want to find out the top 10 loads which had run long time in date wise.
    We need the load start time and end time of the load process, Infosource and datatarget name.
    There are nearly 1000 loads, So it is very difficult to collect the load's timings in RSMO.
    Is there any another alternative to collect the top 10 loads based on time duration in date wise?
    Thanks & Regards,
    Raju

    Hi Gangaraju,
    You can install BI Statistics for getting these type of data.
    Or you check in RSDDSTAT or RSMDATASTATE_EXT or  table for the Load process time.
    Or goto t-code ST13 to get detailed analysis of a Process chain for a given period.
    Hope this helps.
    Regards,
    Ravi Kanth

  • Query to find out the time used by an user for an application

    Hello All,
    I want to know the query to find out the whole time used by the user for an application. Please view the below data
    Employee:
    SNO EMP_ID EMP_NAME EMP_DATE LOGIN_TIME LOGOUT_TIME
    1 10 Visu 21-Nov-2010 06:30:00 07:30:00
    2 10 Visu 21-Nov-2010 06:40:00 07:20:00
    3 10 Visu 21-Nov-2010 06:50:00 07:50:00
    4 10 Visu 21-Nov-2010 07:30:00 08:30:00
    5 10 Visu 21-Nov-2010 09:30:00 10:30:00
    By checking the above data we can say that the total time Visu used the application is
    8.30 - 6.30 (From 1,2,3,4 records) = 2hrs
    10.30 - 9.30 (Based on 5th rec) = 1hr
    So the total time Visu used the application would be 3 hrs = 180 mins.
    Could you please help me in getting the result from that data using a query?

    odie_63 wrote:
    I think it may be solved with analytics too.
    with t1 as (
                select 1 sno,10 emp_id,'Visu' emp_name,'21-Nov-2010' emp_date,'06:30:00' login_time,'07:30:00' logout_time from dual union all
                select 2,10,'Visu','21-Nov-2010','06:40:00','07:20:00' from dual union all
                select 3,10,'Visu','21-Nov-2010','06:50:00','07:50:00' from dual union all
                select 4,10,'Visu','21-Nov-2010','07:30:00','08:30:00' from dual union all
                select 5,10,'Visu','21-Nov-2010','09:30:00','10:30:00' from dual
         t2 as (
                select  emp_id,
                        emp_name,
                        emp_date,
                        to_date(emp_date || login_time,'DD-MON-YYYYHH24:MI:SS') login_time,
                        to_date(emp_date || logout_time,'DD-MON-YYYYHH24:MI:SS') logout_time
                  from  t1
         t3 as (
                select  t2.*,
                        case
                          when login_time < max(logout_time) over(
                                                                  partition by emp_id,emp_date
                                                                  order by login_time
                                                                  rows between unbounded preceding
                                                                           and 1 preceding
                            then 0
                          else 1
                        end start_of_group
                  from  t2
         t4 as (
                select  t3.*,
                        sum(start_of_group) over(partition by emp_id,emp_date order by login_time) grp
                  from  t3
         t5 as (
                select  emp_id,
                        emp_date,
                        min(login_time) login_time,
                        max(logout_time) logout_time
                  from  t4
                  group by emp_id,
                           emp_date,
                           grp
    select  emp_id,
            numtodsinterval(sum(logout_time - login_time),'day') time_spent
      from  t5
      group by emp_id
      order by emp_id
        EMP_ID TIME_SPENT
            10 +000000000 03:00:00.000000000
    SQL> SY.

  • How to find out the Time necessary to produce something?

    Hello all, please help me in this issue.
    *{color:#0000ff}I need to find out the amount of time a machine will spend doing some quantity of a product.{color}*
    {color:#008080}*I have a Machine-A which is able to produce _1000 _unities per hour (1 hour = 1000 unities).*{color}
    {color:#333399}*Then I need to produce _3650 _unities.*{color}
    {color:#800000}*Now I have to know what time the Machine-A will need to produce that amount of 3650 unities (in hours and minutes).*{color}
    double unitiesPerHour = 1000;
    double unitiesToProduce = 3650;Any help appreciated.
    Thanks

    {color:#000000}I{color} {color:#020202}w{color}{color:#040404}i{color}{color:#050505}s{color}{color:#070707}h{color} {color:#090909}I{color} {color:#0c0c0c}c{color}{color:#0e0e0e}o{color}{color:#0f0f0f}u{color}{color:#101010}l{color}{color:#121212}d{color} {color:#151515}c{color}{color:#161616}r{color}{color:#171717}e{color}{color:#191919}a{color}{color:#1a1a1a}t{color}{color:#1c1c1c}e{color} {color:#1e1e1e}a{color} {color:#212121}c{color}{color:#232323}o{color}{color:#242424}l{color}{color:#252525}o{color}{color:#272727}u{color}{color:#282828}r{color}{color:#2a2a2a}f{color}{color:#2b2b2b}u{color}{color:#2c2c2c}l{color} {color:#2f2f2f}p{color}{color:#313131}o{color}{color:#323232}s{color}{color:#333333}t{color}{color:#353535},{color} {color:#383838}l{color}{color:#393939}i{color}{color:#3a3a3a}k{color}{color:#3c3c3c}e{color} {color:#3f3f3f}a{color}{color:#404040}l{color}{color:#414141}l{color} {color:#444444}t{color}{color:#464646}h{color}{color:#474747}e{color} {color:#4a4a4a}c{color}{color:#4b4b4b}o{color}{color:#4d4d4d}o{color}{color:#4e4e4e}l{color} {color:#515151}k{color}{color:#525252}i{color}{color:#545454}d{color}{color:#555555}s{color} {color:#585858}d{color}{color:#595959}o{color} {color:#5c5c5c}t{color}{color:#5d5d5d}h{color}{color:#5f5f5f}e{color}{color:#606060}s{color}{color:#626262}e{color} {color:#646464}d{color}{color:#666666}a{color}{color:#676767}y{color}{color:#696969}s{color}{color:#6a6a6a}.{color} {color:#6d6d6d}b{color}{color:#6e6e6e}u{color}{color:#707070}t{color} {color:#727272}a{color}{color:#747474}s{color} {color:#777777}i{color}{color:#787878}t{color} {color:#7b7b7b}i{color}{color:#7c7c7c}s{color} {color:#7f7f7f}I{color} {color:#828282}j{color}{color:#838383}u{color}{color:#858585}s{color}{color:#868686}t{color} {color:#898989}h{color}{color:#8a8a8a}a{color}{color:#8c8c8c}v{color}{color:#8d8d8d}e{color} {color:#909090}o{color}{color:#919191}n{color}{color:#939393}e{color} {color:#959595}t{color}{color:#979797}y{color}{color:#989898}p{color}{color:#9a9a9a}e{color}{color:#9b9b9b}w{color}{color:#9c9c9c}r{color}{color:#9e9e9e}i{color}{color:#9f9f9f}t{color}{color:#a1a1a1}e{color}{color:#a2a2a2}r{color} {color:#a5a5a5}r{color}{color:#a6a6a6}i{color}{color:#a8a8a8}b{color}{color:#a9a9a9}b{color}{color:#aaaaaa}o{color}{color:#acacac}n{color} {color:#afafaf}l{color}{color:#b0b0b0}e{color}{color:#b1b1b1}f{color}{color:#b3b3b3}t{color} {color:#b6b6b6}a{color}{color:#b7b7b7}n{color}{color:#b8b8b8}d{color} {color:#bbbbbb}i{color}{color:#bdbdbd}t{color} {color:#bfbfbf}i{color}{color:#c1c1c1}s{color} {color:#c4c4c4}q{color}{color:#c5c5c5}u{color}{color:#c6c6c6}i{color}{color:#c8c8c8}t{color}{color:#c9c9c9}e{color} {color:#cccccc}w{color}{color:#cdcdcd}o{color}{color:#cfcfcf}r{color}{color:#d0d0d0}n{color} {color:#d3d3d3}o{color}{color:#d4d4d4}u{color}{color:#d6d6d6}t{color}{color:#d7d7d7}.{color}{color:#d9d9d9}.{color}{color:#dadada}.{color}{color:#dbdbdb}.{color}{color:#dddddd}.{color}{color:#dedede}.{color}{color:#e0e0e0}.{color}{color:#e1e1e1}.{color}{color:#e2e2e2}.{color}{color:#e4e4e4}.{color}{color:#e5e5e5}.{color}{color:#e7e7e7}.{color}{color:#e8e8e8}.{color}{color:#e9e9e9}.{color}{color:#ebebeb}.{color}{color:#ececec}.{color}{color:#eeeeee}.{color}{color:#efefef}.{color}{color:#f0f0f0}.{color}{color:#f2f2f2}.{color}{color:#f3f3f3}.{color}{color:#f5f5f5}.{color}{color:#f6f6f6}.{color}{color:#f7f7f7}.{color}{color:#f9f9f9}.{color}{color:#fafafa}.{color}{color:#fcfcfc}.{color}

  • Can we find out the corresponding Dr/Cr entry for a GL Entry??

    Hi Friends,
    Can we find out Corresponding Dr/Cr Entry for an Entry.??
    For ex:
    Rent A/c u2013 dr 100
    Salaries A/c u2013dr 200
    Wages A/c u2013 dr 300
              To SBI Bank A/c 100
               To ICICI Bank A/c 200
               To City Bank A/c  300
    Here can we find out   in SAP the link between a Dr GL and its corresponding GL account apart from Amount bcz some times partial payment may take place.
    so....???

    Dear Murali Kanth,
    Thank u for u r ans.
    Here we r developing a report for Ledger accounts.
    It should show the total line items with GL text.
    we r getting the problem when in a document there are no of line items..
    for ex;
    rent a/c -dr 100
    salaries a/c dr 200
    wages a/c - dr 300
        to sbi              100
        to icici             200
        to city bank     300
    no if user wants to see the report for Rent GL..
    in rent gl
      To SBI 100 -- Debit side the amount shuld be displyed
    instead of that system is picking all gl amounts and showing as like 600/-
    soo..is there any way so that we can restrict a debit for corresponding credit ..
    thank u..
    shashi kanth reddy

  • How do I find out the time of my browsing history in iPad Safari

    Dear all,
    I require a detail of my own iPad browsing history, here is my problem:
    My MBP got stolen recently and have a personal cloud service installed on it.  Just checked my cloud server and found a odd IP-address record, just need to confirm if I have accessed my cloud account at that time on my iPad or possible was originated from the stolen MBP.
    Cloud server indicated showed activity from one recognised IP from my own house @20.38 and an unknow IP @23.38
    Hence I want to check the exact time that I visit the cloud service via my Safari browser (iPad), but as far as I could get is all the browsing history are grouped by date and I cannot find the time information, can anyone helps?
    Thanks

    There is no built in way to see the time in the Safari Browsing history. There may be a third party computer application that would allow you to extract the information from the iPad, but the function is not built into the iOS.

  • How to find out the table names related to fields of Transactions

    Hi All,
       My Task is to extract the data from diff tables whose names i need to find out . I was given with the transactions like Me31k,Me32k,Migo,Miro etc. Can anyone Plz suggest me on how to do this apart from debugging the transaction or runnig the SQl Tracer .

    <b>Go to SE93-> give ->msc3n double click program -> in top include you`ll find the tables OR search key word "tables" in program .</b></u>FYI
    tables: dfbatch, " Dynprofelder
    bncom, " allg. Kommunikationsstruktur
    mtcom, " Kommunikations-WA Mat.stamm
    makt, " Materialkurztexte
    mbew, "#EC NEEDED
    t001w, " Werke
    t001l, " Lagerorte
    mara, " Konzerndaten zum Material
    marc, " Werksdaten zum Material
    mard, " Lagerortdaten zum Material
    mch1, " Chargendaten
    mcha, " Chargendaten werksbezogen
    mchb, " Chargenbestände
    mchx, " Bewert.arten zu werksübergr. Ch
    mchuwl, " Arbeitsvorrat Charge Benutzer
    thead, " SAPscript: Text-Header
    cdhdr, " Header Änderungsbelege
    cdshw, " Positionen Änderungsbeleg
    t148g, " Feldauswahl Sonderbestände
    t148zt, " Texttabelle Zustandsschlüssel
    t149c, " globale Bewertungstypen
    t005u, " Provinzschlüssel Texte
    t005t, " Bezeichnung der Länder
    tvfmt, " Materialgruppe Export Bezeichn.
    bwtty, " Bewertungstyp
    rmclm, " E/A Felder Klassifizierung
    inob, " Umschlüsselung Klassif.objekt
    kssk, " Zuordnung Objekt <-> Klasse
    klah, " Kopfdaten Klassen
    t134, " Materialarten
    prdkzt, " Texte zum Periodenkennzeichen
    *prdkzt. "#EC NEEDED
    Hope this’ll give you idea!!
    P.S award the points.
    Good luck
    Thanks
    navjot

  • To find out the Table of Origin and Field in Table of Origin.

    Hi Experts,
    I am in the middle of completing someone else's documentation after a handover.
    Here are th columns that I need to update in the documentation:
    1) Field in Extraction Structure     2) Description of Field in the Extraction Structure 3) Table of Origin 4) Field in Table of Origin
    Most of them are already done. There are only four tables from which all these fields originate.
    Could you let me know how should I find out where a field has originated from.
    Thanks in Advance.
    Regards,
    Chandu.

    Hi,
    it will depend on the datasource: you'll to do the hereunder in the source system
    - if LO/LIS (2LIS....) you can goto LBWE, extract structure maintenance; in the filed selection screen you'll see e.g. "MCtttt ffffff text"; usually the tttt is the table and ffffff is the field. Cross check if the field is really in the table via SE11.
    - if generic, then goto RSO2 and then it will depend if it is a view/table/domain; double click on it or goto SE11; if infoset SQ01; if extract structure then you'll have to analyze the function module extractor ABAP code;
    - for others it will depend....
    hope this helps...
    Olivier.
    Message was edited by:
            Olivier Cora

  • How to find out the public methods and public fields available

    Hi,
    I have a dll for which to use it, i need to know the methods and the fields available for public use. Is there anyway to find out that information using any tool. I dont have any literature about the dll. Only have that dll.
    Thanks in advance,
    -Madhuri.

    You can find an article about creating the methods on the Microsoft Developement Network call "How to Create 32-bit Import Libraries Without .OBJs or Source"
    However that is only part of the problem.
    Consider if you find that the dll has a function like this:
    InitApplication(char*, int, char, long);
    What do you put in for each of those parameters? The only way I know to do that it to use a debugger and step through the assembler code figuring it out as you go. Alternatively you buy or find a disassembler - C code would probably be easier to figure out.
    I would also seriously suggest finding some different lists/news groups than this one. The topic has nothing to do with java. So you are likely to get better help somewhere that is more specific - like one of the MS lists.

  • Time Sheet - Data Entry Profile(T-Code CAT2)

    Hi All,
    I have 4 data entry profiles in the system and will like to delete 2 of them as they are no longer required. If somebody had booked time (in past) by using the profile which I want to delete, will it have any kind of impact. Please advice whetehr it is safe to delete the profiles.
    Regards
    Tapan

    Hi Tapan,
    Not that I am aware of either - just checking a where used on the data  element didn't reveal anything either.
    Please bear in mind the following before deleting the profile however - What the profile is used for is to define whether data can be entered for just individual employees or groups of employees, what deata can be maintained, whether the timeframe is weekly or monthly and whether the data is subject to approval. All things tho consider when deleting any - to make sure the business needs can still be met and also there can be specific auths to certain time profiles to allow only certain employees to enter certain data etc.
    Hope this helps,
    Kind regards,
    Danny

  • Is it possible to find out the time at which I opened an i-message?

    I've been falsely accused of using phone whilst driving. Can prove no outgoing texts or calls and no incoming calls, but a friend i-messaged just before I was pulled over. I did not know I had a message until over an hour later, but is there any way in which I can prove what time I ccessed it? 4s phone, ios 6.1.3

    If you had Read receipts enabled, your friend my know what time you actually read it. Whether that would be acceptable in a court of law is something only your attorney could answer for you. If you don't have Read Receipts enabled or if your friend has deleted the information, there's really no way to tell.

  • Find out the area of a JText field that is being used by HTML.

    I would like to have a JTextField that contains rendered HTML scale the HTML to fill the entire textfeild. Any ideas or suggestions as to how to go about this?
    I image the text filed contains the line
    "I am a tiny little mouse"
    Then if the sentence was repeated twice
    "I am a tiny little mouse, I am a tiny little mouse"
    you'd expect the font size to be roughly twice as small. The problem here is I don't have a fixed size font in the HTML.

    Anthony_Brew wrote:
    I would like to have a JTextField that contains rendered HTML scale the HTML to fill the entire textfeild. Any ideas or suggestions as to how to go about this?
    I image the text filed contains the line
    "I am a tiny little mouse"
    Then if the sentence was repeated twice
    "I am a tiny little mouse, I am a tiny little mouse"
    you'd expect the font size to be roughly twice as small. The problem here is I don't have a fixed size font in the HTML.The first idea that popped into my head is to override the paintComponent() method of the JTextField, and pass in an Image's Graphics to super.paintComponent(), then scale the image and draw it in the overridden paintComponent(). Does that make sense?
    You might also be able to scale the Graphics directly, not sure about that one though.

Maybe you are looking for