SAP ROUTETAB PROBLEM

Hi experts
while configuring saprouter i am getting the error as given below. please give the exact entries which are to be given in SAPROUTTAB .
trc file: "dev_rout", trc level: 3, release: "700"
Tue Jul 22 12:00:13 2008
NiHsLInit: alloc host/serv bufs (200/200 entries)
NiIInit: allocated nitab (811 at 01192AD0)
NiIInit: host/serv bufs already initialized
NiPGetNodeAddrList: got 2 interface(s) from operating system
          [0] IP-Address: 210.211.230.130
          [1] IP-Address: 192.168.0.203
SAP Network Interface Router, Version 38.10
Compiled May 22 2007 00:31:59
command line arg 0:     saprouter
command line arg 1:     -r
command line arg 2:     -V3
service   : 3299
routtab   : ./saprouttab
plug-in   : no plug-in
-argument: 'no argument'
clients   : 800
max servers  : 1
quelength : 1
maxheap   : 20000000
timeoutL  : 5000
tracefile : dev_rout
logfile   : no logging active
portrange : no portrange active
local address : default address
NiBufISetParam: set max heap to 20000000
NiSetParamEx: switch NIP_CONNLOCAL off (not supported by platform)
NiIMyHostName: hostname = 'fusesolman'
main: pid = 4016, ppid = 0, port = 3299, parent port = 0 (0 = parent is not a saprouter)
NiICreateHandle: hdl 0 state NI_INITIAL
NiIInitSocket: set default settings for new hdl 0 / sock 1928 (I4; ST)
NiITraceByteOrder: CPU byte order: little endian, reverse network, low val .. high val
NiIBind: hdl 0 bound to 3299 (IP only)
NiIBlockMode: set blockmode for hdl 0 FALSE
NiIListen: state of hdl 0 NI_LISTEN
NiIListen: listen for client requests on hdl 0
NiSelICreateSet: new set0
SiSelNInit: allocate 134560 bytes for FI (811)
NiSelIInit: size of set0 is 811
SiSelNSet: sock 1928 added to set pos 0
NiSelIAddMsg: added hdl 0 to set0
SiSelNSet: set events of sock 1928 to: rp-
reading routtab: './saprouttab'
ERROR => SNC field without SNC active, skip line 1 [nirout.cpp   7767]
ERROR => SNC field without SNC active, skip line 2 [nirout.cpp   7767]
ERROR => SNC field without SNC active, skip line 3 [nirout.cpp   7767]
ERROR => SNC field without SNC active, skip line 4 [nirout.cpp   7767]
ERROR => SNC field without SNC active, skip line 5 [nirout.cpp   7767]
NiStrToAddrMask: '210.211.230.130' -> 210.211.230.130 [ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]
NiStrToAddrMask: '194.39.131.34' -> 194.39.131.34 [ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]
ERROR => Cannot find source identifyer, skip line 7 [nirout.cpp   7720]
contents of routtab ('./saprouttab', 1 entries):
P,  210.211.230.130 ffff:ffff:ffff:  194.39.131.34   ffff:ffff:ffff: *         *
NI-ROUTER LOOP ********
SiSelNSelect: start select (timeout=-1)
Cheers
Deepak

Hi,
did you configure SNC router?
provide your saproutab.
also check SAP Router Error Pls help
regards,
kaushal

