Execution.bat

First, excuse my english...
I'm trying to create a class. The compilation goes well, without any problem...(file compilation.bat)
My problem is when I try to execute (to try my main method) my file execution.bat...
I always have this answer : exception in thread "main" java.lang.NoClassDefFoundError...(in Dos's Windows)
What does it means ? And, how can I resolve my problem ?
Thanks a lot !
MC

It means that Java can't find the class that you've given it to run.
Make sure that you're using "java <name>", not "java <name.class>"
Use the command "java -classpath . <name>"
Read these:
Setting the Classpath:
http://java.sun.com/j2se/1.4.1/docs/tooldocs/windows/classpath.html
[NOTE: always start your classpath with ".;" which means the current directory.]
How Classes are Found:
http://java.sun.com/j2se/1.4.1/docs/tooldocs/findingclasses.html

Similar Messages

  • Where is the .bat command when exporting an execution command?

    From the administrator console, I generate an execution command.
    I get a confirmation that the export was successful and a password file has been generated on:
    "on Job Server GBxxxxxx:3500, at C:/ProgramData/SAP BusinessObjects/Data Services/conf/Repo_GBLONBO11.txt."
    I have no problem locating the password file, but where is the .bat file?
    I have done a search on the entire server for jobname.bat file but nothing to be found.
    I have logged on to the server using the same username as the user which runs the Data Services service.
    In some other posts I found a reference to C:/ProgramData/SAP BusinessObjects/Data Services/common
    but that folder does not exist.
    We're using Data Services 4.2 on W2k.
    Thanks for your help,
    Jan.

    Dear Jan,
    Export Excution Command will create 1.bat and 1 .txt file with job name.
    You can find the .bat file under the below mention path
    C:\Program Files (x86)\SAP BusinessObjects\Data Services\log
    Note: Please make sure that you are searching in the system, where the job server is installed and running.
    Thanks,
    Sam

  • Bat File execution Problem in Win Server 2k3

    I have a jar that is calling a .bat file.
    It executes the bat file in Windows XP, and Windows 2000
    But when I run it in Win Server 2k3 it can't execute.
    I get Exit Value 1
    Does anyone know any differences between the Operating Systems that could cause this?
    Thanks
    Paul

    I don't know enough about the difference in system or even between your two installation. An exit 1 error could happen for any reason, such the batch file not being found or other reason.
    The best thing to do is get a handle to the stderr and stdout of the process and display them. To do this you would write a class that reads from an InputStream (the output of the process is read using an InputStream) and displays to System.out. Follows is some code that illustrates this (done off the top of my head, more or less, so it won't necessarily execute as is):
       void runExternalTask()
          String cmd = new String { "myexecutable.exe" };
          Process proc = Runtime.getRuntime().exec(cmd);
          ProcessOutputHandler procOut = new ProcessOutputHandler(proc.getInputStream(),0);
          ProcessOutputHandler procErr= new ProcessOutputHandler(proc.getErrorStream(),0);
       public static class ProcessOutputHandler implements Runnable {
            InputStream _in;
            //PrintStream _out;
            boolean run = true;
             * Constructor for ProcessOutputHandler.
            public ProcessOutputHandler( InputStream in, int procID ) {
                _in = in;
                (new Thread(this,"output.handler."+procID)).start();
            public void close () {
                run = false;
            public void run() {
                try {
                    int i = 0;
                    while ( run && (i=_in.read()) != -1 ) {
                        System.out.print((char)i);
                } catch (IOException e) {
                  e.printStackTrace(System.err);
        }

  • Successfull .Bat file execution

    Hi,
    I have a .bat file consisting couple of actions /tasks ...
    Rem Task 1: Using ImageX to deploy a image stored on USB .
                        Imagex /apply /U:\install.wim /index:3 D:\
    Rem Task2 : Copy a folder from USB to D drive
                        xCopy U:\Temp D:\Temp2
    Now I want to add some logic into the bat file, for example if a task is interrupted (maybe be source disk is not available or removed, like USB or network resources etc) or there is no folder with name Temp (for example), can  I get a VB message box
    with saying something went wrong, start again _???
    N.A.Malik

    If you write your batch file in a modular fashion then you can check for any criteria as shown below. You will have to write the individual code segments yourself.
    @echo off
    set result=OK
    call :CheckDiskSpace
    if not %result%==OK goto :eof
    call :FileSize
    if not %result%==OK goto :eof
    etc.
    goto :eof
    ==============
    :CheckDiskSpace
    . . . Your code goes here
    if %Free% LSS 100000000 set OK=false
    goto :eof
    ==============
    :FileSize
    . . . Your code goes here
    if %Size% GTR 100000000 set OK=false
    goto :eof
    ==============

  • Error while creating request list DSU execution error   in Upgrade PI

    Hello,
    I´m doing upgrade de PI 3.0 - 7.0 in mscs and run startup.bat...
    DSU execution error  on hostnode1.domain.sap
    Error while creating request list - see proceeding messages
    Instance profile for instance 00 on host hostnode1 not found profile SID_w*00_hostnode1 not found in directory ...../usr(sap/SID/profile
    Help please.
    Luis
    Edited by: Luis Maura on Nov 5, 2010 1:38 PM

    Instance profile for instance 00 on host hostnode1 not found profile SID_\w*00_hostnode1 not found in directory
    hostnode1 is physical or virtual ?, this file SID_\w00_hostnode1*  exist or not .
    compare the GLOBAL HOSTNAME settings in profiles of Default,Instance and start
    Regards,

  • Test Execution hangs while executing a test from Command prompt option

    I have done the following
    1) Created a script Test driver
    2) Added different scripts as Script->Properties->Assets to the driver script
    3) Call each of this asset script from TestDriver using command getScript("<<ScrptName>>".run(1, true, true, true);
    4) Now calling this TestDriver script from command prompt with command
    e:\\OracleATS\\agent
    runScript.bat E:\\INTEGRATION_SERVICES\\Identity_management\\Automation\\Scripts\\MasterScripts\\TestDriver
    TestDriver.jwg
    The script execution hangs at "Initializing VU 1 for Script TestDriver. After few mintues of seeing this message i get error "Execution Timed Out".
    Do I need to keep openscript UI open for script execution from command line ?
    Is there any way to increase this Execution Time out ? May be it is taking time to load the internal script assets. AS other scripts are running fine on the same machine from command prompt itself.
    Complete error is as follows
    C:\Documents and Settings\oracle>e:\\OracleATS\\agent\\runScript.bat E:\\INTEGRATION_SERVICES\\Identity_management\\Automation\\Scripts\\MasterScripts\\TestDriv
    er\\TestDriver.jwg
    Running "TestDriver" ...
    Agent started. Available commands:
    stop - Stop the virtual user after it finishes the current iteration.
    abort - Abort the virtual user cleanly, before it finishes the current itera
    tion.
    exit - Terminate the process immediately
    You may type the above commands at any time.
    12:17:53,418 INFO [1] Initialized script service "oracle.oats.scripting.modules.utilities.api.UtilitiesService"
    12:17:53,418 INFO [1] Initialized script service "oracle.oats.scripting.modules.browser.api.BrowserService"
    12:17:53,418 INFO [1] Initialized script service "oracle.oats.scripting.modules.functionalTest.api.FunctionalTestService"
    12:17:53,465 INFO [1] Initialized script service "oracle.oats.scripting.modules.webdom.api.WebDomService"
    12:17:53,856 INFO [1] Initialized script service "oracle.oats.scripting.modules.datatable.api.DataTableService"
    12:17:53,856 INFO [1] Initializing VU 1 for script TestDriver
    Execution Timed Out.

    Hi e_raja_sekar,
    You wrote:
    public static void main(String args){should be
    public static void main(String args[]){Granted, the below code was tested on Windows XP using J2SE SDK 1.4.1_02 (and not 1.2.2 like Sridhar is using), but when I compiled and executed this code:
    public class BadMain {
      public static void main(String args) {
        System.out.println("Hello World");
    }The output I got was:
    Exception in thread "main" java.lang.NoSuchMethodError: mainSo I don't think this is Sridhar's problem (but I could be wrong) since he says that he gets no error message.
    Cheers,
    Avi.

  • Running Oracle startup or shutdown bat file from Java code

    I have two bat files for the startup and shutdown of Oracle instance which works fine from the command prompt. But my requirement is to run it through a Java program. Please reply with full Java code. Also mention how I would get the status of the bat files that it is successfully executed or not and if not what is the error.

    Your program is working fine, but there is another problem. What's happening now is I have to open the Login screen after the startup of oracle server is complete, but the next line of my program after Runtime.exec is the LoginScreen.show which immediately shows the login screen after executing Runtime.exec and when I am giving the login name and password and press enter, it shows Oracle not available exception, because the startup process is still in progress. I want to stop the execution of my next line of code until and unless my process of Oracle startup is complete.

  • SAP SCM Upgrade-Issue in STARTSAT_TRANS in execution phase

    Hi Experts,
    I am running sap upgrade of SCM 5.1 to SCM 7.0 EHP3.
    My Environment is
    OS : windows server 2008 R2
    Source Kernel :720_ext_rel
    DB: MS SQL server
    In Execution phase i have encountered issue with MAIN_SWITCH/STARTSAP_TRANS phase and below are the error details and log.
           Checks after phase MAIN_SWITCH/STARTSAP_TRANS were negative!
    Last error code set: Process C:\usr\sap\SCN\DVEBMGS51\exe/sapcontrol.exe exited with 2, see 'C:\usr\sap\SCN\SUM\abap\log\SAPup.ECO' for details<br/> System start failed    
    SAPup.ECo log details :
    30.05.2014 02:05:28
    StartWait
    FAIL: Timeout
    SAPup> Process with PID 15804 terminated with status 2 at 20140530020528!
    SAPup> Starting subprocess in phase 'STARTSAP_TRANS' at 20140530020528
        ENV: DBMS_TYPE=mss
        ENV: JAVA_HOME=C:\j2sdk1.4.2_26-x64
        ENV: PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.PSC1;.MSC
        ENV: PATH=C:\usr\sap\SCN\DVEBMGS51\exe;c:\sapdb\programs\bin;c:\sapdb\programs\pgm;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\j2sdk1.4.2_26-x64\bin;C:\Program Files (x86)\Java\jre6\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\usr\sap\SCN\SYS\exe\nuc\NTAMD64
        ENV: SAPSYSTEMNAME=SCN
        ENV: dbs_mss_schema=scn
    EXECUTING C:\usr\sap\SCN\DVEBMGS51\exe\sapcontrol.exe -format script -prot PIPE -host SCM51NUN -nr 51 -function GetProcessList
    30.05.2014 02:05:28
    GetProcessList
    OK
    0 name: msg_server.EXE
    0 description: MessageServer
    0 dispstatus: GREEN
    0 textstatus: Running
    0 starttime: 2014 05 30 01:46:21
    0 elapsedtime: 0:19:07
    0 pid: 4640
    1 name: enserver.EXE
    1 description: EnqueueServer
    1 dispstatus: GREEN
    1 textstatus: Running
    1 starttime: 2014 05 30 01:46:21
    1 elapsedtime: 0:19:07
    1 pid: 5144
    2 name: disp+work.EXE
    2 description: Dispatcher
    2 dispstatus: YELLOW
    2 textstatus: Running but Dialog Queue info unavailable
    2 starttime: 2014 05 30 01:46:22
    2 elapsedtime: 0:19:06
    2 pid: 6872
    in MMC  Dispatcher status is Yellow with text " Running but Dialog Queue info unavailable".  Is this the cause of this issue?
    If so, how to resolve this issue?
    Please help me resolve this issue.
    Thanks,
    Krishna

    Hi Jaun,
    here is the DEV_W0 log
    trc file: "dev_w0", trc level: 1, release: "720"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      51
    M sid        SCN
    M systemid   562 (PC with Windows NT)
    M relno      7200
    M patchlevel 0
    M patchno    500
    M intno      20020600
    M make       multithreaded, ASCII, 64 bit, optimized
    M profile    C:\usr\sap\SCN\SYS\profile\SCN_DVEBMGS51_SCM51NUN
    M pid        2840
    M
    M  kernel runs with dp version 139(ext=120) (@(#) DPLIB-INT-VERSION-139)
    M  length of sys_adm_ext is 376 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 2840) [dpxxdisp.c   1381]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm) 22880 (1760)
    M  DpShMCreate: sizeof(tm_adm) 4976768 (24760)
    M  DpShMCreate: sizeof(wp_ca_adm) 56000 (56)
    M  DpShMCreate: sizeof(appc_ca_adm) 56000 (56)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/776048/776064
    M  DpShMCreate: sizeof(comm_adm) 776064 (1528)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm) 0 (232)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm) 0 (80)
    M  DpShMCreate: sizeof(vmc_adm) 0 (1864)
    M  DpShMCreate: sizeof(wall_adm) (25648/42880/64/104)
    M  DpShMCreate: sizeof(gw_adm) 48
    M  DpShMCreate: sizeof(j2ee_adm) 2032
    M  DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000FD20050, size: 5970896)
    M  DpShMCreate: allocated sys_adm at 000000000FD20060
    M  DpShMCreate: allocated wp_adm_list at 000000000FD22A20
    M  DpShMCreate: allocated wp_adm at 000000000FD22C10
    M  DpShMCreate: allocated tm_adm_list at 000000000FD28580
    M  DpShMCreate: allocated tm_adm at 000000000FD285D0
    M  DpShMCreate: allocated wp_ca_adm at 00000000101E7660
    M  DpShMCreate: allocated appc_ca_adm at 00000000101F5130
    M  DpShMCreate: allocated comm_adm at 0000000010202C00
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 00000000102C0390
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated gw_adm at 00000000102C0440
    M  DpShMCreate: allocated j2ee_adm at 00000000102C0480
    M  DpShMCreate: allocated ca_info at 00000000102C0C80
    M  DpShMCreate: allocated wall_adm at 00000000102C0D00
    M  DpCommAttachTable: attached comm table (header=0000000010202C00/ft=0000000010202C10)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  <ES> EsILock: use spinlock for locking
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 192 MB
    X  mm.dump: set global maximum dump mem to 192 MB
    X  EsRegisterEmCheck: Register EmGetEsHandles at 0000000140D4F7D0
    M  DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0

    M Fri May 30 05:23:47 2014
    M  ThInit: running on host SCM51NUN

    M Fri May 30 05:23:48 2014
    M  calling db_connect ...
    B  Loading DB library 'C:\usr\sap\SCN\DVEBMGS51\exe\dbmssslib.dll' ...

    B Fri May 30 05:23:49 2014
    B  Library 'C:\usr\sap\SCN\DVEBMGS51\exe\dbmssslib.dll' loaded
    B  Version of 'C:\usr\sap\SCN\DVEBMGS51\exe\dbmssslib.dll' is "720.00", patchlevel (0.442)
    C  Callback functions for dynamic profile parameter registered
    C  Thread ID:2040
    C  Thank You for using the SLODBC-interface
    C  Using dynamic link library 'C:\usr\sap\SCN\DVEBMGS51\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    SAP patchlevel  0
    C    SAP patchno  500
    C    Last MSSQL DBSL patchlevel 0
    C    Last MSSQL DBSL patchno         442
    C    Last MSSQL DBSL patchcomment DBACOCKPIT Auto-injection fails (1901875)
    C  ODBC Driver chosen: SQL Server Native Client 10.0 native
    C  lpc:(local) connection used on SCM51NUN
    C  lpc:(local) connection used on SCM51NUN
    C  Driver: sqlncli10.dll Driver release: 10.50.4000
    C  GetDbRelease: 10.50.4000.00
    C  GetDbRelease: Got DB release numbers (10,50,4000,0)
    B  Connection 0 opened (DBSL handle 0)
    M  ThInit: db_connect o.k.
    M  ICT: exclude compression: *.zip,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif,*.png,*.swc,*.swf

    I Fri May 30 05:23:53 2014
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF (addr: 0000000018410050, size: 4400000)
    M  SHM_ROLL_AREA (addr: 000007FFCB7C0050, size: 61440000)
    M  SHM_PAGING_AREA (addr: 0000000018850050, size: 32768000)
    M  SHM_ROLL_ADM (addr: 00000000098C0050, size: 632336)
    M  SHM_PAGING_ADM (addr: 000000000BA50050, size: 787488)
    M  ThCreateNoBuffer allocated 328144 bytes for 1000 entries at 0000000005600050
    M  ThCreateNoBuffer index size: 3000 elems
    M  ThCreateVBAdm allocated 17104 bytes (50 server) at 0000000002600050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 192 MB
    X  mm.dump: set global maximum dump mem to 192 MB
    X  EsRegisterEmCheck: Register EmGetEsHandles at 0000000140D4F7D0
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 13, CON_ID = -1
    B  Table statistics is switched off.
    B  dbtbxbuf: Buffer TABL  (addr: 00000000312B0160, size: 30000000, end: 0000000032F4C4E0)
    B  dbtbxbuf: Buffer TABLP (addr: 0000000032F50160, size: 10240000, end: 0000000033914160)
    B  dbsync[db_syinit]: successfully attached to shared memory, sync_adm_p = 0000000002620050
    B  dbsync[db_syinit]: Buffer synchronisation started with
    B    sync_concept      = SEQ_NR
    B    sendon            = 0
    B    bufreftime        = 120
    B    max_gap_wait_time = 60
    B    ddlog_del_time    = 60
    B    last_counter      = 228455
    B    oldest_gap        = (2147483647,00000000000000)
    B    time_of_last_sync = 20140530052350
    B    MySysId           = 'SCM51NUN            51'
    B  dbexpbuf[EXP_SHB]: buffer EIBUF installed with
    B    semkey             = 35
    B    shmkey             = 54
    B    wp_n               = 13
    B    sclass             = 0
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 1948608
    B    pref_obj_size      = 0
    B    est_large_obj_size = 512000
    B    free_vec_lg        = 2001
    B    hash_vec_size      = 4001
    B    buffer_l           = 8388608
    B    max_blocks         = 30450
    B    free_blocks        = 30450
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_SHM]: buffer ESM   installed with
    B    semkey             = 56
    B    shmkey             = 65
    B    wp_n               = 13
    B    sclass             = 0
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 907904
    B    pref_obj_size      = 0
    B    est_large_obj_size = 8192
    B    free_vec_lg        = 33
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 14189
    B    free_blocks        = 14189
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_CUA]: buffer CUA   installed with
    B    semkey             = 30
    B    shmkey             = 47
    B    wp_n               = 13
    B    sclass             = 10
    B    block_length       = 256
    B    max_objects        = 1500
    B    max_obj_size       = 661696
    B    pref_obj_size      = 0
    B    est_large_obj_size = 49152
    B    free_vec_lg        = 193
    B    hash_vec_size      = 3001
    B    buffer_l           = 3072000
    B    max_blocks         = 10342
    B    free_blocks        = 10342
    B    mutex_n            = 3001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_OTR]: buffer OTR   installed with
    B    semkey             = 55
    B    shmkey             = 64
    B    wp_n               = 13
    B    sclass             = 13
    B    block_length       = 128
    B    max_objects        = 2000
    B    max_obj_size       = 907744
    B    pref_obj_size      = 0
    B    est_large_obj_size = 10240
    B    free_vec_lg        = 81
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 28373
    B    free_blocks        = 28373
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    I  MPI: dynamic quotas disabled.
    I  MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  rdisp/thwpsf_critical_path : -1 -> 0
    M  Semaphore recovery: keep semaphore data.
    M  logoff_check: no check.
    M  CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.

    G Fri May 30 05:23:54 2014
    G  RelWritePermissionForShm( pLocation = 120, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation =  99, pEnforce = 1 )
    G  RelWritePermissionForShm( pLocation = 100, pEnforce = 1 )
    S  *** init spool environment
    S  TSPEVJOB updates outside critical section: event_update_nocsec = 1
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 00000000098696A0

    S Fri May 30 05:23:55 2014
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  0 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 0000000015F100C0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 0000000015F10460
    S    using messages for server info
    S  size of spec char cache entry: 165024 bytes (timeout 100 sec)
    S  size of open spool request entry: 1376 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    A  ***GENER* Trace switched on ***

    A  ---PXA-------------------------------------------
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 46436kb, dir_size: 45852kb.
    A  Attached to PXA (address 000007FFCF260050, size 800000K, 1 fragments of 753564K )
    A  PXA allocated (address 000007FFCF260050, size 800000K)
    A  abap/pxa = shared protect gen_local
    A  PXA: checking structure sizes: 752|216|16
    A  PXA INITIALIZATION FINISHED
    A  ---PXA-------------------------------------------

    A  ATRA: pfclock execution time = 1
    A  ABAP ShmAdm attached (addr=000007DFF8D7B000 leng=20955136 end=000007DFFA177000)
    A  >> Shm MMADM area (addr=000007DFF917BCD0 leng=257728 end=000007DFF91BAB90)
    A  >> Shm MMDAT area (addr=000007DFF91BB000 leng=16494592 end=000007DFFA176000)
    A  RFC Destination> destination SCM51NUN_SCN_51 host SCM51NUN system SCN systnr 51 (SCM51NUN_SCN_51)
    A  RFC Options> H=SCM51NUN,S=51,d=1,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 1
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    H  HTTP> Parameter icf/ssocookie_mandatory set to 0
    A  Hotpackage version: 21
    B  dbtran INFO (init_connection '<DEFAULT>' [MSSQL:720.00]):
    B   max_blocking_factor       =  50,  min_blocking_factor         =   5,
    B   max_in_blocking_factor    = 255,  min_in_blocking_factor      =  10,
    B   max_union_blocking_factor =  50,  min_union_blocking_factor   =   5,
    B   prefer_union_all          =   1,  prefer_join                 =   1,
    B   prefer_fix_blocking       =   0,  prefer_in_itab_opt          =   0,
    B   convert AVG               =   1,  alias table FUPD            =   0,
    B   escape_as_literal         =   0,                                  
    B   select *                  =0x00,  character encoding          =SBCS / []:X,
    B   use_hints                 = abap->1, dbif->0x1, upto->0

    M Fri May 30 05:23:56 2014
    M  ThrCreateShObjects allocated 26878 bytes at 0000000002640050
    Y  dyWpInit
    Y    ztta/dynpro_ara 800000
    Y    ztta/cua_ara    250000
    Y    ztta/diag_ara   250000
    M  rdisp/thsend_order : -1 -> 1
    M  ThISend: set thsend_order to 1
    N  SsfSapSecin: putenv(SECUDIR=C:\usr\sap\SCN\DVEBMGS51\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF library is C:\usr\sap\SCN\DVEBMGS51\exe\sapsecu.dll .
    N  ===...SSF default hash algorithm is SHA1 .
    N  ===...SSF default symmetric encryption algorithm is DES-CBC .
    N  ===...SECUDIR="C:\usr\sap\SCN\DVEBMGS51\sec"
    N  ===...loading of Security Toolkit completed with rc 5 (SSF_SUP_NOTALLFUNCTIONS).
    N  ===   SAPSECULIB Version 5.4.28M-6
    N  =================================================

    N Fri May 30 05:23:57 2014
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 1
    W    ITS Plugin: Release: 720, [7200.0.500.20020600]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [30]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  SignInit: Security Session Management cannot be used (ABAP parts are missing, note 1477428)
    N  VSI: WP init in ABAP VM completed with rc=0
    E  EnqId_Initialize: local EnqId initialization o.k.
    M  MBUF info for hooks: MS component UP
    M  ThISetEnqname: enq name = >SCM51NUN_SCN_51                         <
    M  ThActivateServer: STARTING => ACTIVE
    L  BtcSysStartRaise: Begin
    L  Raise event SAP_SYSTEM_START with parameter <SCM51NUN_SCN_51     >
    L  BtcSysStartRaise: End
    S  server @>SSRV:SCM51NUN_SCN_51@< appears or changes (state 1)

    M Fri May 30 05:23:58 2014
    M  30.05.2014 09:23:58.245 PID=2840, TID=2040 SapTimer info. v1.119 SynchCount:0 , OwnerPid: 3868, ErrsCount: 0, SapTime-WindowsUtcTime=-17 millisec (max=-17), Nosync=23 sec, SynchsPerDay=0.000000, MaxQpcTimeMinusWindowsTimeMismatch:  +0 millisec, TotalTimeCorrection=+0 millisec, QpcTime-WindowsUtcTime=-17 millisec (*)

    A Fri May 30 05:24:03 2014
    A  UpdateProfile (new settings): off,krn_impl,(no dyn check),(no logging),(no stat err),(local generation),(no commit)
    A  UpdateProfile (new exceptions): (tmp_err),(home_err),(local_err)
    A  UpdateProfile (new version): 0
    A  ***GENER* Trace switched off ***
    B  dbdynpdb2: no VERSION column found in table DYNPSOURCE

    E Fri May 30 05:24:04 2014
    E  Enqueue Info: enque/use_pfclock2 = FALSE
    E  Enqueue Info: row condense enabled
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )

    G Fri May 30 05:24:05 2014
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    E  EnqId_EN_ObjShMem_Check: status = ENQID_API_INITIAL_VALUE
    E  EnqId inscribed into initial ObjShMem: (EnqId_EN_ObjShMem_Check)
    E  ---SHMEM--------------------------------------------------------------------------------
    E  EnqId:          EnqTabCreaTime/RandomNumber    = 30.05.2014 05:23:34  1401441814 / 3208
    E  ReqOrd at Srv:  TimeInSecs/ReqNumberThisSec    = 30.05.2014 05:24:05  1401441845 / 1
    E  ReqOrd at Cli:  TimeInSecs/ReqNumberThisSec    = 30.05.2014 05:24:05  1401441845 / 1
    E  Status:         STATUS_OK
    E  ----------------------------------------------------------------------------------------
    A  EXCP> Attribute IS_RESUMABLE not found in class CX_ROOT.

    B Fri May 30 05:24:06 2014
    B  table logging switched off for all clients
    Thanks,
    krishna

  • An error has occurred during the execution of the JSPM_MAIN phase.

    Hi,
    When I run the go.bat for running SLD, I am getting the following exception.
    An error has occurred during the execution of the JSPM_MAIN phase.
    Cannot initialize application data. Could not determine profile parameters. Error while retrieving value j2ee/dbhost,j2ee/dbname,j2ee/dbtype, with retriever com.sap.sdt.tools.sysinfo.ProfileDataRetriever. Could not extract value with key j2ee/dbhost,j2ee/dbname,j2ee/dbtype, from file D:/usr/sap/CE1/SYS/profile/DEFAULT.PFL. A possible reason could be that the path to the directory containing the sappfpar executable is not included in the PATH environment variable. Could not start process sappfpar. Error while executing process sappfpar. java.io.IOException: CreateProcess: sappfpar all pf=D:/usr/sap/CE1/SYS/profile/DEFAULT.PFL error=2
    You can find more information in the log file D:\usr\sap\CE1\J01\j2ee\JSPM\log\log_2007_07_11_18_49_45\JSPM_MAIN_1_01.LOG.
    Use the information provided to troubleshoot the problem. An SAP Note may provide a solution to this problem. Search for SAP Notes with the following key words:
    com.sap.sdt.jspm.phases.PhaseTypeJSPM
    com.sap.sdt.jspm.gui.JspmUiException
    Cannot initialize application data.
    JSPM_MAIN
    JSPMPhases
    NetWeaver Upgrade
    SAPJup
    Java Upgrade
    Any inputs regarding this highly appreciated.
    Thanks
    Siva

    You can look at the following link, it may help
    https://www.sdn.sap.com/irj/sdn/directforumsearch?userid=3474257&rankby=10001&start=90

  • Execution of remote script in File Adapter OS Command

    Hello.
    I'm having issues with a remote script placed on a file adapter which fails to execute in a clustered PI (Version 7.1), running on Windows 2008.
    Our current setup is as follows.
    - Machine A and Machine B make up a SAP PI Cluster node.
    - Machine C is our network file share, used as a sandbox for receiving and sending files.
    One given scenario would be having the Cluster picking up a file from a FTP folder (Machine D) and copying it over to a given location in Machine C. This is working without problems in the cluster environment.
    Now, a very specific scenario requires that after copying the file (to folder INPUT), a given script shall be executed over the received file and decide which folder should that file be archived, TO_PROCESS or NO_PROCESS folders.
    So, Outbound Channel is reading from the FTP, Inbound Channel stores in Machine C and has to run a script after message processing.
    The problem here is that the script is stored also in Machine C, so placing the OS Command should refer to a shared path:
    Example:
    sap-machine-c.gca.ad.root\InboundFiles\INPUT
    sap-machine-c.gca.ad.root\InboundFiles\TO_PROCESS
    sap-machine-c.gca.ad.root\InboundFiles\NO_PROCESS
    sap-machine-c.gca.ad.root\Scripts\procFile.bat
    If I give the command of "
    sap-machine-c.gca.ad.root\Scripts\procFile.bat %F" on the receiver channel, checking RWB, Communication channel says the command was executed with success but the file doesn't leave the INPUT folder.
    The script is know to execute with success from both instances, I have logged into each one of them and executed with RFCUSER in SE38 w/transaction RSBDCOS0.
    I have tried to replicate this issue, reducing even the procFile.bat script to just do an "echo" command but still doesn't work (RWB PI says it does).
    It seems to me that executing scripts from remote shares is a no go? Does anyone have a previous experience dealing with these cases?
    Thanks,
    Romeu

    Hi all.
    After taking some hints from this thread, we have found out that the problem lied some where in the installation part of PI.
    We've set up a basic script, local and not remote, and still the system would not execute that command.
    The RWB logs showed successful processing but the Application Server logs were full of errors and stack traces regarding the execution of any command. A support note was raised with SAP support in order to trace these errors.
    I'm therefore closing this question as the original question is not related with remote scripting.
    Thanks all for your help.
    Best regards,
    Romeu

  • Error when running reset.bat

    Hello,
    I used to get an error while re-deploying some ESB projects on SOA Suite 10.1.3.4.
    This installation is with olite database. To solve this problem,
    I wanted to run reset.bat which is in \OracleAS_1\integration\esb\bin folder.
    reset.bat file gave the below error.
    C:\product\10.1.3.1\OracleAS_1\integration\esb\bin>reset.bat
    Buildfile: build.xml
         [echo] ${env.PCHOME}
    reset-esb:
        [mkdir] Created dir: C:\product\10.1.3.1\OracleAS_1\integration\esb\bkup\201
    01007_1245
         [java] Creating database connection with DB_URL=jdbc:[email protected]:1531
    :oraesb, DB_USER=system DB_PASSWORD=any DB_DRIVER=oracle.lite.poljdbc.POLJDBCDri
    ver.
         [java] Running this Command will reset all the metadata. Existing metadata
    will be backed up. Press y to continue and any other key to exit.
    y
         [java] 7-Oct-2010 12:45:52 PM oracle.tip.esb.lifecycle.HttpHandler logInfo
         [java] INFO: Exporting metadata from the server [host=BCFSL21903,port=8888,
    user=oc4jadmin] to file "C:\product\10.1.3.1\OracleAS_1\integration\esb\bkup\201
    01007_1245\metadata.zip"
         [java] Exported metadata to File C:\product\10.1.3.1\OracleAS_1\integration
    \esb\bkup\20101007_1245\metadata.zip.
         [java] Exported parameters to File C:\product\10.1.3.1\OracleAS_1\integrati
    on\esb\bkup\20101007_1245\esbparam.properties.
         [java] Running:C:\product\10.1.3.1\OracleAS_1\integration\esb\sql\other\dro
    p_esb_tables.sql
         [java] 7-Oct-2010 12:45:59 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeErrorToLog
         [java] SEVERE: Failure:drop table ESB_message_map
         [java] 7-Oct-2010 12:45:59 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeErrorToLog
         [java] SEVERE: Failure:drop table ESB_messages
         [java] 7-Oct-2010 12:45:59 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeErrorToLog
         [java] SEVERE: Failure:drop table ESB_group_status
         [java] 7-Oct-2010 12:45:59 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeErrorToLog
         [java] SEVERE: Failure:drop table ESB_containerid_lease
         [java] Running:C:\product\10.1.3.1\OracleAS_1\integration\esb\sql\other\wfe
    ventc.sql
         [java] Running:C:\product\10.1.3.1\OracleAS_1\integration\esb\sql\other\see
    d_service_types.sql
         [java] Running:C:\product\10.1.3.1\OracleAS_1\integration\esb\sql\other\see
    d_default_system.sql
         [java] Running:C:\product\10.1.3.1\OracleAS_1\integration\esb\sql\other\upg
    rade_10133_10134_oracle.sql
         [java] 7-Oct-2010 12:46:01 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeErrorToLog
         [java] SEVERE: Failure:drop table ESB_message_map
         [java] 7-Oct-2010 12:46:01 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeErrorToLog
         [java] SEVERE: Failure:drop table ESB_messages
         [java] 7-Oct-2010 12:46:01 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeErrorToLog
         [java] SEVERE: Failure:drop table ESB_group_status
         [java] 7-Oct-2010 12:46:01 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeErrorToLog
         [java] SEVERE: Failure:drop table ESB_containerid_lease
         [java] 7-Oct-2010 12:46:01 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeToLog
         [java] INFO: [POL-5128] duplicate table name SYSTEM.XREF_DATA
         [java] 7-Oct-2010 12:46:01 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeToLog
         [java] INFO: WorkflowCA: SQLException during execution: java.sql.SQLExcepti
    on: [POL-5128] duplicate table name SYSTEM.XREF_DATA: CREATE TABLE XREF_DATA
         [java] (
         [java]   XREF_TABLE_NAME   VARCHAR2(2000)    NOT NULL,
         [java]   XREF_COLUMN_NAME VARCHAR2(2000)    NOT NULL,
         [java]   ROW_NUMBER        VARCHAR2(48)    NOT NULL,
         [java]   VALUE             VARCHAR2(2000)  NOT NULL,
         [java]   IS_DELETED        VARCHAR2(1)     NOT NULL,
         [java]   LAST_MODIFIED     VARCHAR2(100)   NOT NULL,
         [java]   LAST_ACCESSED     VARCHAR2(100)   NOT NULL
         [java] )
         [java] 7-Oct-2010 12:46:01 PM oracle.tip.esb.install.db.SQLProcessor$Contex
    t writeToLog
         [java] INFO: File: C:\product\10.1.3.1\OracleAS_1\integration\esb\sql\other
    \upgrade_10133_10134_oracle.sql.
         [java] Exception in thread "main" oracle.tip.esb.install.exception.Installa
    tionDBException: Failed to execute sql file"C:\product\10.1.3.1\OracleAS_1\integ
    ration\esb\sql\other\upgrade_10133_10134_oracle.sql"
         [java]     at oracle.tip.esb.install.db.RunSQLScript.runScript(RunSQLScript
    .java:337)
         [java]     at oracle.tip.esb.install.db.RunSQLScript.runScript(RunSQLScript
    .java:302)
         [java]     at oracle.tip.esb.install.db.RunSQLScript.runScript(RunSQLScript
    .java:259)
         [java]     at oracle.tip.esb.install.db.RunSQLScript.runScriptListInternal(
    RunSQLScript.java:123)
         [java]     at oracle.tip.esb.install.db.RunSQLScript.runScriptList(RunSQLSc
    ript.java:89)
         [java]     at oracle.tip.esb.install.reset.ResetRepository.runSQLScripts(Re
    setRepository.java:327)
         [java]     at oracle.tip.esb.install.reset.ResetRepository.actionReset(Rese
    tRepository.java:275)
         [java]     at oracle.tip.esb.install.reset.ResetRepository.main(ResetReposi
    tory.java:210)
         [java] Caused by: oracle.tip.esb.install.db.SQLProcessorException: SQLExcep
    tion during execution: java.sql.SQLException: [POL-5128] duplicate table name SY
    STEM.XREF_DATA: CREATE TABLE XREF_DATA
         [java] (
         [java]   XREF_TABLE_NAME   VARCHAR2(2000)    NOT NULL,
         [java]   XREF_COLUMN_NAME VARCHAR2(2000)    NOT NULL,
         [java]   ROW_NUMBER        VARCHAR2(48)    NOT NULL,
         [java]   VALUE             VARCHAR2(2000)  NOT NULL,
         [java]   IS_DELETED        VARCHAR2(1)     NOT NULL,
         [java]   LAST_MODIFIED     VARCHAR2(100)   NOT NULL,
         [java]   LAST_ACCESSED     VARCHAR2(100)   NOT NULL
         [java] )
         [java]     at oracle.tip.esb.install.db.SQLProcessor.processLine(SQLProcess
    or.java:1537)
         [java]     at oracle.tip.esb.install.db.SQLProcessor.executeSQLFile(SQLProc
    essor.java:1683)
         [java]     at oracle.tip.esb.install.db.SQLProcessor.runSQLFile(SQLProcesso
    r.java:315)
         [java]     at oracle.tip.esb.install.db.RunSQLScript.runScript(RunSQLScript
    .java:331)
         [java]     ... 7 more
    BUILD FAILED
    C:\product\10.1.3.1\OracleAS_1\integration\esb\bin\build.xml:607: Java returned:
    1   What is the reason for this error?
    Any ideas please.
    Thank You,
    sandaruwan

    Its not dropping the tables so when it recreates if fails. You may need to drop table manually by running the drop_esb_tables.sql script.
    cheers
    James

  • DWLoader works in SSIS Execution Process Task?

    Does anyone knows if PDW's DWLoader works in SSIS Execution Process Task? Is there a sample?
    I struggle to find documentation on using DWLoader.exe in Execution Process Task (EPT) of SSIS. There are articles in PDW BOL about DWLoader.exe or SSIS to load data, however, there is no article I
    can find about using DWLoader.exe in Execution Process Task SSIS. I'd expect SSIS to behave the same way as we execute it in Command Prompt.
    A working (dwloader.exe) command string when putting to run in [Execution Process Task] in SSIS failed and it is hard to trap the errors. Tried writing the error out in my command string, as well as setting the StandardErrorVariable of the task, neither
    one caught the details about the error. I also put the same command string in a bat file and then ran it, it worked. I then used EPT to run my bat, that actually succeeded. (That indicated to me Execution Process Task might have interpreted my string differently).

    Hi there,
    I am trying to use the dwloader utility to load data into a PDW database. I have created a batch file with the following syntax:
    dwloader.exe  -M fastappend -m -i "D:\SS\DATA_LOAD.txt" -T BATCH_V0.dbo.ATC_LOAD_TBL -R "D:\SS\LoadErrors_ATC.bad" -t "|" -r "\r\n"  "yyyy-MM-dd HH:mm:ss.fff" -E -S 10.11.12.13 -U ATC_Login -P Password > "D:\SS\Error.log"
    But the execution fails everytime. The error log gets generated but its empty. Can someone help me with the syntax? Am I missing something here?
    Thanks in advance, 

  • DATA EXECUTION PREVENTION REFUSES TO LET IE LOAD FLASH PLAYER

    when
    i push the download and install now
    button on the site,
    the next page ie loads is the "cannot display webpage" one and quotes data execution prevention has shut it because it thinks theres a threat.
    further investigation reveals that the application apparently "tried to use the memory incorrectly"
    That's all i know, other than now i can't view very much motion footage on the internet that's actually worth looking at, and I need to find a good debugging system cos i'm sure my computer is full of bugs - often it sits ther doing nothing at all but it's cpu and cooling fan is revving like a bat out of hell
    any ideas anyone, cheers

    Download SpyBot S&D, update it then run it, then download Adaware, update it then run it, in that order.
    Update your OS, update your browser, once done set browser security to default. In system make sure active x is allowed.
    Then make sure you have the proper Flash plugins/addons.

  • Error on initialize_services.bat

    Hi everyone,
    I deployed an application named ATG through Tools and Framework's discover-data-pci deploy.xml. while deploying i follow the procedure as it was. But when i run the initialize_services.bat file form ATG application i got the error like
    [12.13.12 17:31:49] INFO: Provisioning site from prototype...
    [12.13.12 17:31:52] INFO: Finished provisioning site from prototype.
    Finished updating EAC.
    Initializing record stores...
    These record stores exist:
    No components have been provisioned.
    ==================================================
    Dropping old record stores (errors will occur on non-existent rs):
    Error during execution (check log for more info): Component instance not found: ATG_en_schema
    Error during execution (check log for more info): Component instance not found: ATG_en_dimvals
    Error during execution (check log for more info): Component instance not found: ATG_en_prules
    Error during execution (check log for more info): Component instance not found: ATG_en_data
    ==================================================
    Creating fresh record stores:
    Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: com/endeca/itl/component/manager/impl/ComponentInstanceIdValidator
    at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:156)
    at $Proxy42.createComponentInstance(Unknown Source)
    at com.endeca.itl.component.manager.cmd.task.CreateComponentInstanceTask.process(CreateComponentInstanceTask.java:31)
    at com.endeca.itl.cmd.BaseCmd.run(BaseCmd.java:412)
    at com.endeca.itl.component.manager.cmd.ComponentManagerCmd.main(ComponentManagerCmd.java:52)
    Caused by: org.apache.cxf.binding.soap.SoapFault: com/endeca/itl/component/manager/impl/ComponentInstanceIdValidator
    at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.unmarshalFault(Soap11FaultInInterceptor.java:75)
    at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:46)
    at org.apache.cxf.binding.soap.interceptor.Soap11FaultInInterceptor.handleMessage(Soap11FaultInInterceptor.java:35)
    at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:263)
    at org.apache.cxf.interceptor.AbstractFaultChainInitiatorObserver.onMessage(AbstractFaultChainInitiatorObserver.java:105)
    at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:69)
    at org.apache.cxf.binding.soap.interceptor.CheckFaultInterceptor.handleMessage(CheckFaultInterceptor.java:34)
    at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:263)
    at org.apache.cxf.endpoint.ClientImpl.onMessage(ClientImpl.java:797)
    at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponseInternal(HTTPConduit.java:1618)
    at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.handleResponse(HTTPConduit.java:1491)
    at org.apache.cxf.transport.http.HTTPConduit$WrappedOutputStream.close(HTTPConduit.java:1399)
    at org.apache.cxf.transport.AbstractConduit.close(AbstractConduit.java:56)
    at org.apache.cxf.transport.http.HTTPConduit.close(HTTPConduit.java:646)
    at org.apache.cxf.interceptor.MessageSenderInterceptor$MessageSenderEndingInterceptor.handleMessage(MessageSenderInterceptor.java:62)
    at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:263)
    at org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:533)
    at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:463)
    at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:366)
    at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:319)
    at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:88)
    at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:134)
    ... 4 more
    Failed to create schema record store.
    Failed to initialize record stores.
    pls any one help me this? and also when i start the CAS services i got another error
    java.net.BindException: Address already in use: JVM_Bind
    WARN: Not listening on monitor port: 8506
    Pls help me out from these issues.
    Thansk in advance

    ATG and Endeca are provided by oracle. So everybody asking those application related questions here.Well, this is not a forum for ANY oralce related question. It is only for questions around the product "oracle forms". You will need another forum to post your question, maybe (surprisingly) the Endeca-forum here https://forums.oracle.com/forums/category.jspa?categoryID=514

  • Trial ABAP 7.02 - installation problem in execution phase step 5/24

    Hi Folks,
    Seek your advise to solve the error I'm facing during trial ABAP install.
    I'm tryng to install the trial ABAP 7.02  version on my notebook which is running WINDOWS 7 home premium.
    I downloaded the j2re-1_4_2_19 version.
    Have hit error during the execution phase in step 5 (install database client).
    The message popped is as below:
    =========================================================
    An error occurred while processing option SAP NetWeaver 7.0 including Enhancement Package 2 > SAP Application Server ABAP > MaxDB > Central System > Central System( Last error reported by the step :The database installer reported an error. DIAGNOSIS: Some database applications might still be running. SOLUTION: Check the log file sdbinst.log and D:\sapdb\data\wrk\MaxDBRuntimeForSAPAS_install_ _ .log.). ...
    =========================================================
    The contents of log file sdbinst.log are:
    =========================================================
    SAP MaxDB Installation Manager 7.8.01.14
    Checking installation...
    Preparing package "Installer" ...
    Preparing package "SAP Utilities Compatibility" ...
    Preparing package "Global Listener" ...
    Preparing package "Installation Compatibility" ...
    Preparing package "Base" ...
    Preparing package "SQLDBC" ...
    Preparing package "SQLDBC 77" ...
    Preparing package "Fastload API" ...
    Preparing package "SQLDBC 76" ...
    Preparing package "SAP Utilities" ...
    Preparing package "ODBC" ...
    Preparing package "Messages" ...
    Preparing package "JDBC" ...
    Looking for running processes of package Installer
    Looking for running processes of package Installation Compatibility
    Looking for running processes of package Global Listener
    Looking for running processes of package SAP Utilities Compatibility
    Looking for running processes of package Base
    Looking for running processes of package SQLDBC 76
    Looking for running processes of package Messages
    Looking for running processes of package SQLDBC
    Looking for running processes of package ODBC
    Looking for running processes of package JDBC
    Looking for running processes of package SAP Utilities
    Looking for running processes of package SQLDBC 77
    Looking for running processes of package Fastload API
    ERR:  Installation failed
    ERR:    error installing
    INFO:      Installing signal handler
    INFO:        Handler for signal INT
    INFO:        Handler for signal PIPE
    INFO:        Handler for signal ABRT
    INFO:        Handler for signal FPE
    INFO:        Handler for signal QUIT
    INFO:      System Informations
    INFO:        Operating System: Windows
    INFO:        Architecture    : AMD64
    INFO:        Version         : Windows 7
    INFO:        Subversion      : Service Pack 1
    INFO:        Host Name       : JAYNB
    INFO:      Installer Informations
    INFO:        Installer is part of installation kit
    INFO:        Version is 7.8.01 Build 014-121-233-288
    INFO:        MakeId is 479160
    INFO:        Running as console application
    INFO:        Running in background mode
    INFO:        Program call informations
    INFO:          Caller program name is SDBINST
    INFO:          Command line arguments: -global_prog D:\sapdb\programs -global_data D:\sapdb\data -path D:\sapdb\clients\NSP -private_datapath D:\sapdb\clients\NSP\data -profile Runtime For SAP AS -i CL_NSP -b
    INFO:          Current directory: C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL
    INFO:          Installer directory: D:\Trial_7\NWABAPTRIAL70206_64\NWABAPTRIAL70206_64\SAP_MaxDB_78_SP1_14_RDBMS\DATA_UNITS\MAXDB_WINDOWS_X86_64
    INFO:          Pid is 4932
    INFO:          Environment dump:
    INFO:            ALLUSERSPROFILE = C:\ProgramData
    INFO:            APPDATA = C:\Users\Jay\AppData\Roaming
    INFO:            COMMONPROGRAMFILES = C:\Program Files\Common Files
    INFO:            COMMONPROGRAMFILES(X86) = C:\Program Files (x86)\Common Files
    INFO:            COMMONPROGRAMW6432 = C:\Program Files\Common Files
    INFO:            COMPUTERNAME = JAYNB
    INFO:            COMSPEC = C:\Windows\system32\cmd.exe
    INFO:            CONFIGSETROOT = C:\Windows\ConfigSetRoot
    INFO:            FP_NO_HOST_CHECK = NO
    INFO:            HOMEDRIVE = C:
    INFO:            HOMEPATH = \Users\Jay
    INFO:            LOCALAPPDATA = C:\Users\Jay\AppData\Local
    INFO:            LOGONSERVER =
    JAYNB
    INFO:            NUMBER_OF_PROCESSORS = 8
    INFO:            OS = Windows_NT
    INFO:            PATH = C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Trend Micro\AMSP
    INFO:            PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    INFO:            PROCESSOR_ARCHITECTURE = AMD64
    INFO:            PROCESSOR_IDENTIFIER = Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
    INFO:            PROCESSOR_LEVEL = 6
    INFO:            PROCESSOR_REVISION = 2a07
    INFO:            PROGRAMDATA = C:\ProgramData
    INFO:            PROGRAMFILES = C:\Program Files
    INFO:            PROGRAMFILES(X86) = C:\Program Files (x86)
    INFO:            PROGRAMW6432 = C:\Program Files
    INFO:            PSMODULEPATH = C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
    INFO:            PUBLIC = C:\Users\Public
    INFO:            SAPINST_EXEDIR_CD = C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL
    INFO:            SAPINST_JRE_HOME = C:/Users/Jay/AppData/Local/Temp/sapinst_exe.360.1316202479/jre
    INFO:            SELFEXTRACTOR_EXECUTABLE_NAME = C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.exe
    INFO:            SYSTEMDRIVE = C:
    INFO:            SYSTEMROOT = C:\Windows
    INFO:            TEMP = C:\Users\Jay\AppData\Local\Temp
    INFO:            TMP = C:\Users\Jay\AppData\Local\Temp
    INFO:            USERDOMAIN = JayNB
    INFO:            USERNAME = Jay
    INFO:            USERPROFILE = C:\Users\Jay
    INFO:            WINDIR = C:\Windows
    INFO:     
    SAP MaxDB Installation Manager 7.8.01.14
    INFO:      checking configuration of global installation
    INFO:        Parameter "GlobalData" is given via command line option, value = "D:\sapdb\data"
    INFO:        Parameter "GlobalPrograms" is given via command line option, value = "D:\sapdb\programs"
    INFO:      checking configuration of installation
    INFO:        Parameter "Name" is given via command line option, value = "CL_NSP"
    INFO:        Parameter "Path" is given via command line option, value = "D:\sapdb\clients\NSP"
    INFO:        Parameter "Comment" is not set
    INFO:        Parameter "PrivateData" is given via command line option, value = "D:\sapdb\clients\NSP\data"
    INFO:      Checking installation...
    =========================================================
    Regards,
    AG

    Hi all,
    problem wes caused by shared folders for my virtual PC machine. I have to remove shared folders.

