What log table or transaction are keep login data?

Dear all:
        Please help to tell me that what log table or transaction are keep log in data?
        This table or transaction need to keep the user id and TERMINAL.
        Thanks for help!!

Dear all:
        Thanks for your help. I already knew these table. But we have multiple lonin problem. I just want to knew which terminal id to use the same user id.
       Anyway, thanks a lot for the help.
Best Regards,
Nicole

Similar Messages

  • Inbound Deliveries: Trans VL31N - What ECC Table(s) does this update?

    Does anybody know what ECC Table(s) transaction VL31N Updates while creating Inbound deliveries? I'd like to access the vendor carrier and send it over to BW. Thanks!

    Hi
    I suggest to do a trace with ST05. In this moment I think in LIKP and LIPS, index tables for deliveries (VLKPA, VLPMA,..), others related with status, schedules, and so on (VBUP, VBUK, VBEP,...), infostructures (tables Sxxx where xxx are numbers), tables for flow of documents (VBFA, EKBE), output messages (NAST), conditions (if you are using it in deliveries, see KONP) and so on.
    I hope this helps you
    Regards
    Eduardo

  • Maintaining log table

    Hi Experts,
    The below procedure is scheduled using DBMS_JOB.
    I want to maintain log table for the actions performed by this procedure
    and as well as the job information.
    CREATE OR REPLACE PROCEDURE load_proc (P_ID IN NUMBER)
    IS
       CURSOR C
       IS
          SELECT   GROUP_ID, tablename, target_table
            FROM   temp_table
           WHERE   GROUP_ID = p_id;
    BEGIN
       FOR I IN C
       LOOP
          EXECUTE IMMEDIATE   'INSERT INTO '
                           || I.target_table
                           || '(SELECT * FROM '
                           || I.tablename
                           || ' WHERE '
                           || 'last_dt<=SYSDATE-500'
                           || ')';
         EXECUTE IMMEDIATE   'DELETE FROM '
                           || I.tablename
                           || ' WHERE '
                           || 'last_dt<=SYSDATE-500';
          COMMIT;
       END LOOP;
    EXCEPTION
       WHEN OTHERS
       THEN
          ROLLBACK;
          DBMS_OUTPUT.PUT_LINE (
             'An error was encountered - ' || SQLCODE || ' -ERROR- ' || SQLERRM
    END load_proc;
    DECLARE
      X NUMBER;
    BEGIN
      SYS.DBMS_JOB.SUBMIT
      ( job       => X
       ,what      => 'ARP.load_proc(1);'
       ,next_date => to_date('20/01/2013 00:00:00','dd/mm/yyyy hh24:mi:ss')
       ,interval  => 'TRUNC(SYSDATE+1)'
       ,no_parse  => FALSE
      SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    /I want to capture the below information in the log table.
    SNO RECORDS_INSERTED               RECORDS_DELETED              JOBID   JOB_START_TIME         JOB_END_TIME          JOB_LAST_RAN_ON       JOB_STATUS  
    1  2000 records inserted into     2000 records deleted from      1     20/01/2013 00:00:00    20/01/2013 02:30:00  20/01/2013 02:30:00   completed successfully
       table WEDB_EMPLOYEE            table WEDB_EMPLOYEE
    2                                            1     21/01/2013 00:00:00     21/01/2013 01:00:00                   Failed: error message
    3                                                                1                                     NULLIf the job is not started on the particular day NULL value has to be inserted in the JOB_LAST_RAN_ON column.
    If the job is not failed in the middle on a particular day FAILED: ERROR MESSAGE value has to be inserted in the JOB_STATUS column.
    Script for log table creation.
    CREATE TABLE log_load_proc
    (sno NUMBER,
    records_inserted VARCHAR2(4000),
    records_deleted VARCHAR2(4000),
    jobid NUMBER,
    job_start_time TIMESTAMP,
    job_end_time TIMESTAMP,
    job_last_ran_on TIMESTAMP,
    job_status VARCHAR2(4000));Please help me on this.
    Thanks in advance.

    973205 wrote:
    >If the job is not started on the particular day NULL value has to be inserted in the JOB_LAST_RAN_ON column.
    If the job is not failed in the middle on a particular day FAILED: ERROR MESSAGE value has to be inserted in the JOB_STATUS column.
    Thanks for posting the Procedure, Job and Table Details.
    How do you want to represent the data in Log table, if you are processing Multiple Tables in a Single Job Run?
    Certainly, to comply with your First requirement, you will have to setup another job that does the Logging for you.
    Or, Calling of Job procedure has be modified like below
    DECLARE
    X NUMBER;
    BEGIN
    SYS.DBMS_JOB.SUBMIT
    ( job       => X
    ,what      => 'ARP.some_procedure(1);'           ----------> some_procedure will call Log Procedure, followed by load_proc(1) and further followed by Log procedure to indicate success/failure of Job;
    ,next_date => to_date('20/01/2013 00:00:00','dd/mm/yyyy hh24:mi:ss')
    ,interval  => 'TRUNC(SYSDATE+1)'
    ,no_parse  => FALSE
    SYS.DBMS_OUTPUT.PUT_LINE('Job Number is: ' || to_char(x));
    COMMIT;
    END;
    /Below is a sample code, which you can modify according to your requriements:
    create or replace procedure log_load_job
      p_rec_inserted                varchar2,
      p_rec_deleted                 varchar2,
      p_job_id                      number,
      p_start_date                  date,
      p_end_date                    date,
      p_job_status                  varchar2
    is
    declare
      pragma autonomous_transaction;
    begin
      insert into log_load_job (records_inserted, records_deleted, job_id, start_date, end_date, last_run_date, job_status)
      values (p_rec_inserted, p_rec_deleted, p_job_id, p_start_date, p_end_date, decode(instr(p_job_status, 'ERROR'), 0, p_end_date, null), p_job_status);
                                                               --> Decode to check if Job Status is Error, do not enter Last Run Date
      commit;
    exception
      when others then
        null;             ---> Failure of LOGGER must not interrupt the normal execution.
    end log_load_job;
    CREATE OR REPLACE PROCEDURE load_proc (P_ID IN NUMBER)
    is
      v_inserted        varchar2(4000);
      v_deleted         varchar2(4000);
      v_start_date      date;
       CURSOR C
       IS
          SELECT   GROUP_ID, tablename, target_table
            FROM   temp_table
           WHERE   GROUP_ID = p_id;
    begin
      v_start_date := sysdate;
       FOR I IN C
       LOOP
          EXECUTE IMMEDIATE   'INSERT INTO '
                           || I.target_table
                           || '(SELECT * FROM '
                           || I.tablename
                           || ' WHERE '
                           || 'last_dt<=SYSDATE-500'
                           || ')';
          v_inserted := sql%rowcount || ' records inserted into ' || i.tablename;
         EXECUTE IMMEDIATE   'DELETE FROM '
                           || I.tablename
                           || ' WHERE '
                           || 'last_dt<=SYSDATE-500';
          v_deleted := sql%rowcount || ' records deleted from ' || i.tablename;
          log_load_job(v_inserted, v_deleted, p_id, v_start_date, sysdate, 'Completed');
          --COMMIT;
          v_inserted := null;
          v_deleted := null;
       end loop;
       commit;                ---> Commit After Entire Tables have been Deleted and Inserted.
    EXCEPTION
       WHEN OTHERS
       then
        log_load_job(v_inserted, v_deleted, p_id, v_start_date, sysdate, 'Error :: ' || sqlerrm);
          ROLLBACK;
    end load_proc;
    /Untested piece of code.

  • Log table in replicate

    Hi,
    I would like to register transactions not fullfilling a replicate filter to a log table and then abend.
    When starting up the replicate process again I would like to start with the transaction initiating the abend.
    I have tried the following, but the process starts on the next transaction.
    How can i handle this?
    My code:
    replicat r_gtmgts
    userid goldengate, password goldengate
    assumetargetdefs
    discardfile ./dirrpt/r_gtmgts.dsc, append
    GETUPDATEBEFORES
    REPERROR (21000, EXCEPTION)
    MAP user1.table1, TARGET user1.table1,
    SQLEXEC (ID tab394, ON UPDATE,
    QUERY "select count(*) c from user1.table1where 1=1 and DBID_=:p1 and STATE_=:p4 and TIMESTAMP_=:p3",
    PARAMS (p1=BEFORE.DBID_,p4=BEFORE.STATE_,p3=BEFORE.TIMESTAMP_), BEFOREFILTER, ERROR REPORT, TRACE ALL),
    FILTER (ON UPDATE, 0 <> tab394.c, RAISEERROR 21000);
    MAP user1.table1 TARGET user1.konflikt_gg
    EXCEPTIONSONLY,INSERTALLRECORDS,EVENTACTIONS (STOP),
    COLMAP (konflikt_type = "UPDATE KONFLIKT OPPDAGET", eier = "USER1", tabell = "TABLE1", dato = @DATENOW(), pk = @STRCAT(DBID_), beskrivelse = @STRCAT("DBID_=", BEFORE.DBID_,">", DBID_, ", ","STATE_=", BEFORE.STATE_,">", STATE_, ", ","TIMESTAMP_=", BEFORE.TIMESTAMP_,">", TIMESTAMP_));
    Thanks for Your help!

    Duplicate post.
    See:
    How do I implement a log table for transaction initiating an abend?

  • Change Log table Data

    Hi
    I have a ODS in which the active records are 608423.
    And when i look into the Change log table the records are 1216846 with the status new (N) and 1108438 with status (X) and 1108438 (with status ' ' ).
    I did a full load and a delta and this is a Over write ODS. I am little confused with this logic, how it put  exactly the double number of records with status (N) in the change log when compared to the active table. 
    Thx
    Thejo.

    Hi Thejo,
    If you changed a key figure then in the change log you'll see one storno (with minus) record for an old KF value and a new record with a new KF value.
    Best regards,
    Eugene

  • WRT54G Incoming Log Table

    Hello,
    I am currently using a WRT54G but the incoming log table does not populate with IP data, even though I have selected incoming logging in the Admin page.  Is there a firmware upgrade that I need in order to get this table to populate with IP data?  Thanks!

    Make sure the Computers which are connected to the Router are getting the IP address from the Routers DHCP Server, If the Computers are assigned a Static IP that might be the reason you are unable to see the IP address under the Log table.
    If still you are unable to see the IP address, then you can Disable the Log feature on your router and then Re-Enable it again and check if this solves your problem or not... 
    If still the same then you need to upgrade the firmware of your Router... Go to website linksysbycisco.com/downloads. ........insert model no of your router in serach tab......select proper version of your router........download the firmware file......save that file on desktop ..
    Follow these steps to upgrade the firmware on the device : -
    Open an Internet Explorer browser page on a computer hard wired to the router...In the address bar type - 192.168.1.1...Leave the Username blank & in Password use admin in lower case...
    Click on the 'Administration' tab- Then click on the 'Firmware Upgrade' sub tab- Here click on 'Browse' and browse the .bin firmware file and click on "Upgrade"...
    Wait for few seconds until it shows that "Upgrade is successful"  After the firmware upgrade, click on "Reboot" and you will be returned back to the same page OR it will say "Page cannot be displayed".
    Now reset your router :
    Press and hold the reset button for 30 seconds...Release the reset button...Unplug the power cable from your router, wait for 30 seconds and re-connect the power cable...Now re-configure your router...

  • Remeber login data doesn't work

    Video of this problem: http://www.youtube.com/watch?v=xRjQ4KdxM1w
    Problem as following: when I start Ovi Suite it ask for my Ovi account (with I have) so I login using my login data and select remeber. I quit Ovi Suite and start it again: first this it ask are my login data.
    Yet another problem of this **bleep** software.
    Ovi Suite 3.0.0.284
    Nokia E71
    Windows 7 x64

    juha_n wrote:
    Hi,
    Could you please provide the following information so we could hopefully be able to solve your problem:
    - When the problem occurs do you use the same Windows user account as you used when you installed Nokia Ovi Suite?
    I am the only user on that PC, so yes
    - Do you do any user switching prior to the problem occurring or does it happen even if you just start up the machine and log in using single user?
    I am the only user on that PC, so no user switching
    - When you sign-in in Nokia Ovi Suite it should create a file that stores your encrypted sign-in information. Can you check if this file exists right after successful manual sign-in. It is named userinfo and stored probably either in C:\Users\your user name\AppData\Local\NokiaAccount. or C:\Documents and Settings\your user name\AppData\Local\NokiaAccount.
    File is there (Win7 Pro 32).
    This worked fine with 2.x but is now broken with 3.x
    Note to other users: You have to set Windows explorer to SHOW HIDDEN FILES in order to verify whether the file is there. On Both WIn XP and Win 7 the AppData folder is hidden by default.
    Ever seen a black lemon? They turn black when they rot. My N97 is black. 'nuff said

  • Last Login date of user

    Hi,
    Can anybody please tell the data dictionary table to get the Last Login date of users.

    No such data dictionary available for login date and timestamp.
    You can go for logon triggers. Search in Oracle Documentations/in this forums/google, for samples/examples.
    Regards,
    Sabdar Syed.

  • What are the master tables of transaction MB56

    Hi Team ,
    Please help me to get the master tables of transaction MB56
    Thanks & Regards,
    Samantula

    Hello,
    Some of the Master tables are,
    MARA,
    MARC,
    T001W,
    MCHA,
    MCH1.
    Hope this helps,
    Regards,

  • I sign out of my imessage and i tried logging back in and it keeps saying my password incorrect but i know for a fact im using my right password i dont what to do its just not letting me log in

    I sign out of my imessage and i tried logging back in and it keeps saying my password incorrect but i know for a fact im using my right password i dont what to do its just not letting me log in

    Updating Snow Leopard won't help.  You need to Upgrade OS X to Lion or higher if your system will support it.  First check to see if your system meets the system requirements to upgrade.
    Lion system requirements are:
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    Mountain Lion and Mavericks requirements are the same, and are shown here: http://support.apple.com/kb/HT5842.
    If you can run Mavericks, you can download a free upgrade from the Mac App Store.  If your system can only run Lion, or you need Mountain Lion rather than Mavericks for software compatibility reasons, youcan contact the online store at the number shown at the bottom of this page and purchase a redemption code to download it from the Mac App Store.
    After upgrading, you will find iCloud in System Preferences>iCloud on your Mac, and can set it up as explained here: http://www.apple.com/icloud/setup/mac.html.
    Before upgrading, you should be aware that PPC programs such as AppleWorks will not run on Lion or above.  You may want to check the compatibility of your existing programs by checking here: http://roaringapps.com/apps:table.

  • Temp tables and transaction log

    Hi All,
    I am on SQL 2000.
    When I am inserting(or updating or deleting) data to/from temp tables (i.e. # tables), is transaction log created for those DML operations?
    The process is, we have a huge input dataset to process. So, we insert subset(s) of input data in temp table, treat that as our input set and do the processing in parts. Can I avoid transaction log generation for these intermediate steps?
    Soon, we will be moving to 2008 R2. Are there any features in 2008, which can help me in avoiding this transaction logging?
    Thanks in advance

    Every DML operation is logged in the LOG file. Is that possible to insert the data in small chunks?
    http://www.dfarber.com/computer-consulting-blog/2011/1/14/processing-hundreds-of-millions-records-got-much-easier.aspx
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Blog:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance

  • Keep getting errors from application log that indicates transaction log is full but it has plenty of space

    Dealing with a 4rd party application that inserts into its log table, but watching sql profiler i see a ton of the same traffic.  Its trying to insert into the table, but generates an error that mentions the transaction log for that DB is full. 
    Well, earlier I had reset the recovery mode to simple, from full since this is a test system and dont really care about recovery.
    So the message mentions to check the log_reuse_wait_desc column in sys.databases and there the value is 'CHECKPOINT'. At least at that point in time. 
    There is plenty of space in the transaction log and the physical disk has plenty of space as well.
    What could be causing the error that seems to suggest the transaction log is full, when in fact it is not?

    What is the setup for autogrowth on the log file?
    Transaction log shrink:
    http://www.sqlusa.com/bestpractices2005/shrinklog/
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • What are the tables will update while loading Master data ?

    Hello Experts,
    What are the tables will update while loading Master data ? And requesting you to provide more information about Master data loading and its related settings in the beginning of creation infoobjects. 

    It depends upon the type of Master data u r loading....
    In all the master data loadings, for every new value of master data an SID will be created in the SID table /BI*/S<INFOOBJECT NAME> irrespective of the type of master data.
    But the exceptional tables that get updated depending on the type of master data are.....
    If it is a time Independent master data then the /BI*/P<INFOOBJECT NAME> table gets updated with the loaded data.
    If it is a time dependent master data then the /BI*/Q<INFOOBJECT NAME> table gets updated with the loaded data.
    If the master data is of time Independent Navigational attributes then for every data load the SID table will get updated first and then the /BI*/X<INFOOBJECT NAME> table gets updated with the SID's created in the SID table (NOT WITH THE MASTER DATA).
    If the master data is of time dependent navigational attributes then for every data load the SID table will get updated first and then the /BI*/Y<INFOOBJECT NAME> table gets updated with the SID's created in the SID table (NOT WITH THE MASTER DATA).
    NOTE: As said above, For all the data in P, Q, T, X, Y tables the SID's will be created in the S table /BI*/S<INFOOBJECT NAME>
    NOTE: Irrespective of the time dependency or Independency the VIEW /BI*/M<INFOOBJECT NAME> defined on the top of /BI*/P<INFOOBJECT NAME> & /BI*/Q<INFOOBJECT NAME> tables gives the view of entire master data.
    NOTE: it is just a View and it is not a Table. So it will not have any physical storage of data.
    All the above tables are for ATTRIBUTES
    But when it comes to TEXTS, irrespective of the Time dependency or Independency, the /BI*/T<INFOOBJECT NAME> table gets updated (and of course the S table also).
    Naming Convention: /BIC/*<InfoObject Name> or /BI0/*<InfoObject Name>
    C = Customer Defined Characteristic
    0 = Standard or SAP defined Characteristic
    * = P, Q, T, X,Y, S (depending on the above said conditions)
    Thanks & regards
    Sasidhar

  • What are the master data tables for 'Plant'?

    Hi friends,
    What are the master data tables for 'Plant' that contain below data?:
    PLANT
    NAME1
    NAME2
    LANGUAGE
    HOUSE_NUM_STREET
    PO_BOX
    POSTAL_CODE
    CITY
    COUNTRY_KEY
    REGION
    COUNTRY_CODE
    CITY_CODE
    TIME_ZONE
    TAX_JURISDICTION
    FACTORY_CALENDAR
    Thanks a lot!

    Hi,
    Plz try out following tables for your requirement.
    TOO1W
    ADRC
    J_1IMOCOMP
    T001W :  werks TYPE t001w-werks, "PLANT
            name1 TYPE t001w-name1, "PLANT DESCRIPTION
            adrnr TYPE t001w-adrnr, "PLANT ADDRESS NUMBER
    ADRC:  addrnumber TYPE adrc-addrnumber,  "ADDRESS NUMBER
             str_suppl1 TYPE adrc-str_suppl1,  "STREET2
             str_suppl2  TYPE adrc-str_suppl2, "STREET3
             street TYPE adrc-street,          "STREET
             city1 TYPE adrc-city1,            "CITY
             post_code1 TYPE adrc-post_code1,  "CITY POSTAL CODE
             post_code2 TYPE adrc-post_code2,  "PO Box postal code
             tel_number TYPE adrc-tel_number,  "TELEPHONE NUMBER
             fax_number TYPE adrc-fax_number,  "FAX NUMBER
             str_suppl3 TYPE adrc-str_suppl3,  "STREET4
             location TYPE adrc-location,      "STREET5
             city2 TYPE adrc-city2,  
    For Tax Details :
    J_1IMOCOMP :   werks TYPE j_1imocomp-werks,
                              j_1icstno TYPE j_1imocomp-j_1icstno,
                              j_1ilstno TYPE j_1imocomp-j_1ilstno,
    Hope this will help.
    Regards,
    Archana

  • How many types of tables exists and what are they in data dictionary?

    hi,
    How many types of tables exists and what are they in data dictionary?
    regards.

    Hello Liu,
    Please search in forum before posting any question .
    anyhow check the below link :
    http://web.mit.edu/sapr3/dev/sap_table_types.htm
    Thanks
    Seshu

Maybe you are looking for

  • Motion Crashes On Stratup

    Brand new Motion 3 upgrade crashes on startup. Anybody know what is going on? Here's the log: Date/Time: 2007-06-04 18:44:47.132 -0600 OS Version: 10.4.9 (Build 8P135) Report Version: 4 Command: Motion Path: /Applications/Motion.app/Contents/MacOS/Mo

  • Lenovo G510 Windows 8 Read Only Folders

    Hello everyone, I just bought a new Lenovo G510, and I installed the Windows 8 that was on the partition. The installation went fine, and everything is in order. The only problem is that ALL my folders are Set to READ ONLY. Is this something normal f

  • Video shifting with text

    I have text (from text generator) on V2 and a still on V1 Right at the cut point, the video shifts by a pixel or two. I can't figure it out. I have RT settings enabled, have rendered, etc. but to no avail. It is not the image since I have swapped it

  • Can anyone help me with this effect??

    Hello, I am ne to AE and I have a client asking me if i know how to do this kind of effect: http://vimeo.com/1991367?pg=embed&sec=1991367 Can anyone point me in the right direction and tell me if there is a tutorial or a link were I can learn it? Reg

  • Macbook Pro Airport won't connect for more than a few seconds on battery

    My Macbook Pro will not stay connected to my work Wifi lan running on cisco AP1213G. It connects for a few seconds then drops the connecion whenever it's on battery power. On mains power it connects after saying there was an error but will occasional