NiConnect Unsuccessful, Communication error, CPI-C function: CMINIT

Hello,
NiConnect Unsuccessful, Return Code: -0012                   
> Host: 10.4.0.34                                            
> Service: sapgw00                                           
Communication error, CPIC return code 020, SAP return code 666
> CPI-C function: CMINIT(SAP)                                
SM21 is advising frequently of that problem.
I also receive those messages:
Communication error, CPIC return code 002, SAP return code 679
> CPI-C function: CMINIT(SAP)                                
Communication error, CPIC return code 020, SAP return code 497
> CPI-C function: CMINIT(SAP)                                
All those errors are not beeing received every XXX minutes, the more we use SAP, the more we get those communications errors.
My system Specifications are:
R/3 release 4.6C
OS: SunOS
DB: Oracle
Thanks in advance

Good day,
With reference to SAP Note Note 63347 - List: CPIC error codes
your error code is listed as GW_CONNECT_FAILED            236 No connection to the gateway
GW_CONNECT_FAILED            236 No connection to the gateway
So if I were you I would investigate in this direction.
Kind Regards,
Johan

Similar Messages

  • Communication error in login function in windows mobile in sup 2.0

    hello experts,
    i have developed sample application using sup 2.0
    the application works fine for windows
    I am using windows xp sp3
    i refer all the dll required for the application
    i also configure Active sync 4.5 and Virtual machine 2007 SP1 for windows mobile 6.0 professional emulator
    but when i create application for windows mobile
    it throw error at
    LoginToSync("supAdmin","s3pAdmin");
    as
    iAnywhere.Data.UltraLite.ULException: Communication error
       at iAnywhere.Data.UltraLite.ULConnection.RuntimeError(IntPtr natKey, ULSQLCode code, Object p0, Object p1, Object p2)
       at iAnywhere.Data.UltraLite.ULConnection.RuntimeError(ULSQLCode code)
       at iAnywhere.Data.UltraLite.ULConnection.Synchronize()
       at com.sybase.afx.db.ConnectionUtil.Synchronize(ConnectionWrapper dbConn, SyncStatusListener listener, Connection connection, String[] mboNames, Hashtable tableMBOMap)
       at com.sybase.afx.db.ConnectionUtil.Synchronize(ConnectionWrapper dbConn)
       at TestMobile.TestMobileDB.Synchronize(String synchronizationGroup, SyncStatusListener listener)
       at TestMobile.TestMobileDB.InitialSync()
       at TestMobile.TestMobileDB.LoginToSync(String username, String password)
       at SMATestMobile.Form1.btnContact_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.ButtonBase.WnProc(WM wm, Int32 wParam, Int32 lParam)
       at System.Windows.Forms.Control._InternalWnProc(WM wm, Int32 wParam, Int32 lParam)
       at Microsoft.AGL.Forms.EVL.EnterMainLoop(IntPtr hwnMain)
       at System.Windows.Forms.Application.Run(Form fm)
       at SMATestMobile.Program.Main()
    Details:
    StreamErrorCode =SOCKET_CONNECT
    StreamErrorSystem = 10060
    StreamErrorParameters =
    Regards,
    Rahul

    change the ActiveSync connection setting to accept DMA connection at the following:
    ActiveSync menu -> connection setting -> tick allow connections to one of the following: -> choose DMA
    Visual studio emulator will connected to the activesync when cradle and you should able to sync the database.
    Try it out.
    Best Regards
    Choong

  • Communication error, CPIC return code 017, SAP return code 236

    Hi guys,
    Need your advice, my SAP system suddenly appear this messages  ( SM21).
    Please assist me.
    Communication error, CPIC return code 017, SAP return code 236
    > CPI-C function: CMINIT(SAP) 

    Hi Uday,
    My SAP using ABAP. Version 4.7
    All RFC working fine except for the OSS
    Error message
    Details Page 2 Line 22 System Log: Local Analysis of ALBANIA                  1                                                                               
    Time     Ty. Nr Cl. User         Tcod MNo Text                                                          
    13:52:36 DIA 01 800 SYSADM            R49 Communication error, CPIC return code 017, SAP return code 236                                                                               
    Details                                                                               
    Recording at local and central time........................ 27.03.2009 13:52:36                          
    Task................ 57584 . 01 D1 Dialog work process No. 01                                            
    User................ SYSADM                                                                               
    Client.............. 800                                                                               
    Terminal............ 10.0.38.                                                                            
    Session............. 1                                                                               
    Transaction code....                                                                               
    Program name........ SAPMSSY1                                                                            
    Problem class....... K    SAP Web AS Problem                                                             
    Development class... STSK

  • Communication error when calling web service for checkin and checkout files

    Hello,
    I am trying to checkout  and also to checkin files within the DMS via web service. The files are stored in the VAULT (=TRESOR) without the data server parth and DVA computer.
    For checkout:
    Original zum Ändern auschecken
      CALL FUNCTION 'BAPI_DOCUMENT_CHECKOUTMODIFY2'
        EXPORTING
          documenttype    = pi_documenttype
          documentnumber  = pi_documentnumber
          documentpart    = pi_documentpart
          documentversion = pi_documentversion
          documentfile    = lf_documentfiles
          pf_http_dest    = ''
          pf_ftp_dest     = ''
        statusextern    = lf_status
        IMPORTING
          return          = lf_return
          checkedoutfile  = ls_checkedoutfile.
    and for checkin:
    Dokument einchecken
      CALL FUNCTION 'BAPI_DOCUMENT_CHECKIN2'
        EXPORTING
          documenttype    = pi_documenttype
          documentnumber  = pi_documentnumber
          documentpart    = pi_documentpart
          documentversion = pi_documentversion
          hostname        = ''
          statusintern    = ''
       statusextern    = lf_status
          statuslog       = ''
        IMPORTING
          return          = lf_return
        TABLES
          documentfiles   = lt_files.
    But it is not working cause I always get a 'communication error' from the function CV120_FTP_START_REG_SERVER when calling one of these BAPIs via web service:
    IF pf_check_gui = 'X'.
        CLEAR: gf_gui_exist,
               gf_gui_checked.
        CALL FUNCTION 'RFC_PING'
             DESTINATION 'SAPGUI'
             EXCEPTIONS: communication_failure = 1 MESSAGE lf_msg_text
                         system_failure        = 2 MESSAGE lf_msg_text.
        IF sy-subrc = 0.
          gf_gui_exist = 'X'.
        ELSE.
          CLEAR gf_gui_exist.
        ENDIF.
        gf_gui_checked = 'X'.
      ENDIF.
    Afterwards the following function is called where I got the error 'Program no longer started via RFC. No return possible.':
    -> Vault with DVA -> ** Start FTP on the client
      CALL FUNCTION 'SYSTEM_START_REG_SERVER'
           EXPORTING: progname    = 'sapftp'
                      startmode   = ''                          " X
                      exclusiv    = 'Y'
                      waittime    = 500
                      startcomp   = 'C'    " G=gui, C=RFC
                      startpara   = ' '
          IMPORTING: err_code    = lf_errno
                     err_mess    = lf_error_msg
                     destination = pfx_destination.
    Regards
    Jens

    Hi! As mentioned below I had the same problem.
    There are two notes concerning security setting of the SAP Gateway:
    1069911 - GW: Changes to the ACL list of the gateway (reginfo)
    1480644 -  gw/acl_mode versus gw/reg_no_conn_info
    Your basis team should check if the Gateway settings allow external programs to register on the gateway.
    Best regards
    Dominik

  • Communication error with the LOCAL_EXEC Function BAPI_PTMGREXTATTABS_CHECK

    Hello,
    We use timesheet (CATS) in a separate SAP system from the SAP system in which HR resides.
    I found out how the loosely coupled scenario with CATS works with a SAP HR system. We transfer the workschedule and absence data with report RPTIMEOVERVIEW_REPLICATE to the SAP system in which CATS is used. This data is then available in the PTIMEOV1 table to perform time checks in CATS. The distribution model for ALE takes care of the fact that the data is posted into table PTIMEOV1. With BD97 I set up that the BAPI: PTMGREXTATTABS.CHECK has RFCdestination for synchronous calls  = LOCAL_EXEC.
    When I want to record on an attendance code without clock times then the above works fine. The SAP system in which CATS resides looks into table PTIMEOV1. So far so good.
    However, when I want to record hours WITH clock times then I cannot save the data. The error message HRTIM00CATS667 shows up:
    "Communication error with the LOCAL_EXEC Function BAPI_PTMGREXTATTABS_CHECK is no t available  system"
    Diagnosis
    An error has occured during communication with the HR System. The HR data in the time sheet cannot be validated.
    From the error message description it seems that it wants to check the SAP HR system instead of looking for the check in the SAP system in which CATS resides.....
    When I change the value from LOCAL_EXEC to the system in which HR resides then the error disappears, but then it really checks into the SAP HR system (synchronous check with that SAP HR system) and that is not what the customer wants. The check should be local on the PTIMEOV1 table (in case the SAP HR system is down).
    I did not find any OSS notes on the topic....or other info on SDN.
    Can anyone help me out concerning this starnge error message, at least for me?
    Thanks very much in advance,
    Kind regards,
    Mirko

    "A point to add"
    I just noticed that following message is being continously receiving in the database alert_log:
    Sat Oct 9 16:04:52 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:05:32 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:06:30 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:07:10 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:09:35 2010
    Incremental checkpoint up to RBA [0x1d.1f9928.0], current log tail at RBA [0x1d.1f9a79.0]
    Sat Oct 9 16:11:52 2010
    WARNING: inbound connection timed out (ORA-3136)
    Sat Oct 9 16:29:40 2010
    Incremental checkpoint up to RBA [0x1d.1f9b87.0], current log tail at RBA [0x1d.1f9bf4.0]
    ~
    Please help.

  • Niconnect Unsuccessful...error in sm21

    Hi all,
      Rcently i installed application server to my Ci server.
    in Ci server in sm21 it is creationg logs like Niconnect unsuccessful, >host KBXSBUA service :sapgw01.
    in sm51- if i double click on new server, it won't show work process.
    but this function is working fine in new server.
    Due to new server, my Ci server getting hang, workprocess
    are under RPC state.
    Please let me know how resolve this issue.
    Regards,
    satish kumar

    Hi Satish,
    Have you maintenace the /etc/service and /etc/hosts file for your new applciation server
    and also add it to other server like your CI also need to have the sapgw<nr> sapdp<nr>
    Regards,
    Fendi

  • Communication error in BEx 7.0

    Hi all,
    We use the BI 7.0 for a week (SP 14). In the BEx Analyzer (SAPGUI 6.40 SP 25, BI Add-on 7.0, SP1401, Revision 801) an error window came up quite often saying that severe error happened and the program need to be closed, detail in the system log. Then the query/workbook closed and the user has to logon again.
    In the system log we can see the followings.
    R4  9 Communication error, CPIC return code 020, SAP return code 223
    R5  A > Conversation ID: 48065065                                  
    R6  4 > CPI-C function: CMSEND(SAP)                                
    Q0  I Operating system call recv failed (error no. 10054)          
    S2  3 Connection to CPI-C client 606 was closed                    
    S7  4 > Partner LU name:                                           
    S0  R > Host: 10.1.101.31                                          
    S0  I > Partner TP Name: BEXANALY                                  
    We don't have any network problem, the error happen just since the upgrade.
    Does anyone have any idea how to avoid this error?
    Thanks,
    Gabor
    Message was edited by:
            Gábor Szécsi

    No, answer, but som ekind of soultion. Changing the gw/cpic_timeout and other gateway-related profile paramters the problem doesn't arise so often.
    We had the following parameters:
    gw/cpic_timeout             100
    gw/max_sys                  1000
    gw/max_overflow_size    100000000
    gw/conn_disconnect       2700
    gw/max_conn                2000
    gw/so_keepalive             1
    Note, that the BI 7.0 BeX require huge amount of mem and powerfull CPU on the frontend side, as well. This also helps.
    Rgds,
    Gábor

  • CPIC function - CMINIT (SAP)

    SM21 is advising frequently of this problem.
    CPIC function - CMINIT (SAP)
    I also receive these messages:
    Communication error, CPIC return code 002, SAP return code 679

    Hi,
    Please check SAP Note 353597.

  • Communication error CPIC return code 019 SAP return  code 728. Delta error

    Hello Experts,
    Would just like to ask if what we suspect is correct. We have running deltas in process chains occurring every early morning. However, upon checking the delta that should have run today, I found that the delta did not push through. I only found this one dump in SM21 that I think is related to the issue:
    MNo.
    R49 Communication error, CPIC return code 019, SAP return code 728
    R5A > Conversation ID: 61442686                                  
    R49 Communication error, CPIC return code 019, SAP return code 728
    R64 > CPI-C function: CMSEND(SAP)                                
    R5A > Conversation ID: 61443687                                  
    R64 > CPI-C function: CMSEND(SAP)                                
    R49 Communication error, CPIC return code 019, SAP return code 728
    R5A > Conversation ID: 61444687                                  
    R64 > CPI-C function: CMSEND(SAP)
    Now we think that the delta did not push through because we are encountering issues with regards to our SAP R/3 system (the source system) and it is currently inaccessible. Did the delta not push through because of the issues and inaccessibility/uber slow processing of our SAP R/3 server? And is the error specified above illustrating this? Any explanation would help. I have already tried looking for similar issues but cannot find anything. Please help. Thanks!

    Hi
    As far I know, The SAP Gateway carries out CPI-C services within the SAP world, which are based on TCP/IP. These services enable SAP Systems and external programs to communicate with one another.
    CPI-C services can be used either in the ABAP program or for the external programs via the interfaces.
    As RFC (remote function call) is based on CPI-C, all RFC connections also pass through the SAP Gateway.
    Errors When Starting Remote Programs Using Remote Shell
    When you use remote shell to start CPIC programs on other hosts, the following conditions apply:
    The (gateway) UNIX ID must be available on the other host
    The gateway host must be entered in the remote host in the file ".rhosts". This file must be located in the HOME directory of the (gateway) UNIX ID.
    The program you want to start must be installed in the HOME directory of the (gateway) UNIX ID on the remote host.
    Read more from help
    http://help.sap.com/saphelp_nw04s/helpdata/en/99/5f8c0bcb7d4280aa862254cffceada/frameset.htm

  • R49 Communication error, CPIC return code 020, SAP return code 223

    SM21,every 15 minutes occurs the following error:
    R49 Communication error, CPIC return code 020, SAP return code 223
    R5A dialog id :5442063
    R64  CPI-C function: CMSEND(SAP)
    but the partner system can receive SAP data every 15 minutes.
    what does the error mean? and how to solve it ?
    thanks ahead.

    Hi,
      The following note  63347 provides more information about the error message.
    Regards
    Srivatsa.V

  • Communication error, CPIC return code 020, SAP return code 223

    Hello.
    I have system NetWeatver 2004s
    Client 101 is a client process integration, UME in ABAP
    Sometimes java is restarted...
    At that moment in SM21 I can see next log:
    16:03:36 RD                                     S2  3 Connection to CPI-C client 016 was closed
    16:03:36 RD                                     S7  4 > Partner LU name:
    16:03:36 RD                                     S0  R > Host: 10.0.0.53
    16:03:36 RD                                     S0  I > Partner TP Name: jlaunch
    16:03:36 DIA  007 101 SAPJSF                    R4  9 Communication error, CPIC return code 020, SAP return code 223
    16:03:36 DIA  007 101 SAPJSF                    R5  A > Conversation ID: 64435936
    16:03:36 DIA  007 101 SAPJSF                    R6  4 > CPI-C function: CMSEND(SAP)
    What is this? Why JAVA is restarted ?

    From dev_jcontrol
    [Thr  1] Wed Mar 25 16:03:38 2009
    [Thr  1] JControlICheckProcessList: process server0 (pid:9773) died (RUN-FLAG)
    [Thr  1] JControlIResetProcess: reset process server0
    [Thr  1] JControlICheckProcessList: running flight recorder:
         /opt/java1.4/bin/java -classpath ../j2ee/cluster/bootstrap/sap.comtcbloffline_launcherimpl.jar com.sap.engine.offline.OfflineToolStart com.sap.engine.flightrecorder.core.Collector ../j2ee/cluster/bootstrap -node ID47163850 1237887114 -bz /usr/sap/KXD/SYS/global
    JControlStartJLaunch: program = /usr/sap/KXD/DVEBMGS04/exe/jlaunch
    -> arg[00] = /usr/sap/KXD/DVEBMGS04/exe/jlaunch
    -> arg[01] = pf=/usr/sap/KXD/SYS/profile/KXD_DVEBMGS04_pasved
    -> arg[02] = -DSAPINFO=KXD_04_server
    -> arg[03] = -nodeId=1
    -> arg[04] = -file=/usr/sap/KXD/DVEBMGS04/j2ee/cluster/instance.properties
    -> arg[05] = -syncSem=186
    -> arg[06] = -nodeName=ID47163850
    -> arg[07] = -jvmOutFile=/usr/sap/KXD/DVEBMGS04/work/jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=/usr/sap/KXD/DVEBMGS04/work/std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=/usr/sap/KXD/DVEBMGS04/work/dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=/usr/sap/KXD/SYS/profile/KXD_DVEBMGS04_pasved
    -> arg[15] = -DSAPSTART=1
    -> arg[16] = -DCONNECT_PORT=49453
    -> arg[17] = -DSAPSYSTEM=04
    -> arg[18] = -DSAPSYSTEMNAME=KXD
    -> arg[19] = -DSAPMYNAME=pasved_KXD_04
    -> arg[20] = -DSAPPROFILE=/usr/sap/KXD/SYS/profile/KXD_DVEBMGS04_pasved
    -> arg[21] = -DFRFC_FALLBACK=ON
    -> arg[22] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = LD_LIBRARY_PATH=/opt/java1.4/jre/lib/IA64W:/opt/java1.4/jre/lib/IA64W/server:/opt/java1.4/jre/../lib/IA64W:/usr/sap/KXD/DVEBMGS04/exe:/usr/sap/KXD/DVEBMGS04/exe::/usr/sap/KXD/DVEBMGS04/exe:/usr/sap/KXD/DVEBMGS04/exe:/usr/sap/KXD/DVEBMGS04/exe:/tmp/sapinst_exe.6709.1224050598:/usr/sap/KXD/SYS/exe/run:/oracle/client/10x_64/instantclient:/usr/lib:/usr/sap/KXD/DVEBMGS04/j2ee/os_libs:/usr/sap/KXD/DVEBMGS04/exe:/usr/sap/KXD/DVEBMGS04/exe:
    -> exe path = PATH=/opt/java1.4/bin:/usr/sap/KXD/DVEBMGS04/j2ee/os_libs:/oracle/KXD/102_64/bin:/opt/java1.4/bin:.:/home/kxdadm:/usr/sap/KXD/SYS/exe/run:/usr/bin:/usr/ccs/bin:/usr/contrib/bin:/usr/contrib/Q4/bin:/opt/perl/bin:/opt/ipf/bin:/opt/nettladm/bin:/opt/fcms/bin:/opt/wbem/bin:/opt/wbem/sbin:/opt/sas/bin:/opt/graphics/common/bin:/opt/atok/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/sec_mgmt/bastille/bin:/opt/caliper/bin:/opt/resmon/bin:/opt/drd/bin:/opt/dsau/bin:/opt/dsau/sbin:/opt/firefox:/opt/gnome/bin:/usr/contrib/kwdb/bin:/opt/mozilla:/opt/perl_32/bin:/opt/perl_64/bin:/opt/prm/bin:/opt/sfm/bin:/opt/swm/bin:/opt/sec_mgmt/spc/bin:/opt/ssh/bin:/opt/sentinel/bin:/opt/swa/bin:/opt/hpsmh/bin:/opt/thunderbird:/opt/langtools/bin:/opt/gwlm/bin:/opt/ignite/bin:/opt/cfg2html
    [Thr  1] Wed Mar 25 16:03:40 2009
    [Thr  1] JStartupICreateProcess: fork process (pid 22530)
    [Thr  1] JControlICheckProcessList: process server0 started (PID:22530)

  • Communication errors when iPod 2nd gen connected to car stereo

    So a while back I ultimately decided to update my 2nd gen iPod touch from iOS 3.1.3 to the highest it'll support, which I believe is iOS 4.2.1. The update went fine, and everything seemed to be working alright until I plugged it into my car's stereo as I normally do while going to work and back. I'll detail the problem below.
    The stereo is aftermarket, a Pioneer unit, which is probably considered really old by today's standards but for me it still works beautifully. I plug the iPod in via the USB port it has. Before updating the iPod, there were no problems. After the update, specific songs on the iPod will trigger an "Error-19" to display on the screen of the stereo, and all control of the iPod ceases to function. The error refers to a communication error of some sort between the iPod and the stereo. Now the strange thing is that even though this error pops up, the iPod will continue to play the song that caused the error and proceed to the next track when it's done. I have my iPod playing on shuffle so when this error comes up I have to wait for the song to finish and hope the next one doesn't trip the error again when I unplug and plug the iPod back in. Doing that while the song is still playing just produces the same error. Ifthe next track is fine, plugging it back in restores all function.
    So while this error isn't the end of the world, it's a brain teaser that's been irking me for a few weeks now. I'm hoping someone may know if something within iOS was changed between 3.x and 4.2.1 that might cause this type of communication error to come up. I originally thought it may have something to do with ID3 tags and some rogue setting that confuses the stereo when it's sent over, but I couldn't really find any major difference between songs that work perfectly fine and those that cause the error to show up. I'm at a loss here so any isight would be appreciated.
    Also of note, I am aware that upgrading to a newer stereo or newer iPod will undoubtedly fix this, but I don't really have a need to spend money replacing equipment that is still in working order. Thanks for your time.

    Sometimes this works:
    - Reset the car system
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If not then contact the Pioneer. Maybe there is a firmware update available for the car system.
    Yes, other users have reported that updated to iOS 4 broke compatibility with some care systems.

  • Communication Error with HP 8600 Fax

    I have a LENOVO_PN_90BG0003US running Windows 8.1 with a 64-bit operating system.  I have installed an HP Officejet Pro 8600 Plus All-In-One Scanner/Printer/Fax.  I am able to print and scan, but cannot setup the digital fax.  I get a communication errors that states "There is a problem communicating with the printer".  I have troubleshooted through HP without any luck.  The printer is online and I have no issues printing or scanning.  I am able to digitally fax from two other systems that are also running Windows 8.1.  I have also disabled the anti-virus and firewall, and this did not help.  Any assistance would be greatly appreciated.
    Thank you,
    Bob

    And on HP Photosmart C7280 All-In-One.
    I've got mine connected to the network on Ethernet - figured that would be less problematic than wifi - and my MacPro can see everything about the printer, just not print to it. This includes the C7280's built-in webserver which - like alot of SOHO routers - gives you a web-based interface to the printer's configuration and status. Everything on that page looks right-on, but no printing.
    The printer's copy and fax functions work, and I can even scan images and save them across the network onto my machine, so the printer is already interoperating with the network to a high degree, just not printing.
    Like alot of people, I bypassed the HP driver CD and downloaded a fresh software package yesterday from HP's site (200MB+, ***?), which is what I used to configure my system. As far as I could tell, there appear to be no firmware updates available for this printer. MacOS "Software Update" doesn't offer any printer driver updates - I'll try the posted link to Apple's site next.

  • Namespace Communication Error

    I'm having the following issue when trying to login to Hyperion Workspace (in EPM 11.1.2) . I get to the login page fine, and when I login it takes me into Workspace, but a warning immedately pops up saying *"Namespace Communication Error".* I can dismiss this warning by hitting 'OK', but after that I cannot navigate to any of the Workspace areas like the Explore directory or the Scheduler directory. If I try to go to "Explore", I get an error saying *"Invalid or could not find module configuration*". If I try to go to the Batch Scheduler page, I get an error saying *"Handler : 'com.hyperion.reporting.web.scheduler.SchedulerListHandler' not found for module with id : reporting.scheduler".* I find that if I restart the EPM and Foundation services, Workspace starts functioning normally again, but this is shortlived. I.e. If I log out and try to login after 10-15 minutes, I again get all of the above warnings and errors!
    Has anyone experienced this problem? I appreciate any guidance with this.
    rgds,
    Axe

    I have installed Oracle EPM 11.1.2.0 on different OS like windows7/RedhatEL 5.0 succesfully.But when when i log into workspace i get the error NAMESPACE COMMUNICATION ERROR(on windows) and then it hangs for few minutes and then it will take to workspace.(It can be a defect with Orcale EPm itself.)
    So,I tried to reconfigure the web server using IIS and then restarted the Foundation services the problem got solved for me.I no more see the NameSpace Communication error.
    Worth trying.

  • Request giving Socket communication error at call=recv: error.

    Hi All,
    My requirement goes like this for OBIEE 11G :
    I have two requests(analysis) and I want to show either of them at a given time based on a Dashboard prompt. I have set a Presentation variable {PV} for this Prompt whcih always hays two values A and B.
    My first request is like this :
    Dim 1 Measure 1 ( this should be shown when I select Dashboard Prompt A.
    My second request is:
    Dim 2 Measure 2 ( this should be shown when I select Dashboard Prompt B.
    I have to use the Guided Navigation ( Sectional Condition in 11g)
    When Dashboard Prompt A is selected Section 1 i.e. Request 1 should be shown when Dashboard Prompt B is selected then it should show request 2.
    To achieve this in request 1 I have added a extra filter '@{PV}' is equal to/is in 'A' and in request 2 I have added a extra filter '@{PV}' is equal to/is in 'B' so as when we select B in Prompt the first request should 'No Results' so as I can achieve my Guided Navigation.
    But to my surprise when I select B in the Dashboard Prompt the first request throws an error.
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 12002] Socket communication error at call=recv: (Number=10038) An operation was attempted on something that is not a socket. (HY000)
    Please help me out with this regards as I was able to achieve this functionality easily in 10G OBIEE.
    Regards,
    Bhavik

    Hi,
    Mistakenly my machine got restarted and after that when I tried to start OPMN services,its showing all the processes alive but after that ,while restarting BI services from windows
    its throwing an error of unexpectedly shutting down of services.
    My NQS log says:
    [nQSError: 12010] Communication error connecting to remote end point: address = 192.168.10.209; port = 80.
    [nQSError: 46119] Failed to open HTTP connection to server 192.168.10.209 at port 80.
    I have checked that IP is still same. What is the issue behind it?
    This is very urgent.I have already posted this issues many times but didn't get any response So please help.

Maybe you are looking for