Can any one help me in this code

Hi all,
I have created a selection screen and my aim is to display some fields or some block dynamically by choosing some radio button is it possible.
can any one help me in this.
REPORT  z_g_test.
TABLES: spfli,sbook,sscrfields.
SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE text-001.
SELECT-OPTIONS:s_carrid FOR spfli-carrid.
SELECTION-SCREEN END OF BLOCK 1.
PARAMETERS:rad1 RADIOBUTTON GROUP g1 USER-COMMAND us1,
           rad2 RADIOBUTTON GROUP g1 DEFAULT 'X' .
SELECTION-SCREEN BEGIN OF SCREEN 001 as subscreen ."WITH FRAME TITLE text-002.
SELECT-OPTIONS: s_fldate FOR sbook-fldate.
SELECTION-SCREEN END OF SCREEN 001.
DATA ok_code LIKE sy-ucomm.
INITIALIZATION.
START-OF-SELECTION.
  SELECT * FROM spfli WHERE carrid IN s_carrid.
  ENDSELECT.
END-OF-SELECTION.
  WRITE:spfli-carrid.
AT SELECTION-SCREEN.
  CASE sscrfields-ucomm.
      WHEN'US1'.
*      call screen 001 starting at 55 40.
  ENDCASE.
Is i am going on the right way
Regards,
Lisa.
Message was edited by: Lisa Roy
Message was edited by: Lisa Roy
Message was edited by: Lisa Roy

This is what I meant. Copy this and try as it is and see if it serves your purpose.
REPORT ztest1 .
TABLES: spfli, sscrfields, sbook.
SELECTION-SCREEN BEGIN OF TABBED BLOCK tabb1 FOR 4 LINES.
SELECTION-SCREEN TAB (25) tabs1 USER-COMMAND ucomm1
                     DEFAULT SCREEN 001.
SELECTION-SCREEN TAB (25) tabs2 USER-COMMAND ucomm2
                     DEFAULT SCREEN 002.
SELECTION-SCREEN END OF BLOCK tabb1.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE abc.
PARAMETERS: p_date LIKE sy-datum.
SELECTION-SCREEN END OF BLOCK b1.
SELECTION-SCREEN BEGIN OF SCREEN 001 AS SUBSCREEN .
SELECT-OPTIONS: s_fldate FOR sbook-fldate.
SELECTION-SCREEN END OF SCREEN 001.
SELECTION-SCREEN BEGIN OF SCREEN 002 AS SUBSCREEN .
SELECT-OPTIONS:s_carrid FOR spfli-carrid.
SELECTION-SCREEN END OF SCREEN 002.
INITIALIZATION.
  tabs1 = 'Search by flight date'.
  tabs2 = 'Search by flight number'.
  abc   = 'Some other parameters'.
AT SELECTION-SCREEN OUTPUT.
  CASE sscrfields-ucomm.
    WHEN 'UCOMM1'.
      tabb1-prog = sy-repid.
      tabb1-dynnr   = 001.
      tabb1-activetab = 'TABS1'.
    WHEN 'UCOMM2'.
      tabb1-prog = sy-repid.
      tabb1-dynnr   = 002.
      tabb1-activetab = 'TABS2'.
  ENDCASE.