Similar Messages

  • SAP PI problem: User credentials are invalid or user is denied access

    Hi!
    I am about to configure SAP PI.
    Therefore I have run post installation wizard step PI_00 and get the following errors:
    Error: Not able to load Function SWF_XI_BPM_AUTO_CUSTOMIZE
    (cause:Name or password is incorrect (repeat logon)).
    Step: Execute SWF_XI_BPM_AUTO_CUSTOMIZE
    Error: User credentials are invalid or user is denied access
    Step: Add Installed Product2
    Questions:
    How can I identify which user/password makes problems here?
    P.S.
    My further problems are:
    2) It is not possible to work with XI tools, such as:
    Integration Directory, Integration Repository, Runtime Workbench
    When I try to execute some action in these tools I get the following error:
    Cannot connect to Repository
    Error during communication with System Landscape Directory: User credentials are invalid or user is denied access.
    2) When I try to access the NetWeaver configuration wizard (http://localhost:50000/nwa)
    I get the followign warnig:
    System Landscape Directory is not available
    Only local systems can be maintened
    Thank you very much
    Thom

    Hi,
    Check the similar discussion  Error in PI postinstallation wizard
    Wrong password PISUPER in PI_00 wizard
    Thanks!
    Edited by: Sudhir Tiwari on Nov 26, 2008 10:29 AM

  • Importing Non-SAP WebService - Problem: Data Transfer

    Hi all,
    I need to integrate a non-sap Web Service into Dynpro.
    I generated a client-proxy and a logical port.
    The Web Service needs one object (the structure from the object was generated correctly)
    In the next step I was programming the following code.
    *        Reference variables for proxy and exception class
             DATA:
             lo_clientproxy TYPE REF TO zrhco_testrules_services,
             lo_sys_fault TYPE REF TO cx_ai_system_fault,
             lo_app_fault TYPE REF TO cx_ai_application_fault,
    *        Structures to set and get message content
             ls_request TYPE zrhexecute_rules,
             ls_person TYPE zrhperson,
             ls_response TYPE zrhexecute_rules_response.
      ls_person-geschlecht = 'weiblich'.
      ls_person-age = 18.
      ls_person-name = 'Petra'.
      ls_person-icon1 = 0.
      ls_person-icon2 = 0.
      ls_request-person = ls_person.
      TRY.
    *    create proxy client
          CREATE OBJECT lo_clientproxy.
       CATCH cx_ai_system_fault.
      ENDTRY.
      TRY.
          CALL METHOD lo_clientproxy->execute_rules
            EXPORTING
              input = ls_request.
        CATCH cx_ai_system_fault INTO lo_sys_fault.
          WRITE: / 'Code:', lo_sys_fault->code.
          WRITE: / 'Text:', lo_sys_fault->errortext.
        CATCH cx_ai_application_fault INTO lo_app_fault.
      ENDTRY.
    The input is correctly filled with the required data but every time i executed the program an error occurred.
    SoapFaultCode:5
    I think that the real problem could be parsing abap into xml.
    SERIALIZE_APPLICATION_DATA
    I tested the Web Service in Web Services Navigator without any errors.
    The object is written in Java and the class implement Serializable, but i think the failure is on the abap site.
    Does anyone has a solution for my issue?
    Thanks a lot in advance!
    Regards,
    Robert

    Hello Leo,
    There are a number of options to do this. You can use the standard SAP tool named LSMW - Legacy System Migration Workbench (transaction LSMW) as a starting point.
    Also please read this [Documentation|http://help.sap.com/saphelp_47x200/helpdata/en/0d/414538bc0fe927e10000009b38f8cf/frameset.htm] before undertaking the data migration activity via LSMW.
    Additionally, there is also a Direct Input program available named RMDATIND - please go through the program documentation before you use it. You can use this program to transfer material master data to SAP but
    make sure you assign this program through LSMW for mapping structures etc. The internet link above will give
    more details and step-by-step instructions to follow.
    Hope this helps,
    Cheers,
    Sougata.
    p.s. It is sad to see useful answers remain unrewarded such as this one!
    Edited by: Sougata Chatterjee on May 9, 2008 10:13 PM

  • Sap script - Problem while printing Hungarian characters during Unicode

    Hello Friends,
    We had done  unicode changes ie Version upgrade from 4.6 C to ECC and because of that sap script Hungarian characters are printing as Junk characters ex - #####.
    Can any one please help me on this issue. In SO10 Print preview also we are facing same issue.
    Thank you,
    Regards,
    Phaneendra

    Hi Phaneedhra,
    the below thread explains the font issue for Hungary..
    SAPScript with Hungarian characters on it.  Weh we review the output online it looks good, but when we print it we get a u2018#u2019 in place of Hungarian characters.  I found the following link in SDN and am wondering if you can help.
    Hungarian Character Printing problem
    Problem in displaying special chars
    Prabhudas

  • Filenet Archive to SAP Migration - Problem with DMS_KPRO_CONVERT2

    Hi there
    We seem to be having an issue with a Filenet RFC to SAP Content Server migration.
    We run the report DMS_KPRO_CONVERT and eveything seems to run fine.
    When we run DMS_KPRO_CONVERT2 to move the files, we seem to pick up an error:
    File /saparchive/DV2/username (where username is my username) cannot be opened
    In looking at what is happening, it seems to save the file to the filenet archive exchange directory as the username (with no file extension) however it seems that the system has problems accessing this directly to check the file in to the new repository again and fails.
    If I manually check out the file and check it into the sap content server, there is no problem so it doesn't seem to be an issue that either the SAP content server or the filenet server is not accessible.
    Any ideas what the issue could be?
    Regards,
    Athol

    Hi Athol,
    You have marked this question as answered so can you please help me How you have overcome this issue?
    Do we have to run both DMS_KPRO_CONVERT and DMS_KPRO_CONVERT2 reports while migrating DMS documents from Content server to other archive server?
    Thanks in advance!
    With Regards,
    Ajay

  • Mini SAP install problem:ACLs

    Hello,
    When I install,I am getting the followin message.
    The message is:"File system of SAP drive 'C:' doen not support ACLs(Access Control Lists).
    How to solve the above problem?
    please help me.
    With Regards,
    Jaheer,Yanbu.

    from the command prompt run the following code
    convert C: /fs:ntfs /v
    this will convert C drive to NTFS format.
    more on this check out this link.
    http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/convert.mspx?mfr=true
    Regards
    Raja

  • SAP License Problem in EP System

    Hi
    After completed the EP 7.0 ((SAP EHP1 for SAP Netweaver 7.0) installation on Sunsolaries with Oracle 10g. I start with the license installation.
    I manage to get the license ,but when i try to install the license into the server it show invalid.. i already key in everything correctly still invalid.
    i try to install the license manually using "saplicense" command it show this error.
    qepadm> saplicense -show
    SAPLICENSE (Release 701) ERROR ***
        ERROR:   Can not set DbSl trace function
        DETAILS: DbSlControl(DBSL_CMD_IMP_FUNS_SET) failed with return code 20
        RC-INFO: error loading dynamic db-library - check environment for:
                 dbms_type = <db-type>  (e.g. ora)
                 DIR_LIBRARY = <path to db-dll>  (e.g. /usr/sap/SID/SYS/exe/run)
                 LD_LIBRARY_PATH = <path do db and sap libs> (e.g. /oracle/SID/lib)
    I have already set the environment variables.. like below..
    qepadm> env
    DB_SID=QEP
    DIR_LIBRARY=/usr/sap/QEP/SYS/exe/run
    HOME=/export/home/qepadm
    HZ=
    JAVA_HOME=/usr/jdk/j2sdk1.4.2_19
    LD_LIBRARY_PATH=/usr/sap/QEP/SYS/exe/run:/oracle/client/10x_64/instantclient
    LOGNAME=qepadm
    MAIL=/var/mail/qepadm
    NLS_LANG=AMERICAN_AMERICA.UTF8
    ORACLE_BASE=/oracle
    ORACLE_HOME=/oracle/QEP/102_64
    ORACLE_SID=QEP
    PATH=/oracle/QEP/102_64/bin:/usr/jdk/j2sdk1.4.2_19/bin:.:/export/home/qepadm:/usr/sap/QEP/SYS/exe/run:/usr/bin::/usr/ccs/bin:/usr/ucb
    PS1=
    qepadm>
    SAPDATA_HOME=/oracle/QEP
    SAPSYSTEMNAME=QEP
    SHELL=/bin/sh
    TERM=xterm
    THREAD=NOPS
    TNS_ADMIN=/usr/sap/QEP/SYS/profile/oracle
    TZ=Asia/Calcutta
    dbms_type=ORA
    dbs_ora_tnsname=QEP
    Please help....
    Regards,
    Suresh

    Hi,
    I have already applied the SAPlicense through Visual Administrator.
    start the Visual Administrator tool (usr\sap\SID\JC<xx>\j2ee\admin\go) and from there you can find the "Licensing Adapter" when you select correct server and "Services" underneath it.
    But the problem is while executing the saplicense -show at OS level... i am getting below error..
    qepadm> saplicense -show
    SAPLICENSE (Release 701) ERROR ***
        ERROR:   Can not set DbSl trace function
        DETAILS: DbSlControl(DBSL_CMD_IMP_FUNS_SET) failed with return code 20
        RC-INFO: error loading dynamic db-library - check environment for:
                 dbms_type = <db-type>  (e.g. ora)
                 DIR_LIBRARY = <path to db-dll>  (e.g. /usr/sap/SID/SYS/exe/run)
                 LD_LIBRARY_PATH = <path do db and sap libs> (e.g. /oracle/SID/lib)
    Regards,
    Suresh

  • New GUI 7.40 SAP printout problem

    Hello Expert,
    Recently we updated new GUI 7.40.When we are taking print out system is not giving any output. Pls find below spool request for printout,if any outdated please let us know how to resolve this.
    (3:42:37 PM) Number of processors: 2
    (3:42:37 PM) Icon DLL loaded.
    (3:42:37 PM)
    (3:42:37 PM) Network Communication via SAP-NiLib
    (3:42:37 PM) Hostname: XXXXNB0905012
    (3:42:37 PM) IP Address: 10.201.9.73
    (3:42:37 PM)
    (3:42:37 PM) SAPLPD version 740 Final Release.7400.1.0.32
    (3:42:37 PM)
    (3:42:37 PM) OS-Info: version = 6.1, build = 0/7601, text = Service Pack 1
    (3:42:37 PM) (C) Copyright 1992-2014 SAP AG
    (3:42:37 PM)
    (3:42:47 PM)
    (3:42:47 PM) Receive job for printer \\XXXXPS01\CNIRAD6075_MOB_5L_ENG (Berkeley LPD protocol / RFC1179)
    (3:42:47 PM) send_status called
    (3:42:47 PM) send_status called
    (3:42:47 PM) send_status called
    (3:42:47 PM) send_status called
    (3:42:47 PM) send_status called
    (3:42:47 PM) Job 000pdcQb.KED for user srinivas.j.I queued.
    (3:42:47 PM) Start printing job 000pdcQb.KED on printer \\XXXXPS01\CNIRAD6075_MOB_5L_ENG
    (4:25:15 PM) Error: Unable to start print job, Windows rc = -1, Error = The operation completed successfully.
    (4:25:15 PM) Error: BG: saplpd_open_dc failed, msg = 808 SAPLPD:Windows Problem, siehe SAPLPD Protokoll

    Hi ,
    Please follow the below steps,
    1) Go to transaction SPAD
    2 Just click " Enter key"
    3) And the screen will appear below and click " change"  and select the printer name you want to change for exp:" LP01"
    Now you can able to see the option called "Access Method"
    Host Spool Access Method: F or G: Printing on Front End Computer
    Host printer: __DEFAULT
    Please remember in above step its two times under-scope then DEFAULT
    and SAVE the entry by clicking button SAVE which I marked red colour.
    Kindly let me know if you need any other details.
    Thanks,
    Brindavan

  • File is placing in Non-sap system problem

    Hi all,
    I am placing file in different IP address 150.150.120.123 successfully by using FMs
    HTTP_SCRAMBLE
    FTP_CONNECT
    FTP_COMMAND
    FTP_COMMAND
    FTP_R3_TO_CLIENT
    But i am getting problem of all are not coming line by line.
    the file is placing but records are all line items placing continuously continuation with ','. Actually i have to get file records like this
    0001000265,070914,,,1000,16.0000,67322.00,2.0000,1346.00,HRCF
    0001000267,070914,,,1000,16.0000,67322.00,2.0000,3446.00,HRSCF
    0001000278,070916,,,1000,16.0000,67322.00,2.0000,4546.00,HRPO
    But i am getting now file records as
    0001000265,070914,,,1000,16.0000,67322.00,2.0000,1346.00,HRCF,0001000267,070914,,,1000,16.0000,67322.00,2.0000,3446.00,HRSCF,0001000278,070916,,,1000,16.0000,67322.00,2.0000,4546.00,HRPO
    Just like coming records continuing with ','.
    DATA: v_aux(4) TYPE c, v_cr TYPE c.
    v_aux = cl_abap_char_utilities=>newline.
    v_cr  = v_aux+1(1).
    I am using this V_cr when concatenating those fields then also i am getting problem.
    I need to place all records items wise.
    But i am getting now as all items are continuing with ','
    Pls if any one knows solution how to get records item wise without continuation all records with ','.
    Pls help me
    Regards,
    J.Lokesh

    Try using CR_LF instead of NEWLINE. Also I think that "end of line" character may also be affected by the FTP settings (not related to SAP). I vaguely remember having somewhat similar issue with FTP and mainframe. The file looked fine when downloaded to PC but mainframe "saw" only one long line.
    Also take a look at the parameters in the FMs that you've mentioned, maybe there is something about the file type or end-of-line.

  • SAP BW : Problem with precalculation job on WebTemplate depending on user

    Hi experts,
    We have a problem with the precalculation job on WebTemplate. When we schedule this job with a specific user, the job run normally and precalculation is done on step 3 :
    Step 003 started (program RSRA_JOB, variant , user ID E0126831)
    Start package ZBWP_SCHEDULE_TEMPLATE                          
    - Start setting ZBWP_WAD_001 with variant  -                  
    Precalculation: initialization started                        
    Precalculation: processing started                            
    Precalculate data (fill DataStore)                            
    Processing data provider DATAPROVIDER_1, query ZBWP_IS01_001  
    Processing data provider DATAPROVIDER_10, query ZBWPM_016     
    Processing data provider DATAPROVIDER_11, query ZBWPM_016     
    But when we change the user to a technical user (like BATCH or ALEREMOTE which have the profile SAP ALL ), the job don't do any precalculation in step 3 :
    Step 003 started (program RSRA_JOB, variant , user ID ALEREMOTE) 
    Start package ZBWP_SCHEDULE_TEMPLATE                             
    - Start setting ZBWP_WAD_001 with variant  -                     
    Implementing settings finished
    Did you have an idea for this problem ?
    Thanks in advance for your response.
    Regards,
    Mathieu

    Hi,
    Try to trace the log files in RSRD_LOG and also check files in C:TEMP.The precal server trace files will be stored in the subdirectory of C:TEMPBWAnalyzer .
    for more information look in belwo blog
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30e3d697-4ca0-2c10-4b81-c474b1490064?quicklink=index&overridelayout=true
    Thanks

  • BPEL with SAP integration problem.

    Hi,
    I have a serious problem to integrate with SAP and BPEL.
    I have to create a IDOC document in BPEL process.
    Can I create IDOC in BPEL process through SAP Adapter?
    Does anybody know about this?
    Thanks in advance.
    Regards,
    Jean.

    Looks like Process B is being called successfully, if it wasn't it wouldn't be in the BPEL Console.
    I suggest that you look at the Process B the in the flow in the BPEL Console. It looks like you may be assigning a variable that has not been populated.
    The reason why you cann't see a instance for Process A is because Process B has not returned a value, sucess or failure. Therefore Process A is still stitting there waiting. To confirm this go to your BPEL Console select the BPEL processes tab then the manual recovery. You should see a row for your Process A.
    cheers
    James

  • SAP Authentication problem when loggin into CMC

    Hi,
    I've recently started getting the following error when using SAP authentication to log-in to Designer or CMC:
    Account information not recognized: All of your system's 0 Concurrent Access Licenses are in use at this time or your system's license key has expired. Try again later or contact your administrator to obtain additional licenses. (FWB 00014)
    This is a pilot system so had intially entered trial licence keys, but some time back had changed these to the permanent equivalent in CMC. All was working but now get this error.
    When it first appeared I noticed that the entry in registry editor did not match permanent licence key so changed this there and also in CMC - Authentication have changed licence type from concurrent to named users per our licence agreement.
    This has not resolved the problem and struggling to find any other recommended solutions, any help greatly appreciated.
    I'm running BOE XI 3.1 at SP3 with SAP integration kit and crystal 2008.
    Thanks in advance
    Ad

    Thanks Seb,
    All a bit odd, initially deleted licence key and replaced with a trial  NUL licence, and got the same errors. Then tried with trial CPU which worked.
    Also didn't make any changes to the CMC Authentication (still named licences) when inputting the CPU licence key but this seemed to have any effect.
    Have you seen this behaviour before?

  • OWB SAP Integrator Problem

    Hello,
    i have a problem with the needed library from SAP that should be in the OWB_HOME/owb/bin/admin folder.
    I am using OWB 10.1 on a linux machine, so i put the librfccm.so in this folder and set it to the LD_LIBRARY_PATH
    When i want to create a sap source module, i get the error message, that the librfc32.dll is not correctly installed. Do i need this file too? Thought it is just for Windows.
    Or it is just a display message bug and it could be possible that die librfccm.so maybe is the wrong version?
    Thanks for your help
    Greetings
    Message was edited by:
    user461428

    The librfccm.so is the file, i put into the specified directory. I got the file from the sap support site.
    I also installed both the database and the owb client on a windows server. I put the librfc32.dll in the specified directory. But there i have another problem. On this machine it works to create a sap module, but when i want to set the SAP R/3 version. It is just possible to choose SAP R/3 Version 3.X.
    When i choose 4.X and want to go further, nothing happens. No error message, it loads just a second. The next page where the connection details are set does not appear, the current page remains.
    I tried several dll's from the sap site.
    What could be the cause for this problem?
    Thanks in qdvance, and for the answers before.
    Message was edited by:
    user461428

  • Starting sap getting problem

    Oracle can be started but when try to start sap with startsap then it is thorowing error 12
    After executing R3trans -x getting the following error
    4 ETW000  [dev trc     ,00000]  Loading DB library '/usr/sap/YC5/SYS/exe/run/dboras
    lib.so' ...
    4 ETW000
       94  0.000743
    4 ETW000  [dlux.c      ,00000]  *** ERROR => DlLoadLib: dlopen()= Unable to find li
    brary 'libclntsh.so.10.1'. -> DLENOACCESS (0,Error 0)
    4 ETW000
    1345  0.002088
    4 ETW000  [dbcon.c     ,00000]  *** ERROR => Couldn't load library '/usr/sap/YC5/SY
    ...skipping...
    4 ETW000 R3trans version 6.13 (release 700 - 20.02.06 - 16:15:00).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 26.09.2007 - 09:34:01
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -x
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [dev trc     ,00000]  Wed Sep 26 09:34:01 2007                             432  0.000432
    4 ETW000  [dev trc     ,00000]  db_con_init called                                    40  0.000472
    4 ETW000  [dev trc     ,00000]  create_con (con_name=R/3)                            177  0.000649
    4 ETW000  [dev trc     ,00000]  Loading DB library '/usr/sap/YC5/SYS/exe/run/dboraslib.so' ...
    4 ETW000                                                                              94  0.000743
    4 ETW000  [dlux.c      ,00000]  *** ERROR => DlLoadLib: dlopen()= Unable to find library 'libclntsh.so.10.1'. -> DLENOACCESS (0,Error 0)
    4 ETW000                                                                            1345  0.002088
    4 ETW000  [dbcon.c     ,00000]  *** ERROR => Couldn't load library '/usr/sap/YC5/SYS/exe/run/dboraslib.so'
    4 ETW000                                                                              46  0.002134
    2EETW169 no connect possible: "invalid values set for DIR_LIBRARY '/usr/sap/YC5/SYS/exe/run' or dbms_type 'ORA'"
    sd2n1v5:yc5adm>

    Hi there
    The DB has to be open and the listener must be running, otherwise SAP or R3trans cannot connect.
    For the client library problem, please check if you have the lib here. Path should be something like /oracle/client/10x_64/instantclient_10202/libclntsh.so.10.1
    A very common error is the missing link:
    ll /oracle/client/10x_64
    -rwxrwxr-x  1 sidadm sapsys   33 Mar 27  2006 dbclient.lst
    lrwxrwxrwx  1 sidadm sapsys   41 Nov 29  2006 <b>instantclient -> /oracle/client/10x_64/instantclient_10202</b>
    dr-xr-xr-x  2 sidadm sapsys 1024 Nov 15  2006 instantclient_10202
    Please do also check if the SAP Kernel Lib can resolve to the client lib, here is an example:
    sidadm 53><b> ldd /sapmnt/SID/exe/dboraslib.so</b>
    libnsl.so.1 =>  /usr/lib/hpux64/libnsl.so.1
    libpthread.so.1 =>      /usr/lib/hpux64/libpthread.so.1
    libclntsh.so.10.1 => <b>/oracle/client/10x_64/instantclient/libclntsh.so.10.1</b>
    libnnz10.so => /oracle/client/10x_64/instantclient/libnnz10.so
    libc.so.1 =>    /usr/lib/hpux64/libc.so.1
    libxti.so.1 =>  /usr/lib/hpux64/libxti.so.1
    /oracle/client/10x_64/instantclient/libnnz10.so => /oracle/client/10x_64/instantclient/libnnz10.so
    librt.so.1 =>   /usr/lib/hpux64/librt.so.1
    libnss_dns.so.1 => /usr/lib/hpux64/libnss_dns.so.1
    libdl.so.1 =>   /usr/lib/hpux64/libdl.so.1
    libm.so.1 =>    /usr/lib/hpux64/libm.so.1
    libpthread.so.1 => /usr/lib/hpux64/libpthread.so.1
    libunwind.so.1 =>  /usr/lib/hpux64/libunwind.so.1
    libnsl.so.1 =>  /usr/lib/hpux64/libnsl.so.1
    libdl.so.1 =>   /usr/lib/hpux64/libdl.so.1
    libuca.so.1 =>  /usr/lib/hpux64/libuca.so.1
    If you cannot resolve the problem with this info, just post the outputs of these commands here.
    Best regards
    Michael

  • Sap Note Problem

    Hi,
    I am applying Note in Sap ,  if i apply note in development server and make its request and transport that request to
    production server then it is showing me error but if i apply the same note in production it is applied successfully/
    Its a matter of production server so i don want to take any risk and want to update note via request only , the error
    which i am getting is
    R3TRPROGJ_1I_CHALLAN_TOP  was repaired in this system.
    same like above in 7-8 objects, please suggest how to remove this probelm ??
    Ankesh Jindal

    >
    Ankur Parab wrote:
    > I dont see any problem in directly applying your note in production. However this assumption is always debatable.
    > As a practise it should be avoided. It should always go via Development.
    In my opinion, its a big problem as it will make the system landscape workbench objects unequal.
    so it always better to keep the clients throughout the system landscape equal. To ensure this you must apply any patches/notes first to your development(Sandbox is fine if u have one) and then move it to Production Via Quality.
    Regards
    Karthik D

Maybe you are looking for

  • Pricing procedure in billing type

    How can I change pricing procedure in billing type

  • Getting error while starting the weblogic sewrver

    starting weblogic with Java version: java version "1.6.0_29" Java(TM) SE Runtime Environment (build 1.6.0_29-b11) Java HotSpot(TM) Client VM (build 20.4-b02, mixed mode) Starting WLS with line: /u03/disc/Oracle/Middleware/jdk160_29/bin/java -client -

  • Backup 800GB with Time Machine?

    I have about 800GB-1TB worth of data spread out over 3 drives that I'd like to backup regularly. Is Time Machine even an option? Is there some way to backup to multiple drives. like if I were to purchase 2 or 3 1TB drives for TM backups?

  • After the iOS 5.1.1 update,I can't connect to Bluetooth on our iPads

    SInce the iOS 5.1.1 update I can no longer connect to our Bose Sounddock via Bluetooth on both of our iPads.  I can still connect to the Sounddock via bluetooth with my iPhone as I have not completed the iOS upgrade. The speaker still works because i

  • What is the speed of data transmission when using Data Dashboard?

    Hello, everybody, I've seen that doesn't matter if an iphone or a chinese tablet is used, the speed  of data transmission with Shared Variables and Data Dashboard is almost the same, and is low speed. Does anybody know how could I measure this speed