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.

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 ??

  • 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

  • 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

  • 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.

  • 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

  • Safari Right Click Dock Menu Open New Window

    Everyone,
    I have just recently found an issue with safari that I hope someone can provide some insight to. I can only open new safari windows if I go thru the top menu bar. I used to be able to right click on the safari dock icon and click "New Window" and I would get a new window opened up to my default homepage. Now when I click it nothing happens.
    I have noticed that it is only on my profile as it does not happen on my wife's profile. I forgot to mention that it is OS X 10.5.2 Leopard
    I have not loaded anything on the machine other than Apple Updates but it was happening before the updates to 10.5.2. I have tried modifing the pref options but no change.
    Any ideas?

    Hi
    Reinstall Safari. Here's how to do it:
    First, move your existing Safari.app to the trash. Next, insert the Leopard Installer DVD. Double Click on the "Optional Installs". Then double click on the Optional Installs.mpkg file. Once open, the Installer will lead you through a few steps. After selecting your HD, the next panel is where you'll find Safari (in the Applications folder. Check the box, then continue.
    After Safari is installed, go to your Applications>Utilities folder. There, open Disk Utility. When open, select your HD on the left, then "repair permissions".

  • Error opening new form via Call_form

    I wrote a forms that captures error code from the calling forms and shows message_text, cause and action for that error.
    When calling form causes a ORA-00054 error (lock record), I cannot call the form that displays because focus is not passed to called form.
    What can I do? I need to call this form to show message_text, cause and action.

    Hi Archana,
    There are many ways to pass values between forms.
    1. You define a global variable before issuing a call/open/new form and use the value in the called/opened form.
    2. Create a database package spec and define variables there. Use them to set values and read from other forms.
    3. Create a parameter list and pass the list to the call/open/new form built-in and read from there.
    If you explain your usecase more, we can suggest you a good way to implement it.
    -Arun

  • Opening new form

    Hi,
    After opening new form in separete module,
    I want to pass the values of one form to another form , through a global variable.
    Help me.
    Archana V.
    Edited by: Archana V on Dec 28, 2009 10:11 AM

    Hi Archana,
    There are many ways to pass values between forms.
    1. You define a global variable before issuing a call/open/new form and use the value in the called/opened form.
    2. Create a database package spec and define variables there. Use them to set values and read from other forms.
    3. Create a parameter list and pass the list to the call/open/new form built-in and read from there.
    If you explain your usecase more, we can suggest you a good way to implement it.
    -Arun

  • How to call a transaction (in a new session) from a program

    Hi ,
    I need to call a transaction from my report on the click of a button in toolbar.
    But the transaction should open in a new session.
    This is the code that i have written, MM03 is getting opened in the same session.
    call transaction 'MM03' and skip first screen.
    Hope that my question is clear.
    Thanking you in advance..
    Shankar

    check this
    <b>CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK 'TEST'
      DESTINATION 'NONE'
      EXPORTING
          TCODE = 'SM59'
      EXCEPTIONS
        COMMUNICATION_FAILURE = 1 MESSAGE MSG_TEXT
        SYSTEM_FAILURE        = 2 MESSAGE MSG_TEXT.
      IF SY-SUBRC NE 0.
        WRITE: MSG_TEXT.
      ELSE.
        WRITE: 'O.K.'.
      ENDIF.</b>
    <b>u can avoid such errors thru this FM
    check FI_DUPLICATE_INVOICE_SHOW program for sample code.</b>
    regards
    Prabhu
    Message was edited by: Prabhu Peram

  • Create new session for each window opening

    From a jsp page i open a page called student.jsp by clicking on students admision no.Therefore lots of pages can be opend in new windows with relevent student details.
    but when i click on the link i called a servlet, get relevent details and redirect to student.jsp. The problem is ,all opened windows have same session id and there are session conflicts.
    How can i create new sessions for each page thru the servlet or is there any other alternatives

    I actually was working on a problem that was similar to this, and the problem is with how each web-browser works with sessions...
    Each browser window (Except in one case with IE) will use the same session in each window.
    However, you might be able to use URL-Rewritting to manage your sessions and get around using cookies for for session tracking. I personally haven't tried this, but I'm betting that it will work.
    Best of Luck,
    Nate

  • Calling a Program in a New Session

    Hi gurus,
    I have a custom report which has a button that links to another custom report. When this button is clicked, I perform a SUBMIT xxx WITH xxx and RETURN to another ABAP Report.
    Is it possible to open up a new Session (so that I don't lose my original report) and call the new report in there (sort of like how the System->User Profile->Own Data menu path works - I have tried to debug this but SAP does not let me debug this!).
    Any help would be appreciated.
    Cheers,
    Pat.

    Hello,
    If you want a seperate session and run a program using a transaction use this function module. ABAP4_CALL_TRANSACTION
    You can either use a bdctab table or can use the param id for the same.
    FORM f_call_lt27 USING    p_temp_nlenr TYPE y1mm_imac010_alv-nlenr.
      DATA : lt_spagpa TYPE TABLE OF rfc_spagpa WITH HEADER LINE.
      MOVE 'LGN' TO lt_spagpa-parid.
      MOVE t2_lgnum TO lt_spagpa-parval.
      APPEND lt_spagpa.
      MOVE 'LEN' TO lt_spagpa-parid.
      MOVE  p_temp_nlenr TO lt_spagpa-parval.
      APPEND lt_spagpa.
      CALL FUNCTION 'ABAP4_CALL_TRANSACTION'
       STARTING NEW TASK 'MSC3N'
       EXPORTING
         tcode                         = 'LT27'
         skip_screen                   = 'X'
       TABLES
         spagpa_tab                    = lt_spagpa.
    ENDFORM.                    " f_call_lt27
    Regards,
    Shekhar KUlkarni

  • When I open up my hotmail, it opens a new session and not a new tab. Why?

    After I launch your program with MSN as my home page, I then click on hotmail to open up my emails. When I complete the log-in, a new Firefox session opens for my emails and not a new tab like it has done in the past. This has been happening for the past two to three months. What caused this change?

    Check the [[Options window - Tabs panel]] and make sure the setting "Open new windows in a new tab instead" has been selected.
    There are also quite a few tabbed browsing add-ons that give you greater control over tabbed browsing, and can force all new windows to open in a tab. Some examples are:
    * [https://addons.mozilla.org/en-US/firefox/addon/1122/ Tab Mix Plu]
    * [https://addons.mozilla.org/en-US/firefox/addon/14439/ Tabberwocky]
    * [https://addons.mozilla.org/en-US/firefox/addon/59961/ Tab Utilities]
    * [https://addons.mozilla.org/en-US/firefox/addon/13288/ Super Tab Mode]

Maybe you are looking for

  • Alternative to Flash video in DPS (and video doesn't work)

    Hi, As the titel says I want to put a flash file into my Digital Publication. I know .swf's aren't suported. I've tried to get it to work in Edge Animate or as a videofile but my Publication won't show any video if i import a .mov, .mp4 or .flv. even

  • Send IDOC from XI to an Third Party Non-SAP System

    Hello Everyone , Is it possible to use XI IDOC adapter to send an IDOC to a Third-party non SAP system . This third-party-system handles IDOCs  . We want to do SAP -> idoc -> XI -> idoc -> Third Party . Any response is appreciated . Thanks.

  • Financial Plan in Multiple Currency

    Hello, In the HTML screens I want to create Budget Lines using Multiple Currencies. This means create a line in USD for a certain Task and for the same Task create also an Euro line. I've checked the Multiple Currency option at the Financial and Work

  • Virtual copies and history?

    I want to creat virtual copies that include the history so I can rever them from BW back to the origianl color.  Why is the history removed when you creat virtual copies?

  • Quicktime streaming download question

    I'm developing a website featuring FREE exclusive movie presentations. The problem is, although I've been trying different export options in creating the streaming Quicktime content (.mov files), the rollover buttons on the webpage still won't functi