Maybe you are looking for

  • Itunes and Windows Vista Home Premium 64bit

    I just purchased a HP TouchSmart with Vista Home Premium 64bit system.I have itunes loaded but after about 10 min. after i connect my ipod to it it locks up the computer completely. I have tried itunes on 2 identical computers and got the same result

  • Object variable or with block variable not set- while trying to submit data

    Hi Gurus, Could you share me the solution to resolve the issue? I am getting an error "object variable or with block variable not set" while trying to submit data through an Input schedule. I am working on SAP BPC 7.5 NW and using MS Excel 2007. I ca

  • Won't get past white screen on shutdown/restart

    When I choose shut down or restart on my 2012 rMBP, it logs out and moves to the white screen. From what I've seen, for an unlimited time. When it does this (which I think is every time), my only option is press-and-hold standby key - which I hate do

  • Where is the sync going?

    Ok, I am using PocketMac 4.1.25 trying to sync with my MacBook Pro. I have set up calendar sync so that the BB syncs with iCal using only one of my calendars (my primary one) as well as the PocketMac calendar. The sync takes a long time, the log file

  • Print automaticly order production after an user status modification

    Hi all, I launch and print the order production with the user status 4, and I want to print it again when user modify the status to 8. Do you have any idea ? Thanks Regards Pierre