Open new session in another language - Helpdesk tool!

Hi,
We have a lot of Chinese and Indian colleagues who ring up our German hotline with SAP problems. Normally we are signed on in German (which we understand!) but we would like to open a new session in English, without having to sign on again, so we can call transactions in English and explain what is going on to our friends abroad.
I understand from a colleague that this is possible....unfortunately I don't know how to do it!
Any ideas?
Best regards and a nice weekend.
Mike
P.S. I can create a new session like this:
  CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK 'TEST'
    DESTINATION 'NONE'
    EXPORTING
      tcode                 = 'SESSION_MANAGER'
    EXCEPTIONS
      communication_failure = 1
      system_failure        = 2.
But even when I change my language (SY-LANGU/Language in SU01 etc.) my new session is in the "original" language.

I am not sure whether its a feasible option for you or not as you have to create an RFC destination for English Login.
You can create an RFC destination with your Login details and language as EN
Then you can run the FM - 'ABAP4_CALL_TRANSACTION'  with destination as the One Created Above and Tcode as SESSION_MANAGER
This will open a new login with EN language.
You can also create RFC destination and just Click "Remote Logon" to open EN login session
Regards,
Aj
Edited by: Abhishek Jolly on Aug 28, 2009 6:44 PM

Similar Messages

  • URL opens new session

    hi,
    I wrote some test client for testing my server. I create URL and call URL.getContent(). This open new session. But I want use one session. How I can use request for same session?
    <code>
    for (int i=0; i<10; i++)
    URL url = new URL(BASE_ADDRESS + "/adetail.jsf?fid=" + i);
    URLConnection connection = url.openConnection();
    // new session is created
    Object content = connection.getContent();
    </code>

    As i stated, when i click links from 3rd party applications, such as skype; a youtube link or something similar. Firefox opens a new session however it does not visit the clicked url

  • GUI opens new session extremely slow

    My gui opens new session very slowly, there isnt any other slow progress, just opening "new session".
    It occured suddenly, i cant see a reason.
    i reinstalled gui but the problem survived. Then i updated gui from 7.1 to 7.2, but again, nothing changed.
    any ideas ??

    No idea ??

  • How to open a new SESSION in another SESSION

    Hi!
    I would like to start a transaction in the current session (session 1); I want to open a new session (session 2), execute some updates, do the COMMIT (without commiting the data of the session 1) and close the session 2.
    I'm using JSPs and Data Web Beans.
    How can I open and close a new session?
    I would appreciate an answer?
    Thank you.

    hi,
    You can try to create another properties file only for that session. Then you instantiate the bean, that you want to create the new session, with that new properties file and i think a new session will be created. But im not sure .....
    Bye,
    RB
    P.S.: by the way, what does APAF stands for???
    null

  • Open new session on submitting a program thru FM call

    Hi expertz...need your help up here.
    Have a situation where we need to trigger another program(say zabc : PO History) when the user selects a line in the ALV list and then clicks a button (to call zabc), the new program should run in the background and open up or display the results in a New Session.
    Have tried to use FM 'SUBMIT_REPORT' with STARTING NEW TASK but it dosnt work.  Please see the call below.
    CALL FUNCTION 'SUBMIT_REPORT' "STARTING NEW TASK 'TEST1'
      EXPORTING
      RDIR                   = TRDIR
        report                 = 'ZPRPP_WORKORDERPURCHASING'
       RET_VIA_LEAVE          = ' '
      VARIANT                = ' '
       VARIPROG               = 'ZPRPP_WORKORDERPURCHASING'
       SKIP_SELSCREEN         = 'X'
      EXPRESSIONS            =
    IMPORTING
      VARIANT                =
    TABLES
       SELECTION_TABLE        = i_rspar
    EXCEPTIONS
       JUST_VIA_VARIANT       = 1
       NO_SUBMIT_AUTH         = 2
       OTHERS                 = 3
    Any Idea!.
    Thanks
      Jaif

    Hi,
    copy your function module SUBMIT_REPORT to ZSUBMIT_REPORT and make it remote enabled.
    Now, where ever you want to call this FM, call as below,
    CALL FUNCTION 'ZSUBMIT_REPORT' STARTING NEW TASK 'T'
    EXPORTING
    * RDIR = TRDIR
    report = 'ZPRPP_WORKORDERPURCHASING'
    RET_VIA_LEAVE = ' '
    * VARIANT = ' '
    VARIPROG = 'ZPRPP_WORKORDERPURCHASING'
    SKIP_SELSCREEN = 'X'
    * EXPRESSIONS =
    * IMPORTING
    * VARIANT =
    TABLES
    SELECTION_TABLE = i_rspar
    EXCEPTIONS
    JUST_VIA_VARIANT = 1
    NO_SUBMIT_AUTH = 2
    OTHERS = 3.
    Check it out, it works for me.

  • Open New Sessions and attach

    Hello,
    I am trying to figure out how while attacehd to SAP from VBA excel to open a new session and continue the task in the new session. The end goal is to run 3 different transactions and have them up each in a seperate window. this is what I have so far but the transaction doesn't continue in the new session created it defaults back to the original window.
      Set SapGuiAuto = GetObject("SAPGUI")
      Set SAP = SapGuiAuto.GetScriptingEngine
    With SAP.Connections(0).Sessions(0)
        .createsession
    End With
      Set SapGuiAuto = GetObject("SAPGUI")
      Set SAP = SapGuiAuto.GetScriptingEngine
    SAP.Connections(0).Sessions(0).StartTransaction (Tcode)
    With SAP.Connections(0).Sessions(0)
            .findById("wnd[0]/usr/tabsTAB300/tabpF01/ssubINCLUDE300:SAPMM61R:0301/ctxtRM61R-MATNR").Text = Selection
            .findById("wnd[0]/usr/tabsTAB300/tabpF01/ssubINCLUDE300:SAPMM61R:0301/ctxtRM61R-WERKS").Text = "CHEM"
            .findById("wnd[0]/tbar[0]/btn[0]").press
            .findById("wnd[0]/tbar[1]/btn[34]").press
            .findById("wnd[0]/tbar[1]/btn[35]").press
            .findById("wnd[0]/tbar[1]/btn[36]").press
    I am attaching once...creating a new session and attaching again but it does not seem to happen in the new window created....any help please?

    Hi SLobo32, welcome to the forum !
    The question is simple but  I needed for the answer a lot of time. I have put my observations into a theory as folllows.
    By the command "create session", we opened a new SAP session. The system decides which is given session number. The task is then, how is the new session number.
    Session_number_max = 6                                  'the maximum number of possible SAP sessions
    Dim session_number_(Session_number_max)
    Set SapGuiAuto = GetObject("SAPGUI")
    Set SAP = SapGuiAuto.GetScriptingEngine
    Set connection = SAP.Children(0)
    Set session    = connection.Children(0)
    '------------------------------------------- new session connect -------------------------------------------------------------
    session_number_all = connection.children.count - 1
    for i = 1 to Session_number_max
         session_number_(i) = 0
    next 
    for session_number = 0 to session_number_all
         Set session    = connection.Children(int(session_number))
         session_number_(session.info.sessionnumber) = session.info.sessionnumber
    next
    if session_number_all < Session_number_max - 1 then
         session.createsession
         do
          wscript.sleep 500
          if connection.children.count - session_number_all >= 2 then exit do
         loop
         on error resume next
         Error_number = 1
         for session_number = 0 to session_number_all + 1
              err.clear
              Set session    = connection.Children(int(session_number))
              if err.number > 0 or err.number < 0 then exit for
             if session_number_(session.info.sessionnumber) = 0 then
                Error_number = 0
                exit for
             end if
             'session.findById("wnd[0]").iconify                          'So you can send another SAP session in the task bar.
         next
         on error goto 0
    else
    msgbox "New session is not possible."
    end if
    '------------------------------------------- new session connect -------------------------------------------------------------
    If Error_number = 0 then
    session.StartTransaction (Tcode)
    With session
    .findById("wnd[0]/usr/tabsTAB300/tabpF01/ssubINCLUDE300:SAPMM61R:0301/ctxtRM61R-MATNR").Text = Selection
    .findById("wnd[0]/usr/tabsTAB300/tabpF01/ssubINCLUDE300:SAPMM61R:0301/ctxtRM61R-WERKS").Text = "CHEM"
    .findById("wnd[0]/tbar[0]/btn[0]").press
    .findById("wnd[0]/tbar[1]/btn34").press
    .findById("wnd[0]/tbar[1]/btn35").press
    .findById("wnd[0]/tbar[1]/btn36").press
    Regards,
    ScriptMan
    Edited by: ScriptMan on May 11, 2011 3:08 PM

  • Open GUI session of another user

    Hi,
    I would like to know, how to open a session in different user from another user using ABAP.? I would like to run a TCODE on another user session of same system.
    Pls help.

    Hi Partha,
    There is no way out to kill a user's session in RAR, nor in UME. The only place you can kill a user's session is in backend (R/3 side of a particular system) in T-code: SM04->select a particular session of any user-> end session.
    Regards,
    Gurugobinda

  • Can not open new Session

    Dear Expert,
    I have problem with my SAP system (ECC 6.00). When I want to create a new session, I got message
    No Connect to Database, Session Terminated
    I have checked my database and it's ok.....
    Regards,
    MAL

    Dear Expert,
    I use Oracle 10. My OS is Windows server 2003 R2 Enterprise Edition SP2. I can not create new session from SAP GUI.. I Use SAP GUI 7.10 Patch 7. (I get the message when i try to create a new session, even to export file i get this error)
    And below is my trans.log
    4 ETW000 r3trans version 6.14 (release 700 - 15.06.07 - 15:50:00).
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 21.04.2008 - 11:30:08
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: r3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Mon Apr 21 11:30:08 2008                               0  0.000000
    4 ETW000  [dev trc     ,00000]  db_con_init called                                     0  0.000000
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                              0  0.000000
    4 ETW000  [dev trc     ,00000]  Loading DB library 'dboraslib.dll' ...                 0  0.000000
    4 ETW000  [dev trc     ,00000]  load shared library (dboraslib.dll), hdl 0          5601  0.005601
    4 ETW000  [dev trc     ,00000]      using "G:\usr\sap\JMP\sys\exe\run\dboraslib.dll"
    4 ETW000                                                                              19  0.005620
    4 ETW000  [dev trc     ,00000]  Library 'dboraslib.dll' loaded                         8  0.005628
    4 ETW000  [dev trc     ,00000]  function DbSlExpFuns loaded from library dboraslib.dll
    4 ETW000                                                                              14  0.005642
    4 ETW000  [dev trc     ,00000]  Version of 'dboraslib.dll' is "700.08", patchlevel (0.107)
    4 ETW000                                                                              87  0.005729
    4 ETW000  [dev trc     ,00000]  function dsql_db_init loaded from library dboraslib.dll
    4 ETW000                                                                              14  0.005743
    4 ETW000  [dev trc     ,00000]  function dbdd_exp_funs loaded from library dboraslib.dll
    4 ETW000                                                                              23  0.005766
    4 ETW000  [dev trc     ,00000]  New connection 0 created                              15  0.005781
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = -000000001 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              18  0.005799
    4 ETW000  [dev trc     ,00000]  db_con_connect (con_name=R/3)                         13  0.005812
    4 ETW000  [dev trc     ,00000]  find_con_by_name found the following connection for reuse:
    4 ETW000                                                                              13  0.005825
    4 ETW000  [dev trc     ,00000]  0: name = R/3, con_id = 000000000 state = DISCONNECTED, perm = YES, reco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    4 ETW000                                                                              15  0.005840
    4 ETW000  [dev trc     ,00000]  Prepending G:\usr\sap\JMP\sys\exe\run to Path.       141  0.005981
    4 ETW000  [dev trc     ,00000]  Oracle Client Version: '10.2.0.1.0'                22225  0.028206
    4 ETW000  [dev trc     ,00000]  -->oci_initialize (con_hdl=0)                         20  0.028226
    4 ETW000  [dev trc     ,00000]  Client NLS settings: AMERICAN_AMERICA.WE8DEC        2032  0.030258
    4 ETW000  [dev trc     ,00000]  Logon as OPS$-user to get SAPJMR3's password          15  0.030273
    4 ETW000  [dev trc     ,00000]  Connecting as /@JMP on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    4 ETW000                                                                              21  0.030294
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              17  0.030311
    4 ETW000  [dev trc     ,00000]    0 WE8DEC                                                    1   02655DF0   0037F9C4   0037F24C
    4 ETW000                                                                              16  0.030327
    4 ETW000  [dev trc     ,00000]  Allocating service context handle for con_hdl=0       16  0.030343
    4 ETW000  [dev trc     ,00000]  Allocating server context handle                      14  0.030357
    4 ETW000  [dev trc     ,00000]  Attaching to DB Server JMP (con_hdl=0,svchp=0037F198,srvhp=0265E57C)
    4 ETW000                                                                             100  0.030457
    4 ETW000  [dev trc     ,00000]  Assigning server context 0265E57C to service context 0037F198
    4 ETW000                                                                           29566  0.060023
    4 ETW000  [dev trc     ,00000]  Allocating user session handle                        18  0.060041
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=0037F198,srvhp=0265E57C,usrhp=026A9E78)
    4 ETW000                                                                              30  0.060071
    4 ETW000  [dev trc     ,00000]  Assigning user session 026A9E78 to service context 0037F198
    4 ETW000                                                                           31084  0.091155
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_MODULE (:A0, :A1); END;                                                                  
    4 ETW000                                                                              36  0.091191
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_CLIENT_INFO (:A0); END;                                                                  
    4 ETW000                                                                              43  0.091234
    4 ETW000  [dev trc     ,00000]  Now '/@JMP' is connected (con_hdl 0, nls_hdl 0).
    4 ETW000                                                                             433  0.091667
    4 ETW000  [dev trc     ,00000]         ALTER SESSION SET NLS_SORT = BINARY                                                                               
    4 ETW000                                                                              28  0.091695
    4 ETW000  [dev trc     ,00000]         SELECT USERID, PASSWD FROM SAPUSER WHERE USERID IN (:A0, :A1)                                                            
    4 ETW000                                                                             243  0.091938
    4 ETW000  [dev trc     ,00000]  Got SAPJMR3's password from OPS$-user                473  0.092411
    4 ETW000  [dev trc     ,00000]  Disconnecting from connection 0 ...                   11  0.092422
    4 ETW000  [dev trc     ,00000]  Rolling back transaction ...                          15  0.092437
    4 ETW000  [dev trc     ,00000]  Closing user session (con_hdl=0,svchp=0037F198,usrhp=026A9E78)
    4 ETW000                                                                             121  0.092558
    4 ETW000  [dev trc     ,00000]  Now I'm disconnected from ORACLE                     338  0.092896
    4 ETW000  [dev trc     ,00000]  Connecting as SAPJMR3/<pwd>@JMP on connection 0 (nls_hdl 0) ... (dbsl 700 250407)
    4 ETW000                                                                              16  0.092912
    4 ETW000  [dev trc     ,00000]  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    4 ETW000                                                                              15  0.092927
    4 ETW000  [dev trc     ,00000]    0 WE8DEC                                                    1   02655DF0   0037F9C4   0037F24C
    4 ETW000                                                                              16  0.092943
    4 ETW000  [dev trc     ,00000]  Assigning username to user session 026A9E78            9  0.092952
    4 ETW000  [dev trc     ,00000]  Assigning password to user session 026A9E78           11  0.092963
    4 ETW000  [dev trc     ,00000]  Starting user session (con_hdl=0,svchp=0037F198,srvhp=0265E57C,usrhp=026A9E78)
    4 ETW000                                                                              14  0.092977
    4 ETW000  [dev trc     ,00000]  Assigning user session 026A9E78 to service context 0037F198
    4 ETW000                                                                           19690  0.112667
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_MODULE (:A0, :A1); END;                                                                  
    4 ETW000                                                                              35  0.112702
    4 ETW000  [dev trc     ,00000]         BEGIN DBMS_APPLICATION_INFO.SET_CLIENT_INFO (:A0); END;                                                                  
    4 ETW000                                                                              25  0.112727
    4 ETW000  [dev trc     ,00000]  Now 'SAPJMR3/<pwd>@JMP' is connected (con_hdl 0, nls_hdl 0).
    4 ETW000                                                                             296  0.113023
    4 ETW000  [dev trc     ,00000]         ALTER SESSION SET NLS_SORT = BINARY                                                                               
    4 ETW000                                                                              19  0.113042
    4 ETW000  [dev trc     ,00000]         SELECT VALUE FROM V$NLS_PARAMETERS WHERE PARAMETER IN ('NLS_LANGUAGE', 'NLS_TERRITORY', 'NLS_CHARACTERSET') ORDER BY PARAM
    4 ETW000                                                                             213  0.113255
    4 ETW000  [dev trc     ,00000]         ETER                                                                               
    4 ETW000                                                                              15  0.113270
    4 ETW000  [dev trc     ,00000]  Database NLS settings: AMERICAN_AMERICA.WE8DEC       245  0.113515
    4 ETW000  [dev trc     ,00000]         SELECT UPPER(INSTANCE_NAME),HOST_NAME,VERSION,TO_CHAR(STARTUP_TIME,'MON DD, YYYY, HH24:MI:SS') FROM V$INSTANCE           
    4 ETW000                                                                              24  0.113539
    4 ETW000  [dev trc     ,00000]  DB instance JMP is running on JMSAP04 with ORACLE version 10.2.0.2.0 since MAR 31, 2008, 07:51:48
    4 ETW000                                                                             284  0.113823
    4 ETW000  [dev trc     ,00000]         SELECT SUBSTR(NAME,1,3), TO_CHAR(CREATED,'YYYYMMDDHHMMSS') FROM V$DATABASE                                               
    4 ETW000                                                                              19  0.113842
    4 ETW000  [dev trc     ,00000]  Connection 0 opened (DBSL handle 0)                 1431  0.115273
    4 ETW000  [dev trc     ,00000]         SELECT VERSION FROM SVERS                                                                               
    4 ETW000                                                                            3789  0.119062
    4 ETW000  [dev trc     ,00000]         SELECT COMPCNT FROM "DDNTT"                                                                               
    4 ETW000                                                                             369  0.119431
    4 ETW000  [dev trc     ,00000]  NTAB: Structure of NTAB on DB is VERS_B              199  0.119630
    4 ETW000  [dev trc     ,00000]  NTAB: standalone processing                           27  0.119657
    4 ETW000  [dev trc     ,00000]  NTAB: read profile                                     9  0.119666
    4 ETW000  [dev trc     ,00000]  NTAB: rsdb/ntab/entrycount 1000.                       8  0.119674
    4 ETW000  [dev trc     ,00000]  NTAB: rsdb/ntab/ftabsize 500.                          8  0.119682
    4 ETW000  [dev trc     ,00000]  NTAB: rsdb/ntab/irbdsize 100.                          7  0.119689
    4 ETW000  [dev trc     ,00000]  NTAB: rsdb/ntab/sntabsize 100.                         8  0.119697
    4 ETW000  [dev trc     ,00000]  NTAB: compute_hash_card: 2003.                        12  0.119709
    4 ETW000  [dev trc     ,00000]  NTAB: maxcnt 1000.                                    18  0.119727
    4 ETW000  [dev trc     ,00000]  NTAB: hfactor 2003.                                    7  0.119734
    4 ETW000  [dev trc     ,00000]  NTAB: mem_protocol_size 104                            7  0.119741
    4 ETW000  [dev trc     ,00000]  NTAB: hdr_backpack_offset 0                            8  0.119749
    4 ETW000  [dev trc     ,00000]  NTAB: hdr_backpack_size 0                             11  0.119760
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: header_size 44.                            8  0.119768
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: item_size 36.                              8  0.119776
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: item_cnt 1000.                             8  0.119784
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: unit_size 4                                8  0.119792
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: unit_cnt 128000.                           8  0.119800
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: data_size 512000.                          8  0.119808
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: header_size 44.                            7  0.119815
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: item_size 36.                              8  0.119823
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: item_cnt 250.                              8  0.119831
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: unit_size 8                                7  0.119838
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: unit_cnt 12800.                            8  0.119846
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: data_size 102400.                          8  0.119854
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: header_size 44.                            8  0.119862
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: item_size 36.                              7  0.119869
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: item_cnt 250.                              8  0.119877
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: unit_size 4                                7  0.119884
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: unit_cnt 25600.                            8  0.119892
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: data_size 102400.                          8  0.119900
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: header_size 148.                           8  0.119908
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: item_size 24.                              8  0.119916
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: item_cnt 1000.                             7  0.119923
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: unit_size 152                              8  0.119931
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: unit_cnt 1000.                             8  0.119939
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: data_size 152000.                          8  0.119947
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: hh_p 266e5e8, hh_len 44                  592  0.120539
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: aa_p 3a836a0, aa_len 8012                 10  0.120549
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: ia_p 3a855f8, ia_len 36000                 9  0.120558
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: dat_p 3a90008, dat_len 512000              8  0.120566
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: hh_p 267ef10, hh_len 44                    9  0.120575
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: aa_p 26aa1b8, aa_len 8012                  8  0.120583
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: ia_p 3b0d010, ia_len 9000                  8  0.120591
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: dat_p 3b0f340, dat_len 102400              8  0.120599
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: hh_p 266e978, hh_len 44                    9  0.120608
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: aa_p 3b28348, aa_len 8012                  8  0.120616
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: ia_p 3b2a2a0, ia_len 9000                  8  0.120624
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: dat_p 3b2c5d0, dat_len 102400              8  0.120632
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: hh_p 2698f60, hh_len 148                   8  0.120640
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: aa_p 3b455d8, aa_len 8012                  9  0.120649
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: ia_p 3b47530, ia_len 24000                 8  0.120657
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: dat_p 3b4d2f8, dat_len 152000              8  0.120665
    4 ETW000  [dev trc     ,00000]  NTAB: ntab_mem_protocol 2698f60, ntab_mp_p 2698f60, ntab_proc_id 0
    4 ETW000                                                                              84  0.120749
    4 ETW000  [dev trc     ,00000]  NTAB: FTAB: hh_p 266e5e8, ha_list 3a836a0, hi_list 3a855f8, buffer 3a90008
    4 ETW000                                                                              41  0.120790
    4 ETW000  [dev trc     ,00000]  NTAB: IREC: hh_p 267ef10, ha_list 26aa1b8, hi_list 3b0d010, buffer 3b0f340
    4 ETW000                                                                              14  0.120804
    4 ETW000  [dev trc     ,00000]  NTAB: STAB: hh_p 266e978, ha_list 3b28348, hi_list 3b2a2a0, buffer 3b2c5d0
    4 ETW000                                                                              13  0.120817
    4 ETW000  [dev trc     ,00000]  NTAB: TTAB: hh_p 2698fc8, ha_list 3b455d8, hi_list 3b47530, buffer 3b4d2f8
    4 ETW000                                                                              13  0.120830
    4 ETW000  [dev trc     ,00000]  NTAB: mem_handler: alloc for 500 elems, task 0, art 0
    4 ETW000                                                                              19  0.120849
    4 ETW000  [dev trc     ,00000]  NTAB: mem_handler: alloc for 500 elems, task 0, art 1
    4 ETW000                                                                              22  0.120871
    4 ETW000  [dev trc     ,00000]  NTAB: mem_handler: alloc for 500 elems, task 0, art 2
    4 ETW000                                                                              22  0.120893
    4 ETW000  [dev trc     ,00000]  NTAB: mem_handler: alloc for 500 elems, task 0, art 3
    4 ETW000                                                                              20  0.120913
    4 ETW000  [dev trc     ,00000]         SELECT TABNAME, BLOCKNR, FIELDSLG, FIELDS FROM "DDNTF" WHERE TABNAME = :A0 ORDER BY TABNAME, BLOCKNR                     
    4 ETW000                                                                              57  0.120970
    4 ETW000  [twdydbacc.c ,00565]  i:0                                                  421  0.121391
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       PGMID                         10  0.121401
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      1                              7  0.121408
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      0                              6  0.121414
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   4                              7  0.121421
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:4                             20  0.121441
    4 ETW000  [twdydbacc.c ,00565]  i:1                                                    8  0.121449
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       OBJECT                         7  0.121456
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      1                              7  0.121463
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      4                              6  0.121469
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   4                              7  0.121476
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:4                              6  0.121482
    4 ETW000  [twdydbacc.c ,00565]  i:2                                                    7  0.121489
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       OBJ_NAME                       7  0.121496
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      1                              6  0.121502
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      8                              7  0.121509
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   40                             6  0.121515
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:40                             7  0.121522
    4 ETW000  [twdydbacc.c ,00565]  i:3                                                    7  0.121529
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       KORRNUM                        7  0.121536
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              9  0.121545
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      48                             7  0.121552
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   10                             6  0.121558
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:10                             6  0.121564
    4 ETW000  [twdydbacc.c ,00565]  i:4                                                    8  0.121572
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       SRCSYSTEM                      7  0.121579
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121585
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      58                             7  0.121592
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   10                             6  0.121598
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:10                             6  0.121604
    4 ETW000  [twdydbacc.c ,00565]  i:5                                                    7  0.121611
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       AUTHOR                         7  0.121618
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121624
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      68                             7  0.121631
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   12                             6  0.121637
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:12                             7  0.121644
    4 ETW000  [twdydbacc.c ,00565]  i:6                                                    7  0.121651
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       SRCDEP                         7  0.121658
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121664
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      80                             6  0.121670
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              7  0.121677
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.121683
    4 ETW000  [twdydbacc.c ,00565]  i:7                                                    7  0.121690
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       DEVCLASS                       7  0.121697
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121703
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      81                             7  0.121710
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   30                             6  0.121716
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:30                             7  0.121723
    4 ETW000  [twdydbacc.c ,00565]  i:8                                                    7  0.121730
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       GENFLAG                        7  0.121737
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121743
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      111                            6  0.121749
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              7  0.121756
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.121762
    4 ETW000  [twdydbacc.c ,00565]  i:9                                                    7  0.121769
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       EDTFLAG                        7  0.121776
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121782
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      112                            7  0.121789
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.121795
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              7  0.121802
    4 ETW000  [twdydbacc.c ,00565]  i:10                                                   7  0.121809
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       CPROJECT                       9  0.121818
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121824
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      113                            7  0.121831
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   8                              6  0.121837
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:8                              6  0.121843
    4 ETW000  [twdydbacc.c ,00565]  i:11                                                   8  0.121851
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       MASTERLANG                     6  0.121857
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              7  0.121864
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      121                            7  0.121871
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.121877
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.121883
    4 ETW000  [twdydbacc.c ,00565]  i:12                                                   8  0.121891
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       VERSID                         7  0.121898
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121904
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      122                            6  0.121910
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   20                             7  0.121917
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:20                             6  0.121923
    4 ETW000  [twdydbacc.c ,00565]  i:13                                                   8  0.121931
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       PAKNOCHECK                     7  0.121938
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121944
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      142                            7  0.121951
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.121957
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.121963
    4 ETW000  [twdydbacc.c ,00565]  i:14                                                   8  0.121971
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       OBJSTABLTY                     7  0.121978
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.121984
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      143                            7  0.121991
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.121997
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.122003
    4 ETW000  [twdydbacc.c ,00565]  i:15                                                   8  0.122011
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       COMPONENT                      7  0.122018
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.122024
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      144                            7  0.122031
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   30                             6  0.122037
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:30                             6  0.122043
    4 ETW000  [twdydbacc.c ,00565]  i:16                                                   8  0.122051
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       CRELEASE                       7  0.122058
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.122064
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      174                            7  0.122071
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   10                             6  0.122077
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:10                             7  0.122084
    4 ETW000  [twdydbacc.c ,00565]  i:17                                                   9  0.122093
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       DELFLAG                        7  0.122100
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              6  0.122106
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      184                            7  0.122113
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              6  0.122119
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              7  0.122126
    4 ETW000  [twdydbacc.c ,00565]  i:18                                                   8  0.122134
    4 ETW000  [twdydbacc.c ,00566]  db_fd_p<i>.fname:       TRANSLTTXT                     6  0.122140
    4 ETW000  [twdydbacc.c ,00567]  db_fd_p<i>.is_key:      0                              7  0.122147
    4 ETW000  [twdydbacc.c ,00568]  db_fd_p<i>.offset:      185                            6  0.122153
    4 ETW000  [twdydbacc.c ,00569]  db_fd_p<i>.db_length:   1                              7  0.122160
    4 ETW000  [twdydbacc.c ,00570]  db_fd_p<i>.fixed_length:1                              6  0.122166
    4 ETW000  [dev trc     ,00000]         SELECT VERSION, UUID, CRTIMESTMP, ABTIMESTMP, DYTIMESTMP, FLDCNT, TABLENGTH, KEYCNT, KEYLENGTH, CLIENTPOS, TABTYPE, TABFOR
    4 ETW000                                                                              31  0.122197
    4 ETW000  [dev trc     ,00000]         M, REFNAME, HFLAG, BUFSTATE, BUFPARM, ALIGN, POINTERLG, UNICODELG, COMPCNT, LEAFCNT FROM "DDNTT" WHERE TABNAME = :A0     
    4 ETW000                                                                              15  0.122212
    4 ETW000  [twdydbacc.c ,00713]  buffer:'g CRIPTION = (SDU = 32768) (ADDRESS_LIST = (ADDRESS = (COMMUNITY = SAP.WORLD) (PROTOCOL = TCP) (HOST = jmsap04) (PORT = 1527))) (CONNECT_DATA = (SID = JMP) (GLOBAL_NAME = JMP.WORLD)))'
    4 ETW000                                                                             321  0.122533
    4 ETW000  [twdydbacc.c ,00718]  i:0                                                    7  0.122540
    4 ETW000  [twdydbacc.c ,00719]  tw_fd_p<i>.offset:0                                    6  0.122546
    4 ETW000  [twdydbacc.c ,00718]  i:1                                                    6  0.122552
    4 ETW000  [twdydbacc.c ,00719]  tw_fd_p<i>.offset:4                                    7  0.122559
    4 ETW000  [twdydbacc.c ,00718]  i:2                                                    6  0.122565
    4 ETW000  [twdydbacc.c ,00719]  tw_fd_p<i>.offset:8                                    6  0.122571
    4 ETW000  [dev trc     ,00000]  { db_rtab( fcode = 'RT_READ_ONLY', tname = 'TADIR' ) {twdbcall.c:648}
    4 ETW000                                                                              19  0.122590
    4 ETW000  [dev trc     ,00000]         SELECT * FROM "TADIR" WHERE "PGMID" = :A0 AND "OBJECT" = :A1 AND "OBJ_NAME" = :A2                                        
    4 ETW000                                                                              91  0.122681
    4 ETW000  [dev trc     ,00000]  } db_rtab( fcode = 'RT_READ_ONLY', retcode = 0 )
    4 ETW000                                                                             281  0.122962
    4 ETW000 Connected to DBMS = ORACLE --- dbs_ora_tnsname = 'JMP' --- SYSTEM = 'JMP'.
    4 ETW000  [dev trc     ,00000]  { db_rtab( fcode = 'RT_INSERT', tname = 'PATCHHIST' ) {saprel.c:1251}
    4 ETW000                                                                             179  0.123141
    4 ETW000  [dev trc     ,00000]         INSERT INTO "PATCHHIST" VALUES( :A0 , :A1 , :A2 , :A3 , :A4 , :A5 , :A6 , :A7 )                                          
    4 ETW000                                                                             309  0.123450
    4 ETW000  [dev trc     ,00000]  } db_rtab( fcode = 'RT_INSERT', retcode = 0 )        364  0.123814
    4 ETW000  [dev trc     ,00000]  dsql_open (con_da=(0,R/3),stmt="SELECT EXECUTABLE,SAPRELEASE,H ...",#binds=0,name=UNKNOWN,#input=0)
    4 ETW000                                                                              75  0.123889
    4 ETW000  [dev trc     ,00000]         SELECT EXECUTABLE,SAPRELEASE,HOSTNAME,PLATFORM,DBVENDOR,TIMESTAMP,PATCHNO,DBSLPATCHN FROM PATCHHIST WHERE EXECUTABLE = 'R3
    4 ETW000                                                                              36  0.123925
    4 ETW000  [dev trc     ,00000]         trans' AND TIMESTAMP = (SELECT MAX(TIMESTAMP) FROM PATCHHIST WHERE EXECUTABLE = 'R3trans' AND SAPRELEASE = '700' AND HOSTN
    4 ETW000                                                                              15  0.123940
    4 ETW000  [dev trc     ,00000]         AME = 'JMSAP04' AND PLATFORM = 'NT' AND DBVENDOR = 'ORA')                                                                
    4 ETW000                                                                              15  0.123955
    4 ETW000  [dev trc     ,00000]  dsql_fetch (con_da=(0,R/3),cu_id=0,#output=8)         17  0.123972
    4 ETW000  [dev trc     ,00000]  dsql_close (con_da=(0,R/3),cu_id=0)                  265  0.124237
    4 ETW000  [dev trc     ,00000]  { db_rtab( fcode = 'RT_DELETE', tname = 'PATCHHIST' ) {saprel.c:1359}
    4 ETW000                                                                              17  0.124254
    4 ETW000  [dev trc     ,00000]         DELETE FROM "PATCHHIST" WHERE "EXECUTABLE" = :A0 AND "SAPRELEASE" = :A1 AND "HOSTNAME" = :A2 AND "PLATFORM" = :A3 AND "DBV
    4 ETW000                                                                              31  0.124285
    4 ETW000  [dev trc     ,00000]         ENDOR" = :A4 AND "TIMESTAMP" = :A5                                                                               
    4 ETW000                                                                              15  0.124300
    4 ETW000  [dev trc     ,00000]  } db_rtab( fcode = 'RT_DELETE', retcode = 0 )        256  0.124556
    4 ETW690 COMMIT "0" "0"
    4 ETW000  [dev trc     ,00000]  db_con_commit (con_da={R/3,0,0},th_commit=1,tx=1,hold_cursor=0)
    4 ETW000                                                                              41  0.124597
    4 ETW000  trace to file pointer closed
    4 ETW000  trace at level 1 opened for a given file pointer
    4 ETW000
    4 ETW000 ================== STEP 1 =====================
    4 ETW000 date&time        : 21.04.2008 - 11:30:08
    4 ETW000 function         : CONNECT
    4 ETW000 buffersync       : YES
    4 ETW000 clients          : default
    4 ETW000 l.s.m.           : VECTOR
    4 ETW000 commit           : 100000
    4 ETW000 table cache      : dynamic
    4 ETW000
    4 ETW000  [dev trc     ,00000]  Disconnecting from ALL connections:                  113  0.000113
    4 ETW000  [dev trc     ,00000]  Disconnecting from connection 0 ...                   15  0.000128
    4 ETW000  [dev trc     ,00000]  Closing user session (con_hdl=0,svchp=0037F198,usrhp=026A9E78)
    4 ETW000                                                                             314  0.000442
    4 ETW000  [dev trc     ,00000]  Detaching from DB Server (con_hdl=0,svchp=0037F198,srvhp=0265E57C)
    4 ETW000                                                                             405  0.000847
    4 ETW000  [dev trc     ,00000]  Now I'm disconnected from ORACLE                     361  0.001208
    4 ETW000  [dev trc     ,00000]  Disconnected from connection 0                        14  0.001222
    4 ETW000  [dev trc     ,00000]  statistics db_con_commit (com_total=1, com_tx=1)
    4 ETW000                                                                              13  0.001235
    4 ETW000  [dev trc     ,00000]  statistics db_con_rollback (roll_total=0, roll_tx=0)
    4 ETW000                                                                              11  0.001246
    4 ETW000 Disconnected from database.
    4 ETW000 End of Transport (0000).
    4 ETW000 date&time: 21.04.2008 - 11:30:08
    Regards,
    MAL
    MAL

  • How do I create new sessions in Firefox with no add ons ? Need not be logged in user sessions .

    Hi, From our integrated desktop application,We launch web applications .On using firefox to navigate to the webpage which is depending upon the context of the user's page opened,new session has to be created for each user.However I could not find the support parameters in about:config. FF version being used is FF 3.6 .No possibility to include external addons to support this feature.Is there a way to create multiple new sessions ?

    What do you mean by "multiple new sessions"?
    Firefox 31 is the current release version, Firefox 3.6 is over 2 years beyond being supported by Mozilla.

  • Won't open new window, only tabs

    Previous version I could change option to open new window rather than tabs in 'tools' - 'options' This does not change anything. Also, it no longer saves 'home page'

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems with preferences and rename or delete the prefs.js file and possible numbered prefs-##.js files and a possible user.js file to reset all prefs to the default value.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences

  • Can I retrieve my last session after accidently chosing start new session over restore session?

    I love the feature of restoring last session. But I accidentally chose the wrong choice (open new session) and lost all my previous session. How can I get back to my previous session?

    If you use the Time Machine then you can restore a previous version of the file sessionstore.js in the Firefox Profile Folder
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/sessionstore.js
    *http://kb.mozillazine.org/Session_Restore

  • How to revoke everything from a user when opening a new session.

    HI,
    I am using oracle 10g Express Edition and SQL Developer.
    I have 2 user, 2 database connections in my SQL Developer.
    First user is Oracle and its database connection is called TCF.
    Second user is SMITH and its database connection is called TCF_SMITH.
    Oracle user has privileges to do anything.
    SMITH user has no privileges except for CREATE SESSION.
    What I am trying to achieve is assign a user to a role (this role will have grants to select, insert , update from tables) for the current session (this step is successful), and then revoke
    The role from that user (set it back to its default/or revoke everything from it) if opening another session, or session has been terminated (what I am trying to achieve).
    From TCF I was able to do the following:
    CREATE synonym SMITH.EMP_IOD FOR EMP_IOD;
    CREATE ROLE TCF_I;
    GRANT SELECT, INSERT, UPDATE ON EMP_IOD TO TCF_I;
    GRANT TCF_I TO SMITH;In TCF_SMITH
    SMITH has the same privileges as TCF_I.
    so, smith now can select, insert , and update from EMP_IOD table.
    If I open another TCF_SMITH session, and select * from EMP_IOD I should not be able to see any of the records.
    I am trying to make this session base only. Unfortunately when opening another session I am able to select, update and insert records in the new session.
    Is there a way to make this session based ?
    How can I revoke everything from user SMITH from TCF connection ?
    Thanks,

    Oh My Good Lord!
    Rooney,
    What are you attempting to do ?
    In programming anything can be achieved, but there are speicifc tools to solve specific problems .
    I think you are trying to use fork to paint a wall* (If painting the wall indeed is your requirement).
    The "need" as you say...
    +The need for this is to grant the user different roles each time the user logs in.
    for example I can log in 5 different time in one week with different role each time.
    Moday I could have access to X,Y,Z,
    Tuesday I could have access to X,A,B
    Wednesday I could have access to A,B,C.+
    ... is to solve WHAT PROBLEM?
    Please describe your original requirement , not what you think should be the solution/tool to satisfy the requirement.
    In your previous thread you "solved" privilege/role problem by creating SYNONYM. That does not compute at all.
    Re: database roles seems like its not working for me - your help is appreciated
    Think about it. We are here to help each other as best we can.
    Please read more* about Oracle capabilities and "tools" it provides.
    http://tahiti.oracle.com/
    Especially the Oracle Concepts Guide ...
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10743.pdf
    Also, please take time to respond as "helpfully" as possible. each response from you should take you closer to the solution.
    Hopefully, your original requirement will be solved.
    vr,
    Sudhakar B.

  • Function Module to open a new session displaying a method of a class

    Hello All,
    I have a method A of class B.
    Now, in my current session, I have a button. When the user clicks on this button, what I expect is that a new session be opened and in the new session method A of class B be displayed.
    This is similar to the debugger, wherein, in the debugging mode, we can bring up the context menu in the Source Code (Edit Control) tool, and then select "Go To Source Code".
    So basically, I am looking for a Function Module which does the same.
    I came across Function Module CC_CALL_TRANSACTION_NEW_TASK, however, this will only create a new session.
    I could specify the transaction as SE24, but it then opens a new session with this transaction. That is it.
    My objective is to display the method of a class in a new session.
    Is there any Function Module in this case?
    Regards,
    Mithun
    Edited by: Mithun Kamath on Aug 9, 2011 5:35 PM

    Hello Sandra,
    Thank you very much. That was exactly what I was looking for.
    However, instead of calling EDITOR_PROGRAM directly, what I instea did was the following:
    1) Created a RFC enabled Function module.
    2) Inside this function module, I wrote the following code:
      SUBMIT tpda_editor_start AND RETURN
       WITH prgm  = is_alert_det-program_name
       WITH incl = is_alert_det-include_name
       WITH dynp = space
       WITH line = is_alert_det-line_no.
    The parameters above were similar to the one proposed by you.
    Borrowed the above from the class CL_TPDA_SERVICES_TOOLS, method NAVIGATE_TO_SOURCE.
    The above is basically called in the debugger, when we use the context menu in the editor tool and invoke the "Goto Source Code" functionality. This eventually calls the EDITOR_PROGRAM FM.
    The reason why I did this is because when I was testing the FM, it did not allow me to specify the include as CL_TEST=====CM01. I do not know why, probably I was doing it wrong. But it gave me a message saying that the object does not exist in table TADIR.
    Anyway, I did the above steps and it worked exactly as I wanted it to.
    I would like to thank you again.
    Best Regards,
    Mithun
    P.S. Forgot to add, I called the above RFC enabled FM as a new task.
    Edited by: Mithun Kamath on Aug 10, 2011 4:19 PM

  • I tried to update iTunes yesterday.  The update failed.  Now when I try to open iTunes it says that the version isn't localized and needs to be run in English.  It has never been in another language.

    I attempted to update iTunes yesterday.  The update failed.  iTunes now won't open and displays an error message that the program isn't localized and needs to be run in the English version.  I'm in the US and the computer and program has never been used in another language.  I tried reinstalling the full download for the new version and that failed as well.  I logged out; shut down; restarted; retried the update; etc.  Still no luck and the same message.  Thoughts?

    Solving MSVCR80 issue and Windows iTunes install issues.
    Thanks to user turingtest2 for this solution.
    Solving MSVCR80 issue and Windows iTunes install issues.
    If the above doesn’t do the trick entirely, then use the instructions in the following as it applies to the version of Windows you are using:
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    You may be required to boot into safe mode to complete the folder deletion process.

  • Opening new window on button click from pdf without loosing session

    Hi,
    In my Java web applicaion on click of a link, we are opening a new window in which we are displaying a pdf. There are 5 buttons on this pdf.
    On clicking of this button again we are opening a application link in new window. But in this window we are not gettting our session, which is there in first two window.
    For opening new window from pdf button click we are using
    var dynamicUrl3 = myappurl;
    app.launchURL(dynamicUrl, true); 
    How can i open new window with the same sesion from the pdf button.
    Please help for the same.
    Thanks,
    Abhijit Mohite.

    Yes, with target="_blank" in a link or a form.Thanks for ur valuable suggestion. I changed the button to link.
    Its working fine now without JavaScript.
    Now i got another requirement. When user select some items and press a button in the new popup window, the window must close on button click and the parent window must refresh. This must also be done without using JavaScript.
    Is this possible? Please give me an idea to do this.
    Thanks.

Maybe you are looking for

  • Creative Cloud Update: Recurring error 205

    Hi all, I am trying to download and install the latest update to the Creative Cloud desktop, but keep getting the same error message "205" (suggesting, seemingly, that the file be 'corrupted'). I am pretty sure the download failed the first time when

  • HT1600 my apple Tv is not connected to the internet. Apple airport is on, homesharing is on ????

    How do I connect apple tv to the internet? It was connected.Apple airport is on, homesharing is on.

  • Importing a text file with variable values into web reporting

    Hello, I'm looking for a possibility to import values from a text file into a variable selection in Web reporting. With BEx reporting in Excel this is possible, by clicking on the multiple selection button in the variable popup screen, and subsequent

  • Resolution question

    I am trying to create a sign that will be 24 inches by 72 inches when printed by a sign company.  I can't figure out how to send them what they need in terms of pixel inches with a requested resolution of at least 150 dpi.  I am starting with a scann

  • Different vendors in freight condition type error in MIRO

    Hi, We are using different vendor in condition type for import purchase order as given. Ordering Vendor - 800000 Custom Vendor - 900000 in condition type Freight Vendor - 700000 in condition type While i am doing Goods Receipt, In the Freight tab onl