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

Similar Messages

  • Error in Webservice Call HTTP error (return code 404, message conn failed)

    Hi
    We wish to call  a standard EP7 webservice through ABAP.
    When we try to create consumer proxy , we get the following error.
    HTTP error (return code 404, message "conn failed")
    Message no. SPRX090
    ==> Display Error Document
    If you want to generate a proxy for an external WSDL document by specifying a URL, check that the proxy settings of the system are correct (transaction SICF - Client - Proxy Settings). If you want to generate a proxy for an XI Repository object, check the connection to the Enterprise Services Builder as follows:
    Check List for Setting Up a Connection to the Service Repository
    1. The address of the Enterprise Services Repository must be known in the SAP system
    Check with report SPROX_CHECK_IFR_ADDRESS
    The address is taken from the following parameters in the exchange profile ('Connections' section):
    com.sap.aii.connect.repository.name: Server (for example,pwdf0436)
    com.sap.aii.connect.repository.httpport: Port (for example, 1080)
    com.sap.aii.connect.repository.contextroot: Root (for example,rep)
    The logon data is also read from the exchange profile ('ApplicationSystem' section):
    com.sap.aii.applicationsystem.serviceuser.name: User
    com.sap.aii.applicationsystem.serviceuser.pwd: Password
    As an alternative to using the exchange profile, you can maintain the RFC destination SAP_PROXY_ESR. If this RFC destination is maintained it will be used by the proxy generation in place of data from the exchange profile to access the Service Repository. In this case, the Exchange Profile will even not be read.
    The RFC destination has to be set up using transaction SM59 and should look like this:
    RFC Destination: SAP_PROXY_ESR
    Connection Type: G (HTTP Connection to External Serv)
    Description1: ESR for Proxy Generation
    Target Host: esr_host
    Service No: 1080
    Path Prefix: rep
    Logon and Security:
    Basic Authentication: active
    User: esr_user
    Password: esr_password
    2. The HTTP Framework of the Web Application Server must function
    Check with report SPROX_CHECK_HTTP_COMMUNICATION
    If necessary, contact your system administrator. Please be aware of the fact, that the HTTP framework is depending on the application server. Thus the result of the report may differ for different application servers.
    3. Proxy generation must interpret the data of the Enterprise Services Repository correctly
    Check with report SPROX_CHECK_IFR_RESPONSE
    you can also login in dev and go to Xn se91
    enter msg id SPRX and msg no 090
    select the message and click on long text..
    you get the same message in a formatted manner..
    How to get rid of this ?
    Regards
    Rajendra

    Hi
    we have given the correct path as we have tested the webserive from
    other technology (.net) by providing the same path.
    regards
    Rajendra

  • 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 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 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 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??

  • Nokia N8 says "conn. failed conn. unavailable" eve...

    My Nokia N8 says "conn. failed conn. unavailable" twice in popup like baloon every one or two minutes and this happens after and before usb connection also.
    It takes a big resource and I cannot watch video, capture video/voice and even type an SMS because everytime it appears phone stops responding to my touches and this is absolutely annoying.
    I tried these ways to solve it :
    1) connected the phone to Nokia configuration tool to manage/delete every single access points
    2) tried to install newer Ovi support software but the Ovi suite says it is up to date
    3) tried to uninstall the Ovi and Ovi store apps on my phone but I get "removing cancelled", it seems they're built in !!!
    4) I read every posts about rebooting in offline and rebooting without sim card
    5) I changed the connection settings to "always ask"
    but unfortunately no success
    I know how to reset my phone via 3buttons and *#7370# code but I'm not gonna do it for every error I get in new Symbian^3 because I have plenty of softwares and I don't have much time to install and configure them
    Somebody please help me to handle this error which is really really bothering me.
    Thanks in advance
    Solved!
    Go to Solution.

    I have just bought a N8 and I had the same problem... I solved it by going to settings/ connectivity/ settings/ network destinations and deleting all the access points from each connection folder (do this by pressing on the connection folder, for example 'internet' then delete the destinations by holding your finger down on them til the menu appears then select delete) I deleted the whole lot, then sent a text to my mobile network (o2) to resend me the net settings, I saved them from the text and when I went back to the destinations list (as above) I found the phone had put the settings from o2 into another destination folder called 'uncategorised'. I think the problem with symbian is that it was causing the destinations in the 'internet' folder to conflict with the destinations in 'uncategorised', so because I had erased the settings from 'internet'', all I had to do was move the destinations from 'uncategorised' to 'internet', which means the uncategorised folder had to be deleted, but now because my phone is doing everything from just the 'internet' folder, theres no confusion, and I havent had that 'connection error' message since

  • N8 "conn. failed conn. unavailable"

    Hi I have a problem with my N8 O2 UK Gray, latest SW (14.002)
    I had faulty flash and had it repired via nokia tech support.
    Letter says they've fixed flash and reinstalled software.
    When I received the phone first thing was updating few apps, including Ovi Store. At that point it all seemed ok, even though Ovi wouldnt update due to some error, but it did go online and downloaded data. Next thing was restoring all backup data, and from this point my N8 wouldnt go online no matter which connection I used, either cellular network and wifi. Just after starting connection popup b'loon says "conn. failed conn. unavailable" and does this to all access points I have stored.
    I have tried both soft & hard reset (may even be 10 times so far), reinstalling software using NSU and Ovi Suite and still getting nowhere. To my knowledge only thing left is "Three Fingerz" method, but dont think its gonna help and I dont want to wipe half of programs preinstalled...
    Anyone had similar problem? I have repair booked already, but Im afraid its gonna be sending the phone away again and again (when I restore backup again).
    Plz help

    Hi I have a similar prob with my E7. Seems to be common. There should be access points in the INTERNET section. Some software is trying to connect to internet
    Go to - MENU-SETTINGS-CONNECTIVITY-SETTINGS-DESTINATIONS.  and inside DESTINATIONS you will see INTERNET. Create access point in this INTERNET folder. For me its working fine.

  • Dmesg error.... Test WP failed, assume Write Enabled

    Hi all....
    there seems to be some kind of error going on. When I type
    $dmesg | tail -3
    [ 1398.681274] sd 4:0:0:0: [sdb] Test WP failed, assume Write Enabled
    [ 1398.683528] sd 4:0:0:0: [sdb] Asking for cache data failed
    [ 1398.683542] sd 4:0:0:0: [sdb] Assuming drive cache: write through
    This is repeated throughout the log files. And the funny thing is I don't have anything connected i.e. no usb drives, no secondary hdds. Also,
    $df -h /dev/sdb
    Filesystem      Size  Used Avail Use% Mounted on
    /dev            493M     0  493M   0% /dev
    What am I missing here?
    Update:
    Found a similar thread : https://bbs.archlinux.org/viewtopic.php?pid=1059099
    Seems like its the card reader afterall.....
    Last edited by whzee (2012-02-17 10:06:28)

    Looks like the firmware update solved it.

  • Error message "test page failed to print" in windows 7 ultimate 32 bits

    I have installed printer a hp deskjet 1515 in windows 7 ultimate 32 bits and it is successfully installed, however  when I tried to test print out there showed message "test page failed to print. Would you like to view the print troubleshooter
    for assistance?". I tried to clicked Yes and running the troubleshooter until completed but the result still the same showed the same message above when test print again.
    Please need assistance how to solve this problem
    Thanks
    Sopyan

    Hi Sopyan,
    On current situation, please refer to following steps and check if help us to troubleshoot this issue.
    1. Please check if use the correct printer driver and also check if need to update it.
    2. Please check if firewall was enabled or third-party security application ran. Please temporarily disable them and monitor the result.
    3. Please use another administrator account to logon and print again, then check if this issue still exist.
    4. Please open Event Viewer and check if find some relevant events or errors.
    If any update, please feel free to let us know.
    Best regards,
    Justin Gu
    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]

  • Test-CsGroupExpansion Failed

    Hi All,
       I ran Test-CsGroupExpansion in all my three FE servers but all failed with below error,
          the server was unable to process the request due to an internal error, For more information about the error, either turn on IncludeExceptionDetailInFaults on the server in order to send the exception information back to client, or turn
    on tracing as per the Microsoft .NET frame SDK documentation and inspect the server trace logs.
    could you share with me if you have any solution. many appreciation. thanks
    Best Regards
    Thomas

    Hi,
    Did the other Lync Server function work normally?
    Please check if Lync Services started on FE Servers. Then check if only this command “Test-CsGroupExpansion” failed or all other Lync command failed as well.
    If the issue only happen for this command, please include the Verbose parameter, such as following:
    Test-CsGroupExpansion -TargetFqdn "atl-cs-001.litwareinc.com" -GroupEmailAddress "[email protected]" –Verbose
    If the issue happen for all Lync command,
    Please make sure CMS replication update to the latest status.
    Please make sure Lync Server update to the latest version and then test again.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • Build file: [junit] Test unitTestMethod FAILED

    build code:
    <target name="testing">
    <junit showoutput="yes">
    <test name="unitTestMethod">
    </test>
    </junit>
    </target>
    When I run the unitTestMethod it is successful. When I try to run it through ant, it says:
    [junit] Test unitTestMethod FAILED
    What am I doing wrong here?

    hi Tim
    (1) It looks like the viewlet you refer to also has that message:
    "[junit] Test translatorTest FAILED"
    (2) You could try to change the Ant "Output Level" using the "Project Properties" dialog, on the "Ant" > "Options" panel. Maybe set it to "Debug" to get more information.
    (3) The Ant documentation says that the "name" attribute for the nested element "test" should be "Name of the test class.", in the viewlet it looks like that would be "test.mypackage.translatorTest".
    see http://ant.apache.org/manual/OptionalTasks/junit.html#nested
    success
    Jan Vervecken

  • Exchange 2010 MP : Some Client Access test cmdlets failed to run

    Hi all,
    This error is triggered in SCOM 2012 R2 about a single Exchange 2010 SP3 server :
    Exchange 2010 MP : Some Client Access test cmdlets failed to run.
    When I dig into the error context, I can see it's about the cmdlet "Test-CalendarConnectivity -TestType:External".
    The TechNet
    https://technet.microsoft.com/en-us/library/hh377605(v=exchg.140).aspx proposes to verify that the URL for the external virtual directory can be accessed by running the Test-OwaConnectivity.
    OK.
    But what sould I specify for the parameter -MailBoxCredential required for Test-OwaConnectivity -URL my_url -MailBoxCredential ?
    Thank you.
    Have a good day.
    FXE

    Hi,
    Under Administration, run as configuration, profiles, you can check Default action account.
    Local system is the account account for agents by default, you can change to use another account.
    Regards,
    Yan Li
    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 Subscriber Support, contact [email protected]