Similar Messages

  • HT204302 i get a message when I plug in my ipod to my laptop saying "cannot use this ipod because apple mobile device is not started" can any one help me with this...I have never had this happen before

    Hello anyone
    I get a message when i plug in my ipod touch saying "cannot use this ipod because apple mobile service is not started" can anyone please help me with this problem...I had this message once before but I forgot how to correct it

    From the More Like This section on the right:
    I get error message when I plug in iPhone 4s saying "This iPhone cannot be used because the Apple Mobile Device service is not started"
    can't get my ipod to connect to tunes error message "cannot be used because the apple mobile device service is not started"  fixes? Using Win XP
    im trying to connect my ipod to itunes and its saying it cannot connect because the "Apple Mobile Device is not started" help
    Or see: iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • I can no longer see FaceBook notifications in my notification area on my desk top. Can any one help me with this?

    I can no longer see any Notifications from my FaceBook account in the notifications area on my Mac. I have it in the Notifications Area and it is still not providing me my notifications. Any suggestions?

    Hi Tammy56,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/TS3999?viewlocale=en_US
    Cheers,
    - Judy

  • Can any one help me with this chat server

    The code below is of a client and server but the problem is that the msg can be sent only from the server and not the client I want that whenever a msg is sent from the server the control for writing the msg should go on to the client n den vise versa n should continue till the connection is terminated..plz help me....!
    CoDES
    for client
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.InetAddress;
    import java.net.Socket;
    import java.net.UnknownHostException;
    class client {
    public static void main(String[] args) throws IOException {
    Socket s =null;
    BufferedReader b=null;
    try{
    s=new Socket( InetAddress.getLocalHost(),98);
    b=new BufferedReader(new InputStreamReader(s.getInputStream()));
    catch(UnknownHostException u) {
    System.err.println("i dont know host");
    System.exit(0);
    String inp;
    while((inp=b.readLine())!=null){
    System.out.println(inp);
    b.close();
    s.close();
    FOR SERVER$
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.nio.channels.ServerSocketChannel;
    public class server {
    public static void main(String[] args) throws IOException {
    ServerSocket s1=null;
    try{
    s1=new ServerSocket(98);
    }catch(IOException u1)
    System.err.println("could not find port 98");
    System.exit(1);
    Socket c=null;
    try{
    c=s1.accept();
    System.out.println("connection from"+c);
    catch(IOException e)
    System.out.println("accept failed");
    System.exit(1);
    PrintWriter out=new PrintWriter(c.getOutputStream(),true);
    BufferedReader in=new BufferedReader(new InputStreamReader(c.getInputStream()));
    String I;
    BufferedReader sin=new BufferedReader(new InputStreamReader(System.in));
    System.out.println("i am ready to type now");
    while((I=sin.readLine())!=null) {
    out.println(I);
    out.close();
    sin.close();
    c.close();
    s1.close();
    }

    What you need is to have two loops running at the same time. One for receiving messages and other for waiting user input. This can be done by using separate threads.
    For example after client has made connection to server, start a new thread that runs loop for receiving messages from the socket and printing them to System.out. Then in the default thread start loop for reading users input. The server could have similar structure.
    So, what I think you are looking for are threads.

  • Can any one help me read this panic report

    Ok first let me tell you the story how i got this mac. The ex owner decided to put it on his driveway for some reason and totally forgot he put it there when he came out of his driveway with his pick up truck and boom this mac actually looks like it was ran over lol so he gave it to a friend of mine(as a gift don't know why) he couldn't fix it so then my friend gave it to me i got it up and running everything kinda works even tho the logic board and the casing are bended so this is how how got to the mac world I've played games with it watched movies and use several programs. now my problem is that i use to have mac os lion and now i upgraded to yosemite now every time try to start the mac i get this panic result and the mac keeps restarting i did have the same problem when i had lion but at least after the third or fourth time the mac will boot up I'm trying to fix it peace by peace since i can't afford a brand new one wich pretty much ill end up paying the same price as a new one wich i don't mind since its not gonna be in one shot ok here my report ps I'm in safemode and i just wanna say i fell in love with mac ever since i got this macbook pro
    Anonymous UUID:       9C833C45-DC0A-CF26-7029-AD4C373CFD8A
    Fri Feb  6 01:33:17 2015
    *** Panic Report ***
    panic(cpu 1 caller 0xffffff801541e80a): Kernel trap at 0xffffff7f96e9b483, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000010, CR3: 0x000000007c64a000, CR4: 0x0000000000002660
    RAX: 0x674c25fc9cce0001, RBX: 0xffffff8045b2d000, RCX: 0xffffff80699c5000, RDX: 0xffffff806ee0b908
    RSP: 0xffffff806ee0bac0, RBP: 0xffffff806ee0bac0, RSI: 0x0000000000000000, RDI: 0x0000000000000000
    R8:  0x000000000000002b, R9:  0xffffff801dd4804f, R10: 0x0000000000000010, R11: 0x000000000000002b
    R12: 0x0000000000000000, R13: 0xffffff801de27800, R14: 0xffffff8045b2d000, R15: 0xffffff8045b2d000
    RFL: 0x0000000000010293, RIP: 0xffffff7f96e9b483, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000010, Error code: 0x0000000000000000, Fault CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff806ee0b770 : 0xffffff801533a811
    0xffffff806ee0b7f0 : 0xffffff801541e80a
    0xffffff806ee0b9b0 : 0xffffff801543a443
    0xffffff806ee0b9d0 : 0xffffff7f96e9b483
    0xffffff806ee0bac0 : 0xffffff7f96e8492a
    0xffffff806ee0bb10 : 0xffffff7f96e84878
    0xffffff806ee0bb30 : 0xffffff7f96e60116
    0xffffff806ee0bb70 : 0xffffff7f95e396df
    0xffffff806ee0bbc0 : 0xffffff7f95e395f2
    0xffffff806ee0bbe0 : 0xffffff7f95e3d90a
    0xffffff806ee0bc70 : 0xffffff7f95e358ac
    0xffffff806ee0bcb0 : 0xffffff7f95e85fe8
    0xffffff806ee0bd00 : 0xffffff80158b85b1
    0xffffff806ee0bd50 : 0xffffff80158ff0b5
    0xffffff806ee0bdc0 : 0xffffff80153ea95e
    0xffffff806ee0be10 : 0xffffff801533e91c
    0xffffff806ee0be40 : 0xffffff80153235a3
    0xffffff806ee0be90 : 0xffffff8015333e8d
    0xffffff806ee0bf10 : 0xffffff801540a142
    0xffffff806ee0bfb0 : 0xffffff801543ac66
          Kernel Extensions in backtrace:
             com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f95e2b000->0xffffff7f95e65fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[87711C74-47D5-3545-8A62-035E1C7C4198]@0xffffff 7f95b24000
             com.apple.nvidia.classic.NVDAResmanTesla(10.0)[796AE430-39FB-3255-8161-D52AFA28 EE2B]@0xffffff7f95e82000->0xffffff7f960ebfff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[87711C74-47D5-3545-8A62-035E1C7C4198]@0xffffff 7f95b24000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[F4738C55-B507-3627-A9CA-3D29A5230A03]@0xff ffff7f95e72000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f95e2b000
             com.apple.GeForceTesla(10.0)[97A18479-CC43-3073-AEB2-C5C92195067A]@0xffffff7f96 e5c000->0xffffff7f96f29fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[87711C74-47D5-3545-8A62-035E1C7C4198]@0xffffff 7f95b24000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[F4738C55-B507-3627-A9CA-3D29A5230A03]@0xff ffff7f95e72000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f95e2b000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(10.0.0)[796AE430-39FB-3255-8161-D52AFA 28EE2B]@0xffffff7f95e82000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    14A379b
    Kernel version:
    Darwin Kernel Version 14.0.0: Sat Sep 27 03:58:47 PDT 2014; root:xnu-2782.1.97~11/RELEASE_X86_64
    Kernel UUID: D1F807E1-A660-3126-96DF-6A9E65444DA3
    Kernel slide:     0x0000000015000000
    Kernel text base: 0xffffff8015200000
    __HIB  text base: 0xffffff8015100000
    System model name: MacBookPro5,2 (Mac-F2268EC8)
    System uptime in nanoseconds: 77869146695
    last loaded kext at 77595893148: com.apple.driver.AppleHWSensor 1.9.5d0 (addr 0xffffff7f974c1000, size 36864)
    loaded kexts:
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.driver.AppleHDAHardwareConfigDriver 266.5
    com.apple.driver.AppleTyMCEDriver 1.0.2d2
    com.apple.driver.AGPM 100.14.32
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 266.5
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.0f9
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyDriver 266.5
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleLPC 1.7.3
    com.apple.GeForceTesla 10.0.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.nvidia.NVDAStartup 10.0.0
    com.apple.iokit.IOBluetoothUSBDFU 4.3.0f9
    com.apple.driver.AppleMuxControl 3.7.19
    com.apple.driver.AppleBacklight 170.4.12
    com.apple.driver.AppleMCCSControl 1.2.10
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyEventDriver 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.driver.AppleFileSystemDriver 3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.5
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleUSBHub 705.4.1
    com.apple.driver.AppleAHCIPort 3.0.7
    com.apple.nvenet 2.0.22
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleUSBOHCI 656.4.1
    com.apple.driver.AirPort.Brcm4331 800.20.24
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.AppleGraphicsDeviceControl 3.7.19
    com.apple.driver.DspFuncLib 266.5
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOAudioFamily 200.6
    com.apple.vecLib.kext 1.2.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOBluetoothFamily 4.3.0f9
    com.apple.driver.AppleHDAController 266.5
    com.apple.iokit.IOHDAFamily 266.5
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.nvidia.classic.NVDANV50HalTesla 10.0.0
    com.apple.nvidia.classic.NVDAResmanTesla 10.0.0
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleGraphicsControl 3.7.19
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMC 3.1.9
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.0
    com.apple.iokit.IOUSBMassStorageClass 3.7.0
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.0
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.0
    com.apple.driver.NVSMU 2.2.9
    com.apple.iokit.IOUSBFamily 705.4.14
    com.apple.iokit.IO80211Family 700.52
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 389.1
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    Unable to gather system configuration information.Model: MacBookPro5,2, BootROM MBP52.008E.B05, 2 processors, Intel Core 2 Duo, 2.8 GHz, 2 GB, SMC 1.42f4
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334548312D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.24)
    Bluetooth: Version 4.3.0f9 14854, 3 services, 27 devices, 0 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: WDC WD1600BEVS-00UST0, 160.04 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS21N, 3.92 GB
    USB Device: Built-in iSight
    USB Device: USB 2.0  SATA BRIDGE
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    Thunderbolt Bus:

    GPU problem or memory problem.
    OS X- About kernel panics
    Visit The XLab FAQs and read the FAQ on diagnosing kernel panics.

  • Can any one help me on this.(bulk insert)

    1 declare
    2 type emp_tab is table of emp%rowtype index by pls_integer;
    3 emp_tab_rec emp_tab;
    4 begin
    5 select * bulk collect into emp_tab_rec from emp;
    6 forall i in emp_tab_rec.first..emp_tab_rec.last
    7 insert into emp1(empno) values(emp_tab_rec(i).empno);
    8* end;
    SQL> /
    insert into emp1(empno) values(emp_tab_rec(i).empno);
    ERROR at line 7:
    ORA-06550: line 7, column 38:
    PLS-00436: implementation restriction: cannot reference fields of BULK In-BIND table of records
    ORA-06550: line 7, column 38:
    PLS-00382: expression is of wrong type
    ORA-06550: line 7, column 38:
    PL/SQL: ORA-22806: not an object or REF
    ORA-06550: line 7, column 4:
    PL/SQL: SQL Statement ignored
    when i execute the above code i am getting the error as shown above.How can i insert only empno into emp1 table.
    its working fine when i use only empno in select statement and change the type declaration accordingly.
    but how do i insert only one column value into another table when there r more than one column values are present in plsql table in bulk fetch.

    OR Keep your code as it was, just a small change, use FOR instead of FORALL. and it will work.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    SQL> create table emp1 as select empno from emp
      2  where 1=2;
    Table created.
    SQL> desc emp1
    Name                                      Null?    Type
    EMPNO                                              NUMBER
    SQL> select * from emp1;
    no rows selectedNow using FOR loop:
    SQL> declare
      2   type emp_tab is table of emp%rowtype index by pls_integer;
      3   emp_tab_rec emp_tab;
      4  begin
      5   execute immediate ('select * from emp') bulk collect into emp_tab_rec;
      6   for i in emp_tab_rec.first..emp_tab_rec.last loop
      7   insert into emp1(empno) values(emp_tab_rec(i).empno);
      8   end loop;
      9  end;
    10  /
    PL/SQL procedure successfully completed.
    SQL> select * from emp1;
         EMPNO
           104
           101
           201
           301
           102
           202
           302
    7 rows selected.Thanks
    BB.

  • Hi can any one help with solving this problem

    Hi Every body,
    I had an xml file ,with using parser i want to read the xml file ,but in my xml file i had an error "&data_12546_norm_589567;"
    To process this error and read the xml file content in java file.
    How can i read the xml file.
    My xml file is this
    <?xml version="1.0" encoding="UTF-8"?>
    <Student>
    <Name initials="KRONI">
    <Softwaredepartment/>
    </Name>
    &data_12546_norm_589567;
    </Student>
    Thanks in advance
    regards
    Ram

    You have to replace & with &amp;Like below
    <?xml version="1.0" encoding="UTF-8"?>
    <Student>
    <Name initials="KRONI">
    <Softwaredepartment/>
    </Name>
    &amp;data_12546_norm_589567;
    </Student>

  • Can any one help me on this error while installing SAP on Oracle

    Here is the error i am getting
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\gsk_3 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_4.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_4 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_5.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_5 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_6.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_6 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_7.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_7 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_8.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_8 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_9.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_9 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_10.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_10 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_11.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_11 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_12.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_12 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk_13.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk_13 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk_14.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk_14 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk_15.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk_15 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk_16.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk_16 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata1\gsk620_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\gsk620_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk620_2.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk620_2 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk620_3.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk620_3 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk620_4.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk620_4 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\gsk_3 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_4.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_4 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_5.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_5 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk_6.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk_6 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_7.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_7 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_8.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_8 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk_9.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk_9 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_10.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_10 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_11.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_11 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk_12.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk_12 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk_13.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk_13 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk_14.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk_14 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk_15.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk_15 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk_16.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk_16 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata1\gsk620_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\gsk620_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\gsk620_2.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\gsk620_2 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\gsk620_3.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\gsk620_3 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk620_4.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk620_4 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata4\gsk620_5.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata4\gsk620_5 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk620_6.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk620_6 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata5\gsk620_7.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata5\gsk620_7 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk620_8.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk620_8 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gsk620_9.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gsk620_9 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata6\gskusr_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata6\gskusr_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata2\roll_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata2\roll_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata3\temp_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata3\temp_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Creating directory D:\oracle\GSK\sapdata1\system_1.
    INFO 2010-08-30 08:59:16
    Creating file system node D:\oracle\GSK/sapdata1\system_1 with type DIRECTORY succeeded.
    INFO 2010-08-30 08:59:16
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2010-08-30 08:59:16
    Processing of all file system node operations of table tORA_DatabaseServerNodes succeeded.
    INFO 2010-08-30 08:59:17
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2010-08-30 08:59:18
    Creating file D:\oracle\ora81\database\initGSK.ora.
    INFO 2010-08-30 08:59:19
    Creating file D:\oracle\ora81\database\initGSK.sap.
    INFO 2010-08-30 08:59:20
    Copying file D:/Kernal/NT/COMMON/INSTALL/INITSID.DBA to: D:\oracle\ora81/database/initGSK.dba.
    INFO 2010-08-30 08:59:20
    Creating file D:\oracle\ora81\database\initGSK.dba.
    INFO 2010-08-30 08:59:21
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 08:59:22
    Moving file D:/oracle/ora81/database/initGSK.ora to: orig_init_ora_tmp.txt.
    INFO 2010-08-30 08:59:22
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: D:\oracle\ora81\database\initGSK.ora.
    INFO 2010-08-30 08:59:22
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2010-08-30 08:59:23
    Creating file C:\SAPinst ORACLE KERNEL\oradim.log.
    INFO 2010-08-30 08:59:28
    See 'D:\oracle\ora81/bin/oradim -new -sid GSK -STARTMODE auto' output in 'C:\SAPinst ORACLE KERNEL\oradim.log'.
    INFO 2010-08-30 08:59:28
    'D:\oracle\ora81/bin/oradim -new -sid GSK -STARTMODE auto' returned with '0'.
    INFO 2010-08-30 08:59:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 08:59:34
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:31
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2010-08-30 09:23:34
    See 'D:\oracle\ora81/bin/lsnrctl start' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2010-08-30 09:23:34
    'D:\oracle\ora81/bin/lsnrctl start' returned with '0'.
    INFO 2010-08-30 09:23:35
    Copying file D:/Kernal/NT/COMMON/INSTALL/ORADBUSR.SQL to: ./oradbusr.sql.
    INFO 2010-08-30 09:23:35
    Creating file C:\SAPinst ORACLE KERNEL\oradbusr.sql.
    INFO 2010-08-30 09:23:35
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:38
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    PHASE 2010-08-30 09:23:41
    Database Load
    INFO 2010-08-30 09:23:42
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:47
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:49
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:49
    Task files created
    INFO 2010-08-30 09:23:50
    Command files created
    INFO 2010-08-30 09:23:31
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2010-08-30 09:23:34
    See 'D:\oracle\ora81/bin/lsnrctl start' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2010-08-30 09:23:34
    'D:\oracle\ora81/bin/lsnrctl start' returned with '0'.
    INFO 2010-08-30 09:23:35
    Copying file D:/Kernal/NT/COMMON/INSTALL/ORADBUSR.SQL to: ./oradbusr.sql.
    INFO 2010-08-30 09:23:35
    Creating file C:\SAPinst ORACLE KERNEL\oradbusr.sql.
    INFO 2010-08-30 09:23:35
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:38
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    PHASE 2010-08-30 09:23:41
    Database Load
    INFO 2010-08-30 09:23:42
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:47
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:49
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:49
    Task files created
    INFO 2010-08-30 09:23:50
    Command files created
    INFO 2010-08-30 09:23:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 09:23:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2010-08-30 12:33:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    hostname after reverse lookup is: airtel
    TRACE
    host name is airtel
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    IP name airtel resolves to IP address(es): 192.168.30.87
    TRACE
    hosts entry has IP address(es): 192.168.30.87
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    hostname after reverse lookup is: airtel
    TRACE
    showing dlg dNT_SAPComponent_Waps_Instance_Dirinfo
    TRACE
    waiting for an answer from gui
    TRACEgot notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    IP name airtel resolves to IP address(es): 192.168.30.87
    TRACE
    hosts entry has IP address(es): 192.168.30.87
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    releasing notifyLock
    TRACE
    t_DriveMapping_SHARED.updateRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_SapTransHost'), updating
    TRACE
    The step InvokeDialog with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|InvokeDialog has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|writeTable
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateExpression(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel'), updating
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    hostname after reverse lookup is: airtel
    TRACE
    host name is airtel
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    IP name airtel resolves to IP address(es): 192.168.30.87
    TRACE
    hosts entry has IP address(es): 192.168.30.87
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    hostname after reverse lookup is: airtel
    TRACE
    showing dlg dNT_SAPComponent_Waps_Instance_Dirinfo
    TRACE
    waiting for an answer from gui
    TRACEgot notification...
    TRACE
    CDialogHandler: ACTION_NEXT requested
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    IP name airtel resolves to IP address(es): 192.168.30.87
    TRACE
    hosts entry has IP address(es): 192.168.30.87
    TRACE
    IP address "192.168.30.87" added to hosts entry
    TRACE
    host name "airtel" added to host entry
    TRACE
    IP address 192.168.30.87 resolves to IP name(s): airtel
    TRACE
    hosts entry has host name(es): airtel
    TRACE
    releasing notifyLock
    TRACE
    t_DriveMapping_SHARED.updateRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_SapTransHost'), updating
    TRACE
    The step InvokeDialog with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|InvokeDialog has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Waps_System|ind|ind|ind|ind|ind|0|SAPComponent_Waps_Instance_Dirs|windows|ind|ind|ind|ind|0|writeTable
    TRACE
    t_SAPComponent_Waps_Instance_SHARED.updateExpression(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel'), updating
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_VERSIONING'), inserting
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_COPY'), inserting
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_DEFAULTPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_INSTANCEPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_COPY'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_VERSIONING'), inserting
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_COPY'), inserting
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_DEFAULTPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_INSTANCEPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_VERSIONING'), completing
    TRACE
    t_SAPComponent_Profiles_FORMS_SHARED.completeRow(, WHERE WapsSystemName='GSK' AND WapsInstanceName='' AND WapsInstanceHost='airtel' AND Key='WAPS_STARTPROFILE_COPY'), completing
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|DbaToolsConfiguration|ind|ind|ora|ind|ind|0|getCD
    TRACE
    The step getCD with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|DbaToolsConfiguration|ind|ind|ora|ind|ind|0|getCD has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|fillContextTables
    TRACE
    The step fillContextTables with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|fillContextTables has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|DatabaseTablespaces|ind|ind|ora|ind|ind|0|copyMissingTablespaceValues
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE dbSid = 'GSK'
    TRACE
    Found datafile for tablespace PSAPGSKindex = 1
    TRACE
    Found datafile for tablespace PSAPGSKindex = 2
    TRACE
    Found datafile for tablespace PSAPGSKindex = 3
    TRACE
    Found datafile for tablespace PSAPGSKindex = 4
    TRACE
    Found datafile for tablespace PSAPGSKindex = 5
    TRACE
    Found datafile for tablespace PSAPGSKindex = 6
    TRACE
    Found datafile for tablespace PSAPGSKindex = 7
    TRACE
    Found datafile for tablespace PSAPGSKindex = 8
    TRACE
    Found datafile for tablespace PSAPGSKindex = 9
    TRACE
    Found datafile for tablespace PSAPGSKindex = 10
    TRACE
    Found datafile for tablespace PSAPGSKindex = 11
    TRACE
    Found datafile for tablespace PSAPGSKindex = 12
    TRACE
    Found datafile for tablespace PSAPGSKindex = 13
    TRACE
    Found datafile for tablespace PSAPGSKindex = 14
    TRACE
    Found datafile for tablespace PSAPGSKindex = 15
    TRACE
    Found datafile for tablespace PSAPGSKindex = 16
    TRACE
    Found datafile for tablespace PSAPGSK620index = 1
    TRACE
    Found datafile for tablespace PSAPGSK620index = 2
    TRACE
    Found datafile for tablespace PSAPGSK620index = 3
    TRACE
    Found datafile for tablespace PSAPGSK620index = 4
    TRACE
    Found datafile for tablespace PSAPGSK620index = 5
    TRACE
    Found datafile for tablespace PSAPGSK620index = 6
    TRACE
    Found datafile for tablespace PSAPGSK620index = 7
    TRACE
    Found datafile for tablespace PSAPGSK620index = 8
    TRACE
    Found datafile for tablespace PSAPGSK620index = 9
    TRACE
    Found datafile for tablespace PSAPGSKUSRindex = 1
    TRACE
    Found datafile for tablespace PSAPROLLindex = 1
    TRACE
    Found datafile for tablespace PSAPTEMPindex = 1
    TRACE
    Found datafile for tablespace SYSTEMindex = 1
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE tblspName = 'SYSTEM' AND dbSid = 'GSK'
    TRACE
    Found datafile for tablespace SYSTEMindex = 1
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|DbaToolsConfiguration|ind|ind|ora|ind|ind|0|getCD
    TRACE
    The step getCD with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|DbaToolsConfiguration|ind|ind|ora|ind|ind|0|getCD has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|fillContextTables
    TRACE
    The step fillContextTables with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|fillContextTables has been executed successfully.
    TRACE
    The controller is about to execute the dialog step R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|DatabaseTablespaces|ind|ind|ora|ind|ind|0|copyMissingTablespaceValues
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE dbSid = 'GSK'
    TRACE
    Found datafile for tablespace PSAPGSKindex = 1
    TRACE
    Found datafile for tablespace PSAPGSKindex = 2
    TRACE
    Found datafile for tablespace PSAPGSKindex = 3
    TRACE
    Found datafile for tablespace PSAPGSKindex = 4
    TRACE
    Found datafile for tablespace PSAPGSKindex = 5
    TRACE
    Found datafile for tablespace PSAPGSKindex = 6
    TRACE
    Found datafile for tablespace PSAPGSKindex = 7
    TRACE
    Found datafile for tablespace PSAPGSKindex = 8
    TRACE
    Found datafile for tablespace PSAPGSKindex = 9
    TRACE
    Found datafile for tablespace PSAPGSKindex = 10
    TRACE
    Found datafile for tablespace PSAPGSKindex = 11
    TRACE
    Found datafile for tablespace PSAPGSKindex = 12
    TRACE
    Found datafile for tablespace PSAPGSKindex = 13
    TRACE
    Found datafile for tablespace PSAPGSKindex = 14
    TRACE
    Found datafile for tablespace PSAPGSKindex = 15
    TRACE
    Found datafile for tablespace PSAPGSKindex = 16
    TRACE
    Found datafile for tablespace PSAPGSK620index = 1
    TRACE
    Found datafile for tablespace PSAPGSK620index = 2
    TRACE
    Found datafile for tablespace PSAPGSK620index = 3
    TRACE
    Found datafile for tablespace PSAPGSK620index = 4
    TRACE
    Found datafile for tablespace PSAPGSK620index = 5
    TRACE
    Found datafile for tablespace PSAPGSK620index = 6
    TRACE
    Found datafile for tablespace PSAPGSK620index = 7
    TRACE
    Found datafile for tablespace PSAPGSK620index = 8
    TRACE
    Found datafile for tablespace PSAPGSK620index = 9
    TRACE
    Found datafile for tablespace PSAPGSKUSRindex = 1
    TRACE
    Found datafile for tablespace PSAPROLLindex = 1
    TRACE
    Found datafile for tablespace PSAPTEMPindex = 1
    TRACE
    Found datafile for tablespace SYSTEMindex = 1
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE tblspName = 'SYSTEM' AND dbSid = 'GSK'
    TRACE
    Found datafile for tablespace SYSTEMindex = 1
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tTablespaces  WHERE dbSid = 'GSK'
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tORA_SapdataNodes WHERE OpMode = 'CHECKFREESPACE'
    TRACE
    Computed SAPDATADIR sizes in tORA_SapdataNodes. Result:
    TRACE
      <table name="tORA_SapdataNodes"><!--  points to base table      :tORA_SapdataNodes  belongs to client         :R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|DatabaseServer|ind|ind|ora|ind|ind|0|DatabaseServerOra|ind|ind|ora|ind|ind|0|TablespacesAndRollbacksegments|ind|ind|ora|ind|ind|0|DatabaseTablespaces|ind|ind|ora|ind|ind|0  Row count of client table :12  Row count of base   table :12>    <columns>      <column name="WapsSystemName"><!  points to base table attribute :WapsSystemName>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="WapsInstanceName"><!  points to base table attribute :WapsInstanceName>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="WapsInstanceHost"><!  points to base table attribute :WapsInstanceHost>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="Key"><!  points to base table attribute :Key>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />          <property name ="DEF_PROPER" value ="SAPDATA4" />        </defaultproperties>      </column>      <column name="CaseInsensitive"><!  points to base table attribute :CaseInsensitive>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="Condition"><!  points to base table attribute :Condition>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="CopyIfNewer"><!  points to base table attribute :CopyIfNewer>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="FollowLinks"><!  points to base table attribute :FollowLinks>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="MoveByChance"><!  points to base table attribute :MoveByChance>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeAccessTime"><!  points to base table attribute :NodeAccessTime>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeCreationTime"><!  points to base table attribute :NodeCreationTime>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeModificationTime"><!  points to base table attribute :NodeModificationTime>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeMountPoint"><!  points to base table attribute :NodeMountPoint>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeMountPointFreeSpace"><!  points to base table attribute :NodeMountPointFreeSpace>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeMountPointType"><!  points to base table attribute :NodeMountPointType>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeMountPointUsedSpace"><!  points to base table attribute :NodeMountPointUsedSpace>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeName"><!  points to base table attribute :NodeName>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodePermission"><!  points to base table attribute :NodePermission>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeSize"><!  points to base table attribute :NodeSize>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeTarget"><!  points to base table attribute :NodeTarget>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeType"><!  points to base table attribute :NodeType>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NodeVersion"><!  points to base table attribute :NodeVersion>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="NotOnNfs"><!  points to base table attribute :NotOnNfs>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="OpMode"><!  points to base table attribute :OpMode>        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>      <column name="Recursive"><!  points to base table attribute :Recursive-->        <defaultproperties>          <property name ="CHANGEABLE" value ="YES" />        </defaultproperties>      </column>    </columns>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA1      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">8450000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata1      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA2      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">8800000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata2      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA3      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">9200000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata3      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA4      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">10000000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata4      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA5      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">8000000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata5      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA6      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">8030000      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata6      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CHECKFREESPACE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA1_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata1      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA2_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata2      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA3_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata3      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA4_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata4      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA5_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata5      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>    <row>      <fld name="WapsSystemName">GSK      </fld>      <fld name="WapsInstanceName">      </fld>      <fld name="WapsInstanceHost">airtel      </fld>      <fld name="Key">SAPDATA6_create      </fld>      <fld name="CaseInsensitive">NO      </fld>      <fld name="Condition">true      </fld>      <fld name="CopyIfNewer">      </fld>      <fld name="FollowLinks">      </fld>      <fld name="MoveByChance">      </fld>      <fld name="NodeAccessTime">      </fld>      <fld name="NodeCreationTime">      </fld>      <fld name="NodeModificationTime">      </fld>      <fld name="NodeMountPoint">      </fld>      <fld name="NodeMountPointFreeSpace">      </fld>      <fld name="NodeMountPointType">      </fld>      <fld name="NodeMountPointUsedSpace">      </fld>      <fld name="NodeName">D:\oracle\GSK/sapdata6      </fld>      <fld name="NodePermission">      </fld>      <fld name="NodeSize">      </fld>      <fld name="NodeTarget">      </fld>      <fld name="NodeType">DIRECTORY      </fld>      <fld name="NodeVersion">      </fld>      <fld name="NotOnNfs">      </fld>      <fld name="OpMode">CREATE      </fld>      <fld name="Recursive">      </fld>    </row>  </table>
    TRACE
    C:\WINDOWS\system32/sapmmc.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmc.dll is not newer than C:\WINDOWS\system32/sapmmc.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmc.dll to C:\WINDOWS\system32/sapmmc.dll: source is not newer than the target. Nothing to do.
    TRACE
    Processing Nodemap COPYIFNEWER=YES NODENAME=C:\SAPinst ORACLE KERNEL/sapmmcada.dll NODETARGET=C:\WINDOWS\system32 NODETYPE=NODE OPMODE=COPY
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcada.dll has Version 406323452.500897
    TRACE
    C:\WINDOWS\system32/sapmmcada.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcada.dll is not newer than C:\WINDOWS\system32/sapmmcada.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmcada.dll to C:\WINDOWS\system32/sapmmcada.dll: source is not newer than the target. Nothing to do.
    TRACE
    Processing Nodemap COPYIFNEWER=YES NODENAME=C:\SAPinst ORACLE KERNEL/sapmmcdb6.dll NODETARGET=C:\WINDOWS\system32 NODETYPE=NODE OPMODE=COPY
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcdb6.dll has Version 406323452.500897
    TRACE
    C:\WINDOWS\system32/sapmmcdb6.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcdb6.dll is not newer than C:\WINDOWS\system32/sapmmcdb6.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmcdb6.dll to C:\WINDOWS\system32/sapmmcdb6.dll: source is not newer than the target. Nothing to do.
    TRACE
    Processing Nodemap COPYIFNEWER=YES NODENAME=C:\SAPinst ORACLE KERNEL/sapmmcinf.dll NODETARGET=C:\WINDOWS\system32 NODETYPE=NODE OPMODE=COPY
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcinf.dll has Version 406323452.500897
    TRACE
    C:\WINDOWS\system32/sapmmcinf.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcinf.dll is not newer than C:\WINDOWS\system32/sapmmcinf.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmcinf.dll to C:\WINDOWS\system32/sapmmcinf.dll: source is not newer than the target. Nothing to do.
    TRACE
    Processing Nodemap COPYIFNEWER=YES NODENAME=C:\SAPinst ORACLE KERNEL/sapmmcms.dll NODETARGET=C:\WINDOWS\system32 NODETYPE=NODE OPMODE=COPY
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcms.dll has Version 406323452.500897
    TRACE
    C:\WINDOWS\system32/sapmmcms.dll has Version 406323452.500897
    TRACE
    C:/SAPinst ORACLE KERNEL/sapmmcms.dll is not newer than C:\WINDOWS\system32/sapmmcms.dll
    INFO 2010-08-30 08:59:04
    While copying node C:\SAPinst ORACLE KERNEL/sapmmcms.dll to C:\WINDOWS\system32/sapmmcms.dll: source is not newer than the target. Nothing to do.
    INFO 2010-08-30 08:59:04
    Processing of all file system node operations of table t_SAPComponent_Archives_Copy_SHARED succeeded.
    TRACE
    The step sCopySAPMMCdlls with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Archives|ind|ind|ind|ind|ind|0|SAPComponent_Archives_Waps_Hook|ind|ind|ind|waps|ind|0|sCopySAPMMCdlls has been executed successfully.
    TRACE
    The step sExtractOracleClientSoftware with key R3E|ind|ind|ora|R3E|47|0|SAPComponent|ind|ind|ind|ind|ind|0|SAPComponent_Archives|ind|ind|ind|ind|ind|0|SAPComponent_Archives_Db_Hook|ind|ind|ora|waps|ind|0|sExtractOracleClientSoftware has been executed successfully.
    WARNING 2010-08-30 08:59:05
    PROBLEM: 'SAPCAR' not found. CAUSE: Unable to find application via absolute path in filesystem. Application could perhaps be found using environment variable path or is really missing. Trying to call the application nevertheless.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    TRACE
    CDomainObjectCache::readFromKeyDb: Reading from tSqlStatements WHERE stmtID = 'SHUTDOWN_ABORT'
    TRACE
    COraSqlStatement::execute: Executing statement <SHUTDOWN ABORT>
    TRACE
    Temporary SQL script file: <ora_stmt_scr_tmp.sql>
    TRACE

    hi,
    TRACE[E]
    Unable to get value for environment variable dbs_ora_tnsname.
    TRACE[E]
    Unable to get value for environment variable NLS_LANG.
    TRACE[E]
    Unable to get value for environment variable ORACLE_HOME.
    TRACE[E]
    Unable to get value for environment variable ORACLE_SID.
    TRACE[E]
    Unable to get value for environment variable SAPDATA_HOME.
    TRACE[E]
    Unable to get value for environment variable SAPEXE.
    TRACE[E]
    Unable to get value for environment variable SAPSYSTEMNAME.
    TRACE[E]
    Unable to get value for environment variable HOME.
    please check your environment variables

  • Hey, I had met a problem with installation. Can any one help me?

    Hi everyone, I'm an user of Windows 7(64 bit),
    I had just download "Master Collection CS5.5"
    Everything are fine but Adobe Acrobat Professional can't install on my computer.
    There are the details..:
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 1 warning(s)
    WARNING: DW066: OS requirements not met for {AC76BA86-1033-F400-7760-000000000005}
    ----------- Payload: {AC76BA86-1033-F400-7760-000000000005} Acrobat Professional 10.0.0.0 -----------
    ERROR: Error 1324.The path R嶰up廨er un document num廨is?sur un multifonction.sequ or the volume is invalid. Please enter it again.
    ERROR: Install MSI payload failed with error: 1603 - 安裝時發生嚴重錯誤。
    MSI Error message: Error 1324.The path R嶰up廨er un document num廨is?sur un multifonction.sequ or the volume is invalid. Please enter it again.
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Acrobat Professional: Install failed
    Thanks

    Re: Hey, I had met a problem with installation. Can any one help me?
    This worked for an English version and the concept should work with all Adobe programs - new or old (hopefully in any language). My guess is that you have/had an older version of Acrobat/Reader on your computer hard drive that needs to be *completely* removed first. Uninstall the new (and any old) Acrobat; then try using the "kb2..." guideline link below before reinstalling the new Acrobat. I am including the lengthy instructions in order to help others with more extensive installation problems. Good luck!
    I live on a fixed income and use CS for a hobby. I had problem installing Adobe Creative Suite (CS1) to Windows 7 64-bit Pro on my new computer. Also installed Adobe Photoshop LR3. What I learned: All Adobe products (Flash, Acrobat/Reader, Photoshop, Creative Suites, etc.) leave a VERY pervasive footprint on your hard drive. Logic finally worked for me.... think of building a house; there is an order you have to do things in. First, you have to clean the area before laying the foundation; then you have to build the framework before you put the roof on. You cannot install an older program over ANY newer program; and you will sometimes have a problem installing a newer program containing Flash, Reader, etc. unless you "erase" the older versions of Flash, Reader beforehand. If installing older programs, do a Custom/Manual install; do not install older versions of Flash, Reader, etc.  packaged with your Adobe software.
    SOLUTION (not easy, but it works):
    I first tried this; it did not solve my problem (but, if applicable, may help others).  http://windows.microsoft.com/en-us/windows7/Make-older-programs-run-in-this-version-of-Win dows
    Before doing anything, make document and any database/presets/cache back-ups beforehand (keep notes on their designated location*); manually create a System Restore point. (Be prepared to reinstall Windows if necessary - I didn't have to.)
    Completely and meticulously eradicate (clean) your hard drive of ALL Adobe programs [uninstall, remove remaining folders, and remove only the registry entries that have the Adobe name attached (unless you are an expert and fully understand the other entries)]. Use this as a guideline  http://kb2.adobe.com/cps/400/kb400769.html
    Do a Custom/Manual reinstall of all your Adobe products *in order of release dates* (OLDEST first).... do not include Reader, Flash, etc. If your CD will not automatically run at this point, click "Open folder to view files" (use Computer/Windows Explorer, if necessary). Click "Adobe Creative Suite (or your desired program) ==> Setup.exe" (IMPORTANT: Make sure that Reader, Flash, etc. are unchecked.)
    After each of your desired Adobe programs are installed, test to insure they boot up. Then download the latest Reader, Flash, etc. apps and install them (I did this in order of release date - oldest first). Do test boot(s) again.
    Copy/Paste your document and any database/presets/cache back-ups into the appropriate folders (*this will vary depending on your programs and your filing system).
    It has been four weeks and all my Adobe programs work flawlessly - system is stable, no problems!

  • I have MAC OSX 10.5.8 and need to install adobe illustrator. I checked the compatibility and found that CS5 will work.Can any one help where i can find it. The trail version is fine with me.

    I have MAC OSX 10.5.8 and need to install adobe illustrator. I checked the compatibility and found that CS5 will work.Can any one help where i can find it. The trail version is fine with me as i just have to use it for couple of days till i get my mac book back from service. Can any one help me on this.

    You are welcome, ameronweb.
    To elaborate a bit, you may come across offers of a new/unopened/unregistered version, which is the simplest case (you would need a guarantee). Other cases require much detailed information (and a guarantee).
    If upgrading to 10.6.8 or higher is an option, you could use CS6.

  • My itunes is not detecting my ipad air can any one help me plz

    ever since i updated my itunes its not rdetecting my ipad can any one help me with this problem plz

    Hello prachandkhanal,
    Thanks for using Apple Support Communities.
    If it does not appear under Devices in iTunes after you connect it to your PC try this article. 
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Have a nice day,
    Mario

  • I am restoreing my iphone 3g and on the instaling frameware i keep getting a code 1604 can any one help me with what i am ment to do when i get this error

    as title can any one help me thank you

    Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.

  • Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am mack from Karachi Pakistan

    Hello i am having a problem in my 4s that it dosent run any USSD code it goes on calling , can any one help me i am maqsood  from Karachi Pakistan

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

  • Can any one help me to code a browser

    hi ,
    I am Anil, I am doing an application in java. it needs a browser as IE or Morzilla . i tried to implement the browser using jdic.
    i add jdic.jar files as a external jar file and added it to my project. when i run the program in eclipse it works fine. when i want to create a jar file to my application it shows the follwing error..
    when i click on that jar file , it shows a Java Virtual Machine Launcher dialog box and in that dialog box it shows error Could not Find the main class. Program will exit ..
    this is the error.
    can any one help me to over come the error or any alternative method to implement a browser..

    DarrylBurke wrote:
    Corss poster!
    [http://www.java-forums.org/advanced-java/30298-how-write-job-aggregator-java-j2ee.html]
    dbNot anymore, Fubarable has axed that thread.

  • Hello guys..!! I have got my new  iphone 4 2 days ago.The same day it got a problem of auto restart in every 1, to 2 minutes. I updated and restored it many times...but of no use... can any one help me how to solve this problem..!!

    Hello guys..!! I have got my new  iphone 4 2 days ago.The same day it got a problem of auto restart in every 1, to 2 minutes. I updated and restored it many times...but of no use... can any one help me how to solve this problem..!!

    Go to Settings/General/Reset - Erase all content and settings. the connecto to iTunes and restore as a New phone. Do not restore any backup. If the problem persists you have a hardware problem. Take it to Apple for exchange.
    This assumes that the phone is not hacked or jailbroken. If it is you will have to go elsewhere on the internet for help.

Maybe you are looking for