Problems with Des/CBC/PKCS5Padding

Hello, I'm working on a project for the university. It's about a Client FTP that sends crypted file content, with the server that has to do the decryption phase.
The function of decrpytion reads the content from a file, decrypt it and sends it to the server, that has the function of decrypting and storing what it receives.
I have to problems:
1) For the encryption with DES, shall I read 8-byte a time from the file? In this case I have to use update() method for encryption, until I don't have the last block that is to encrypt with doFinal(). Then for the decryption shall I do the same things for the block, right?
2) Do I have a good encrpytion if a load all the content of the file (that could be not 8-byte-multiple) into an array and then apply the doFinal()?

Hi. I posted a message previously about DES ands it
output but the response didn't help my situation. I
want to be able to input 8bytes into the DES and get 8
bytes out. I found another post about inputting 8bytes
into the DES and getting 8bytes out, but when I did
implement it, it still didn't work.
// Encode bytes to base64 to get a string
return new sun.misc.BASE64Encoder().encode(enc);Base64 encoding expands the original by 4/3rds - it's the way Base64 works. So, DES is taking in eight bytes and producing eight bytes, which is expanding to 12 bytes as a result of Base64.
There is no "fix" available - it's the way the algorithms work.
Grant

Similar Messages

  • Error when using DES/CBC/PKCS5Padding

    When I using the captioned algorithm, the system repor no such algorithm.
    import javax.crypto.*;
    import javax.crypto.spec.*;
    Cipher c = Cipher.getInstance("DES/CBC/PKCS5Padding");Can anybody give me some tips?

    Don't worry, I found my mistake and solve the problem now.
    Thanks everybody.

  • Problem with DES Decryption of String - Need Urgent Help

    Hi,
    I created this program to encrypt and decrypt a string using DES algorithm but somehow I keep getting an exception. The code is given below.
    /* ASCryptography.java*/
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import java.security.*;
    import java.io.*;
    import sun.misc.BASE64Decoder;
    import sun.misc.BASE64Encoder;
    public class ASCryptography
         public static String[] encryptPassword(String password)
              String returnvalue[] = new String[2];
              try
                   KeyGenerator keygen = KeyGenerator.getInstance("DES");
                   SecretKey skey = keygen.generateKey();
                   byte[] bytekey = skey.getEncoded();
                   returnvalue[0] = new BASE64Encoder().encode(bytekey);
                   Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
                   cipher.init(Cipher.ENCRYPT_MODE, skey);
                   byte[] bytepassword = password.getBytes();
                   byte[] byteencryptedpassword = cipher.doFinal(bytepassword);
                   returnvalue[1] = new BASE64Encoder().encode(byteencryptedpassword);
              catch(Exception err)
              return (returnvalue);
         public static String decryptPassword(String key, String encryptedpassword)
              String password = null;
              try
                   Cipher decipher = Cipher.getInstance("DES/CBC/PKCS5Padding");               
                   byte[] bytekey = new BASE64Decoder().decodeBuffer(key);
                   SecretKey skey = new SecretKeySpec(bytekey, "DES");
                   decipher.init(Cipher.DECRYPT_MODE, skey, decipher.getParameters());   /* Netbeans detected the error to be in this part*/
                   byte[] byteencryptedpassword = new BASE64Decoder().decodeBuffer(encryptedpassword);
                   byte[] bytedecryptedpassword = decipher.doFinal(byteencryptedpassword);
                   password = new String(bytedecryptedpassword);
              catch(Exception err)
                   System.out.println(err);
              return password;
    }The methods of this class are used by another class given below.
    /*Crypt.java*/
    public class Crypt
         public static void main(String[] args)
              String password = "pic01234";
              String value[] = new String[2];
              value = ASCryptography.encryptPassword(password);
              System.out.println(value[0]);
              System.out.println(value[1]);
              String returnedvalue = ASCryptography.decryptPassword(value[0], value[1]);
              System.out.println(returnedvalue); //the returned value remains null
              System.out.println(returnedvalue.length()); // This generates a null pointer exception coz of above.
    }Now whenever I run the Crypt.java program the Netbeans IDE gives the following as output
    jL+Fg2EBp9Y=
    LOhqKHoJRkKWc76IkU4q/A==
    java.security.InvalidAlgorithmParameterException: Parameters missing
    null
    Exception in thread "main" java.lang.NullPointerException
    I used the Step in tool of Netbeans and came out with the following conclusion
    1. The first 2 strings are the encrypted key and the password string so encryption is working fine.
    2. All is fine till the decipher.init(Cipher.DECRYPT_MODE, skey, decipher.getParameters()); part is encountered at this point the java.security.InvalidAlgorithmParameterException: Parameters missing is thrown.
    3.The NullPointerException is caused due to the null value stored in returnedvalue
    Can anyone help me out with this one I have been trying to solve for the past 6 hours.
    Thanks!

    Also -
    1) Using an array to return a compound result is at best poor. You should really define a class as a container for your encryption result.
    2) Since you generate and return a new key for each password, where are you going to store the key. If you store it in the same place (database ?) as the encrypted password then this is just the same as not encrypting the password because anyone with with access to the encrypted password will also have access to the key!

  • Having problem with des encryption in jcwde

    I have problem with encrypting data using des encryption.... when i debug, it is stopping at the dofinal() method....help needed.
    public class wallet extends Applet {
         public short balance= (short) 22;
         final static byte Wallet_CLA = ( byte ) 0xB0;
         public short isVerified;
         // public short tryCounter;//number of tries for pin
         public byte[] pin=new byte[]{ 0x10, 0x10};
         public byte[] key_array=new byte[]{(byte)0x09,(byte)0x0e,(byte)0x0d,(byte)0x0c,(byte)0x0b,(byte)0x0a,(byte)0x09,(byte)0x08};
         public OwnerPIN m_pin;
         // public Cipher m_cipher;
         public DESKey m_desKey;
         public Cipher m_cipher;
         final static byte ENCRYPT= (byte) 0x10;
         final static byte VERIFY = ( byte ) 0x20;
         final static byte CREDIT = ( byte ) 0x30;
         final static byte DEBIT = ( byte ) 0x40;
         final static byte GET_BALANCE = ( byte ) 0x50;
         final static short SW_INVALID_DEBIT_AMOUNT = 0x6A83;
         final static short SW_INVALID_CREDIT_AMOUNT = 0x6A84;
         final static short SW_VERIFICATION_FAILED = 0x6A85;
         final static short SW_PIN_BLOCKED = 0x6A86;
         final static short SW_CIPHER_DATA_LENGTH_BAD= 0x6A87;
         private wallet(byte bArray[], short bOffset, byte bLength) {
              isVerified=0;
              //tryCounter=3;
              m_pin = new OwnerPIN((byte) 3, (byte) 4);
              m_pin.update(pin, (short) 0, (byte) pin.length);
              m_desKey=(DESKey) KeyBuilder.buildKey(KeyBuilder.TYPE_DES, KeyBuilder.LENGTH_DES, false);
              m_desKey.setKey(key_array, (short)0);
              m_cipher =Cipher.getInstance(Cipher.ALG_DES_CBC_ISO9797_M2, false);
              m_cipher.init(m_desKey,Cipher.MODE_ENCRYPT);
              //register(bArray,(short)(bOffset+1),bArray[bOffset]);
         public static void install(byte bArray[], short bOffset, byte bLength)
                   throws ISOException {
              new wallet(bArray, bOffset, bLength).register();
         public void process(APDU apdu) throws ISOException {
              // TODO Auto-generated method stub
              byte[] buff = apdu.getBuffer();
              if(selectingApplet())
                   return;
              //byte[] buff = apdu.getBuffer();
    if(buff[ISO7816.OFFSET_CLA] == Wallet_CLA)
         switch (buff[ISO7816.OFFSET_INS])
         case ENCRYPT:
              encrypt(apdu);
              return;
         case VERIFY:
              verify(apdu);
              return;
         case CREDIT:
              credit(apdu);
              return;
         case DEBIT:
              debit(apdu);
              return;
         case GET_BALANCE:
              getBalance(apdu);
              return;
         default:
              ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
    return;     
         private void getBalance(APDU apdu) {
              // TODO Auto-generated method stub
              if(!(m_pin.getTriesRemaining()>0))
                   ISOException.throwIt(SW_PIN_BLOCKED);
              if(!(m_pin.isValidated()))
                   ISOException.throwIt(SW_VERIFICATION_FAILED);
              byte[] buffer = apdu.getBuffer();
              //buffer[0]=(byte) balance;
              apdu.setOutgoing();//indicates apdu has outgoing data
              apdu.setOutgoingLength ( ( short ) 2 ) ; //outgoing data length(le)
              //storing balance in buffer array
              buffer [ 0 ] = ( byte ) ( balance >> 8 ) ;
              buffer [ 1 ] = ( byte ) ( balance & 0xFF ) ;
              apdu.sendBytes ( ( short ) 0, ( short ) 2 ) ;
              //apdu.setOutgoingLength(len)
              return;
         private void debit(APDU apdu) {
              // TODO Auto-generated method stub
              if(!(m_pin.getTriesRemaining()>0))
                   ISOException.throwIt(SW_PIN_BLOCKED);
              if(!(m_pin.isValidated()))
                   ISOException.throwIt(SW_VERIFICATION_FAILED);
              byte[] buffer = apdu.getBuffer();
              byte numBytes=(byte) apdu.getIncomingLength();//number of bytes received
              if(numBytes!=1)
                   ISOException.throwIt(ISO7816.SW_WRONG_LENGTH);
              byte byteRead= (byte)apdu.setIncomingAndReceive();
              byte debitAmount=buffer[ISO7816.OFFSET_CDATA];
              if(balance > (short)debitAmount)
              balance=(short) (balance-(short)debitAmount);
              else
                   ISOException.throwIt(SW_INVALID_DEBIT_AMOUNT);
         private void credit(APDU apdu) {
              // TODO Auto-generated method stub
              if(!(m_pin.getTriesRemaining()>0))
                   ISOException.throwIt(SW_PIN_BLOCKED);
              if(!(m_pin.isValidated()))
                   ISOException.throwIt(SW_VERIFICATION_FAILED);
              byte[] buffer = apdu.getBuffer();
              byte numBytes=(byte) apdu.getIncomingLength();
              if(numBytes!=1)
                   ISOException.throwIt(ISO7816.SW_WRONG_LENGTH);
              //setting the apdu direction as incoming and getting number of bytes
              byte byteRead= (byte)apdu.setIncomingAndReceive();
              byte creditAmount=buffer[ISO7816.OFFSET_CDATA];
              if(creditAmount<0)
              ISOException.throwIt(SW_INVALID_CREDIT_AMOUNT);
              balance=(short) (balance+(short)creditAmount);
         private void verify(APDU apdu)
              byte[] buffer = apdu.getBuffer();
              byte numBytes=(byte) apdu.getIncomingLength();
              byte byteRead= (byte)apdu.setIncomingAndReceive();
              //byte pass=buffer[ISO7816.OFFSET_CDATA];
              if(m_pin.getTriesRemaining()>0)//check whether the try limit has been crossed
                   //if(Util.arrayCompare(buffer, (short)ISO7816.OFFSET_CDATA, pin, (short)0, (short)2)==0)//comparing pins
                   if(m_pin.check(buffer, (short)ISO7816.OFFSET_CDATA,byteRead))
                   isVerified=1;//setting status as verified
                   else//wrong password
                   //tryCounter--;
                   ISOException.throwIt(SW_VERIFICATION_FAILED);
              else
                   ISOException.throwIt(SW_PIN_BLOCKED);
              // TODO Auto-generated method stub
         private void encrypt(APDU apdu)
              byte[] buffer=apdu.getBuffer();
              short bytelen=(short)(apdu.setIncomingAndReceive());
              //short byteRead=(short) (buffer[ISO7816.OFFSET_LC] & 0x00FF);
              byte[] outbuff=new byte[(short)16];
              if(((short)bytelen%8)!=0)ISOException.throwIt(SW_CIPHER_DATA_LENGTH_BAD);
              //m_cipher.update(buffer, ISO7816.OFFSET_CDATA, (short)bytelen, outbuff, (short)0);
              m_cipher.doFinal(buffer,(short) ISO7816.OFFSET_CDATA, (short)bytelen, buffer, (short)0); //"DEBUGGER STOPS AT THIS LINE"
              Util.arrayCopyNonAtomic(outbuff, (short)0, buffer, (short)ISO7816.OFFSET_CDATA, (short)bytelen);
              apdu.setOutgoing();
              apdu.setOutgoingLength((short)bytelen);
              apdu.sendBytesLong(outbuff,(short)ISO7816.OFFSET_CDATA,(short)bytelen);
              //apdu.setOutgoingAndSend(ISO7816.OFFSET_CDATA, (short)bytelen);
    Edited by: 977213 on Dec 16, 2012 10:24 PM

    Hi,
    Check out Cipher. dofinal method,
    the 4th parameter should be the destination which is outbuff.
    it shoul be change to :
    m_cipher.doFinal(buffer,(short) ISO7816.OFFSET_CDATA, (short)bytelen, outbuff, (short)0); when I run your code the result was all 00, that was because of this error,
    maybe the debugger has the same problem,
    check it and tell me the result
    Regards,
    Hana

  • Problems With DES...

    Hi. I posted a message previously about DES ands it output but the response didn't help my situation. I want to be able to input 8bytes into the DES and get 8 bytes out. I found another post about inputting 8bytes into the DES and getting 8bytes out, but when I did implement it, it still didn't work.
    Here is what my code looks like now:
    MAC.java:
    ===============
    // Create key
    KeyGenerator vgen = KeyGenerator.getInstance ("DES");
    vgen.init (56);
    SecretKey key = vgen.generateKey();
    // Create encrypter/decrypter class
    DesEncrypter encrypter = new DesEncrypter(key);
    // Encrypt
    String encrypted = encrypter.encrypt("aaaaaaaa");
    ================================================
    DesEncrypter.java
    ===============
    // Create cipher
    Cipher ecipher;
    // Constructor
    DesEncrypter(SecretKey key) {
    try {   
    ecipher = Cipher.getInstance("DES/OFB8/NoPadding");
    // Initial Vector
    SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
    byte bytes[] = new byte[8];
    sr.nextBytes(bytes);
    ecipher.init(Cipher.ENCRYPT_MODE, key, sr);
    // All catch blocks have been purposly left out!
    // Encrypt method
    public String encrypt(String str) {
    try {
    // Encode the string into bytes using utf-8
    byte[] utf8 = str.getBytes("UTF8");
    // Encrypt
    byte[] enc = ecipher.doFinal(utf8);
    // Encode bytes to base64 to get a string
    return new sun.misc.BASE64Encoder().encode(enc);
    // All catch blocks have been purposly left out!
    ================================================
    Does anyone know why DES is still outputting 8bytes?

    Hi. I posted a message previously about DES ands it
    output but the response didn't help my situation. I
    want to be able to input 8bytes into the DES and get 8
    bytes out. I found another post about inputting 8bytes
    into the DES and getting 8bytes out, but when I did
    implement it, it still didn't work.
    // Encode bytes to base64 to get a string
    return new sun.misc.BASE64Encoder().encode(enc);Base64 encoding expands the original by 4/3rds - it's the way Base64 works. So, DES is taking in eight bytes and producing eight bytes, which is expanding to 12 bytes as a result of Base64.
    There is no "fix" available - it's the way the algorithms work.
    Grant

  • How to get the fixed result in a DES/CBC mode with fixed input data and fix

    How to get the fixed result in a DES/CBC mode with fixed input data and fixed key. Below is my program , I tried to get the checksum of the DESInputData with the DESKeyData, but each time the result is different.
    below is my code:
    byte[] DESKeyData = {(byte)0x01 ,(byte)0x01 ,(byte)0x01 ,(byte)0x01, (byte)0x01 ,(byte)0x01 ,(byte)0x01 ,(byte)0x01 };
    byte[] DESInputData = {(byte)0x31 ,(byte)0x31 ,(byte)0x31 ,(byte)0x31,(byte)0x31 ,(byte)0x31 ,(byte)0x31 ,(byte)0x31 };
    SecretKeySpec skey = new SecretKeySpec( DESKeyData, "DES" );
    Cipher cipher = Cipher.getInstance("DES/CBC/NoPadding");
    cipher.init( Cipher.ENCRYPT_MODE, skey );
    byte[] result = cipher.doFinal( DESInputData );

    Use class javax.crypto.spec.IvParameterSpec to specify IV for CBC mode cipher:
    // Create CBC-mode triple-DES cipher.
    Cipher c = Cipher.getInstance("DESede/CBC/PKCS5Padding");
    // Specify IV.
    IvParameterSpec iv = new IvParameterSpec(new byte[] { (byte)0x01, (byte)0x23, (byte)0x45, (byte)0x67, (byte)0x89, (byte)0xAB, (byte)0xCD, (byte)0xEF });
    // Initialize cipher with proper IV.
    c.init(Cipher.ENCRYPT_MODE, yourKey, iv);
    // Encrypt and decrypt should work ok now.
    For more info about cryptography, search the Internet for IntroToCrypto.pdf from mr. Phil Zimmerman. This document is also part of PGP (http://www.pgp.com).
    An excellent book is 'Applied Cryptography' from Bruce Schneier (http://www.counterpane.com/applied.html).
    Regards,
    Ronald Maas

  • Problem with SolMan installation on Windows x64

    I'm stuck at step 35 "Change default passwords". Anyone know what wrong?
    INFO 2008-11-28 18:23:07.234
    Executing function call SUSR_USER_CHANGE_PASSWORD_RFC.
    ERROR 2008-11-28 18:23:07.359
    FRF-00025 Unable to call function. Error message: Syntax error in program /1BCDWBEN/SAPLSEN0005 . .
    INFO 2008-11-28 18:23:07.359
    RFC connection closed.
    ERROR 2008-11-28 18:23:07.359
    MUT-03025 Caught ERfcExcept in Modulecall: Syntax error in program /1BCDWBEN/SAPLSEN0005 ..
    ERROR 2008-11-28 18:23:07.359
    FCO-00011 The step changeDDIC000Password with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|2|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_ABAP_Reports|ind|ind|ind|ind|2|0|NW_CI_Instance_ABAP_Passwords|ind|ind|ind|ind|3|0|changeDDIC000Password was executed with status ERROR ( Last error reported by the step :Caught ERfcExcept in Modulecall: Syntax error in program /1BCDWBEN/SAPLSEN0005 ..).
    I'm pasting in dev_w0 below:
    Re
    Dennis
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL 1
    ACTIVE TRACE COMPONENTS all, MJ
    B
    B Fri Nov 28 18:12:01 2008
    B create_con (con_name=R/3)
    B Loading DB library 'D:\usr\sap\ISM\DVEBMGS00\exe\dbsdbslib.dll' ...
    B Library 'D:\usr\sap\ISM\DVEBMGS00\exe\dbsdbslib.dll' loaded
    B Version of 'D:\usr\sap\ISM\DVEBMGS00\exe\dbsdbslib.dll' is "700.08", patchlevel (0.144)
    B New connection 0 created
    M sysno 00
    M sid ISM
    M systemid 562 (PC with Windows NT)
    M relno 7000
    M patchlevel 0
    M patchno 144
    M intno 20050900
    M make: multithreaded, Unicode, 64 bit, optimized
    M pid 3112
    M
    M kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    M length of sys_adm_ext is 576 bytes
    M ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3112) http://dpxxdisp.c 1305
    I MtxInit: 30000 0 0
    M DpSysAdmExtCreate: ABAP is active
    M DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M DpShMCreate: sizeof(wp_adm) 25168 (1480)
    M DpShMCreate: sizeof(tm_adm) 5652128 (28120)
    M DpShMCreate: sizeof(wp_ca_adm) 24000 (80)
    M DpShMCreate: sizeof(appc_ca_adm) 8000 (80)
    M DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M DpShMCreate: sizeof(comm_adm) 552080 (1088)
    M DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M DpShMCreate: sizeof(slock_adm) 0 (104)
    M DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M DpShMCreate: sizeof(file_adm) 0 (72)
    M DpShMCreate: sizeof(vmc_adm) 0 (1864)
    M DpShMCreate: sizeof(wall_adm) (41664/36752/64/192)
    M DpShMCreate: sizeof(gw_adm) 48
    M DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000EE70050, size: 6348592)
    M DpShMCreate: allocated sys_adm at 000000000EE70050
    M DpShMCreate: allocated wp_adm at 000000000EE72150
    M DpShMCreate: allocated tm_adm_list at 000000000EE783A0
    M DpShMCreate: allocated tm_adm at 000000000EE78400
    M DpShMCreate: allocated wp_ca_adm at 000000000F3DC2A0
    M DpShMCreate: allocated appc_ca_adm at 000000000F3E2060
    M DpShMCreate: allocated comm_adm at 000000000F3E3FA0
    M DpShMCreate: system runs without slock table
    M DpShMCreate: system runs without file table
    M DpShMCreate: allocated vmc_adm_list at 000000000F46AC30
    M DpShMCreate: allocated gw_adm at 000000000F46ACB0
    M DpShMCreate: system runs without vmc_adm
    M DpShMCreate: allocated ca_info at 000000000F46ACE0
    M DpShMCreate: allocated wall_adm at 000000000F46ACF0
    M ThTaskStatus: rdisp/reset_online_during_debug 0
    X EmInit: MmSetImplementation( 2 ).
    X MM global diagnostic options set: 0
    X <ES> client 0 initializing ....
    X Using implementation view
    X <EsNT> Using memory model view.
    M <EsNT> Memory Reset disabled as NT default
    X ES initialized.
    M
    M Fri Nov 28 18:12:02 2008
    M ThInit: running on host ides001
    M
    M Fri Nov 28 18:12:03 2008
    M calling db_connect ...
    C
    C DBSDBSLIB : version 700.08, patch 0.144 (Make PL 0.144)
    C MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C (0.144) MSSQL: ODBC fastload on separate connection (note 1131805)
    C (0.144) I5/OS ldappasswd support for 5250 terminal. (note 1129573)
    C (0.139) Return DS_SQLERR instead of DS_CONNECTERR (note 1121076)
    C (0.131) Do not trace password of SQLOPT into dev trace (note 1097930)
    C (0.130) Performance optimization for UPDSTAT PREPARE (note 1096387)
    C (0.125) Update statistic prepare on row level (note 1086430)
    C (0.104) Update statistic with empty schemas (note 1041547)
    C (0.095) MaxDB DBSL patch collection 1 2007 (note 1014270)
    C (0.082) MaxDB DBSL patch collection 3 2006 (note 991258)
    C (0.079) MaxDB DBSL patch collection 2 2006 (note 984406)
    C
    C
    C Loading SQLDBC client runtime ...
    C SQLDBC SDK Version : SQLDBC.H 7.6.0 BUILD 007-123-091-175
    C SQLDBC Library Version : libSQLDBC 7.6.3 BUILD 009-123-163-622
    C SQLDBC client runtime is MaxDB 7.6.3.009 CL 163622
    C SQLDBC supports new DECIMAL interface : 0
    C SQLDBC supports VARIABLE INPUT data : 1
    C SQLDBC supports keepAlive indicator : 0
    C INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C Try to connect (DEFAULT) on connection 0 ...
    C Attach to SAP DB : Kernel 7.6.03 Build 009-123-163-622
    C Database release is SAP DB 7.6.03.009
    C INFO : Database 'ISM' instance is running on 'ides001'
    C INFO : SAP DB Packet_Size = 131072
    C INFO : SAP DB Min_Reply_Size = 4096
    C INFO : SAP DB Comm_Size = 126976
    C INFO : DBSL buffer size = 126976
    C INFO : SAP DB MaxLocks = 300000
    C INFO : Connect to DB as 'SAPISM'
    C Command info enabled
    C Now I'm connected to SAP DB
    C 00: ides001-ISM, since=20081128181203, ABAP= <unknown> (0)
    B Connection 0 opened (DBSL handle 0)
    B Wp Hdl ConName ConId ConState TX PRM RCT TIM MAX OPT Date Time DBHost
    B 000 000 R/3 000000000 ACTIVE NO YES NO 000 255 255 20081128 181203 ides001
    C INFO : SAP RELEASE (DB) = 700
    M db_connect o.k.
    M ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif
    I
    I Fri Nov 28 18:12:47 2008
    I MtxInit: 0 0 0
    M SHM_PRES_BUF (addr: 0000000014070050, size: 4400000)
    M SHM_ROLL_AREA (addr: 000007FFDDA80050, size: 268435456)
    M SHM_PAGING_AREA (addr: 00000000144B0050, size: 134217728)
    M SHM_ROLL_ADM (addr: 000000001C4C0050, size: 2678942)
    M SHM_PAGING_ADM (addr: 000000000FF10050, size: 525344)
    M ThCreateNoBuffer allocated 544152 bytes for 1000 entries at 000000001C750050
    M ThCreateNoBuffer index size: 3000 elems
    M ThCreateVBAdm allocated 12176 bytes (50 server) at 000000000FFA0050
    X EmInit: MmSetImplementation( 2 ).
    X MM global diagnostic options set: 0
    X <ES> client 0 initializing ....
    X Using implementation view
    X ES initialized.
    B db_con_shm_ini: WP_ID = 0, WP_CNT = 17, CON_ID = -1
    B dbtbxbuf: Buffer TABL (addr: 00000000207B0160, size: 30000000, end: 000000002244C4E0)
    B dbtbxbuf: Buffer TABLP (addr: 0000000022450160, size: 10240000, end: 0000000022E14160)
    B dbexpbuf: Buffer EIBUF (addr: 0000000022E20170, size: 4194304, end: 0000000023220170)
    B dbexpbuf: Buffer ESM (addr: 0000000023230170, size: 4194304, end: 0000000023630170)
    B dbexpbuf: Buffer CUA (addr: 0000000023640170, size: 3072000, end: 000000002392E170)
    B dbexpbuf: Buffer OTR (addr: 0000000023930170, size: 4194304, end: 0000000023D30170)
    M CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S *** init spool environment
    S initialize debug system
    T Stack direction is downwards.
    T debug control: prepare exclude for printer trace
    T new memory block 000000000FC9D040
    S spool kernel/ddic check: Ok
    S using table TSP02FX for frontend printing
    S 1 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 000000002D0500D0
    S doing lock recovery
    S setting server cache root
    S found spool memory service RSPO-SERVERCACHE at 000000002D050610
    S using messages for server info
    S size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S size of open spool request entry: 2272 bytes
    S immediate print option for implicitely closed spool requests is disabled
    A
    A Fri Nov 28 18:12:48 2008
    A
    A -PXA--
    A PXA INITIALIZATION
    A PXA: Locked PXA-Semaphore.
    A System page size: 4kb, total admin_size: 11460kb, dir_size: 11392kb.
    A Attached to PXA (address 000007FFEDAB0050, size 300000K)
    A abap/pxa = shared protect gen_remote
    A PXA INITIALIZATION FINISHED
    A -PXA--
    A
    A ABAP ShmAdm attached (addr=000007FF35EEE000 leng=20955136 end=000007FF372EA000)
    A >> Shm MMADM area (addr=000007FF363C7F10 leng=244096 end=000007FF36403890)
    A >> Shm MMDAT area (addr=000007FF36404000 leng=15622144 end=000007FF372EA000)
    A RFC Destination> destination ides001_ISM_00 host ides001 system ISM systnr 0 (ides001_ISM_00)
    A RFC Options> H=ides001,S=00,d=2,
    B table logging switched off for all clients
    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: 2
    A RFC rfc/delta_trc_level not set, use default value: 0
    A RFC rfc/no_uuid_check not set, use default value: 0
    A RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A RFC Method> initialize RemObjDriver for ABAP Objects
    M ThrCreateShObjects allocated 35354 bytes at 000000000FFC0050
    N SsfSapSecin: putenv(SECUDIR=D:\usr\sap\ISM\DVEBMGS00\sec): ok
    N
    N =================================================
    N === SSF INITIALIZATION:
    N ===...SSF Security Toolkit name SAPSECULIB .
    N ===...SSF trace level is 0 .
    N ===...SSF library is D:\usr\sap\ISM\DVEBMGS00\exe\sapsecu.dll .
    N ===...SSF hash algorithm is SHA1 .
    N ===...SSF symmetric encryption algorithm is DES-CBC .
    N ===...completed with return code 5.
    N =================================================
    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
    B dbtran INFO (init_connection '<DEFAULT>' ADABAS D:700.08):
    B max_blocking_factor = 10, max_in_blocking_factor = 127,
    B min_blocking_factor = 10, min_in_blocking_factor = 127,
    B prefer_union_all = 1, prefer_join = 0,
    B prefer_fix_blocking = 0, prefer_in_itab_opt = 1,
    B convert AVG = 0, alias table FUPD = 0,
    B escape_as_literal = 0, opt GE LE to BETWEEN = 0,
    B select * =0x0f, character encoding = STD / <none>:-,
    B use_hints = abap->1, dbif->0x1, upto->2147483647, rule_in->0,
    B rule_fae->0, concat_fae->0, concat_fae_or->0
    W
    W Fri Nov 28 18:12:49 2008
    W ITS Plugin: Path dw_gui
    W ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W ITS Plugin: sizeof(SAP_UC) 2
    W ITS Plugin: Release: 700, http://7000.0.144.20050900
    W ITS Plugin: Int.version, 33
    W ITS Plugin: Feature set: 16
    W ===... Calling itsp_Init in external dll ===>
    W === ipl_Init() returns 0, ITSPE_OK: OK
    W =================================================
    N VSI: WP init in ABAP VM completed with rc=0
    E Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume ides001_ISM_00
    E Replication is disabled
    E EnqCcInitialize: local lock table initialization o.k.
    E EnqId_SuppressIpc: local EnqId initialization o.k.
    E EnqCcInitialize: local enqueue client init o.k.
    A
    A Fri Nov 28 18:12:52 2008
    A GENER request remote generation: SAPMSSY2.
    A
    A Fri Nov 28 18:13:03 2008
    A GENER request remote generation: SAPLSTUP.
    A
    A Fri Nov 28 18:13:08 2008
    A GENER request remote generation: SAPLCNDP.
    A
    A Fri Nov 28 18:13:11 2008
    A GENER request remote generation: SAPLSCNT.
    A
    A Fri Nov 28 18:13:12 2008
    A GENER request remote generation: SAPSHDTV.
    A GENER request remote generation: SAPFGUICNTL.
    A
    A Fri Nov 28 18:13:13 2008
    A GENER request remote generation: SAPLOLEA.
    A
    A Fri Nov 28 18:13:14 2008
    A GENER request remote generation: SAPLSGUI.
    A
    A Fri Nov 28 18:13:15 2008
    A GENER request remote generation: SAPLSTTM.
    A GENER request remote generation: SAPLSBDC.
    A
    A Fri Nov 28 18:13:17 2008
    A GENER request remote generation: SAPLSFES.
    A
    A Fri Nov 28 18:13:18 2008
    A GENER request remote generation: SAPLURFC.
    A GENER request remote generation: SAPLSPLUGIN.
    A
    A Fri Nov 28 18:13:20 2008
    A GENER request remote generation: SAPLSMPI.
    A
    A Fri Nov 28 18:13:43 2008
    A GENER starting remote generation: SAPLSDNT (requested by W9).
    A GENER got lock for program SAPLSDNT.
    A
    A Fri Nov 28 18:13:45 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSUGS (requested by W9).
    A GENER got lock for program SAPLSUGS.
    A
    A Fri Nov 28 18:13:46 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSDTB (requested by W9).
    A GENER got lock for program SAPLSDTB.
    A
    A Fri Nov 28 18:13:48 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSDSG (requested by W9).
    A GENER got lock for program SAPLSDSG.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RADBTDDO (requested by W9).
    A GENER got lock for program RADBTDDO.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RADBTDDF (requested by W9).
    A GENER got lock for program RADBTDDF.
    A
    A Fri Nov 28 18:13:49 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSALI (requested by W2).
    A GENER got lock for program SAPLSALI.
    A
    A Fri Nov 28 18:13:50 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSALC (requested by W2).
    A GENER got lock for program SAPLSALC.
    A
    A Fri Nov 28 18:13:54 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSCSMROUTE (requested by W2).
    A GENER got lock for program SAPLSCSMROUTE.
    A
    A Fri Nov 28 18:13:55 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSALS (requested by W2).
    A GENER got lock for program SAPLSALS.
    A
    A Fri Nov 28 18:13:56 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSCSM_UTILITIES (requested by W2).
    A GENER got lock for program SAPLSCSM_UTILITIES.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLMSGSERVER (requested by W2).
    A GENER got lock for program SAPLMSGSERVER.
    A
    A Fri Nov 28 18:13:57 2008
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:13:58 2008
    A GENER starting remote generation: SAPMSSY8 (requested by W2).
    A GENER got lock for program SAPMSSY8.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSBTCRTE (requested by W12).
    A GENER got lock for program RSBTCRTE.
    A
    A Fri Nov 28 18:13:59 2008
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:14:01 2008
    A GENER starting remote generation: SAPLSALU (requested by W2).
    A GENER got lock for program SAPLSALU.
    A
    A Fri Nov 28 18:14:06 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSPOC (requested by W12).
    A GENER got lock for program SAPLSPOC.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:14:07 2008
    A GENER starting remote generation: SAPDBD$S (requested by W12).
    A GENER got lock for program SAPDBD$S.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSABE (requested by W12).
    A GENER got lock for program SAPLSABE.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSAMON40 (requested by W12).
    A GENER got lock for program RSAMON40.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPMS07A (requested by W12).
    A GENER got lock for program SAPMS07A.
    A
    A Fri Nov 28 18:14:08 2008
    A GENER Performing COMMIT.
    A GENER request remote generation: SAPLSTUN.
    M
    M Fri Nov 28 18:14:09 2008
    M SecAudit(RsauShmInit): WP attached to existing shared memory.
    M SecAudit(RsauShmInit): addr of SCSA........... = 000000000A9B0050
    M SecAudit(RsauShmInit): addr of RSAUSHM........ = 000000000A9B07C0
    M SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 000000000A9B0800
    M SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 000000000A9B080C
    A
    A Fri Nov 28 18:14:10 2008
    A GENER starting remote generation: CL_SBTI_CRITERIA_TYPE=========CP (requested by W5).
    A GENER got lock for program CL_SBTI_CRITERIA_TYPE=========CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: IF_SBTI_CRITERIA_TYPE=========IP (requested by W5).
    A GENER got lock for program IF_SBTI_CRITERIA_TYPE=========IP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CX_SBTI_CRITTYPE_EX===========CP (requested by W5).
    A GENER got lock for program CX_SBTI_CRITTYPE_EX===========CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CX_SBTI_EXCEPTION=============CP (requested by W5).
    A GENER got lock for program CX_SBTI_EXCEPTION=============CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: IF_T100_MESSAGE===============IP (requested by W5).
    A GENER got lock for program IF_T100_MESSAGE===============IP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_MESSAGE_HELPER=============CP (requested by W5).
    A GENER got lock for program CL_MESSAGE_HELPER=============CP.
    A
    A Fri Nov 28 18:14:11 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CX_SY_MESSAGE_ILLEGAL_TEXT====CP (requested by W5).
    A GENER got lock for program CX_SY_MESSAGE_ILLEGAL_TEXT====CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CX_DYNAMIC_CHECK==============CP (requested by W5).
    A GENER got lock for program CX_DYNAMIC_CHECK==============CP.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:14:13 2008
    A GENER starting remote generation: SAPLSEU_COMPONENT (requested by W12).
    A GENER got lock for program SAPLSEU_COMPONENT.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSF09 (requested by W12).
    A GENER got lock for program SAPLSF09.
    A
    A Fri Nov 28 18:14:16 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSF06 (requested by W12).
    A GENER got lock for program SAPLSF06.
    A
    A Fri Nov 28 18:14:18 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSF05 (requested by W12).
    A GENER got lock for program SAPLSF05.
    A
    A Fri Nov 28 18:14:20 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI1 (requested by W12).
    A GENER got lock for program SAPLSHI1.
    A
    A Fri Nov 28 18:14:21 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSEUF (requested by W12).
    A GENER got lock for program SAPLSEUF.
    A
    A Fri Nov 28 18:14:23 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI2 (requested by W12).
    A GENER got lock for program SAPLSHI2.
    A
    A Fri Nov 28 18:14:24 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI5 (requested by W12).
    A GENER got lock for program SAPLSHI5.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI3 (requested by W12).
    A GENER got lock for program SAPLSHI3.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSFTX (requested by W12).
    A GENER got lock for program SAPLSFTX.
    A
    A Fri Nov 28 18:14:26 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI9 (requested by W12).
    A GENER got lock for program SAPLSHI9.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI6 (requested by W12).
    A GENER got lock for program SAPLSHI6.
    A
    A Fri Nov 28 18:14:28 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI20 (requested by W12).
    A GENER got lock for program SAPLSHI20.
    A
    A Fri Nov 28 18:14:29 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CONTEXT_X_TR_SYS_PARAMS (requested by W12).
    A GENER got lock for program CONTEXT_X_TR_SYS_PARAMS.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSCTS_SYSTEM_CONTEXT (requested by W12).
    A GENER got lock for program SAPLSCTS_SYSTEM_CONTEXT.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSTRD (requested by W12).
    A GENER got lock for program SAPLSTRD.
    A
    A Fri Nov 28 18:14:34 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSCP3 (requested by W12).
    A GENER got lock for program SAPLSCP3.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSCTS_UNICODE (requested by W12).
    A GENER got lock for program SAPLSCTS_UNICODE.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSTMG (requested by W12).
    A GENER got lock for program SAPLSTMG.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSTR4 (requested by W12).
    A GENER got lock for program SAPLSTR4.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSG01 (requested by W12).
    A GENER got lock for program SAPLSG01.
    A
    A Fri Nov 28 18:14:35 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI12 (requested by W12).
    A GENER got lock for program SAPLSHI12.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSHI10 (requested by W12).
    A GENER got lock for program SAPLSHI10.
    A
    A Fri Nov 28 18:14:36 2008
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:14:37 2008
    A GENER starting remote generation: SAPLSHI25 (requested by W12).
    A GENER got lock for program SAPLSHI25.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSF28 (requested by W12).
    A GENER got lock for program SAPLSF28.
    A
    A Fri Nov 28 18:14:38 2008
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:14:39 2008
    A GENER starting remote generation: SAPLSFW_COMMON (requested by W12).
    A GENER got lock for program SAPLSFW_COMMON.
    A
    A Fri Nov 28 18:14:40 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_ABAP_SWITCH================CP (requested by W12).
    A GENER got lock for program CL_ABAP_SWITCH================CP.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:14:43 2008
    A GENER starting remote generation: SAPLSF07 (requested by W12).
    A GENER got lock for program SAPLSF07.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSEUT (requested by W12).
    A GENER got lock for program SAPLSEUT.
    A
    A Fri Nov 28 18:14:44 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: %_CSTREE (requested by W12).
    A GENER got lock for program %_CSTREE.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:14:45 2008
    A GENER starting remote generation: RSDBPREV (requested by W12).
    A GENER got lock for program RSDBPREV.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSDB6HIS (requested by W12).
    A GENER got lock for program SAPLSDB6HIS.
    A
    A Fri Nov 28 18:15:19 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_DB6_RC=====================CP (requested by W12).
    A GENER got lock for program CL_DB6_RC=====================CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_DBA_CONFIG=================CP (requested by W12).
    A GENER got lock for program CL_DBA_CONFIG=================CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_DB6_CONFIG=================CP (requested by W12).
    A GENER got lock for program CL_DB6_CONFIG=================CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSVAR_API (requested by W12).
    A GENER got lock for program SAPLSVAR_API.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:15:20 2008
    A GENER starting remote generation: RSDB6COLL (requested by W12).
    A GENER got lock for program RSDB6COLL.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSDBSPJS (requested by W12).
    A GENER got lock for program RSDBSPJS.
    A
    A Fri Nov 28 18:15:21 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_ABAP_LIST_UTILITIES========CP (requested by W12).
    A GENER got lock for program CL_ABAP_LIST_UTILITIES========CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSUSM (requested by W12).
    A GENER got lock for program SAPLSUSM.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSYGU (requested by W12).
    A GENER got lock for program SAPLSYGU.
    A GENER Performing COMMIT.
    A GENER starting remote generation: /1BCDWBEN/SAPLSENQ12 (requested by W12).
    A GENER got lock for program /1BCDWBEN/SAPLSENQ12.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSDBA_TCOLL (requested by W12).
    A GENER got lock for program SAPLSDBA_TCOLL.
    A
    A Fri Nov 28 18:15:24 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSDB6XDB (requested by W12).
    A GENER got lock for program SAPLSDB6XDB.
    A
    A Fri Nov 28 18:15:26 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_DB6_BACKEND================CP (requested by W12).
    A GENER got lock for program CL_DB6_BACKEND================CP.
    A
    A Fri Nov 28 18:15:27 2008
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:15:28 2008
    A GENER starting remote generation: CL_DB6_SYS====================CP (requested by W12).
    A GENER got lock for program CL_DB6_SYS====================CP.
    A
    A Fri Nov 28 18:15:29 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_SQL_METADATA===============CP (requested by W12).
    A GENER got lock for program CL_SQL_METADATA===============CP.
    A
    A Fri Nov 28 18:15:30 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSDBSPDS (requested by W13).
    A GENER got lock for program RSDBSPDS.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:15:31 2008
    A GENER starting remote generation: CL_DBA_DBCON==================CP (requested by W13).
    A GENER got lock for program CL_DBA_DBCON==================CP.
    A GENER was already generated: CL_DBA_DBCON==================CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_DB6_CON====================CP (requested by W12).
    A GENER got lock for program CL_DB6_CON====================CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_DB6_DBCON==================CP (requested by W12).
    A GENER got lock for program CL_DB6_DBCON==================CP.
    A
    A Fri Nov 28 18:15:32 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CX_DB6_CON====================CP (requested by W12).
    A GENER got lock for program CX_DB6_CON====================CP.
    A
    A Fri Nov 28 18:15:33 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CX_DB6_ROOT===================CP (requested by W12).
    A GENER got lock for program CX_DB6_ROOT===================CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CX_DBA_ROOT===================CP (requested by W12).
    A GENER got lock for program CX_DBA_ROOT===================CP.
    A
    A Fri Nov 28 18:15:34 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CX_DB6_SYS====================CP (requested by W12).
    A GENER got lock for program CX_DB6_SYS====================CP.
    A
    A Fri Nov 28 18:15:35 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSDB6IMAGE (requested by W12).
    A GENER got lock for program RSDB6IMAGE.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:15:36 2008
    A GENER starting remote generation: CL_DB6_TREE_NAVIGATOR=========CP (requested by W12).
    A GENER got lock for program CL_DB6_TREE_NAVIGATOR=========CP.
    A
    A Fri Nov 28 18:15:38 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_DB6_EVENT_RECEIVER_BASE====CP (requested by W12).
    A GENER got lock for program CL_DB6_EVENT_RECEIVER_BASE====CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSDB_HRLY (requested by W12).
    A GENER got lock for program RSDB_HRLY.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSDB2_RUN_HOURLY_REMOTE (requested by W12).
    A GENER got lock for program RSDB2_RUN_HOURLY_REMOTE.
    A
    A Fri Nov 28 18:15:39 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSTU3_ADMIN (requested by W12).
    A GENER got lock for program SAPLSTU3_ADMIN.
    A
    A Fri Nov 28 18:15:42 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_DB2_CONNECTION_POOL========CP (requested by W12).
    A GENER got lock for program CL_DB2_CONNECTION_POOL========CP.
    A
    A Fri Nov 28 18:15:43 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLS390 (requested by W12).
    A GENER got lock for program SAPLS390.
    A
    A Fri Nov 28 18:15:46 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSTU3 (requested by W12).
    A GENER got lock for program SAPLSTU3.
    A
    A Fri Nov 28 18:15:51 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLDBSYCHK_DB2 (requested by W12).
    A GENER got lock for program SAPLDBSYCHK_DB2.
    A
    A Fri Nov 28 18:15:52 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSDBI_DBINFO (requested by W12).
    A GENER got lock for program SAPLSDBI_DBINFO.
    A
    A Fri Nov 28 18:15:53 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSHOSTDB (requested by W12).
    A GENER got lock for program RSHOSTDB.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSHOST1M (requested by W12).
    A GENER got lock for program RSHOST1M.
    A
    A Fri Nov 28 18:15:54 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSTUJ (requested by W12).
    A GENER got lock for program SAPLSTUJ.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSMON (requested by W12).
    A GENER got lock for program SAPLSMON.
    A
    A Fri Nov 28 18:15:55 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSHOST2M (requested by W12).
    A GENER got lock for program RSHOST2M.
    A
    A Fri Nov 28 18:15:56 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSHOSTDC (requested by W12).
    A GENER got lock for program RSHOSTDC.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSHOST3M (requested by W12).
    A GENER got lock for program RSHOST3M.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSHOST4M (requested by W12).
    A GENER got lock for program RSHOST4M.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSICFDLT (requested by W12).
    A GENER got lock for program RSICFDLT.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLHTTPTREE (requested by W12).
    A GENER got lock for program SAPLHTTPTREE.
    A
    A Fri Nov 28 18:15:57 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLTHFB2 (requested by W12).
    A GENER got lock for program SAPLTHFB2.
    A
    A Fri Nov 28 18:15:58 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSICFRECORDER (requested by W12).
    A GENER got lock for program SAPLSICFRECORDER.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:15:59 2008
    A GENER starting remote generation: CL_ABAP_TSTMP=================CP (requested by W12).
    A GENER got lock for program CL_ABAP_TSTMP=================CP.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSICFDMN (requested by W12).
    A GENER got lock for program RSICFDMN.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSICFJOB (requested by W12).
    A GENER got lock for program RSICFJOB.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSORACOL (requested by W12).
    A GENER got lock for program RSORACOL.
    A
    A Fri Nov 28 18:16:00 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSORAVSH (requested by W12).
    A GENER got lock for program RSORAVSH.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSRFCDMN (requested by W12).
    A GENER got lock for program RSRFCDMN.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLRFCA (requested by W12).
    A GENER got lock for program SAPLRFCA.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSSTAT61 (requested by W12).
    A GENER got lock for program RSSTAT61.
    A GENER Performing COMMIT.
    A GENER starting remote generation: CL_SWNC_LOG===================CP (requested by W12).
    A GENER got lock for program CL_SWNC_LOG===================CP.
    A
    A Fri Nov 28 18:16:01 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSBAL (requested by W12).
    A GENER got lock for program SAPLSBAL.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSBAL_SERVICE (requested by W12).
    A GENER got lock for program SAPLSBAL_SERVICE.
    A
    A Fri Nov 28 18:16:02 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSTUW (requested by W12).
    A GENER got lock for program SAPLSTUW.
    A
    A Fri Nov 28 18:16:04 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLRHFE (requested by W12).
    A GENER got lock for program SAPLRHFE.
    A GENER Performing COMMIT.
    A GENER starting remote generation: /SDF/SAPLSMD_E2E_TRACE (requested by W12).
    A GENER got lock for program /SDF/SAPLSMD_E2E_TRACE.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSETRM (requested by W12).
    A GENER got lock for program SAPLSETRM.
    A
    A Fri Nov 28 18:16:05 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: /1BCDWBEN/SAPLSEN0004 (requested by W12).
    A GENER got lock for program /1BCDWBEN/SAPLSEN0004.
    A
    A Fri Nov 28 18:16:06 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSAPWL_PARM (requested by W12).
    A GENER got lock for program SAPLSAPWL_PARM.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSBAL_DB (requested by W12).
    A GENER got lock for program SAPLSBAL_DB.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSBAL_TOOLBOX (requested by W12).
    A GENER got lock for program SAPLSBAL_TOOLBOX.
    A GENER Performing COMMIT.
    A GENER starting remote generation: SAPLSBAL_DB_INTERNAL (requested by W12).
    A GENER got lock for program SAPLSBAL_DB_INTERNAL.
    A
    A Fri Nov 28 18:16:07 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSSTATPH (requested by W12).
    A GENER got lock for program RSSTATPH.
    A GENER Performing COMMIT.
    A GENER starting remote generation: RSORA110 (requested by W12).
    A GENER got lock for program RSORA110.
    A
    A Fri Nov 28 18:16:09 2008
    A GENER Performing COMMIT.
    A GENER starting remote generation: SWNCCOLL (requested by W12).
    A GENER got lock for program SWNCCOLL.
    A GENER Performing COMMIT.
    A
    A Fri Nov 28 18:16:10 2008
    A GENER starting remote generation: SAPLLRFC (requested by W12).
    A GENER got lock for program SAPLLRFC.
    A GENER Performing COMMIT.
    A GENER request remote generation: SAPLSCSM_COLLECTOR.
    A
    A Fri Nov 28 18:16:11 2008
    A GENER request remote generation: CL_SWNC_COLLECTOR=============CP.
    A GENER request remote generation: CL_SWNC_COLLECTOR_RUNTIME=====CP.
    A
    A Fri Nov 28 18:16:12 2008
    A GENER request remote generation: SAPLTIMEEXT.
    A GENER request remote generation: CL_SWNC_READER_WLOAD==========CP.
    A GENER request remote generation: CL_SWNC_INDEX_CONTROL_INTERVALCP.
    A
    A Fri Nov 28 18:16:13 2008
    A GENER request remote generation: CL_SWNC_INDEX_CONTROL=========CP.
    A GENER request remote generation: CL_SWNC_PERFORMANCE_CONTROL===CP.
    A GENER request remote generation: CL_SWNC_PERFORMANCE_INDICATOR=CP.
    A GENER request remote generation: CL_SWNC_MESSAGE_CONTROL=======CP.
    A GENER request remote generation: CL_SWNC_CONTROL_LOG===========CP.
    A GENER request remote generation: CL_SWNC_CONTROL_MONITORING====CP.
    A GENER request remote generation: IF_EX_WORKLOAD_STATISTIC======IP.
    A GENER request remote generation: CL_EX_WORKLOAD_STATISTIC======CP.
    A GENER request remote generation: IF_SWNC_MESSAGE_LISTENER======IP.
    A GENER request remote generation: /1BCDWBEN/SAPLSEN0014.
    A
    A Fri Nov 28 18:16:14 2008
    A GENER request remote generation: CL_SWNC_COLLECTOR_FACTORY=====CP.
    A
    A Fri Nov 28 18:16:15 2008
    A GENER request remote generation: CL_SWNC_COLLECTOR_INFO========CP.
    A GENER request remote generation: CL_SWNC_COLLECTOR_DB==========CP.
    A GENER request remote generation: CL_SWNC_AGG_BUFFER_STAT=======CP.
    A GENER request remote generation: CL_SWNC_TOTAL_COLLECTOR=======CP.
    A GENER request remote generation: CL_SWNC_AGG_COLLEAGUE=========CP.
    A GENER request remote generation: CL_SWNC_AGG_ASTAT=============CP.
    A GENER request remote generation: CL_SWNC_AGG_AS_HITLIST_DBCNT==CP.
    A
    A Fri Nov 28 18:16:16 2008
    A GENER request remote generation: CL_SWNC_AGG_AS_HITLIST========CP.
    A GENER request remote generation: CL_SWNC_AGG_AS_HITLIST_RESPTI=CP.
    A GENER request remote generation: CL_SWNC_AGG_COMPHIER==========CP.
    A GENER request remote generation: CL_SWNC_AGG_ORGUNIT===========CP.
    A GENER request remote generation: CL_SWNC_AGG_WEB_CLIENT========CP.
    A GENER request remote generation: CL_SWNC_AGG_WEB===============CP.
    A GENER request remote generation: CL_SWNC_AGG_WEB_CLIENT_DEST===CP.
    A GENER request remote generation: CL_SWNC_AGG_WEB_DEST==========CP.
    A GENER request remote generation: CL_SWNC_AGG_WEB_SERVER========CP.
    A GENER request remote generation: CL_SWNC_AGG_WEB_SERVER_DEST===CP.
    A GENER request remote generation: CL_SWNC_AGG_VMC===============CP.
    A GENER request remote generation: CL_SWNC_AGG_TASK_TYPE=========CP.
    A GENER request remote generation: CL_SWNC_AGG_TASKTIMES=========CP.
    A GENER request remote generation: CL_SWNC_AGG_TIMES=============CP.
    A
    A Fri Nov 28 18:16:17 2008
    A GENER request remote generation: CL_SWNC_AGG_DBPROCS===========CP.
    A GENER request remote generation: CL_SWNC_AGG_EXTSYSTEM=========CP.
    A GENER request remote generation: CL_SWNC_AGG_TCDET=============CP.
    A GENER request remote generation: CL_SWNC_AGG_FRONTEND==========CP.
    A GENER request remote generation: CL_SWNC_AGG_MEMORY============CP.
    A GENER request remote generation: CL_SWNC_AGG_SPOOLACT==========CP.
    A GENER request remote generation: CL_SWNC_AGG_TABLEREC==========CP.
    A GENER request remote generation: CL_SWNC_AGG_USERTCODE=========CP.
    A GENER request remote generation: CL_SWNC_AGG_USERWORKLOAD======CP.
    A GENER request remote generation: CL_SWNC_AGG_RFCCLIENT=========CP.
    A GENER request remote generation: CL_SWNC_AGG_RFCCLIENT_DEST====CP.
    A GENER request remote generation: CL_SWNC_AGG_RFCSERVER=========CP.
    A GENER request remote generation: CL_SWNC_AGG_RFCSERVER_DEST====CP.
    A
    A Fri Nov 28 18:16:18 2008
    A GENER request remote generation: CL_SWNC_AGG_HITLIST_DBCNT=====CP.
    A GENER request remote generation: CL_SWNC_AGG_HITLIST===========CP.
    A GENER request remote generation: CL_SWNC_AGG_HITLIST_RESPTIME==CP.
    A GENER request remote generation: CL_SWNC_AGG_SPOOL=============CP.
    A GENER request remote generation: CL_SWNC_AGG_DBCON=============CP.
    A GENER request remote generation: SAPLASTAT_TRIG.
    A GENER request remote generation: CL_SWNC_FILTER_MAXTIME========CP.
    A GENER request remote generation: CL_SWNC_FILTER================CP.
    A GENER request remote generation: CL_SWNC_STATREC_SET_AGG=======CP.
    A GENER request remote generation: CL_SWNC_STATREC_SET===========CP.
    A GENER request remote generation: CL_SWNC_CONSTANTS=============CP.
    A GENER request remote generation: SAPLPFFB.
    A
    A Fri Nov 28 18:16:19 2008
    A GENER request remote generation: CL_SWNC_RECORD_WLOAD==========CP.
    A GENER request remote generation: CL_SWNC_RECORD================CP.
    A GENER request remote generation: CL_SWNC_PF_MAINREC_ADAPTER====CP.
    A GENER request remote generation: CL_SWNC_PF_DB_ADAPTER=========CP.
    A GENER request remote generation: CX_SWNC_NOT_IN_INTERVAL=======CP.
    A GENER request remote generation: CX_SWNC_NO_MORE_INTERVALS=====CP.
    A GENER request remote generation: CL_SWNC_READER_ASTAT==========CP.
    A GENER request remote generation: CX_SWNC_EOF===================CP.
    A
    A Fri Nov 28 18:17:00 2008
    A GENER request remote generation: SAPLSADH.
    A GENER request remote generation: SAPLSDBI_DBCON.
    A
    A Fri Nov 28 18:17:01 2008
    A GENER request remote generation: RSSDBREG.
    A
    A Fri Nov 28 18:17:02 2008
    A GENER request remote generation: SAPLCRFC.
    A
    A Fri Nov 28 18:17:03 2008
    A GENER request remote generation: /1BCDWBEN/SAPLSEN0001.
    A
    A Fri Nov 28 18:17:04 2008
    A GENER request remote generation: SAPLSPFL.
    A
    A Fri Nov 28 18:17:05 2008
    A GENER request remote generation: %_CPFLTY.
    A GENER request remote generation: SAPLSYUT.
    A GENER request remote generation: SAPLSECSTORE.
    A
    A Fri Nov 28 18:17:07 2008
    A GENER request remote generation: RADDOCHL.
    A
    A Fri Nov 28 18:17:09 2008
    A GENER request remote generation: SAPLSUSO.
    A GENER request remote generation: /1BCDWBEN/SAPLSEN0005.
    A *** ERROR => Syntax error in program /1BCDWBEN/SAPLSEN0005 http://abgen.c 1517
    A *** ERROR => > Include /1BCDWBEN/LSEN0005$56 line 7 http://abgen.c 1519
    A *** ERROR => > Unable to interpret "PMPORTING". Possible causes of error: Incorrect spelling or http://abgen.c 1521
    A *** ERROR => > comma error. http://abgen.c 1523
    A TH VERBOSE LEVEL FULL
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A ** RABAX: level LEV_RX_ROLLBACK entered.
    A ** RABAX: level LEV_RX_ROLLBACK completed.
    A ** RABAX: level LEV_RX_DB_ALIVE entered.
    A ** RABAX: level LEV_RX_DB_ALIVE completed.
    A ** RABAX: level LEV_RX_HOOKS entered.
    A ** RABAX: level LEV_RX_HOOKS completed.
    A ** RABAX: level LEV_RX_STANDARD entered.
    A ** RABAX: level LEV_RX_STANDARD completed.
    A ** RABAX: level LEV_RX_STOR_VALUES entered.
    A ** RABAX: level LEV_RX_STOR_VALUES completed.
    A ** RABAX: level LEV_RX_C_STACK entered.
    A
    A Fri Nov 28 18:17:10 2008
    A ** RABAX: level LEV_RX_C_STACK completed.
    A ** RABAX: level LEV_RX_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_INTERFACES entered.
    A ** RABAX: level LEV_RX_INTERFACES completed.
    A ** RABAX: level LEV_RX_GET_MESS entered.
    A ** RABAX: level LEV_RX_GET_MESS completed.
    A ** RABAX: level LEV_RX_INIT_SNAP entered.
    A ** RABAX: level LEV_RX_INIT_SNAP completed.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG entered.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG completed.
    A ** RABAX: level LEV_RX_WRITE_SNAP entered.
    A ** RABAX: level LEV_SN_END completed.
    A ** RABAX: level LEV_RX_SET_ALERT entered.
    A ** RABAX: level LEV_RX_SET_ALERT completed.
    A ** RABAX: level LEV_RX_COMMIT entered.
    A ** RABAX: level LEV_RX_COMMIT completed.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG entered.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG completed.
    A ** RABAX: level LEV_RX_RESET_PROGS entered.
    A ** RABAX: level LEV_RX_RESET_PROGS completed.
    A ** RABAX: level LEV_RX_STDERR entered.
    A Fri Nov 28 18:17:10 2008
    A
    A ABAP Program SAPLSUSO .
    A Source LSUSOU02 Line 169.
    A Error Code SYNTAX_ERROR.
    A Module $Id: //bas/700_REL/src/krn/runt/abgen.c#10 $ SAP.
    A Function ab_genprog Line 1551.
    A ** RABAX: level LEV_RX_STDERR completed.
    A ** RABAX: level LEV_RX_RFC_ERROR entered.
    A ** RABAX: level LEV_RX_RFC_ERROR completed.
    A ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A ** RABAX: level LEV_RX_IMC_ERROR entered.
    A ** RABAX: level LEV_RX_IMC_ERROR completed.
    A ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A ** RABAX: level LEV_RX_END entered.
    A ** RABAX: level LEV_RX_END completed.
    A ** RABAX: end RX_RFC
    A
    A Fri Nov 28 18:17:21 2008
    A GENER request remote generation: SAPLSALR.
    A GENER request remote generation: %_CCCMSM.
    A GENER request remote generation: /1BCDWBEN/SAPLSEN0005.
    A
    A Fri Nov 28 18:17:22 2008
    A *** ERROR => Syntax error in program /1BCDWBEN/SAPLSEN0005 http://abgen.c 1517
    A *** ERROR => > Include /1BCDWBEN/LSEN0005$56 line 7 http://abgen.c 1519
    A *** ERROR => > Unable to interpret "PMPORTING". Possible causes of error: Incorrect spelling or http://abgen.c 1521
    A *** ERROR => > comma error. http://abgen.c 1523
    A TH VERBOSE LEVEL FULL
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A ** RABAX: level LEV_RX_ROLLBACK entered.
    A ** RABAX: level LEV_RX_ROLLBACK completed.
    A ** RABAX: level LEV_RX_DB_ALIVE entered.
    A ** RABAX: level LEV_RX_DB_ALIVE completed.
    A ** RABAX: level LEV_RX_HOOKS entered.
    A ** RABAX: level LEV_RX_HOOKS completed.
    A ** RABAX: level LEV_RX_STANDARD entered.
    A ** RABAX: level LEV_RX_STANDARD completed.
    A ** RABAX: level LEV_RX_STOR_VALUES entered.
    A ** RABAX: level LEV_RX_STOR_VALUES completed.
    A ** RABAX: level LEV_RX_C_STACK entered.
    A ** RABAX: level LEV_RX_C_STACK completed.
    A ** RABAX: level LEV_RX_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_INTERFACES entered.
    A ** RABAX: level LEV_RX_INTERFACES completed.
    A ** RABAX: level LEV_RX_GET_MESS entered.
    A ** RABAX: level LEV_RX_GET_MESS completed.
    A ** RABAX: level LEV_RX_INIT_SNAP entered.
    A ** RABAX: level LEV_RX_INIT_SNAP completed.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG entered.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG completed.
    A ** RABAX: level LEV_RX_WRITE_SNAP entered.
    A ** RABAX: level LEV_SN_END completed.
    A ** RABAX: level LEV_RX_SET_ALERT entered.
    A ** RABAX: level LEV_RX_SET_ALERT completed.
    A ** RABAX: level LEV_RX_COMMIT entered.
    A ** RABAX: level LEV_RX_COMMIT completed.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG entered.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG completed.
    A ** RABAX: level LEV_RX_RESET_PROGS entered.
    A ** RABAX: level LEV_RX_RESET_PROGS completed.
    A ** RABAX: level LEV_RX_STDERR entered.
    A Fri Nov 28 18:17:22 2008
    A
    A ABAP Program SAPLSALT .
    A Source LSALTU03 Line 192.
    A Error Code SYNTAX_ERROR.
    A Module $Id: //bas/700_REL/src/krn/runt/abgen.c#10 $ SAP.
    A Function ab_genprog Line 1551.
    A ** RABAX: level LEV_RX_STDERR completed.
    A ** RABAX: level LEV_RX_RFC_ERROR entered.
    A ** RABAX: level LEV_RX_RFC_ERROR completed.
    A ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A ** RABAX: level LEV_RX_IMC_ERROR entered.
    A ** RABAX: level LEV_RX_IMC_ERROR completed.
    A ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A ** RABAX: level LEV_RX_END entered.
    A ** RABAX: level LEV_RX_END completed.
    A ** RABAX: end no http/smtp
    A ** RABAX: end RX_BTCHLOG|RX_VBLOG
    A Syntax error in program /1BCDWBEN/SAPLSEN0005 ..
    A
    A
    A Fri Nov 28 18:22:21 2008
    A GENER request remote generation: /1BCDWBEN/SAPLSEN0005.
    A *** ERROR => Syntax error in program /1BCDWBEN/SAPLSEN0005 http://abgen.c 1517
    A *** ERROR => > Include /1BCDWBEN/LSEN0005$56 line 7 http://abgen.c 1519
    A *** ERROR => > Unable to interpret "PMPORTING". Possible causes of error: Incorrect spelling or http://abgen.c 1521
    A *** ERROR => > comma error. http://abgen.c 1523
    A TH VERBOSE LEVEL FULL
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A ** RABAX: level LEV_RX_ROLLBACK entered.
    A ** RABAX: level LEV_RX_ROLLBACK completed.
    A ** RABAX: level LEV_RX_DB_ALIVE entered.
    A ** RABAX: level LEV_RX_DB_ALIVE completed.
    A ** RABAX: level LEV_RX_HOOKS entered.
    A ** RABAX: level LEV_RX_HOOKS completed.
    A ** RABAX: level LEV_RX_STANDARD entered.
    A ** RABAX: level LEV_RX_STANDARD completed.
    A ** RABAX: level LEV_RX_STOR_VALUES entered.
    A ** RABAX: level LEV_RX_STOR_VALUES completed.
    A ** RABAX: level LEV_RX_C_STACK entered.
    A ** RABAX: level LEV_RX_C_STACK completed.
    A ** RABAX: level LEV_RX_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_INTERFACES entered.
    A ** RABAX: level LEV_RX_INTERFACES completed.
    A ** RABAX: level LEV_RX_GET_MESS entered.
    A ** RABAX: level LEV_RX_GET_MESS completed.
    A ** RABAX: level LEV_RX_INIT_SNAP entered.
    A ** RABAX: level LEV_RX_INIT_SNAP completed.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG entered.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG completed.
    A ** RABAX: level LEV_RX_WRITE_SNAP entered.
    A ** RABAX: level LEV_SN_END completed.
    A ** RABAX: level LEV_RX_SET_ALERT entered.
    A ** RABAX: level LEV_RX_SET_ALERT completed.
    A ** RABAX: level LEV_RX_COMMIT entered.
    A ** RABAX: level LEV_RX_COMMIT completed.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG entered.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG completed.
    A ** RABAX: level LEV_RX_RESET_PROGS entered.
    A ** RABAX: level LEV_RX_RESET_PROGS completed.
    A ** RABAX: level LEV_RX_STDERR entered.
    A Fri Nov 28 18:22:21 2008
    A
    A ABAP Program SAPLSALT .
    A Source LSALTU03 Line 192.
    A Error Code SYNTAX_ERROR.
    A Module $Id: //bas/700_REL/src/krn/runt/abgen.c#10 $ SAP.
    A Function ab_genprog Line 1551.
    A ** RABAX: level LEV_RX_STDERR completed.
    A ** RABAX: level LEV_RX_RFC_ERROR entered.
    A ** RABAX: level LEV_RX_RFC_ERROR completed.
    A ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A ** RABAX: level LEV_RX_IMC_ERROR entered.
    A ** RABAX: level LEV_RX_IMC_ERROR completed.
    A ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A ** RABAX: level LEV_RX_END entered.
    A ** RABAX: level LEV_RX_END completed.
    A ** RABAX: end no http/smtp
    A ** RABAX: end RX_BTCHLOG|RX_VBLOG
    A Syntax error in program /1BCDWBEN/SAPLSEN0005 ..
    A
    A
    A Fri Nov 28 18:22:33 2008
    A GENER request remote generation: /1BCDWBEN/SAPLSEN0005.
    A
    A Fri Nov 28 18:22:34 2008
    A *** ERROR => Syntax error in program /1BCDWBEN/SAPLSEN0005 http://abgen.c 1517
    A *** ERROR => > Include /1BCDWBEN/LSEN0005$56 line 7 http://abgen.c 1519
    A *** ERROR => > Unable to interpret "PMPORTING". Possible causes of error: Incorrect spelling or http://abgen.c 1521
    A *** ERROR => > comma error. http://abgen.c 1523
    A TH VERBOSE LEVEL FULL
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_MTX completed.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER entered.
    A ** RABAX: level LEV_RX_COVERAGE_ANALYSER completed.
    A ** RABAX: level LEV_RX_ROLLBACK entered.
    A ** RABAX: level LEV_RX_ROLLBACK completed.
    A ** RABAX: level LEV_RX_DB_ALIVE entered.
    A ** RABAX: level LEV_RX_DB_ALIVE completed.
    A ** RABAX: level LEV_RX_HOOKS entered.
    A ** RABAX: level LEV_RX_HOOKS completed.
    A ** RABAX: level LEV_RX_STANDARD entered.
    A ** RABAX: level LEV_RX_STANDARD completed.
    A ** RABAX: level LEV_RX_STOR_VALUES entered.
    A ** RABAX: level LEV_RX_STOR_VALUES completed.
    A ** RABAX: level LEV_RX_C_STACK entered.
    A ** RABAX: level LEV_RX_C_STACK completed.
    A ** RABAX: level LEV_RX_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK entered.
    A ** RABAX: level LEV_RX_AFTER_MEMO_CHECK completed.
    A ** RABAX: level LEV_RX_INTERFACES entered.
    A ** RABAX: level LEV_RX_INTERFACES completed.
    A ** RABAX: level LEV_RX_GET_MESS entered.
    A ** RABAX: level LEV_RX_GET_MESS completed.
    A ** RABAX: level LEV_RX_INIT_SNAP entered.
    A ** RABAX: level LEV_RX_INIT_SNAP completed.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG entered.
    A ** RABAX: level LEV_RX_WRITE_SYSLOG completed.
    A ** RABAX: level LEV_RX_WRITE_SNAP entered.
    A ** RABAX: level LEV_SN_END completed.
    A ** RABAX: level LEV_RX_SET_ALERT entered.
    A ** RABAX: level LEV_RX_SET_ALERT completed.
    A ** RABAX: level LEV_RX_COMMIT entered.
    A ** RABAX: level LEV_RX_COMMIT completed.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG entered.
    A ** RABAX: level LEV_RX_SNAP_SYSLOG completed.
    A ** RABAX: level LEV_RX_RESET_PROGS entered.
    A ** RABAX: level LEV_RX_RESET_PROGS completed.
    A ** RABAX: level LEV_RX_STDERR entered.
    A Fri Nov 28 18:22:34 2008
    A
    A ABAP Program SAPLSUSO .
    A Source LSUSOU02 Line 169.
    A Error Code SYNTAX_ERROR.
    A Module $Id: //bas/700_REL/src/krn/runt/abgen.c#10 $ SAP.
    A Function ab_genprog Line 1551.
    A ** RABAX: level LEV_RX_STDERR completed.
    A ** RABAX: level LEV_RX_RFC_ERROR entered.
    A ** RABAX: level LEV_RX_RFC_ERROR completed.
    A ** RABAX: level LEV_RX_RFC_CLOSE entered.
    A ** RABAX: level LEV_RX_RFC_CLOSE completed.
    A ** RABAX: level LEV_RX_IMC_ERROR entered.
    A ** RABAX: level LEV_RX_IMC_ERROR completed.
    A ** RABAX: level LEV_RX_DATASET_CLOSE entered.
    A ** RABAX: level LEV_RX_DATASET_CLOSE completed.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS entered.
    A ** RABAX: level LEV_RX_RESET_SHMLOCKS completed.
    A ** RABAX: level LEV_RX_ERROR_SAVE entered.
    A ** RABAX: level LEV_RX_ERROR_SAVE completed.
    A ** RABAX: level LEV_RX_ERROR_TPDA entered.
    A ** RABAX: level LEV_RX_ERROR_TPDA completed.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI entered.
    A ** RABAX: level LEV_RX_PXA_RELEASE_RUDI completed.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP entered.
    A ** RABAX: level LEV_RX_LIVE_CACHE_CLEANUP completed.
    A ** RABAX: level LEV_RX_END entered.
    A ** RABAX: level LEV_RX_END completed.
    A ** RABAX: end RX_RFC
    A
    A Fri Nov 28 18:23:07 2008
    A GENER request remote generation: /1BCDWBEN/SAPLSEN0005.
    A *** ERROR => Syntax error in program /1BCDWBEN/

    Hi
    I'm not quite sure what you mean. I set the password for all users in the installation procedure manually, but it's the same password for all. I suppose it's possible i wrote it wrong twice in a row though.
    What users do you suggest I change? Looks to me like function SUSR_USER_CHANGE_PASSWORD_RFC is the problem (whatever that is), but I can't find a specific user that might be the cause problem. Could you be more specific?
    Re
    Dennis

  • Problem with Java Stack- dev_w2 log mentioned.

    Hi everyone, I have a problem with Java Stack, I could not connect to XI home page,
    I am unable to login to j2ee engine using visual Administrator.
    Please go through the log below. And help me out to resolve this issue and let me know what could be the problem.
    trc file: "dev_w2", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\SXI\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\SXI\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'C:\usr\sap\SXI\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.39)
    B  New connection 0 created
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    43
    M intno      20020600
    M make:      multithreaded, Unicode
    M pid        4140
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 2 4140) [dpxxdisp.c   1160]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: JAVA is not active
    M  DpShMCreate: sizeof(wp_adm)          13160     (1316)
    M  DpShMCreate: sizeof(tm_adm)          2780232     (13832)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpShMCreate: sizeof(comm_adm)          290000     (580)
    M  DpShMCreate: sizeof(vmc_adm)          0     (372)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 060A0040, size: 3195320)
    M  DpShMCreate: allocated sys_adm at 060A0040
    M  DpShMCreate: allocated wp_adm at 060A1B58
    M  DpShMCreate: allocated tm_adm_list at 060A4EC0
    M  DpShMCreate: allocated tm_adm at 060A4EE8
    M  DpShMCreate: allocated wp_ca_adm at 0634BB30
    M  DpShMCreate: allocated appc_ca_adm at 063518F0
    M  DpShMCreate: allocated comm_adm_list at 06353830
    M  DpShMCreate: allocated comm_adm at 06353848
    M  DpShMCreate: allocated vmc_adm_list at 0639A518
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 0639A540
    M  DpShMCreate: allocated wall_adm at 0639A548
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 2 initializing ....
    X  <ES> InitFreeList
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M  calling db_connect ...
    C  Got ORACLE_HOME=c:\oracle\ora92 from environment
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSXI's password
    C  Connecting as /@SXI on connection 0 ...
    C  Attaching to DB Server SXI (con_hdl=0,svchp=04494404,svrhp=04495074)

    C  Starting user session (con_hdl=0,svchp=04494404,srvhp=04495074,usrhp=0449D8AC)

    C  Now I'm connected to ORACLE
    C  Got SAPSXI's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=04494404,usrhp=0449D8AC)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSXI/<pwd>@SXI on connection 0 ...
    C  Starting user session (con_hdl=0,svchp=04494404,srvhp=04495074,usrhp=0449D8AC)
    C  Now I'm connected to ORACLE
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  Database instance sxi is running on STARXI with ORACLE version 9.2.0.5.0 since 20081020
    B  Connection 0 opened
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20081020 123752 STARXI         
    M  db_connect o.k.
    I  MtxInit: 2 0 0
    M  SHM_PRES_BUF               (addr: 08230040, size: 4400128)
    M  SHM_ROLL_AREA          (addr: 62E40040, size: 77594624)
    M  SHM_PAGING_AREA          (addr: 08670040, size: 39845888)
    M  SHM_ROLL_ADM               (addr: 0AC80040, size: 775412)
    M  SHM_PAGING_ADM          (addr: 0AD40040, size: 525344)
    M  ThCreateNoBuffer          allocated 540152 bytes for 1000 entries at 0ADD0040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12160 bytes (50 server) at 0AE60040
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 2 initializing ....
    X  Using implementation flat
    X  ES initialized.

    B  db_con_shm_ini:  WP_ID = 2, WP_CNT = 10
    B  dbtbxbuf: Buffer TABL  (addr: 103D00C8, size: 30000128, end: 1206C4C8)
    B  dbtbxbuf: Profile: max_objects = 5000, displace = 1, reorg = 1
    B  dbtbxbuf: request_unit = 2000, sync_reload = 5, inval_reload = 5
    B  dbtbxbuf: protect_shm = 0, force_checks = 0
    B  dbtbxbuf: tsize_retry = 14302848
    B  ***LOG BB0=> buffer TABL       started with length 30000128   bytes [dbtbxbuf#7 @ 15714] [dbtbxbuf1571 4]
    B  dbtbxbuf: Buffer TABLP (addr: 0E4000C8, size: 10240000, end: 0EDC40C8)
    B  dbtbxbuf: Profile: max_objects = 500, displace = 1, reorg = 1
    B  dbtbxbuf: request_unit = 2000, sync_reload = 5, inval_reload = 5
    B  dbtbxbuf: protect_shm = 0, force_checks = 0
    B  dbtbxbuf: tsize_retry = 5046656
    B  ***LOG BB0=> buffer TABLP      started with length 10240000   bytes [dbtbxbuf#7 @ 15714] [dbtbxbuf1571 4]
    B  dbtbxbuf: Reading TBX statistics:
    B  dbtbxbuf: 41 object entries precreated
    B  Layout of EIBUF buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 344 = 344
    B  2: 10 * 20 = 200
    B  3: 4001 * 48 = 192048
    B  4: 2000 * 232 = 464000
    B  5: 4001 * 4 = 16004
    B  6: 1 * 200 = 200
    B  7: 65 * 4 = 260
    B  8: 13754 * 256 = 3521024
    B  Tracing = 0, Shm Protection = 0, Force checks = 0
    B  dbexpbuf: Buffer EIBUF (addr: 0EDE00D0, size: 4194304, end: 0F1E00D0)
    B  ***LOG BB0=> buffer EIBUF      started with length 4096k      bytes [dbexpbuf#5 @ 2322] [dbexpbuf2322 ]
    B  Layout of ESM   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 344 = 344
    B  2: 10 * 20 = 200
    B  3: 4001 * 48 = 192048
    B  4: 2000 * 232 = 464000
    B  5: 4001 * 4 = 16004
    B  6: 1 * 200 = 200
    B  7: 65 * 4 = 260
    B  8: 13754 * 256 = 3521024
    B  Tracing = 0, Shm Protection = 0, Force checks = 0
    B  dbexpbuf: Buffer ESM   (addr: 0F1F00D0, size: 4194304, end: 0F5F00D0)
    B  ***LOG BB0=> buffer ESM        started with length 4096k      bytes [dbexpbuf#5 @ 2322] [dbexpbuf2322 ]
    B  Layout of CUA   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 344 = 344
    B  2: 10 * 20 = 200
    B  3: 3001 * 48 = 144048
    B  4: 1500 * 232 = 348000
    B  5: 3001 * 4 = 12004
    B  6: 1 * 200 = 200
    B  7: 193 * 4 = 772
    B  8: 5012 * 512 = 2566144
    B  Tracing = 0, Shm Protection = 0, Force checks = 0
    B  dbexpbuf: Buffer CUA   (addr: 0F6000D0, size: 3072000, end: 0F8EE0D0)
    B  ***LOG BB0=> buffer CUA        started with length 3000k      bytes [dbexpbuf#5 @ 2322] [dbexpbuf2322 ]
    B  Layout of OTR   buffer shared memory:
    B  0: 1 * 4 = 4
    B  1: 1 * 344 = 344
    B  2: 10 * 20 = 200
    B  3: 4001 * 48 = 192048
    B  4: 2000 * 232 = 464000
    B  5: 4001 * 4 = 16004
    B  6: 1 * 200 = 200
    B  7: 81 * 4 = 324
    B  8: 13754 * 256 = 3521024
    B  Tracing = 0, Shm Protection = 0, Force checks = 0
    B  dbexpbuf: Buffer OTR   (addr: 0F8F00D0, size: 4194304, end: 0FCF00D0)
    B  ***LOG BB0=> buffer OTR        started with length 4096k      bytes [dbexpbuf#5 @ 2322] [dbexpbuf2322 ]
    B  ***LOG BB0=> buffer CALE       started with length 500000     bytes [dbcalbuf#1 @ 2206] [dbcalbuf2206 ]
    B  dbtran INFO (init_connection '<DEFAULT>' [ORACLE:640.00]):
    B   max_blocking_factor =  15,  max_in_blocking_factor      =   5,
    B   min_blocking_factor =  10,  min_in_blocking_factor      =   5,
    B   prefer_union_all    =   0,  prefer_union_for_select_all =   0,
    B   prefer_fix_blocking =   0,  prefer_in_itab_opt          =   1,
    B   convert AVG         =   0,  alias table FUPD            =   0,
    B   escape_as_literal   =   1,  opt GE LE to BETWEEN        =   0,
    B   select *            =0x0f,  character encoding          = STD / <none>:-,
    B   use_hints           = abap->1, dbif->0x1, upto->2147483647, rule_in->0,
    B                         rule_fae->0, concat_fae->0, concat_fae_or->0

    M  PfHIndInitialize: memory=<0AEEC488>, header=<0AEEC488>, records=<0AEEC4D0>
    M  SecAudit(init_sel_info): init of SCSA completed: 02 slots used
    M  ***LOG AV6=> 02& [rsauwr1.c    1619]
    M  SsfSapSecin: automatic application server initialization for SAPSECULIB
    N  SsfSapSecin: Looking for PSE in database
    N  SsfPseLoad: started...(path=C:\usr\sap\SXI\DVEBMGS00\sec, AS=starxi, instanceid=00)

    N  SsfPseLoad: Downloading file C:\usr\sap\SXI\DVEBMGS00\sec\SAPSYS.pse (client:    , key: SYSPSE, len: 1078)
    N  SsfPseLoad: ended (1 of 1 sucessfully loaded, 1 checked...
    N  MskiCreateLogonTicketCache: Logon Ticket cache created in shared memory.
    N  MskiCreateLogonTicketCache: Logon Ticket cache pointer registered in shared memory.
    M  rdisp/reinitialize_code_page -> 0
    M  icm/accept_remote_trace_level -> 0
    M  rdisp/no_hooks_for_sqlbreak -> 0

    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 121963B0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 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      intervals: query=50, rescan=1800, global=300 info=120
    S      processing queue enabled
    S  creating spool memory service RSPO-RCLOCKS at 0FEB00A8
    S  doing lock recovery
    S  setting server cache root
    S  using server cache size 100 (prof=100)
    S  creating spool memory service RSPO-SERVERCACHE at 0FEB0370
    S    using messages for server info
    S  size of spec char cache entry: 297028 bytes (timeout 100 sec)
    S  size of open spool request entry: 2132 bytes
    S  immediate print option for implicitely closed spool requests is disabled


    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Fragment Size too small: 73 MB, reducing # of fragments
    A  System page size: 4kb, admin_size: 5032kb.
    A  PXA allocated (address 67850040, size 150000K)
    A  System name
    A  ORACLE...........................SXI........20081004121019.....................................
    A  is used for RFC security.
    A  Sharedbuffer token: 41534050...33 (len: 111)====== 2b61c190857e36a8681ef39a...
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm initialized (addr=579F4000 leng=20955136 end=58DF0000)
    A  >> Shm MMADM area (addr=57E69DF0 leng=126176 end=57E88AD0)
    A  >> Shm MMDAT area (addr=57E89000 leng=16150528 end=58DF0000)
    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: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    A  Hotpackage version: 9
    M  ThrCreateShObjects          allocated 10568 bytes at 0FFD0040
    M  ThVBStartUp: restart pending update requests

    M  ThVBAutoStart: update-auto-delete
    N  SsfSapSecin: putenv(SECUDIR=C:\usr\sap\SXI\DVEBMGS00\sec): ok
    N  SsfSapSecin: PSE C:\usr\sap\SXI\DVEBMGS00\sec\SAPSYS.pse found!

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is C:\usr\sap\SXI\SYS\exe\run\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    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) 2
    W    ITS Plugin: Release: 640, [6400.0.43.20020600]
    W    ITS Plugin: Int.version, [31]
    W    ITS Plugin: Feature set: [3]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    M  MBUF info for hooks: MS component UP
    M  ThSetEnqName: set enqname by profile
    M  ThISetEnqname: enq name = >starxi_SXI_00                           <

    E  *************** EnqId_EN_ActionAtMsUpHook ***************
    E  Hook on upcoming Ms (with EnqSrv), get auth EnqId and check it locally
    E  Enqueue Info: enque/disable_replication = 2
    E  Enqueue Info: replication disabled


    E  *************** ObjShMem_CheckAuthoritativeEnqId ***************
    E  Checking authoritative EnqId from EnqSrv into ObjShMem
    E  ObjShMem_CheckAuthoritativeEnqId: ObjShMem ...
    E  EnqId.EnqTabCreaTime    = -999
    E  EnqId.RandomNumber      = -999
    E  ReqOrd.TimeInSecs       = -999
    E  ReqOrd.ReqNumberThisSec = -999
    E  ObjShMem_CheckAuthoritativeEnqId: ObjShMem ...
    E  EnqId.EnqTabCreaTime    = -999
    E  EnqId.RandomNumber      = -999
    E  ReqOrd.TimeInSecs       = -999
    E  ReqOrd.ReqNumberThisSec = -999
    E  ObjShMem_CheckAuthoritativeEnqId: EnqId is initial in ShMem
    E  ObjShMem_CheckAuthoritativeEnqId: Overwrite incoming auth EnqId, continue
    E  EnqId inscribed into initial ObjShMem: (ObjShMem_CheckAuthoritativeEnqId)
    E  -SHMEM--
    E  EnqId:          EnqTabCreaTime/RandomNumber    = 20.10.2008 12:38:10  1224486490 / 4140
    E  ReqOrd at Srv:  TimeInSecs/ReqNumberThisSec    = 20.10.2008 12:38:11  1224486491 / 1
    E  ReqOrd at Cli:  TimeInSecs/ReqNumberThisSec    = 20.10.2008 12:38:11  1224486491 / 1
    E  Status:         STATUS_OK
    E  -
    M  ThActivateServer: state = STARTING
    L  Begin of BtcSysStartRaise
    L  Raise event SAP_SYSTEM_START with parameter <starxi_SXI_00       >
    L  End of BtcSysStartRaise

    I  MPI<c>9#3 Peak buffer usage: 5 (@ 64 KB)

    M  *** WARNING => ThCheckReqInfo: req_info & DP_CANT_HANDLE_REQ
    M  return number range rc 12
    M  *** WARNING => ThNoGet: get from object (cli/obj/subobj/range = 000/ALAUTOUID /      /01) returned rc 12

    S  server @>SSRV:starxi_SXI_00@< appears or changes (state 1)
    B  table logging switched off for all clients

    S  server @>SSRV:starxi_SXI_00@< appears or changes (state 1)

    M  hostaddrlist return 0

    M  hostaddrlist return 0

    M  hostaddrlist return 0
    M  hostaddrlist return 0
    M  hostaddrlist return 0
    Regards,
    Varun.

    You probably made the same mistake as I did and added the tables manually to the "sample" database instead of the "sun-appserv-samples" database.
    marc

  • Need explanation for DES/CBC/NoPadding

    Hallo,
    I have the following problem:
    when I try do use the encryption mode DES/CBC/NoPadding my program fails to decrypt
    first 8 bytes. (I implement my own padding)
    (may be I could just before encrypting the plain text insert
    in the beginning of the message 8 bits of random data, but hasnot the
    the function of the API do that stuff instead of me?)
    I'd like to understand just this case, so please don't advice using another scheme or PKxxx
    padding.
    thanks in advance!
    the code I use to encrypt:
    private static byte[] encryptionCBC(byte[] baToEncode, SecretKey desKey, IvParameterSpec IV)
            throws  IllegalBlockSizeException, BadPaddingException,
                    NoSuchAlgorithmException, NoSuchPaddingException,
                    InvalidAlgorithmParameterException,
                    InvalidKeyException, ShortBufferException 
        Cipher c = Cipher.getInstance("DES/CBC/NoPadding");
        c.init(Cipher.ENCRYPT_MODE, desKey, IV);
        byte[] toEncrypt = transformToPadded(baToEncode);
        byte[] encrypted = new byte[(toEncrypt.length / 64) * c.getOutputSize(64)];
        for (int i = 0; i < toEncrypt.length/64; i++) {
            byte[] encryptedBlock = new byte[c.getOutputSize(64)];
            c.update(toEncrypt,i,64,encryptedBlock);
            System.arraycopy(encryptedBlock, 0, encrypted, c.getOutputSize(64) * i,
                                 c.getOutputSize(64));
        c.doFinal();
        return encrypted;
    }//encryptionCBCthe code I use to decrypt:
    private static byte[] decryptionCBC(byte[] baToDecode, SecretKey desKey, IvParameterSpec IV)
            throws  IllegalBlockSizeException, BadPaddingException,
                    NoSuchAlgorithmException, NoSuchPaddingException,
                    InvalidAlgorithmParameterException,
                    InvalidKeyException, ShortBufferException 
        Cipher c = Cipher.getInstance("DES/CBC/NoPadding");
        c.init(Cipher.DECRYPT_MODE, desKey, IV);
        byte[] decrypted = new byte[64 * baToDecode.length / c.getOutputSize(64)];
        for (int i = 0; i < baToDecode.length / c.getOutputSize(64); i++) {
            byte[] decryptedBlock = new byte[64];
            c.update(baToDecode, i, c.getOutputSize(64), decryptedBlock);
            System.arraycopy(decryptedBlock, 0, decrypted, 64 * i, 64);
        c.doFinal();
        boolean flag = false;
        // remove padding if exists
        for(int i = 0; i<decrypted.length; i++){
            if (flag) {
                decrypted[i] = 0x20; // padding with space
            //find the end of the message = Ctrl+Z
            if (!flag && decrypted[i] == 0x1A){
                    decrypted=0x20; // the end of the message reached we can
    flag = true; // pad the rest with space
    // byte[] iv = IV.getIV();
    // for (int i=0; i<8; i++)
    // decrypted[i] = (byte)(decrypted[i] ^ iv[i]);
    return decrypted;
    }//decryptionCBC
    // to implement simple padding
    // using ctrl-z to designate the end of the cleartext
    private static byte[] transformToPadded(byte[] x) {
         if (x.length % 64 == 0)
              return x;
         else{
              byte[] tail = new byte[64 - x.length % 64];
              java.util.Random rand = new java.util.Random();
              rand.nextBytes(tail);
              tail[0] = 0x1A; // Ctrl+Z
              byte[] result = new byte[x.length + tail.length];
              System.arraycopy(x, 0, result, 0, x.length);
              System.arraycopy(tail, 0, result, x.length, tail.length);
              return result;               
    }// transform

    Hi,
    In most cases the initialization vectors are wrong when the decryption of the first 8 bytes fails with CBC mode encryption.
    Two suggestions:
    1) Try changing CBC mode to ECB mode (just for testing). If ECB mode works, you know the problem has something to do with the IV.
    2) Ensure that the IV passed to encryption and decryption are identical.
    Regards,
    Ronald Maas

  • No TV sound - Problem with Pulseaudio and Gnome

    Hi Community!
    Since January 2013 I got big problems with the sound of my tvcard. The card is a Sundtek Media TV Pro. But after all the problems have nothing to to with the card itself!
    So far I found out, that the problem is with Pulseaudio.
    - Sound works under Windows on same PC.
    - Sound don't work under Arch - not with tvtime, not with vlc, etc.
    - Problem occurs even on a new installed system with the Arch-2013-02-01 install medium.
    cat /etc/mediasrv.log
    [1033] Pulseaudio connect reported an error (6 - Connection refused)
    [1033] select error() in audio processor (can be caused because of pulseaudio) (Interrupted system call)
    After setting up a new Arch installation with just xorg-server, gnome, tvtime and the sundtek driver from AUR I run journalctl -b:
    Feb 10 16:25:15 hightower pulseaudio[636]: [pulseaudio] pid.c:
    Daemon already running.
    With sudo journalctl | grep 'Feb 10 16:2' I get the following output:
    Feb 10 16:25:01 hightower rtkit-daemon[489]: Successfully made thread 488 of process 488 (/usr/bin/pulseaudio) owned by '120' high priority at nice level -11.
    Feb 10 16:25:14 hightower rtkit-daemon[489]: Successfully made thread 606 of process 606 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Feb 10 16:25:15 hightower rtkit-daemon[489]: Successfully made thread 636 of process 636 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Feb 10 16:25:15 hightower pulseaudio[636]: [pulseaudio] pid.c: Daemon already running.
    Feb 10 16:28:55 hightower pulseaudio[1000]: [pulseaudio] module-jackdbus-detect.c: Unable to contact D-Bus session bus: org.freedesktop.DBus.Error.NotSupported: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11
    Feb 10 16:28:55 hightower pulseaudio[1000]: [pulseaudio] module.c: Failed to load module "module-jackdbus-detect" (argument:""): initialization failed.
    Feb 10 16:28:55 hightower pulseaudio[1000]: [pulseaudio] socket-server.c: bind(): Die Adresse wird bereits verwendet
    Feb 10 16:28:55 hightower pulseaudio[1000]: [pulseaudio] module.c: Failed to load module "module-esound-protocol-unix" (argument: ""): initialization failed.
    Feb 10 16:28:55 hightower pulseaudio[1000]: [pulseaudio] main.c: Module load failed.
    Feb 10 16:28:55 hightower pulseaudio[1000]: [pulseaudio] main.c: Module load failed.
    Feb 10 16:28:55 hightower pulseaudio[1000]: [pulseaudio] main.c: Konnte Daemon nicht initialisieren.
    Feb 10 16:28:55 hightower pulseaudio[997]: [pulseaudio] main.c: Start des Daemons fehlgeschlagen.
    So, if I understand right, pulseaudio is alreade started by the rtkit-daemon and gnome couldn't start it again.
    At https://bugs.archlinux.org/task/30926 I found a hint concerning /etc/xdg/autostart/pulseaudio.desktop and /etc/xdg/autostart/pulseaudio-kde.desktop.
    After removing them from /etc/xdg/autostart and running journalctl -b there are no more errors.
    With sudo journalctl | grep 'pulseaudio' I get:
    sudo journalctl | grep 'Feb 10 17:4' | grep 'pulse*'
    Feb 10 17:41:42 hightower rtkit-daemon[485]: Successfully made thread 484 of process 484 (/usr/bin/pulseaudio) owned by '120' high priority at nice level -11.
    Feb 10 17:41:55 hightower rtkit-daemon[485]: Successfully made thread 625 of process 625 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    In my opinion all looks ok! I also checked the channels with the alsamixer and it looks good, too.
    So I ran vlc v4l2://:dev=/dev/video0:width=720:height=576:tuner-frequency=510750:adev=/dev/null:standard=255 - but still no sound.
    With cat /var/log/mediasrv.log I checked the drivers logfile:
    2013-02-10 17:48:55 [343] SETTING DVB-C
    2013-02-10 17:48:55 [343] switching to analog TV
    2013-02-10 17:48:56 [343] SETTING PAL/SECAM
    2013-02-10 17:48:58 [343] invalid audio input selected: 2
    2013-02-10 17:48:58 [343] Setting frequency: 510750000
    2013-02-10 17:48:58 [343] Using settings for Europe
    2013-02-10 17:48:58 [343] Set Pixelformat: 0 YUV 4:2:2 (YUYV)
    2013-02-10 17:48:58 [1033] Starting audio processor (PID 1033)
    2013-02-10 17:48:58 [1033] initializing audio in audio processor
    2013-02-10 17:48:58 [1033] loaded local pulseaudio driver
    2013-02-10 17:48:58 [1033] select error() in audio processor (can be caused because of pulseaudio) (Interrupted system call)
    2013-02-10 17:48:59 [1033] Pulseaudio connect reported an error (6 - Connection refused)
    2013-02-10 17:48:59 [1033] select error() in audio processor (can be caused because of pulseaudio) (Interrupted system call)
    2013-02-10 17:48:59 [1033] Pulseaudio connect reported an error (6 - Connection refused)
    I started tvtime again. This time I ran rm -rf ~/.config/pulse/ and killall pulseaudio to kill the Pulseaudio server. I instantly got a loud noise out of my speakers.
    I closed tvtime and re-opened it. And there it was: TV SOUND OUT OF MY SPEAKERS!
    But now, when I run pavucontrol I get:
    Connection to PulseAudio failed. Automatic retry in 5s.
    In this cas this is likely because PULSE_SERVER in the Environment/X11 root Windows Properties or default-server in client.conf is misconfigured.
    This situation can also arrise when PulseAudio crashed and left stale details in the X11 Root Windows.
    If this is the case, then PuseAudio should autospawn again, or if this is not configured you sould run start-pulseaudio-x11 manually.
    I got the information from Sundtek, that Pulseaudio should not be started as system service. Instead, every user should have an own Pulseaudio daemon and that PA was concepted this way. But they don't know how it is implemented in ArchLinux.
    I also don't know it exactly. So the question to all you ArchLinu pro's:
    How is PA implemented in Arch? And how can I sustainable solve my problem?
    Thank you for your time and help!
    Durag

    There is just one more thing I found out.
    After logging into Gnome and running ps aux | grep pulse I get:
    rebel 727 0.7 0.2 444316 10288 ? S<l 03:02 0:00 /usr/bin/pulseaudio --start --log-target=syslog
    rebel 731 0.0 0.0 71236 2652 ? S 03:02 0:00 /usr/lib/pulse/gconf-helper
    rebel 843 0.0 0.0 17396 1184 pts/0 D+ 03:03 0:00 grep pulse
    To get the sound to work I run:
    rm -rf .config/pulse/
    killall pulseaudio
    killall -9 pulseaudio
    I again run ps aux | grep pulse
    rebel 4016 4.2 0.2 510124 11528 ? Sl 03:06 0:02 /usr/bin/pulseaudio --start --log-target=syslog
    rebel 4020 0.0 0.0 71368 2700 ? S 03:06 0:00 /usr/lib/pulse/gconf-helper
    rebel 4046 0.0 0.0 19456 1216 pts/0 R+ 03:07 0:00 grep pulse
    I can recognize that the STATs have changed. Maybe this can help to solve the problem?

  • Problem with the MenuBar and how can i delete a own component out of the storage

    Hello,
    I opened this thread in the category "Flex Builder 2", but
    under this category my questions fit better.
    I have a problem with the MenuBar and a question to delete a
    component out of storage.
    1. We have implemented the MenuBar, which was filled
    dynamically with XML data.
    Sporadically it will appear following fault, if we "mousover"
    the root layer.
    RangeError: Error #2006: Der angegebene Index liegt
    außerhalb des zulässigen Bereichs.
    at flash.display::DisplayObjectContainer/addChildAt()
    at mx.managers::SystemManager/
    http://www.adobe.com/2006/flex/mx/internal::rawChildren_addChildAt()
    at mx.managers::SystemManager/addChild()
    at mx.managers::PopUpManager$/addPopUp()
    at mx.controls::Menu/show()
    at mx.controls::MenuBar/::showMenu()
    at mx.controls::MenuBar/::mouseOverHandler()
    Here a abrid ged version of our XML to create the MenuBar:
    <Menuebar>
    <menu label="Artikel">
    <menu label="Artikel anlegen" data="new_article" />
    <menu label="Artikel bearbeiten" data="edit_article" />
    <menu label="Verpackung">
    <menu label="Verpackung anlegen" data="new_package" />
    <menu label="Verpackung bearbeiten" data="edit_package"
    />
    </menu>
    <menu label="Materialgruppe">
    <menu label="Materialgruppe anlegen"
    data="new_materialgroup" />
    <menu label="Materialgruppe bearbeiten"
    data="edit_materialgroup" />
    </menu>
    </menu>
    </Menuebar>
    It is a well-formed XML.
    2. Delete a component out of storage
    We have some own components (basically forms), which will be
    created and shown by an construct e.g.
    var myComponent : T_Component = new T_Component ;
    this.addChild(myComponent)
    Some of our forms will be created in an popup. On every call
    of the popup, we lost 5 mb or more, all childs on the windows will
    be removed by formname.removeAllChild();
    What cann we do, that the garbage collector will dispose this
    objects.
    Is there a way to show all objects with references (NOT
    NULL)?
    I have read in the Flex Help, that
    this.removeChild(myComponent) not delete the form and/or object out
    of the storage.
    Rather the object must be destroyed.
    It is sufficient to call delete(myComponent) about remove
    this object out of the storage as the case may be that the
    garbage-collector remove this object at any time?
    Or how can I destroy a component correctly. What happens with
    the widgets on this component e.g. input fields or datagrids?
    Are they also being deleted?
    Thanks for your help.
    Matze

    If you mena the "photo Library" then you cannot delete it.
    This is how iphone handles photos.  There are not two copies.  There a re simply two places from which to access the same photos.  ALL photos synced to iphone can be accessed via Photo Library.  Those same pics can be accessed via their individual folder.

  • Problems with ITunes 10 for Windows with Ipod Touch

    I have had several problems with my original 16Gb ipod touch since upgrading to ITunes 10. Windows Vista Home Premium. I had no significant problems before ITunes 10.
    1. Numerous apps upgrades fail with an error message (approx) "installation failed because resources have changed." I have searched for information about this, but all I could find relates to developers, not ordinary users. I can upgrade the apps directly, using a wifi link - just not through ITunes 10. (Apps: Dictionary.com, StarWalk, etc.)
    2. After repeated examples of this, I decided to try restoring the ipod. I've done this several times in the past without problems. This time, it repeatedly failed at step 3 of 5, re-installing my music, with "unknown error." The ipod was unusable after this. I eventually had to restore on another computer that still had ITunes 9 installed - that worked, but I lost all me recent data entries. (After successfully restoring using ITunes 9, I tried again with ITunes 10 - same failure.)
    3. Now, all podcasts that I install are played back at an unusable low volume. They are just loud enough to barely hear in a very quiet room, but not loud enough to be usable. The podcasts play fine when played directly in ITunes. Music installed on the ipod plays properly. I have tried using the Podcast option in ITunes to change the volume, but that has no effect. I have tried several speakers and headsets - all the same. Podcasts are probably the most important use of my ipod, and now they are useless. These are popular podcasts, such as CBC's As It Happens - I don't think that the originator would have had an undetected problem for this long.
    Any suggestions?

    This symptom could be caused by an unusable iTunes configuration file. Follow the steps below to troubleshoot this issue.
    Remove SC Info.sidb file
    (This applies to Win7 or Vista)
    From the Start menu, click Computer.
    In the Organize menu, click Folder and Search Options.
    Click the View tab.
    In the "Advanced settings" pane under "Hidden files and folders" make sure that the "Show hidden files and folders" option is selected.
    Click OK.
    Navigate to the following location by either typing it into the address bar, copying and pasting it into the address bar, or clicking through the folder hierarchy listed: C:\Program Data\Apple Computer\iTunes\SC Info
    Right-click the SC Info.sidb file shown and on the shortcut menu, click Delete.
    Right-click the SC Info.sidd file shown and on the shortcut menu, click Delete.
    Restart the computer and open iTunes.
    If this does not work, repair your Quicktime - START / CONTROL PANEL / PROGRAM and FRAETURES / highlight QUICKTIME and click REPAIR

  • Still having problems with VPN access

    Hello!
    I am having problems with my VPN clients getting access to the networks over a MPLS infrastruture. I can reach these resources form my Core network (172.17.1.0/24) and my Wifi (172.17.100.0/24) but not from my VPN network (172.17.200.0/24). From the VPN I can reach the Wifi network (which is behind a router) and the rule that allows that also allows access to the other networks but for some reason it is not working.
    When I ping inside the core network from VPN I can connect and get responses. When I ping to the Wifi network, I can get responses and connect to resources there. A tracert to the wifi network shows it hitting the core switch (a 3750 stack) @ 172.17.1.1, then the Wifi router (172.17.1.3) and then the host. A tracert to a resource on the MPLS network from the VPN shows a single entry (the destination host) and then 29 time outs but will not ping that resource nor connect.
    I've posted all the info I can think of below. Any help appreciated.
    *** Here is a tracert from a core network machine to the resource we need on the MPLS:
    C:\Windows\system32>tracert 10.2.0.125
    Tracing route to **************** [10.2.0.125]
    over a maximum of 30 hops:
      1     1 ms    <1 ms    <1 ms  172.17.1.1
      2     1 ms    <1 ms    <1 ms  172.17.1.10
      3     5 ms     5 ms     5 ms  192.168.0.13
      4    31 ms    30 ms    31 ms  192.168.0.5
      5    29 ms    30 ms    29 ms  192.168.0.6
      6    29 ms    29 ms    29 ms  192.168.20.4
      7    29 ms    29 ms    29 ms  RV-TPA-CRMPROD [10.2.0.125]
    Trace complete.
    172.17.1.10 is the mpls router.
    **** Here is the routing table (sh ip route) from the 3750 @ 172.17.1.1
    Gateway of last resort is 172.17.1.2 to network 0.0.0.0
    S    192.168.30.0/24 [1/0] via 172.17.1.10
         172.17.0.0/24 is subnetted, 3 subnets
    S       172.17.200.0 [1/0] via 172.17.1.2
    C       172.17.1.0 is directly connected, Vlan20
    S       172.17.100.0 [1/0] via 172.17.1.3
         172.18.0.0/24 is subnetted, 1 subnets
    S       172.18.1.0 [1/0] via 172.17.1.10
    S    192.168.11.0/24 [1/0] via 172.17.1.10
         10.0.0.0/8 is variably subnetted, 4 subnets, 2 masks
    S       10.2.0.0/24 [1/0] via 172.17.1.10
    S       10.10.10.0/24 [1/0] via 172.17.1.10
    S       10.20.0.0/24 [1/0] via 172.17.1.10
    S       10.3.0.128/25 [1/0] via 172.17.1.10
    S    192.168.1.0/24 [1/0] via 172.17.1.10
    S*   0.0.0.0/0 [1/0] via 172.17.1.2
    *** Here is the firewall config (5510):
    ASA Version 8.4(1)
    hostname RVGW
    domain-name ************
    enable password b5aqRk/6.KRmypWW encrypted
    passwd 1ems91jznlfZHhfU encrypted
    names
    interface Ethernet0/0
    nameif Outside
    security-level 10
    ip address 5.29.79.10 255.255.255.248
    interface Ethernet0/1
    nameif Inside
    security-level 100
    ip address 172.17.1.2 255.255.255.0
    interface Ethernet0/2
    shutdown
    no nameif
    no security-level
    no ip address
    interface Ethernet0/3
    shutdown
    no nameif
    no security-level
    no ip address
    interface Management0/0
    nameif management
    security-level 100
    ip address 172.19.1.1 255.255.255.0
    management-only
    banner login RedV GW
    ftp mode passive
    dns server-group DefaultDNS
    domain-name RedVector.com
    same-security-traffic permit inter-interface
    same-security-traffic permit intra-interface
    object network WiFi
    subnet 172.17.100.0 255.255.255.0
    description WiFi 
    object network inside-net
    subnet 172.17.1.0 255.255.255.0
    object network NOSPAM
    host 172.17.1.60
    object network BH2
    host 172.17.1.60
    object network EX2
    host 172.17.1.61
    description Internal Exchange / Outbound SMTP
    object network Mail2
    host 5.29.79.11
    description Ext EX2
    object network NETWORK_OBJ_172.17.1.240_28
    subnet 172.17.1.240 255.255.255.240
    object network NETWORK_OBJ_172.17.200.0_24
    subnet 172.17.200.0 255.255.255.0
    object network VPN-CLIENT
    subnet 172.17.200.0 255.255.255.0
    object-group service DM_INLINE_TCP_1 tcp
    port-object eq www
    port-object eq https
    object-group network DM_INLINE_NETWORK_1
    network-object object BH2
    network-object object NOSPAM
    object-group network VPN-CLIENT-PAT-SOURCE
    description VPN-CLIENT-PAT-SOURCE
    network-object object VPN-CLIENT
    object-group network LAN-NETWORKS
    network-object 10.10.10.0 255.255.255.0
    network-object 10.2.0.0 255.255.255.0
    network-object 10.3.0.0 255.255.255.0
    network-object 172.17.100.0 255.255.255.0
    network-object 172.18.1.0 255.255.255.0
    network-object 192.168.1.0 255.255.255.0
    network-object 192.168.11.0 255.255.255.0
    network-object 192.168.30.0 255.255.255.0
    object-group network VPN-POOL
    network-object 172.17.200.0 255.255.255.0
    object-group protocol DM_INLINE_PROTOCOL_1
    protocol-object ip
    protocol-object icmp
    access-list Outside_access_in extended permit tcp any object-group DM_INLINE_NETWORK_1 eq smtp
    access-list Outside_access_in extended permit tcp any object BH2 object-group DM_INLINE_TCP_1
    access-list global_mpc extended permit ip any any
    access-list Inside_access_in extended permit object-group DM_INLINE_PROTOCOL_1 any any
    pager lines 24
    logging enable
    logging asdm informational
    no logging message 106015
    no logging message 313001
    no logging message 313008
    no logging message 106023
    no logging message 710003
    no logging message 106100
    no logging message 302015
    no logging message 302014
    no logging message 302013
    no logging message 302018
    no logging message 302017
    no logging message 302016
    no logging message 302021
    no logging message 302020
    flow-export destination Inside 172.17.1.52 9996
    mtu Outside 1500
    mtu Inside 1500
    mtu management 1500
    ip local pool VPN 172.17.1.240-172.17.1.250 mask 255.255.255.0
    ip local pool VPN2 172.17.200.100-172.17.200.200 mask 255.255.255.0
    no failover
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    nat (Inside,Outside) source static EX2 Mail2
    nat (Inside,Outside) source static any any destination static NETWORK_OBJ_172.17.1.240_28 NETWORK_OBJ_172.17.1.240_28
    nat (Inside,Outside) source static any any destination static NETWORK_OBJ_172.17.200.0_24 NETWORK_OBJ_172.17.200.0_24
    nat (Inside,Outside) source static inside-net inside-net destination static NETWORK_OBJ_172.17.1.240_28 NETWORK_OBJ_172.17.1.240_28
    nat (Inside,Outside) source static LAN-NETWORKS LAN-NETWORKS destination static VPN-POOL VPN-POOL
    object network inside-net
    nat (Inside,Outside) dynamic interface
    object network NOSPAM
    nat (Inside,Outside) static 5.29.79.12
    nat (Outside,Outside) after-auto source dynamic VPN-CLIENT-PAT-SOURCE interface
    access-group Outside_access_in in interface Outside
    access-group Inside_access_in in interface Inside
    route Outside 0.0.0.0 0.0.0.0 5.29.79.9 1
    route Inside 10.2.0.0 255.255.255.0 172.17.1.1 1
    route Inside 10.3.0.0 255.255.255.128 172.17.1.1 1
    route Inside 10.10.10.0 255.255.255.0 172.17.1.1 1
    route Inside 172.17.100.0 255.255.255.0 172.17.1.3 1
    route Inside 172.18.1.0 255.255.255.0 172.17.1.1 1
    route Inside 192.168.1.0 255.255.255.0 172.17.1.1 1
    route Inside 192.168.11.0 255.255.255.0 172.17.1.1 1
    route Inside 192.168.30.0 255.255.255.0 172.17.1.1 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    dynamic-access-policy-record DfltAccessPolicy
    aaa-server RedVec protocol ldap
    aaa-server RedVec (Inside) host 172.17.1.41
    ldap-base-dn DC=adrs1,DC=net
    ldap-group-base-dn DC=adrs,DC=net
    ldap-scope subtree
    ldap-naming-attribute sAMAccountName
    ldap-login-password *****
    ldap-login-dn CN=Hanna\, Roger,OU=Humans,OU=WPLAdministrator,DC=adrs1,DC=net
    server-type microsoft
    aaa authentication ssh console LOCAL
    http server enable
    http 192.168.1.0 255.255.255.0 management
    http 172.17.1.0 255.255.255.0 Inside
    http 24.32.208.223 255.255.255.255 Outside
    snmp-server host Inside 172.17.1.52 community *****
    snmp-server location Server Room 3010
    snmp-server contact Roger Hanna
    snmp-server community *****
    snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart
    crypto ipsec ikev1 transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set ikev1 transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map Outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map Outside_map interface Outside
    crypto ikev1 enable Outside
    crypto ikev1 policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 30
    authentication crack
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    telnet 172.17.1.0 255.255.255.0 Inside
    telnet timeout 5
    ssh 172.17.1.0 255.255.255.0 Inside
    ssh timeout 5
    console timeout 0
    dhcpd address 172.17.1.100-172.17.1.200 Inside
    dhcpd dns 172.17.1.41 172.17.1.42 interface Inside
    dhcpd lease 100000 interface Inside
    dhcpd domain adrs1.net interface Inside
    threat-detection basic-threat
    threat-detection statistics
    threat-detection statistics tcp-intercept rate-interval 30 burst-rate 400 average-rate 200
    webvpn
    group-policy RedV internal
    group-policy RedV attributes
    wins-server value 172.17.1.41
    dns-server value 172.17.1.41 172.17.1.42
    vpn-tunnel-protocol ikev1
    default-domain value ADRS1.NET
    group-policy RedV_1 internal
    group-policy RedV_1 attributes
    wins-server value 172.17.1.41
    dns-server value 172.17.1.41 172.17.1.42
    vpn-tunnel-protocol ikev1
    split-tunnel-policy tunnelspecified
    default-domain value adrs1.net
    username rparker password FnbvAdOZxk4r40E5 encrypted privilege 15
    username rparker attributes
    vpn-group-policy RedV
    username mhale password 2reWKpsLC5em3o1P encrypted privilege 0
    username mhale attributes
    vpn-group-policy RedV
    username dcoletto password g53yRiEqpcYkSyYS encrypted privilege 0
    username dcoletto attributes
    vpn-group-policy RedV
    username rhanna password Pd3E3vqnGmV84Ds2 encrypted privilege 15
    username rhanna attributes
    vpn-group-policy RedV
    tunnel-group RedV type remote-access
    tunnel-group RedV general-attributes
    address-pool VPN2
    authentication-server-group RedVec
    default-group-policy RedV
    tunnel-group RedV ipsec-attributes
    ikev1 pre-shared-key *****
    class-map global-class
    match access-list global_mpc
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny 
      inspect sunrpc
      inspect xdmcp
      inspect sip 
      inspect netbios
      inspect tftp
      inspect ip-options
      inspect icmp
    class global-class
      flow-export event-type all destination 172.17.1.52
    service-policy global_policy global
    prompt hostname context
    call-home
    profile CiscoTAC-1
      no active
      destination address http https://tools.cisco.com/its/service/oddce/services/DDCEService
      destination address email [email protected]
      destination transport-method http
      subscribe-to-alert-group diagnostic
      subscribe-to-alert-group environment
      subscribe-to-alert-group inventory periodic monthly
      subscribe-to-alert-group configuration periodic monthly
      subscribe-to-alert-group telemetry periodic daily
    hpm topN enable
    Cryptochecksum:202ad58ba009fb24cbd119ed6d7237a9

    Hi Roger,
    I bet you already checked it, but does the MPLS end router has route to VPN client subnet 172.17.200.x (or default) pointing to core rtr)?
    Also, if the MPLS link has any /30 subnet assigned, you may need to include that as well in Object group LAN-NETWORKS.
    Thx
    MS

  • Weblogic 10.0 Problems with stripes/struts

    When trying to deploy the sample application for the stripes framework on weblogic 10.0 I get the following error when deploying.
    <Dec 3, 2009 12:16:51 PM CET> <Error> <HTTP> <BEA-101165>
    <Could not load user defined filter in web.xml:
    net.sourceforge.stripes.controller.StripesFilter.net.sourceforge.stripes.exception.StripesRuntimeException:
    Problem instantiating default configuration objects.I actually had to switch to using the Sun JDK to get this error. JRockit does not report it, and just fails when I try to use the application. The problem appear to be weblogic 10.0 specific. No problems with jetty or tomcat, and I've heard reports that it is resolved in weblogic 10.3. Have ayone come accross similar problems when using stripes/struts on weblogic 10.0, and found a solution to this? Is there a patch available for 10.0 than fix this?
    Regards
    Morten
    PS: I have ommited the complete stack trace, since it is monstrously huge.

    Guess I was wrong in thinking that this was an isolated weblogic 10.0 problem. I just downloaded weblogic 10.3 and tried to deploy the same application there, and the same error happened.
    <03.des.2009 kl 15.12 CET> <Error> <HTTP> <BEA-101165>
    <Could not load user defined filter in web.xml:
    net.sourceforge.stripes.controller.StripesFilter.net.sourceforge.stripes.exception.StripesRuntimeException:
    Problem instantiating default configuration objects.
            at net.sourceforge.stripes.config.DefaultConfiguration.init(DefaultConfiguration.java:220)
            at net.sourceforge.stripes.config.RuntimeConfiguration.init(RuntimeConfiguration.java:272)
            at net.sourceforge.stripes.controller.StripesFilter.init(StripesFilter.java:125)
            at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:329)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
            Truncated. see log file for complete stacktrace
    java.lang.NullPointerException
            at java.io.FilterInputStream.read(FilterInputStream.java:116)
            at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:264)
            at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:306)
            at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:158)
            at java.io.InputStreamReader.read(InputStreamReader.java:167)
            Truncated. see log file for complete stacktraceSo is there anyone out there with experience with struts/stripes, that can tell why this does not work? If you need to try this yourself, you can download the stripes sample application here:
    http://sourceforge.net/projects/stripes/files/stripes/Stripes%201.5.2/stripes-1.5.2.zip/download
    There is an example WAR called "stripes-examples.war" in the zip that is ready to be deployed.
    Regards
    Morten
    PS: you still need to start weblogic with Sun JDK rather than JRockit to get the error. With JRockit the application simply fails when used.

  • RD Gateway 2012 R2 (DMZ) - Problem with authentification (NULL SID)

    Hello,
    I have a problem with a RD Gateway 2012 R2, that domain users can't log on over the RD Gateway to the RD Sessionhost. I get an error message in the eventlog on the RD Gateway.
    Protokollname: Security
    Quelle: Microsoft-Windows-Security-Auditing
    Datum: 09.12.2014 16:45:24
    Ereignis-ID: 4625
    Aufgabenkategorie:Anmelden
    Ebene: Informationen
    Schlüsselwörter:Überwachung gescheitert
    Benutzer: Nicht zutreffend
    Computer: DMZ2.bptest.local
    Beschreibung:
    Fehler beim Anmelden eines Kontos.
    Antragsteller:
    Sicherheits-ID: NULL SID
    Kontoname: -
    Kontodomäne: -
    Anmelde-ID: 0x0
    Anmeldetyp: 3
    Konto, für das die Anmeldung fehlgeschlagen ist:
    Sicherheits-ID: NULL SID
    Kontoname: [email protected]
    Kontodomäne:
    Fehlerinformationen:
    Fehlerursache: Bei der Anmeldung ist ein Fehler aufgetreten.
    Status: 0xC000005E
    Unterstatus:: 0x0
    Prozessinformationen:
    Aufrufprozess-ID: 0x0
    Aufrufprozessname: -
    Netzwerkinformationen:
    Arbeitsstationsname: SCHULUNG
    Quellnetzwerkadresse: -
    Quellport: -
    Detaillierte Authentifizierungsinformationen:
    Anmeldeprozess: NtLmSsp
    Authentifizierungspaket: NTLM
    Übertragene Dienste: -
    Paketname (nur NTLM): -
    Schlüssellänge: 0
    Dieses Ereignis wird beim Erstellen einer Anmeldesitzung generiert. Es wird auf dem Computer generiert, auf den zugegriffen wurde.
    Die Antragstellerfelder geben das Konto auf dem lokalen System an, von dem die Anmeldung angefordert wurde. Dies ist meistens ein Dienst wie der Serverdienst oder ein lokaler Prozess wie "Winlogon.exe" oder "Services.exe".
    Das Anmeldetypfeld gibt den jeweiligen Anmeldetyp an. Die häufigsten Typen sind 2 (interaktiv) und 3 (Netzwerk).
    Die Felder für die Prozessinformationen geben den Prozess und das Konto an, für die die Anmeldung angefordert wurde.
    Die Netzwerkfelder geben die Quelle einer Remoteanmeldeanforderung an. Der Arbeitsstationsname ist nicht immer verfügbar und kann in manchen Fällen leer bleiben.
    Die Felder für die Authentifizierungsinformationen enthalten detaillierte Informationen zu dieser speziellen Anmeldeanforderung.
    - Die übertragenen Dienste geben an, welche Zwischendienste an der Anmeldeanforderung beteiligt waren.
    - Der Paketname gibt das in den NTLM-Protokollen verwendete Unterprotokoll an.
    - Die Schlüssellänge gibt die Länge des generierten Sitzungsschlüssels an. Wenn kein Sitzungsschlüssel angefordert wurde, ist dieser Wert 0.
    The domain administrator can log on successfully over the RD Gateway. When i log on a domain user on the RD Gateway server console first and then log on over the RD Gateway, the authentication works fine.
    The RD Gateway 2012 R2 has been installed as well as the instructions (http://technet.microsoft.com/en-us/library/cc754191.aspx). I have tried a lots of things, but without a result.
    e.g.
    register NPS in the AD
    all ports in the Firewall between LAN and DMZ are opened
    set the "Network security: LAN Manager authentication level" to "Send NTLMv2 response only"
    re-install of the RD Gateway 2012 R2
    Environment:
    All machines have Windows Server 2012 R2 or Windows 8/8.1 with the latest updates. All servers are virtualized with Hyper-V.
    Domaincontroller (LAN)
    RD Sessionhost (LAN)
    RD Gateway (DMZ)
    Clients (DMZ/WAN)
    Hardware-Firewall (3-zone)
    Does anyone have an idea, what might be the problem?
    Best regards,
    BpDk

    Hi,
    From your description seems there is user permission issue and that’s the reason you can’t logon to the remote desktop. For this you can I would like to check whether you have done the following steps for troubleshooting.
    Need to create RD CAP and RD RAP policies and also add the user under RD CAP properties for proper access. RD CAPs allow you to specify who can connect to an RD Gateway server. You can specify a user group that exists on the local RD Gateway server or in Active
    Directory Domain Services. You can also specify other conditions that users must meet to access an RD Gateway server. You can list specific conditions in each RD CAP. For example, you might require a group of users to use a smart card to connect through RD
    Gateway.
    When there is no AD DS in the perimeter network, ideally the servers in the perimeter network should be in a workgroup, but the RD Gateway server has to be domain-joined because it has to authenticate and authorize corporate domain users and resources.
    Please check below article for more troubleshooting and provide access & authenticate user.
    RD Gateway deployment in a perimeter network & Firewall rules
    http://blogs.msdn.com/b/rds/archive/2009/07/31/rd-gateway-deployment-in-a-perimeter-network-firewall-rules.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • I want to format my macintosh hard drive

    To format macbook pro hard drive, we need to press power button + option button when startup but when i do so I dont see recovery hd coming. instead i only see macintosh hd. im using OS X Yosemite 10.10.1

  • Can I send an audio file by text?

    Someone sent me an audio file via text message. How can I copy this or resend it?

  • Rettkomv overwrite xkomv-kwert

    Hi guys, I implemented a condition value routine where I want to change the kwert of a condition. read table xkomv ASSIGNING <fs>  with key mandt = sy-mandt                                   kposn = xkomv-kposn                                   kschl

  • Thanks for You help me.

    Thanks for You help me

  • Gpib-enet/​100 no longer recognizes equipment

    Hi, first of all, we purchased a company and they sent us their Automated test setup. It was functional, with thier old network, until the IS dept came and switched their old network to our current. Now when I start the software ATE, it pops up a mes