Maybe you are looking for

  • How can I sync my iPhone with another iTunes Library, but be able to keep my songs?

    I logged onto my computer and all my iTunes music was suddenly gone. It was almost like it had deleted itself. Now I can't find the same Library I was using before and can't download music. If I try to sync it to another computer, it will delete all

  • Problem with system_moving_window

    Hi all, I have  a problem with the performance view of in the enterprise manager 11g: the graphs do not show any lines of , just axes  and when switched to tabular view, the  Time column shows Invalide Date  instead of a date.

  • SAP XI, liscensing, adapters confusion

    Hi all - About to embark on a NW2004s green field implementation.  ECC and BI in-scope, XI and EP out of scope for phase I.  Require clarification regarding XI, adapters and interfacing into ECC.  Organization does not have XI licensed except as prov

  • Raw device support in 11gr2

    We are currently running oracle 10.2.0.4 RAC using raw devices on the hpux itanium 64bit platform. We want to upgrade to 11.2.0.3 and I am wanting to know what parts of of database environment will still be able to utilize raw devices? Can my datafil

  • How I could transport table entries from table NRIV

    Does anyone knows how I could transport table entries from table NRIV. I can mark them in se16 but the "table entries"->"transport" is grey. What shouuld be done. Is there another way to transport NRIV entries. Thank you in advance