RFC SAPXPG_DBDEST_ SAPDBHOST fails

Hi,
In my system RFC SAPXPG_DBDEST_<SAPDBHOST> is getting failed. I have maintained all the entries correctly in sm59, still it is getting failed. When I checked dev_rd file I am getting error like "remshd: Account is disabled - see Account Administrator". Can any one tell me is this error related to my RFC fail?

Dear Juan,
Thanks!!!
Here are the setting of RFC in SM59:-
Activation Type:
Start on Explicit host
Start On Explicit Host:
Program: sapxpg
Target Host: <Application Server>
Save to Datbase as:
IP: <IP of Database server>
Start Type of External Program:
Default Gateway Value
CPI-C Timeout:
Specify: 20 seconds
Gateway Options: Here I didn't give any value
Any clue please. . . . .
rgds

Similar Messages

  • RFC: SAPXPG_DBDEST_ SAPDBHOST giving error: Distributed system

    Hi All,
    We have distributed system (database & SAP application server running on different machines).
    Database: 10g
    OS: Sun solaris: 10 (for both App & DB servers)
    SAP version: ECC6
    SAPXPG_DBDEST_<SAPDBHOST> giving error as follows
    Connection Error
    Error when opening an RFC connection
    ERROR: timeout during allocate
    LOCATION: SAP-Gateway on host <SAPAPP server> / sapgw00
    DETAIL: no connect of TP sapxpg from host <DB Host> after 20 sec
    COMPONENT: SAP-Gateway
    COUNTER: 7911
    MODULE: gwr3cpic.c
    LINE: 1973
    RETURN CODE: 242
    SUBRC: 0
    RELEASE: 700
    TIME: Fri Sep 26 18:33:56 2008
    VERSION: 2
    Any ony faced this prob, earlier. . . .
    Rgds

    Dear Juan,
    Thanks!!!
    Here are the setting of RFC in SM59:-
    Activation Type:
    Start on Explicit host
    Start On Explicit Host:
    Program: sapxpg
    Target Host: <Application Server>
    Save to Datbase as:
    IP: <IP of Database server>
    Start Type of External Program:
    Default Gateway Value
    CPI-C Timeout:
    Specify: 20 seconds
    Gateway Options: Here I didn't give any value
    Any clue please. . . . .
    rgds

  • Abt RFC & FTP---- RFC to SAPFTP failed (urgent)

    Hi all,
    my program is working fine when i execute it in SAP GUI.
    in this program i need to send some local file to FTP server from presentation server.
      actually we have a scanner through which we can scan the barcode data from barcode label.this scanner is connected to  sap test server through web console.
         so ,i can see the sap screen on the screen of scanner for this perticular transaction.
    after scanning a barcode,the barcode data comes to scanner.when i execute this report on the scanner, it is showing the error---- RFC to SAPFTP failed.
            where as this same report is working very fine on the SAP server.it can send my file from presentation server to FTP server located at some other place.
        web console is installed so i can connect scanner to SAP for this perticular transaction through web.i think, to execute on scanner is same as execute on sap server.
       This error comes while executing a Function module FTP_CONNECT which is present in my program.
       can u please tell where  is the problem?it is very urgent as they need in 1 day of time.
    code is as follows.
    FORM ftp_send using printer dir.
          data: user(64) type c value 'man',
                pwd(64) type c value 'post',
                host(64) type c value '172.160.122.30',
                cmd1(80) type c ,
                cmd2(150) type c ,
                cmd3(80) type c ,
                dest like rfcdes-rfcdest value 'SAPFTP',
                compress type c value 'N'.
    data: hdl type i,
          key type i value 26101957,
          dstlen type i.
    data: begin of result occurs 0,
          line(100) type c,
          end of result.
    data:begin of tab_oline occurs 0,
         oline(200) type c,
         end of tab_oline.
    describe field pwd length dstlen.
    LOOP AT bt.
          CLEAR tab_oline.
          CONCATENATE
          bt-userid
          bt-zdate
          bt-seq
          bt-charg
          bt-batch
          bt-matnr
          bt-menge
          bt-lgpla
          bt-lifnr
          bt-lot_code
          bt-date_code
          bt-lead_nolead
          INTO tab_oline-oline SEPARATED BY ','.
    append tab_oline.
    endloop.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
      BIN_FILESIZE                  = ' '
      CODEPAGE                      = ' '
       FILENAME                      = 'c:\pabi29.txt '
       FILETYPE                      = 'DAT'
      MODE                          = ' '
      WK1_N_FORMAT                  = ' '
      WK1_N_SIZE                    = ' '
      WK1_T_FORMAT                  = ' '
      WK1_T_SIZE                    = ' '
      COL_SELECT                    = ' '
      COL_SELECTMASK                = ' '
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    =
      TABLES
        DATA_TAB                      = tab_oline.
      FIELDNAMES                    =
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_WRITE_ERROR              = 2
      INVALID_FILESIZE              = 3
      INVALID_TYPE                  = 4
      NO_BATCH                      = 5
      UNKNOWN_ERROR                 = 6
      INVALID_TABLE_WIDTH           = 7
      GUI_REFUSE_FILETRANSFER       = 8
      CUSTOMER_ERROR                = 9
      OTHERS                        = 10
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    clear tab_oline.
    refresh tab_oline.
    call 'AB_RFC_X_SCRAMBLE_STRING'
      id 'SOURCE'      field pwd    id 'KEY'         field key
      id 'SCR'         field 'X'    id 'DESTINATION' field pwd
      id 'DSTLEN'      field dstlen.
    **Set FTP File Paths
    call function 'FTP_CONNECT'
      exporting
        user            = user
        password        = pwd
        host            = host
        rfc_destination = dest
      importing
        handle          = hdl.
    if sy-subrc ne 0.
    message e020 with 'RFC connection failed'.
    endif.
       DATA: zfilename(150) TYPE c,
              zfilename2(150) TYPE c.
             printer(5) TYPE c." value 'P0001'.
    CONSTANTS: dir(50) TYPE c VALUE '\SAPuser\SAPfolder\'.
    DATA: dir(50) type c.
    select single pfolder from zkt014 into dir where printer = printer.
    TEXT file name
    CONCATENATE dir printer bt-userid bt-zdate sy-uzeit bt-seq '.txt'
      INTO zfilename.
      CONDENSE zfilename no-gaps.
    Done filename
      CONCATENATE dir printer bt-userid bt-zdate sy-uzeit bt-seq '.done'
      INTO zfilename2.
      CONDENSE zfilename2 no-gaps.
    clear bt.
    refresh bt.
    concatenate 'put' '\pabi29.txt' zfilename
    into cmd1 separated by space.
    if cmd1 ne ' '.
      call function 'FTP_COMMAND'
        exporting
          handle        = hdl
          command       = cmd1
          compress      = compress
        tables
          data          = result
        exceptions
          command_error = 1
          tcpip_error   = 2.
      IF SY-SUBRC NE 0.
      message e021 with 'bar tender is not submited due to error in RFC'.
      endif.
      loop at result.
        write:/ result.
      endloop.
    ENDIF.
      refresh result.
    endif.
    concatenate 'rename' zfilename zfilename2 into cmd2 separated by
    space.
    if cmd2 ne ' '.
      call function 'FTP_COMMAND'
        exporting
          handle        = hdl
          command       = cmd2
        tables
          data          = result
        exceptions
          command_error = 1
          tcpip_error   = 2.
          if sy-subrc eq 0.
      MESSAGE w044(zv).
      ELSE.
      message e019 with 'RFC ftp_command problem'.
       endif.
      loop at result.
        write:/ result.
      endloop.
      refresh result.
    endif.
    if cmd3 ne ' '.
      call function 'FTP_COMMAND'
        exporting
          handle        = hdl
          command       = cmd3
        tables
          data          = result
        exceptions
          command_error = 1
          tcpip_error   = 2.
      loop at result.
        write:/ result.
      endloop.
      refresh result.
    endif.
    call function 'FTP_DISCONNECT'
      exporting
        handle = hdl.
    thanks in advance.
    Regards
    pabitra

    Well may be the reason is that you are running report from SAP console.
    SAPFTP is just an RFC destination which is actually pointing to an exe file on your frontend. filename is 'sapftp' and it is installed with your GUI frontend installation. May be while running through web console it is having problems accessing this file.
    As a solution, why don't you use the rfc destination for the application server. It is called SAPFTPA. So instead of ws_download, you can save the file on application server through OPEN dataset ... ABAP commands. Than from application server ftp it using the same logic as it is in existing program. Just be sure to use the rfc destination SAPFTPA.
    Hope this helps.
    Cheers.

  • EhP1 installer error (RFC of "SUBST_START_REPORT_IN_BATCH" failed)

    Hi,
    we are trying to upgrade our CRM 7.0 to the EhP1 and the EhP1 installer is blocked with the error:
    Checks after phase MAIN_SHDRUN/ALTNTAB_FILL were negative!
    Last error code set: RFC call to SUBST_START_REPORT_IN_BATCH failed with key RFC_ERROR_SYSTEM_FAILURE (SYSTEM_FAILURE): connection closed without message (CM_NO_DATA_RECEIVED)
    Log files report the following errors:
    (altntfi.sav)
    #---- MASKING file ALTNTFI.LOG from G:\usr\sap\CR7\EHPI\abap\log
    #---- TIME: 20111125115607  PHASE: ALTNTAB_FILL
    1 ETQ201 Entering upgrade-phase "ALTNTAB_FILL" ("20111125111509")
    4 ETQ399 Set environment for standard connect:
    2 ETQ367 Connect variables are set for standard instance access
    4 ETQ399 System-nr = '02', GwService = 'sapgw02'
    4 ETQ399 Environment variables:
    4 ETQ399   dbs_ora_schema=SAPSR4
    4 ETQ399   auth_shadow_upgrade=0
    1 ETQ200 Executing actual phase 'MAIN_SHDRUN/ALTNTAB_FILL'.
    1 ETQ399 Phase arguments:
    2 ETQ399 Arg[0] = '30'
    2 ETQ399 Arg[1] = 'ALTNTFI.ELG'
    4 ETQ399 Set environment for shadow connect:
    4 ETQ399 Set RFC variables for shadow connect:
    4 ETQ399 System-nr = '07', GwService = 'sapgw07'
    4 ETQ380 computing toolpath for request "TP_SHADOW_CONNECT"
    4 ETQ381 request "TP_SHADOW_CONNECT" means "tp needs to connect to shadow system"
    4 ETQ382 translates to group "R3UP_TOOL_GROUP_NEW"
    4 ETQ383 translates to path "exe"
    4 ETQ383 translates to path "exe"
    4 ETQ399 Set tool parameters for shadow connect:
    4 ETQ399   default TPPARAM: SHADOW.TPP
    4 ETQ010 Date & Time: 20111125111509 
    4 ETQ265 Starting report "RDDNT2MT" with variant "SAP_INIT" in batch
    4 ETQ359 RFC Login to: System="CR7", Nr="07", GwHost="SYSKCRMDEV1", GwService="sapgw07"
    4 ETQ232 RFC Login succeeded
    4 ETQ233 Calling function module "SUBST_START_REPORT_IN_BATCH" by RFC
    2EETQ360 RFC of "SUBST_START_REPORT_IN_BATCH" failed:
    2EETQ361 code/exception  : SYSTEM_FAILURE
    2EETQ362 key             : RFC_ERROR_SYSTEM_FAILURE
    2EETQ364 message         :
    2EETQ399 connection closed without message (CM_NO_DATA_RECEIVED)
    4 ETQ359 RFC Login to: System="CR7", Nr="07", GwHost="SYSKCRMDEV1", GwService="sapgw07"
    4 ETQ232 RFC Login succeeded
    2EETG894 Exception "SYSTEM_FAILURE" raised, write variant failed with error code -1
    2EETG890 Exception "SYSTEM_FAILURE" raised, job scheduling failed with error code -1
    2EETQ261 Start of batchjob "RDDNT2MT" failed
    4 ETQ010 Date & Time: 20111125111548
    We have logged through GUI to the shadow instance but we can't test the function module SUBST_START_REPORT_IN_BATCH: the shadow instance continuously dumps (in SE37, ST22, ST11, SU01... with dumps LOAD_PROGRAM_CLASS_MISMATCH, GETWA_WRONG_LENGTH, LOAD_TYPE_VERSION_MISMATCH...). When I don't have a dump (i.e. I try to activate the function module in SE37 without opening it), the GUI closes with the error: "Work process restarted, session terminated " and in the logfile dev_disp shows me:
    Fri Nov 25 11:15:30 2011
    *** ERROR => DpHdlDeadWp: W5 (pid 17996) died (severity=0, status=0) [dpxxwp.c     1522]
    Any help would be greatly appreciated.
    Thanks,
    Davide

    Hi Davide,
    Please try out below mentioned steps
    Set the USER Environment Variable u2018auth_shadow_upgradeu2019 to u20181u2019 for the <SID>adm user (set the variable while logged in as that user)
    Change the Shadow Instance service to run with the <SID>adm account
    Stop the Shadow Instance (you can leave the Central and SCS Instances running)
    Start the Shadow Instance
    Continue the EHPI process from where it left off
    Hope this helps.
    Regards,
    Deepak Kori

  • Error: RFC of "Spda_conflict_check" failed during configuration roadmap

    We are facing problem during implementation of EHP4 on IDES ERP 6.0/NW7.0 on oracle 10.2 during the configuration roadmap.
    We are using the SAPEHPi with SP level 20.
    The pahse PREP_EXTENSION/CONFLICT_CHECK terminates with the error
    Error : RFC of "Spda_conflict_check" failed
    key : RFC_ERROR_SYSTEM_FAILURE
    MESSAGE: Time Limit Exceeded.
    After checking the RFC trace we have made changes in the RFC
    destination "SERVER_EXEC"(Starts Program 'RFCEXEC' on Application
    Server) and made the necessary changes by giving the path to the
    program "/usr/sap/IE1/SYS/exe/uc/NTAMD64/rfcsdk/bin/rfcexec" and
    providing the hostname where EHP4 installation is going on and test
    connection was ok.
    Another RFC Destination "EPS_CLIENT" (Electronic Parcel Service: R/3 <-
    > EPS Client Communication) is not able to connect. we have provided
    the target host and doesnot made any changes to program entry
    i,e "/bas/BIN/gen/dbg/hp/epc".RFC conncetion is getting failed.
    What is this program does in system "/bas/BIN/gen/dbg/hp/epc".?
    log file of dev_rfc1
    Trace file opened at 20090706 134701 W. Europe Daylight Time, SAP-REL 700,0,144 RFC-VER U 3 957098 MT-SL
    ======> CPIC-CALL: 'ThSAPOCMINIT' : cmRc=20 thRc=497
    Unable to determine host address: NiHostToAddr failed                   
    ABAP Programm: RSRFCPIN (Transaction: SM59)
    User: RANGUPTA (Client: 800)
    Destination: SERVER_EXEC (handle: 2, , )
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1501
    CPIC-CALL: 'ThSAPOCMINIT' : cmRc=20 thRc=497
    Unable to determine host address: NiHostToAddr failed                   
    DEST =SERVER_EXEC
    HOST =iwdfim01
    PROG =/usr/sap/T3A/SYS/exe/run/rfcsdk/bin/rfcexec
    Trace file opened at 20090706 135428 W. Europe Daylight Time, SAP-REL 700,0,144 RFC-VER U 3 957098 MT-SL
    ======> CPIC-CALL: 'ThSAPOCMINIT' : cmRc=19 thRc=497
    Unable to determine host address: NiHostToAddr failed                   
    ABAP Programm: RSRFCPIN (Transaction: SM59)
    User: RANGUPTA (Client: 800)
    Destination: EPS_CLIENT (handle: 2, , )
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1501
    CPIC-CALL: 'ThSAPOCMINIT' : cmRc=19 thRc=497
    Unable to determine host address: NiHostToAddr failed                   
    DEST =EPS_CLIENT
    HOST =q4de3gsy207
    PROG =/bas/BIN/gen/dbg/hp/epc
    GWHOST =hs0305
    GWSERV =sapgw95
    Trace file opened at 20090707 104841 W. Europe Daylight Time, SAP-REL 700,0,144 RFC-VER U 3 957098 MT-SL
    ======> CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456
    Timeout during connection setup (check that partner exists)             
    ABAP Programm: SAPLCRFC (Transaction: SM59)
    Called function module: RFC_PING
    User: RANGUPTA (Client: 001)
    Destination: EPS_CLIENT (handle: 3, 58623496, {EAD26ADE-05F0-F12A-89D5-005056955BE2})
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 3295
    CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456
    Timeout during connection setup (check that partner exists)             
    Error RFCIO_ERROR_MESSAGE in abrfcio.c : 1817
    Trace file opened at 20090707 105909 W. Europe Daylight Time, SAP-REL 700,0,144 RFC-VER U 3 957098 MT-SL
    ======> CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456
    Timeout during connection setup (check that partner exists)             
    ABAP Programm: RSRFCPIN (Transaction: SM59)
    Called function module: RFC_PING
    User: RANGUPTA (Client: 001)
    Destination: EPS_CLIENT (handle: 2, 59247771, {5DD46ADE-47D5-F1FE-89D5-005056955BE2})
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 3295
    CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456
    Timeout during connection setup (check that partner exists)             
    Error RFCIO_ERROR_MESSAGE in abrfcio.c : 1817
    Trace file opened at 20090707 110453 W. Europe Daylight Time, SAP-REL 700,0,144 RFC-VER U 3 957098 MT-SL
    ======> CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456
    Timeout during connection setup (check that partner exists)             
    ABAP Programm: RSRFCPIN (Transaction: SM59)
    Called function module: RFC_PING
    User: RANGUPTA (Client: 001)
    Destination: EPS_CLIENT (handle: 2, 59602149, {2CD56ADE-0BA0-F100-89D5-005056955BE2})
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 3295
    CPIC-CALL: 'ThSAPCMRCV' : cmRc=20 thRc=456
    Timeout during connection setup (check that partner exists)             
    Error RFCIO_ERROR_MESSAGE in abrfcio.c : 1817

    Hi,
    No i am not running SAPEHPI from remote host. it is a local installation. ERP6.0(IE1) is an IDES system with EHP3.
    During the Conflict_check phase installer programme accesses RFC Destination "SERVER_EXEC" and "EPS_CLIENT".
    SERVER_EXEC had some wierd entry.
    Destination: SERVER_EXEC (handle: 2, , )
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1501
    CPIC-CALL: 'ThSAPOCMINIT' : cmRc=20 thRc=497
    Unable to determine host address: NiHostToAddr failed                   
    DEST =SERVER_EXEC
    HOST =iwdfim01
    PROG =/usr/sap/T3A/SYS/exe/run/rfcsdk/bin/rfcexec
    SERVER_EXEC had different path of the program rfcexec "PROG =/usr/sap/T3A/SYS/exe/run/rfcsdk/bin/rfcexec" and i changed it to "/usr/sap/IE1/SYS/exe/uc/NTAMD64/rfcsdk/bin/rfcexec". after this RFC was working fine but the conflict _check again failed with the same error.
    This time RFC EPS_CLIENT had errors:
    Destination: EPS_CLIENT (handle: 2, , )
    Error RFCIO_ERROR_SYSERROR in abrfcpic.c : 1501
    CPIC-CALL: 'ThSAPOCMINIT' : cmRc=19 thRc=497
    Unable to determine host address: NiHostToAddr failed                   
    DEST =EPS_CLIENT
    HOST =q4de3gsy207
    PROG =/bas/BIN/gen/dbg/hp/epc
    GWHOST =hs0305
    GWSERV =sapgw95
    so i changed the GWHOST to q4de3gsy207  and GWSERVER: sapgw00.
    what this program does =/bas/BIN/gen/dbg/hp/epc
    the test connection fails
    but the problem persists.
    i dont know from where it is accessing the hostname :iwdfim01
    Edited by: Ranjeet Gupta on Jul 7, 2009 5:21 PM

  • RFC user logon failed R3077

    Hello
    RFC user logon failed.
    Can anybody help me out for R3077
    Its occuring regularly
    Thanks And Regards
    Akash Gupta

    Hello akash,
    Possible reasons :-
    1> user must be of type "System" in logon data.
    2> must be unicode "in RFC"
    Rest you could follow this link :-
    /thread/250014 [original link is broken]
    Please do write to me at [email protected] in case of more queries.
    Thank you.
    Regards,
    Manomeet
    Award points if helpful **

  • RFC SAPXPG_DBDEST_ DBHOST not working

    Dear Experts,
    RFC SAPXPG_DBDEST_<DBHOST> not working in our Production system (cluster), due to this I am not able to take backup from DB13.
    I have updated latest "sapxpg" in /usr/sap/<SID>/exe/run still it is not working.
    Any idea????????
    Regards,

    Po ssible points of this error:
    1) After downloaded this file you have to RUN  ./root.sh in kernel.
    2) check the environment variable for given path of backup.
    3)  Also check the RFC connection before schedule the job.

  • Rfc log on failed user SAPSYS

    Hi,
    We are getting below alerts
    RFC/CPIC logon failed Reason=24 Type=R
    client:000
    user:SAPSYS
    Also
    RFC/CPIC logon failed Reason=1 Type=S
    client:000
    user:SAPSYS
    what is the diff between these two alerts and what is the reason for getting this.
    Regards,
    ARNS.

    Thank you too much Rob,
    But I am not able to find the answer for my case.
    What I understod from the post is:
    for using LDAP authentication for ciscopca, we will have to import users
    from LDAP integration.
    For me I do not care ( I just need to login, whether I used CUCM passwords , AD or Local I jsut need to login in any method )
    but the actual scenrio is both CUCM nad CUC are integrated with LDAP and I IMPORT USERS FROM LDAP. I belive that I have problem with authintication throw LDAP ( I am not sure)
    Is there any way to login using Local Passwords I do not need LDAP.
    and what I should tupe to login shall I add the domain to username or no? In unity there is a feiled to enter the domain, what about Connection??

  • Remote function call (RFC) for WS_DELIVERY_UPDATE fails w/o error message

    Dear Experts,
    Iu2019m using WS_DELIVERY_UPDATE to post goods issue against outgoing delivery. SE37 works fine.
    RFC call from external program with the same parameters fails without returning any message.
    It aborts during call and after that it becomes invalid.
    Also calling BAPI_TRANSACTION_COMMIT does not help.
    Any idea why SE37 works fine but RFC fails?
    Anything I am missing?
    Many thanks
    Regards
    JW

    There could be many reasons, I'd suggest to get your Basis admin involved. Take a look at the ABAP dump (ST22), update termination (SM13) or RFC errors (SM58). Although I doubt you'll find something inside SAP, since it seems that RFC call itself fails.
    This function is not a BAPI, so BAPI_TRANSACTION_COMMIT won't do any good. All it does is COMMIT WORK actually.

  • Sm59 SAPXPG_DBDEST_ sid failed

    Hi expert:
        I meet a problem that the DB13 database job can not excute successfully.Our central instance and DB installed on two seperate server.I have searched some subject about this,and found the rfc connection SAPXPG_DBDEST_<SID> is related ,but when I test the connection ,it show this error
    Logon     Connection Error
    Error Details     Error when opening an RFC connection
    Error Details     ERROR: timeout during allocate
    Error Details     LOCATION: SAP-Gateway on host chxsci / sapgw07
    Error Details     DETAIL: no connect of TP sapxpg from host prddbsvc after 20 sec
    Error Details     COMPONENT: SAP-Gateway
    Error Details     COUNTER: 190375
    Error Details     MODULE: gwr3cpic.c
    Error Details     LINE: 1973
    Error Details     RETURN CODE: 242
    Error Details     SUBRC: 0
    Error Details     RELEASE: 700
    Error Details     TIME: Tue Apr 28 17:26:45 2009
    Error Details     VERSION: 2
    Could anyone can give me some help?
    below is db job log
    2009.04.25     19:00:03     Job started
    2009.04.25     19:00:03     Step 001 started (program RSDBAJOB, variant &0000000000019, user ID YUANWEI)
    2009.04.25     19:00:03     No application server found on database host - rsh/gateway will be used
    2009.04.25     19:00:03     Execute logical command BRCONNECT On host prddbsvc
    2009.04.25     19:00:03     Parameters: -u / -jid STATS20090321190000 -c -f stats -t ALL
    2009.04.25     19:00:24     SXPG_COMMAND_EXECUTE failed for BRCONNECT - Reason: x_error
    2009.04.25     19:00:24     Job cancelled after system exception ERROR_MESSAGE
    Edited by: wei yuan on Apr 28, 2009 11:39 AM
    If I connect to the DB server to use brtools to run the database job,it run well,but when I logon the CI server to use brtools,it failed like the message said
    Edited by: wei yuan on Apr 28, 2009 11:43 AM

    Hi Michael:
      you said"In the db file put in the CI host name sidadm ie wsaptst03 rq1adm in the ci rhost file put in the opposite ci host name then sidadm."
          You mean that's I have to add an entry to the file /home/<sid>adm/.rhosts as "CIhostname <sid>adm" on DB host?and do the same on CI?But I already tvied this,it couldn't resolve my issue.Below are the coversation in the message
    Dear support:
    Refer to Note 446172 ,34219 and 10403 ,I test the command on app
    server
    rsh prddbsvc -l dhpadm sapxpg
    rshd: 0826-813 Permission is denied.
    But I have modified the .rhosts file in the home directory of
    <sid>adm,and it includ the * <sid>adm entry.
    I can execute the rsh prddbsvc date,it can execute successfully.
    So Could you give me some help?
    Hi, Dear Customer
    Thanks for your additional information. I checked with this issue with
    our next level support again.
    We want to know have you checked the permissions on the sapxpg program?
    On the DB host, it must be executable for <sid>adm.
    Best Regards
    Cherry,Tian
    SAP Global Support
    Dear Cherry:
    below is the auth of sapxpg on our DB server
    pwd
    /usr/sap/DHP/SYS/exe/run
    ls -ltr sapxpg
    -rwxr-xr-x 1 dhpadm sapsys 6411808 Apr 28 16:59 sapxpg
    How can I test if the sapxpg can execute uuder <sid>adm?
    Best Regards
    Yuanwei
    So this is what I meet now.I havn't get response till now
    Could you pls give some more  prompt to me?

  • Idoc-xi-rfc scenario random fails to be processed

    Hallo all .
    Let me first describe our scenario.
    Generally it is an IDOC - > XI -> RFC case.
    Idocs are created after an order creation .
    In XI there are two different mappings, depending on the idoc structure (the IDOC  type is the same, but the segments created are different)  and two different receivers, each one with an individual communication channel. Each channel is allowed to have up to 200 multiple simultaneous connections .
    Then, each functions decides whether the inbound data is appropriate for it and processes it or not .
    Our problem is this :
    If we send a bunch of orders (eg 100), all of them are processed successfully except of some of them, (eg 4 ).
    In the SXMB__MONI, they are all marked as "waiting for acknowledgment" .
    Yet, there is no obvious reason for their failure.
    If we send again the failed orders, then 3 of them may be processed.
    And finally if we send them again even the last one will be processed.
    So, from what I can see, this problem cannot exist due to the data we send, or the XI configuration, or the functions that are finally called. Actually, it seems to be absolutely random.
    Any suggestions would be highly appreciated .
    Edited by: John Syrigos on Dec 30, 2008 6:08 PM
    Some clarifications : The business scenario is to handle the ORDER idocs that created in the SAP ERP system from SD (Outbound Deliveries) or the Stock Transport Orders (Outbound Deliveries). The problem for the created IDocs is that if the outbound delivery is coming from SD then for each line item of the sd document fills the segment A for example and if the outbound delivery is coming from the Stock Transport Order then fills another IDOC segment for example B. For this reason we decide to create two separate interface mappings in order to send each IDOC in both of the Function Module that handle which of them will be executed. In the daily order processing the user every afternoon use a standard SAP ERP transaction and collect all the outbound deliveries and create for the collectively the appropriate IDOCs. We suppose the mass processing will create some problems.
    Thanks in advance

    hi,
    one simple advice (less then one day) would be to change
    >Generally it is an IDOC - > XI -> RFC case.
    either to:
    Generally it is an IDOC - > XI -> ABAP proxy case.
    or if this is not abap proxy enabled receiver system to:
    Generally it is an IDOC - > XI -> IDOC case.
    if you already have a working RFC then changing it to and IDOC
    and changing a mapping is less then one day and in both cases
    abap proxy and IDOC you will have a clear status and LOG!
    (as both IDOCs and ABAP proxies are persistent in receiver system)
    this is the best possible option I believe and nothing will get lost for sure
    Regards,
    Michal Krawczyk
    http://mypigenie.com XI/PI FAQ

  • Session enabled RFC Web Service Fails & WSDL has enablesession=false

    Please help  Thanks in Advance
    A stateful Webservice with 2 RFCs, consumed by a .NET application fails and the cause seems to be because of statelessness.
    The call to 1st RFC succeeds and the call to the 2nd RFC fails with the below error message:
    An exception with the type CX_SY_REF_IS_INITIAL occurred, but was neither handled locally,
    nor declared in a RAISING clause.Dereferencing of the NULL reference"
    Question:
    1- Even though the "Session-Oriented Communication" is checked, the WSDL has EnableSession as false. Is there any special step to make it true?
    2- Even though the SOA Manager says that the Session is enabled and SessionMode is Http Cookie, the HTTPFiddler doesn't show any cookie in the .NET side.
    3- Are Web Service enabled HRXSS RFCs capable of performing Session Oriented Communication?
    Eg. Can the RFCs HrxssPerInitPernr and HrxssPerReadP0002Us be called in a sequence?
    service ws = new service();
                ws.Credentials = new System.Net.NetworkCredential("abcd", "abcd");
                System.Net.CookieContainer cookie1 = new System.Net.CookieContainer();
                ws.CookieContainer = cookie1;
                //BELOW CALL SUCCEEDS
               HrxssPerInitPernrResponse response = ws.HrxssPerInitPernr(new HrxssPerInitPernr()
    { Infty = "0002", Pernr = "52222068", Userdate="2009-01-01" });
                HrxssPerReadP0002Us read = new HrxssPerReadP0002Us() { Infty = "0002"  };
              // BELOW CALL FAILS
                HrxssPerReadP0002UsResponse readResponse = ws. HrxssPerReadP0002Us (read);
                HcmtBspPaUsR0002 [] records = readResponse.Records;
    EXCEPTION
    System.Web.Services.Protocols.SoapException was unhandled
      Message="CX_SY_REF_IS_INITIAL:Exception CX_SOAP_ROOT occurred (program: CL_SOAP_RUNTIME_ROOTCP,
    include:CL_SOAP_RUNTIME_ROOT CM004, line: 110)
    An exception with the type CX_SY_REF_IS_INITIAL occurred,
    but was neither handled locally, nor declared in a RAISING clause.Dereferencing of the NULL reference"
      Source="System.Web.Services"
      Actor=""  Lang="en"  Node=""  Role=""   StackTrace:
           at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke  at HrxssPerReadP0002Us
    Edited by: Tony TB on Jul 2, 2009 9:56 AM

    to get this working you need to enable some services in transaction SICF
    to know a complete list of all services to be enabled check oss note number 517484
    particularly these nodes should be active
    /default_host/sap/bc/soap/wsdl and
    /default_host/sap/bc/soap/wsdl11
    (to get the error thrown by the server instead of page cannot be found, in your browser go to tools->internet options->advanced and uncheck the check box "show friendly error messages" and run the wsdl button again)
    Regards
    Raja

  • RFC connection (SM59) fails with load balancing enabled.

    Hello All,
    We have an RFC connection setup between two SAP systems. The RFC connection works fine if it points to the destination system. But if we enable load balancing, the connection fails with this error:
    ERROR                partner not reached (host <hostname>, service sapms<SID>)
    LOCATION             SAP-Server <source system> on host <host name of source> (wp 1)
    DETAIL               NiPConnect2
    CALL                 SO_ERROR
    COMPONENT            NI (network interface)
    COUNTER              3027
    ERROR TEXT           Connection refused
    ERROR NUMBER         79
    MODULE               niuxi.c
    LINE                 1069
    RETURN CODE          -10
    SUBRC                    0
    RELEASE              46D
    TIME                 Mon Aug 18 18:33:30 2008
    VERSION              34
    I've checked the /etc/services file, the following entries exist
    sapms<SID> 3606/tcp
    sapms<SID>s 3600/tcp
    lstst at the source system works fine
    lgtst -H <target host name> -S sapms<SID>
    niping at the target system has a problem
    > niping -c -S 3606
    Mon Aug 18 10:23:14 2008
    connect to server o.k.
    ERROR => NiTClientLoop: NiTReadLoop (rc=-6) [nixxtst.cpp  2629]
    ERROR       connection to partner broken
    TIME        Mon Aug 18 10:23:14 2008
    RELEASE     640
    COMPONENT   NI (network interface)
    VERSION     37
    RC          -6
    MODULE      niuxi.c
    LINE        905
    DETAIL      NiPRead (0.0.0.0/0, hdl 1)
    SYSTEM CALL recv
    COUNTER     1
    Please help me figure out the problem.
    regards,
    Roshni

    Hi,
    I think you have added wrong port entry in services file.
    The entry of sap servers in services file for load balancing are
    sapms<SID>  36<instance number>/tcp
    so please check once again and add the entry using above formula in services file.
    Also add the entry of all SAP servers in your hosts file.
    <IP> <HOSTNAME>

  • RFC to SMP fails in SDCCN

    Hi,
    I am trying to setup a RFC connection up to Solution Manager 7. I have created it and i wanted to use it in SDCCN in the satelitte system. When i assign it in Task specific settings i get the following error message about ping failing:
    RFC test result: <name of RFC_DEST here> not functional
    user ***** has no RFC authorization for function group SYST.
    Does anyone know what authorization(s) the user in the RFC conneciton needs for this to work?
    Thanks,
    Mani

    Hi Mani,
    note 824521 mentions the following:
    Ensure that the user for the 'BACK' destination exists in the SAP        
    Solution Manager system, and has the following profiles:                                                                               
    o  D_SOLMAN_RFC - SAP Solution Manager RFC User                                                                               
    o  S_BDLSM_READ - Authorization check for Service Data Control       
            Center (SDCCN)                                                                               
    o  S_CSMREG - CSMREG                                                                               
    o  S_CUS_CMP - Compare Customizing between systems (display only)   
    perhaps that helps.
    best regards,
    -David.

  • RFC test conn failing

    Hi
    I just have created TCP/IP type rfc, i have provided the xyz system details to abc system. Since i want to access xyz system data via abc system. When i done the test connection saying failed.
    thanks

    can be many reasons.....
    target system may be down....
    ip address of the target system may be incorrect...
    logon credentials may not be correct...
    try to see if you can figure out

Maybe you are looking for

  • Sorting photo albums in iphoto

    how do I put my photo albums in iphoto in alphabetical order without inserting them into other albums?

  • How to find ECC tables/ reports based on which a DB View is created?

    Hi All, We have customized data source created based on a View/ Table.   How can i find the ECC tables/ reports based on which this View has been created and also the logic behind which the different fields extract data from ECC.. Please advice. Than

  • Regarding  firming indicator of PR in MD04

    Dear all, If we change quantity of  PO item, the realted to PR item will be firmed, but the field  EBAN-FIXKZ is still blank,  when I display in MD04 ,  there is a star sign in the PR  then click details of element of it  and find the field 'firmed' 

  • Need to remove the space between  af:panelGrouplayout & af:panelBox

    Hi All, I am using JDeveloper 11.1.1.6. My Scenario is I need to stretch some fields for all the browsers so I am using Panel box inside the panelStretchLayout<f:facet  name=center>. It's working fine.But Some Scenarios need to show header items  abo

  • How i can stop Firefox to check compatibility ?

    i have two version of Firefox and have two different problem that when i close one and open another then i found that they spent some second on checking compatibility of plugins so if i can stop them to check compatibility then how i can. second thin