Error in SAP BAPI

Hello,
I'm getting a error while trying to create a SAP BAPI OTD using the Enterprise Designer. After I give the client number, username and password and click next the following error comes
Error in getBapiList(): Cannot convert field ID of type NUM to int
Do I need to configure something on the SAP server?
Cheers,
Deepak

This has been resolved. It was happenning because of the unicode settings of the SAP system and I was giving non unicode in the OTD setting. However, I'm facing another problem.
SAP ALE eway is not appearing in my designer. I have installed both SAP ALE and SAP BAPI eway and then uploaded those in the edesginer through the upload center. In the connectivity map drop down it shows the SAP BAPI eway but not the SAP ALE eway. I have done everything which is mentioned in the documents.
Regards,
Deepak

Similar Messages

  • No Connection btw JCAPS 5.1.2 and SAP ECC 6.0 whle creatining SAP/Bapi OTD

    Hello.
    We have the following problem trying to build SAP BAPI/RFC OTD.
    1) JCAPS 5.1.2. SAP ECC 6.0. Jco version 2.1.7 (also tried 2.1.8, 2.0.12 with the same result). All steps were done according to SAP BAPI/ALE eWays user guides and readmes
    2) SAP client already installed and worked ok on the same host as the JCAPS
    3) It looks like the problem is in JCo. It seems like doesn't react when we trying to connect to SAP during creation of BAPI/RFC OTDs at design time.
    Error message: partner not reached
    ERRNO 10060
    All ports are open and no restrictions imposed on JCAPS server. There are no connection log entries on SAP router host.
    4)We tried to run sample Project which goes with eway, and the following entries in logical host log file were found:
    [#|2007-06-12T11:35:13.171+0600|WARNING|IS5.1.2|STC.eWay.SAP.BAPI.com.stc.connector.sapbapiadapter.sapbapi.SAPConnector|_ThreadID=17; ThreadName=Worker: 5;|SAPConnector.isConnect(): JCO Client is null|#]
    [#|2007-06-12T11:35:13.296+0600|INFO|IS5.1.2|STC.eWay.framework.management.com.stc.connector.management.util.Alerter|_ThreadID=17; ThreadName=Worker: 5;|sendAlert(), connection info: ConnectionInfo [ collaboration: cmBAPIOutbound_jcdFlightGetList, project: prjBAPIOutbound, component: eaSAPBAPI, deployment: dpBAPIOutbound, environment: envTest, logicalhost: LogicalHost1, integration server: IntegrationSvr1 ], monitor: ObjectReference [ name: SeeBeyond:GUID={70010000-D247521E130100-AC14015A-01},Name=prjBAPIOutbounddpBAPIOutbound|prjBAPIOutbound|dpBAPIOutbound|cmBAPIOutbound_jcdFlightGetList_eaSAPBAPI ], alert message: No connection established to SAP R/3 for user $$$$$$ on host $$$$$.|#]
    [#|2007-06-12T11:35:13.312+0600|WARNING|IS5.1.2|STC.eWay.SAP.BAPI.com.stc.connector.sapbapiadapter.sapbapi.SAPConnector|_ThreadID=17; ThreadName=Worker: 5;|SAPConnector.isConnect(): JCO Client is not connected.|#]
    [#|2007-06-12T11:35:34.781+0600|INFO|IS5.1.2|STC.eWay.framework.management.com.stc.connector.management.util.Alerter|_ThreadID=17; ThreadName=Worker: 5;|sendAlert(), connection info: ConnectionInfo [ collaboration: cmBAPIOutbound_jcdFlightGetList, project: prjBAPIOutbound, component: eaSAPBAPI, deployment: dpBAPIOutbound, environment: envTest, logicalhost: LogicalHost1, integration server: IntegrationSvr1 ], monitor: ObjectReference [ name: SeeBeyond:GUID={70010000-D247521E130100-AC14015A-01},Name=prjBAPIOutbounddpBAPIOutbound|prjBAPIOutbound|dpBAPIOutbound|cmBAPIOutbound_jcdFlightGetList_eaSAPBAPI ], alert message: Connection to SAP R/3 failed for user $$$$$$ on host $$$$$$.|#]
    [#|2007-06-12T11:35:34.781+0600|SEVERE|IS5.1.2|STC.eWay.SAP.BAPI.com.stc.connector.sapbapiadapter.sapbapi.SAPConnector|_ThreadID=17; ThreadName=Worker: 5;|Unable to initialize SAP R/3 Client Connection|#]
    Any help is appreciated

    Hi Yermek.
    I guess you are placed and set all jars relates to bapi/rfc.
    You need to pass atleast one parameter from jcd which will initiates the BAPI connection.
    i.e atleast from jcd you need to send a request.
    Hope it will work...
    Thanks,
    M.P.Rao.

  • How to retrieve the data from SAP-BAPI by using VB Code

    Hi ,
    I am new to BAPI.
    V have created an application in Visual Basic with the following fields
    EmpNo , EmpName, Addr1, Addr2, City and Phone (Only for Test)
    We have written the code for SAVING the data into SAP. Already we have
    constructed a table with the respective fields in SAP.
    For that we ourself created our own BAPI Structure / Function Group /
    Function Module/ Business Object - RELEASED related elements.
    1)Established the connection successfully.
    2)Stored the data into SAP Successfully and v r in need of
    3)HOW TO RETRIEVE THE DATA FROM SAP (USING GETLIST.....GETDETAIL....)
    Following is the code :
    'BAPI Structure  : ZBAPIEMP
    'Function Group  : ZBAPIEMP
    'Function Module : ZBAPI_EMP_CREATEFROMDATA
    'Business Object : ZBAPIEMP
    'Function Module : ZBAPI_EMP_GETLIST
    Dim bapictrl As Object
    Dim oconnection As Object
    Dim boEmp As Object
    Dim oZEmp_Header As Object
    Dim oImpStruct As Object
    Dim oExpStruct As Object
    Dim oreturn As Object
    Dim x As String
    Private Sub Form_Load()
    Set bapictrl = CreateObject("SAP.BAPI.1")
    Set oconnection = bapictrl.Connection
    oconnection.logon
    Set boEmp = bapictrl.GetSAPObject("ZBAPIEMP")
    Set oZEmp_Header = bapictrl.DimAs(boEmp, "CreateFromData", "EmployeeHeader")
    Set oImpStruct = bapictrl.DimAs(boEmp, "GetList", "EmployeeDispStruct")
    End Sub
    Private Sub cmdSave_Click()
        oZEmp_Header.Value("EMPNO") = txtEmpNo.Text
        oZEmp_Header.Value("EMPNAME") = txtEmpName.Text
        oZEmp_Header.Value("ADDR1") = txtAddr1.Text
        oZEmp_Header.Value("ADDR2") = txtAddr2.Text
        oZEmp_Header.Value("CITY") = txtCity.Text
        oZEmp_Header.Value("PHONE") = txtPhone.Text
        boEmp.CreateFromData EmployeeHeader:=oZEmp_Header, Return:=oreturn
        x = oreturn.Value("Message")
        If x = "" Then
            MsgBox "Transaction Completed!..."
        Else
            MsgBox x
        End If
    End Sub
    Private Sub cmdView_Click()
    End Sub
    COULD ANYBODY GUIDE ME, HOW TO RETRIEVE THE DATA FROM BAPI, FOR THE WRITTEN CODE.

    I didn't seen any other answers but here's how it's been done previously in our organization for a custom BAPI. In this example, we give material and language to return the part description. It's not specific to your project but may give you ideas..
    -Tim
    Option Compare Database
    Dim SAPLOGIN As Boolean
    Dim FunctionCtrl As Object
    Dim SapConnection As Object
    Sub SAPLOGOUT()
    On Error GoTo LogoutFehler
        SapConnection.logoff
        SAPLOGIN = False
    Exit Sub
    LogoutFehler:
        If Err.Number = 91 Then
            Exit Sub
        Else
            MsgBox Err.Description, vbCritical, "Fehler-Nr." & CStr(Err.Number) & " bei SAP-Logout"
        End If
    End Sub
    Function SAPLOG() As Boolean
    'Verbindungsobjekt setzen (Property von FunctionCtrl)
       Set FunctionCtrl = CreateObject("SAP.Functions")
       Set SapConnection = FunctionCtrl.Connection
    'Logon mit Initialwerten
       SapConnection.Client = "010"
       SapConnection.Language = "EN"
       SapConnection.System = "PR1"
       SapConnection.SystemNumber = "00"
       'SapConnection.Password = ""
       SapConnection.GroupName = "PR1"
       SapConnection.HostName = "168.9.25.120"
       SapConnection.MessageServer = "168.9.25.120"
         If SapConnection.Logon(0, False) <> True Then  'Logon mit Dialog
             Set SapConnection = Nothing
             DoCmd.Hourglass False
             MsgBox "No connection to SAP R/3 !"
             SAPLOGIN = False
             SAPLOG = False
             Exit Function
          End If
        SAPLOG = True
    End Function
    Function MatDescr(MatNr As String)
    Dim func1 As Object
    Dim row As Object, X As Integer, ErsteNr As String
    Dim DatensatzZähler As Long
    Dim RowField(1 To 50, 0 To 1) As String, RowLine As Long
        If Not SAPLOGIN Then
            If Not SAPLOG() Then
                MsgBox "No connection  to SAP !", 16
                SAPLOGOUT
                Exit Function
            End If
        End If
    ' Instanziieren des Function-Objektes
    Set func1 = FunctionCtrl.Add("Z_BAPI_READ_MAKT")
    ' Export-Paramter definieren
    func1.exports("MATNR") = MatNr
    func1.exports("SPRAS") = "EN"
    DoEvents
    If Not func1.call Then
        If func1.exception <> "" Then
            MsgBox "Communication Error with RFC " & func1.exception
        End If
        DoCmd.Hourglass False
        SAPLOGOUT
        Exit Function
    Else
      MatDescr = func1.imports("MAKTX")
    End If
    If MatDescr = "" Then
        MatDescr = "PART NO. NOT FOUND"
    End If
    End Function

  • Error message in BAPI call

    I have imported RFC Interfaces from SAP system. Each interfaces doesn't  have fault message.
    How to get error message in BAPI call when error occurs?
    I can catch an exception in BPM but I need to get error message and send it to another system.

    Hi Denis,
    >>>I have imported RFC Interfaces from SAP system. Each interfaces doesn't have fault message.
    if you want to use fault messages
    consider using ABAP Proxies
    >>>>How to get error message in BAPI call when error occurs?
    most bapis have return table in which they
    return error messages (you can do it either
    in a sync way or in an async way if the call is too long - with corrlelation of course)
    Regards,
    michal

  • Item does not match schedule line (program error) in sap

    Dear Expert.
    Greetings!
    We are currently facing with this error (V1 427 item does not match schedule line (program error) in sap), when we open the sales order(VA02/03).
    The error  is occurring due  inconsistency on the database tables, some Item is in  table VBEP, but it is missing from table VBAP.  This is what is causing the error message.
    I checked various related notes - 442831 , 401463 , 389687  etc .  These are quite old notes and I am in release ECC 6.0 .
    Report SD_CONSISTENT_CHECK_EXT and SD_CONSISTENT_CHECK are already available.
    Bapi BAPI_SD_SALES is also active.
    Please let me know if anybody has any idea on the same.
    regards
    Praveen

    Hi,
       Refer the KBA:  1464620 - Error V1427: Item does not match schedule line   which explains the reason and the solution for the issue.
    Regards,
    AKPT

  • Getting error while Using BAPI Interface in VB

    Hi,
    I m getting error message while creating object of SAP.BAPI.1
    Error message is "out of memory : run time error 7".
    do I need to install any patch to my local PC? If yes then from where could i get that patch.
    Plz help me out.
    Thanks & Regards,
    Sagar

    Hi Sagar,
    Please varify the version of SAP client you use. I have noticed that this error with SAP Frontend Package 6.20, and was able to over come the follwing issue by upgrading to the SAP Frontend Package 6.40.
    Regards,
    Randima

  • Passing Error message to BAPI Structure in RFC

    Hi Experts,
    I would like to know how we pass error message to BAPI structurre in RFC?
    Plz some one give the details about how we handle the errors.
    Thanks in advance.

    Like already mentioned before, every Standard SAP BAPI, has an export or tables parameter which is called something like RETURN with structure BAPIRET2. In here, you can store all the messages that are generated during the BAPI Call.
    However, if you also want to catch errors like system exceptions and communication errors, you will have to add these exceptions manually:
    EXCEPTIONS
         SYSTEM_FAILURE        = 1 MESSAGE RFC_MESS
         COMMUNICATION_FAILURE = 2 MESSAGE RFC_MESS.
    However, not sure if this addition works when calling BAPI from NON-sap application.
    Declaration:
    DATA: RFC_MESS(128).

  • Object variable not set error in SAP-VB Connect.

    This is the coding part i have used for connecting SAP and VB for creating the Sales Order in SAP.
    But it gives the error in the line
    oheader.Value("DOC_TYPE") = Text1(0)
    as Object variable or With block variable not set.
    What could be the reason, pls advise me.
    Dim bapictrl As Object
    Dim boOrder As Object
    Dim oPartner As Object
    Dim oItemin As Object
    Dim oheader As Object
    Dim oreturn As Object
    Dim oconnection As Object
    Private Sub Command1_Click()
    Dim x As String
    oheader.Value("DOC_TYPE") = Text1(0)
    oheader.Value("SALES_ORG") = Text1(1)
    oheader.Value("DISTR_CHAN") = Text1(2)
    oheader.Value("DIVISION") = Text1(3)
    oheader.Value("PRICE_DATE") = Text1(4)
    oheader.Value("PURCH_NO") = Text1(5)
    oPartner.rows.Add
    oPartner.Value(1, "PARTN_ROLE") = Text1(6)
    oPartner.Value(1, "PARTN_NUMB") = Text1(7)
    oItemin.rows.Add
    oItemin.Value(1, "REQ_QTY") = Text1(8)
    oItemin.Value(1, "MATERIAL") = Text1(9)
    oItemin.Value(1, "COND_VALUE") = Text1(10)
    boOrder.createfromdata orderheaderin:=oheader, orderitemsin:=oItemin, orderpartners:=oPartner, return:=oreturn
    x = oreturn.Value("message")
    If x = "" Then
    MsgBox "Transactin Complete"
    Else
    MsgBox x
    End If
    End Sub
    Private Sub Form_Load()
    Text1(4) = Format(Now, "mm/dd/yyyy")
    Set bapictrl = CreateObject("SAP.BAPI.1")
    Set oconnection = bapictrl.Connection
    oconnection.logon
    Set boOrder = bapictrl.GetSAPObject("SalesOrder")
    'Set boOrder = bapictrl.GetSAPObject("BUS2032")
    Set oPartner = bapictrl.DimAs(boOrder, "CreateFromData", "orderpartners")
    Set oPartner = bapictrl.DimAs(boOrder, "CreateFromData", "orderitemsin")
    Set oPartner = bapictrl.DimAs(boOrder, "CreateFromData", "orderheaderin")
    End Sub
    Thanks in advance
    Regards
    Rajaram

    Hi,
       This error occurred in the page where I used the file upload control. The control was working fine before. We tried installing entire PDK again and then applying the hotfix-1, but nothing worked and then I had to use an URL iview to invoke an ASP .Net application just for uploading the files.
    Thanks
    Swetha

  • SAP BAPI ActiveX Interface

    Hello,
    This is a cross post from LAVA forum...
    I'm trying to integrate our test stations to SAP ERP. SAP stores data in busines objects in busines object repository. The objects are exposed over BAPI interface. There is a lot of different busines objects in the repository. SAP developers can also build new objects if they want. The objective is to read inspection characeristics from quality management module of SAP. I haven't done much ActiveX stuff, neither know much about SAP, so I started with a simple example that I found searching for BAPI examples. The example works fine in Excel. The example just reads some data from a sales order object.
    Sub BAPI1()Dim
    oBook As Workbook
    Dim oSheet As Worksheet
    Dim oBAPICtrl As Object
    Dim oBAPILogon As Object
    Dim oSalesOrder As Object
    Dim oItem As Object
    Dim iIndex As Integer
    Set oBook = Application.ActiveWorkbook
    Set oSheet = oBook.Worksheets(1)
    ' Initialize SAP ActiveX Control.
    Set oBAPICtrl = CreateObject("sap.bapi.1")
    ' Initialize SAP ActiveX Logon.
    Set oBAPILogon = CreateObject("sap.logoncontrol.1")
    ' Initialize the connection object.
    Set oBAPICtrl.Connection = oBAPILogon.newconnection
    ' Logon with prompt.
    oBAPICtrl.Connection.System = "Q02"
    oBAPICtrl.Connection.Client = 101
    oBAPICtrl.Connection.Logon
    ' Retrieve a sales order.
    Set oSalesOrder = oBAPICtrl.GetSAPObject("SalesOrder","0010732181")
    ' Display Sales Order header data.
    oSheet.Cells(2, 1).Value = oSalesOrder.salesdocument
    oSheet.Cells(2, 2).Value = oSalesOrder.netvalue
    oSheet.Cells(2, 3).Value = oSalesOrder.orderingparty.customerno
    oSheet.Cells(2, 4).Value = oSalesOrder.documentdate
    oSheet.Cells(2, 5).Value = oSalesOrder.items.Count
    ' Logoff SAP and close the control.
    oBAPICtrl.Connection.logoff
    Set oBAPILogon = Nothing
    Set oBAPICtrl = Nothing
    End Sub
     I tried to implement that in LabVIEW. The logon and logout part works, I can also obtain SalesOrder object with GetSAPObject method. There is no error and probing the Object output from GetSAPObject methods gives an integer value - probably a reference to the SalesOrder object.
    Now I can't figure out how do I read the object properties. It's very simple in VBA. I also don't know how do I call object methods. This is apicture from SAP BAPI documentatios showing available properties and methods.
    I would appreciate any hints...
    bye, Mirko

    No, there isn't any reference type that matches BAPI Object. In fact, there can't be a fixed type reference, since BAPI object are actually function modules that SAP programmers write themselves using language called ABAP. I concluded that we can't call the object methods or read/write properties in LabVIEW, if we don't know the right type at development time. So, I gave up on BAPI API.
    There are also other methods of SAP integration. O step down on abstraction scale is Remote Function Call (RFC) API. The API is much more involved, but it allows us to call functions that are behind BAPI objects. In a few test that I did it worked fine. The interface is exposed over three ActiveX controls - SAP Remote Function Call Control, SAP Table Factory Control and SAP Logon Control.
    There is also .NET assembly and web services which I didn't tried.
    Regards, Mirko

  • T-code or Table to find total errors in SAP APO like ST22 in ABAP

    hi all,
    Could please tell me the T-code or Table to find total errors in SAP APO like ST22 t-code in SAP ABAP.
    Thanks.
    Suryam S

    Hello Venu,
    Do you mean other functional errors?
    You can check SLG1, /SAPAPO/C3, STAD
    Best Regards,
    R.Brahmankar

  • How to Report a product error in SAP Business One

    Hi Experts
    I have found a product error in SAP Business one
    i need to know how it can be notified to SAP
    Thanks
    Krish

    Hi Krish,
    If You Post a Meessage to SAP Support Center
    Require S-user ID and Password
    First post a message to SAP Support Center with what problem you are facing.
    then he analyse your problem and told its a BUG or some other workaround.
    Check the following thread
    Re: How to Send message to SAP Support center
    *Close the thread if issue solved.
    Regards
    Jambulingam.P
    Edited by: Jambulingam P on Aug 13, 2009 12:35 PM

  • Could not process due to error: com.sap.aii.adapter.file.ftp.FTPEx: 550

    Hi Experts,
    We have many File to EDI scenarios wherein XI System pick up the XML and sent to customers via EDI. Recently we faced a problem so created a Back-up System (Production copy) and tested successfully. After sometime the messages were routed to this back-up system and when we notice it and then stopped the back-up system. All the messages that were routed to back-up system, we try to send the same messages from the actually Production system to our customers. Now the problem is XI system (Production system) is unable to pick these files and I check the communication monitoring and encountered the below error message.
    Could not process due to error: com.sap.aii.adapter.file.ftp.FTPEx: 550.550
    Can anyone let me know how to fix the issue or what needs to be done?
    Your help is highly appreciated.
    Regards
    Faisal

    Hi,
    It seems to be problem with permission of files. Please ask your basis to do following:
    1. Set the permissions to FTP User you are using as 777 rights(full access to read , write and delete)
    2.If you have access to PI server, try to telnet /connect to ftp using command prompt (open ftp .....) the FTP server form there, you should see the same error there , inform this to your network guys.
    3.Clear all the files places already in the ftp (take backup) and test afresh after permissions are set by basis team.
    Regards
    Aashish Sinha

  • ERROR MESSAGE sap system manager:work process restarted, session terminated

    Hi,
    i am a beginer in SAP administration, users are getting this error message and i have done all my research and not able to resolve this issue. Here are the details
    SAP Version :ideas 4.7
    Database :Oracle
    OS : windows 2003
    Module user is working on MM
    user working on it is a Super user with all the permissions
    SAP is configure to run under the  European date and decimal format.
    I have never done any database administration on it, it is a new install and has been rarely used.
    User creates a RFQ and when he tries saving it , seems like for the first time after either restarting the macine or restarting the service it might work and at time it might not, this is a very sporadic error and most of the times it crashes out with the message "sap system manager:work process restarted, session terminated" and kicks the user out of the session.
    Below are the details of the error message from ST22 :
    name of the runtime error : system_core_dumped
    below are the details of the error message and its resoltion as suggested by sap help :
    ========
    Runtime Errors         SYSTEM_CORE_DUMPED           
           Occurred on     01.02.2008 at 07:52:19
    Process terminated by signal " ".                                             
    What happened?
    The current ABAP program had to be terminated because the                     
    ABAP processor detected an internal system error.                             
    The current ABAP program "SAPLCLSC" had to be terminated because the ABAP     
    processor discovered an invalid system state.                                 
    What can you do?
                                                                                    Make a note of the actions and input which caused the error.                                                                               
    To resolve the problem, contact your SAP system administrator.                                                                               
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer      
    termination messages, especially those beyond their normal deletion           
    date.                                                                               
    Error analysis
    An SAP System process was terminated by an operating system signal.           
                                                                                    Possible reasons for this are:                                                
    1. Internal SAP System error.                                                 
    2. Process was terminated externally (by the system administrator).           
               Last error logged in SAP kernel                                    
                                                                                    Component............ "Taskhandler"                                           
    Place................ "SAP-Server server1_DEV_00 on host server1 (wp 1)"      
    Version.............. 1                                                       
    Error code........... 11                                                      
    Error text........... "ThSigHandler: signal"                                  
    Description.......... " "                                                     
    System call.......... " "                                                     
    Module............... "thxxhead.c"                                            
    Line................. 9555                                                                               
    How to correct the error
    The SAP System work directory (e.g. /usr/sap/c11/D00/work ) often             
    contains a file called 'core'.                                                                               
    Save this file under another name.                                                                               
    If you cannot solve the problem yourself, please send the                     
    following documents to SAP:                                                                               
    1. A hard copy print describing the problem.                                  
       To obtain this, select the "Print" function on the current screen.         
                                                                                    2. A suitable hardcopy prinout of the system log.                             
       To obtain this, call the system log with Transaction SM21                  
       and select the "Print" function to print out the relevant                  
       part.                                                                               
    3. If the programs are your own programs or modified SAP programs,            
       supply the source code.                                                    
       To do this, you can either use the "PRINT" command in the editor or        
       print the programs using the report RSINCL00.                                                                               
    4. Details regarding the conditions under which the error occurred            
       or which actions and input led to the error.                                                                               
    System environment
    SAP Release.............. " "                                                                               
    Application server....... " "                                                 
    Network address.......... " "                                                 
    Operating system......... " "                                                 
    Release.................. " "                                                 
    Hardware type............ " "                                                 
    Character length......... " " Bits                                            
    Pointer length........... " " Bits                                            
    Work process number...... " "                                                 
    Short dump setting....... " "                                                                               
    Database server.......... " "                                                 
    Database type............ " "                                                 
    Database name............ " "                                                 
    Database owner........... " "                                                                               
    Character set............ " "                                                                               
    SAP kernel............... " "                                                 
    Created on............... " "                                                 
    Created in............... " "                                                 
    Database version......... " "                                                                               
    Patch level.............. " "                                                 
    Patch text............... " "                                                                               
    Supported environment....                                                     
    Database................. " "                                                 
    SAP database version..... " "                                                 
    Operating system......... " "                                                 
    User, transaction...
    Client.............. " "                                                      
    User................ " "                                                      
    Language key........ " "                                                      
    Transaction......... "ME41 "                                                  
    Program............. "SAPLCLSC"                                               
    Screen.............. "SAPMM06E 0320"                                          
    Screen line......... 71                                                       
    Information on where termination occurred
    The termination occurred in the ABAP program "SAPLCLSC" in "EXECUTE_SELECT".  
    The main program was "SAPMM06E ".                                                                               
    The termination occurred in line 131 of the source code of the (Include)      
    program "LCLSCF2G"                                                           
    of the source code of program "LCLSCF2G" (when calling the editor 1310).      
    =============
    i even tried increasing the dialog processes but with no use.The same error occurs.
    I appreciate every one of help i can get, i am working on a deadline which is tomorrow evening to resovle this issue, any kind of help is highly appreciated.
    thanks
    mudessir.

    Hi
       follow correction method suggested in this dump,
    " The SAP System work directory (e.g. /usr/sap/c11/D00/work ) often
    contains a file called 'core'.  Save this file under another name."
    have you done this?
    with regards,
    raj.
    <i>pls, award points</i>

  • FPN error: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException

    Hi, all.
    I am trying to initiate a webdynpro page from the producer to the consume portal via RDL. It works fine for a day. Then it starts giving me the error:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to load page ...
    This error cannot be cleared by clearning the FPN cache or synchronize with the producer. Of course, you can also delete the page from the consumer and copy it over from the producer again. It will work. But this is not a good workaround for a production system. We also don't know the cause either. Here is the stack trace:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to load page
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:528)
         at com.sap.portal.pb.PageBuilder.wdDoInit(PageBuilder.java:192)
         at com.sap.portal.pb.wdp.InternalPageBuilder.wdDoInit(InternalPageBuilder.java:150)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:754)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:289)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: com.sap.portal.fpn.exception.unchecked.FpnUnMarshallingException: Could not find a marshaller for 'com.sapportals.portal.page' from path 'pcd:consumer_content/DEP/portal_content/ca.ottawa.sap.supportcentre/ca.city.ottawa.OttawaRoles/ca.city.ottawa.ManagerInfo/ca.city.ottawa.ManagerInfo-FinanceOnly/ca.city.ottawa.ManagerInfo_MSS_Finance/ca.city.ottawa.Mileage_Parking_Managers'
         at com.sap.portal.fpn.marshal.ContentMarshallerService.unMarshallDLChain(ContentMarshallerService.java:323)
         at com.sap.portal.fpn.entrypoint.RuntimeFederatedPersistance.retrieveDLRemoteState(RuntimeFederatedPersistance.java:103)
         at com.sap.portal.fpn.FpnRuntimeService.bringRemoteState(FpnRuntimeService.java:134)
         at com.sap.portal.fpn.FpnRuntimeService.doFpnLookup(FpnRuntimeService.java:97)
         at com.sap.portal.fpnprovider.fpn.GenericContext.lookup(GenericContext.java:49)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at com.sap.portal.pb.data.PcdManager.doInit(PcdManager.java:72)
         at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:526)
         ... 31 more
    Caused by: com.sap.portal.pcm.OperationFailedException: Creating DL outside the PCD
         at com.sap.portal.pcm.iviewserver.CiViewSLObjectsManager.instantiateDescriptor(CiViewSLObjectsManager.java:687)
         at com.sap.portal.pcm.page.PagesSrv.instantiateDescriptor(PagesSrv.java:79)
         at com.sap.portal.pcm.page.PagesSrv.instantiateDescriptor(PagesSrv.java:71)
         at com.sap.portal.fpn.marshal.IViewMarshaller.instantiateRelatedItemDescriptor(IViewMarshaller.java:582)
         at com.sap.portal.fpn.marshal.IViewMarshaller.performSemanticActions(IViewMarshaller.java:506)
         at com.sap.portal.fpn.marshal.PageMarshaller.performSemanticActions(PageMarshaller.java:499)
         at com.sap.portal.fpn.marshal.IViewMarshaller.unmarshalResolvedDLChain(IViewMarshaller.java:715)
         at com.sap.portal.fpn.marshal.PageMarshaller.unmarshalResolvedDLChain(PageMarshaller.java:328)
         at com.sap.portal.fpn.marshal.ContentMarshallerService.unMarshallDLChain(ContentMarshallerService.java:320)
         ... 38 more
    So far I found nothing on OSS or SDN on this FpnUnMarshallingException. Has anyone seen this error before?
    Thanks.
    Jonathan.
    Edited by: Jonathan Ma on Apr 23, 2009 12:25 AM

    Hi Jonathan,
    you may deactivate the GPN cache as well as the old navigation cache. About the GPN there is note 1172433. Both caches are not used in FPN scenario and can lead to such strange problems. If this won't help please open a support message for this that we can analyse further.
    Cheers,
    Anja

  • Error during sap r/3 installation  at update databse statistics

    Hi friends,
    I am getting an error during sap r/3 installation almost at the last stage.
    the error is  at update database statistics.
    my configuration is
    os: windows 2000 server.
    d/b: oracle 9i.
    erp: sap 4.7 ee
    During oracle installation stage the oui is asking for create a database, i am chechking it ok. Is that a problem ?.
    I am sending the log file. Please can anybody help me, where i am going wrong-
    The log file----
    Click Browse and give location of export1, as shown in the bellow figure
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata4\drs620_5.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata4\drs620_5 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata5\drs620_6.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata5\drs620_6 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata5\drs620_7.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata5\drs620_7 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata6\drs620_8.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata6\drs620_8 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata6\drs620_9.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata6\drs620_9 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata6\drsusr_1.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata6\drsusr_1 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata2\roll_1.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata2\roll_1 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata3\temp_1.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata3\temp_1 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Creating directory D:\oracle\DRS\sapdata1\system_1.
    INFO 2007-02-04 21:46:32
    Creating file system node D:\oracle\DRS/sapdata1\system_1 with type DIRECTORY succeeded.
    INFO 2007-02-04 21:46:32
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2007-02-04 21:46:33
    Processing of all file system node operations of table tORA_DatabaseServerNodes succeeded.
    INFO 2007-02-04 21:46:34
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2007-02-04 21:46:35
    Creating file c:\oracle\ora90\database\initDRS.ora.
    INFO 2007-02-04 21:46:36
    Creating file C:\oracle\ora90\database\initDRS.sap.
    INFO 2007-02-04 21:46:37
    Copying file F:/sap4.7/ker/NT/COMMON/INSTALL/INITSID.DBA to: c:\oracle\ora90/database/initDRS.dba.
    INFO 2007-02-04 21:46:37
    Creating file c:\oracle\ora90\database\initDRS.dba.
    INFO 2007-02-04 21:46:38
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 21:46:39
    Moving file c:/oracle/ora90/database/initDRS.ora to: orig_init_ora_tmp.txt.
    INFO 2007-02-04 21:46:39
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: c:\oracle\ora90\database\initDRS.ora.
    INFO 2007-02-04 21:46:39
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-02-04 21:46:40
    Creating file C:\SAPinst ORACLE KERNEL\oradim.log.
    INFO 2007-02-04 21:46:45
    See 'c:\oracle\ora90/bin/oradim -new -sid DRS -STARTMODE auto' output in 'C:\SAPinst ORACLE KERNEL\oradim.log'.
    INFO 2007-02-04 21:46:45
    'c:\oracle\ora90/bin/oradim -new -sid DRS -STARTMODE auto' returned with '0'.
    INFO 2007-02-04 21:46:46
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 21:46:49
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 21:59:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:00:00
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:00:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:00:46
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:01:31
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:01:34
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:02:18
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:02:20
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:03:06
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:03:09
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:03:55
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:03:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:04:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:04:46
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:05:32
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:05:35
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:06:21
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:06:23
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:07:10
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:07:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:07:58
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:08:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:08:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:08:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:09:38
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:09:40
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:09:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:09:46
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:10:06
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:10:09
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:10:39
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:10:41
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:10:44
    Moving file c:/oracle/ora90/database/initDRS.ora to: orig_init_ora_tmp.txt.
    INFO 2007-02-04 22:10:44
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: c:\oracle\ora90\database\initDRS.ora.
    INFO 2007-02-04 22:10:44
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-02-04 22:10:45
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2007-02-04 22:10:46
    See 'c:\oracle\ora90/bin/lsnrctl stat' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2007-02-04 22:10:46
    'c:\oracle\ora90/bin/lsnrctl stat' returned with '3'.
    INFO 2007-02-04 22:10:46
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2007-02-04 22:10:48
    See 'c:\oracle\ora90/bin/lsnrctl start' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2007-02-04 22:10:48
    'c:\oracle\ora90/bin/lsnrctl start' returned with '0'.
    INFO 2007-02-04 22:10:48
    Copying file F:/sap4.7/ker/NT/COMMON/INSTALL/ORADBUSR.SQL to: ./oradbusr.sql.
    INFO 2007-02-04 22:10:48
    Creating file C:\SAPinst ORACLE KERNEL\oradbusr.sql.
    INFO 2007-02-04 22:10:49
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:10:52
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    PHASE 2007-02-04 22:10:54
    Database Load
    INFO 2007-02-04 22:10:58
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:10:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:00
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:02
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:02
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:02
    Task files created
    INFO 2007-02-04 22:11:03
    Command files created
    INFO 2007-02-04 22:11:05
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:05
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-04 22:11:05
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 00:06:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 03:43:19
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 04:55:23
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 05:17:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 05:39:25
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 05:45:25
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 05:57:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:00:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:03:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:05:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:07:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:08:27
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:09:28
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:24:46
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:24:46
    Processes finished successfully
    INFO 2007-02-05 06:26:23
    Creating file C:\SAPinst ORACLE KERNEL\ddicora.sql.
    INFO 2007-02-05 06:26:25
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:26:30
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:26:32
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:26:43
    Moving file c:/oracle/ora90/database/initDRS.ora to: orig_init_ora_tmp.txt.
    INFO 2007-02-05 06:26:43
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: c:\oracle\ora90\database\initDRS.ora.
    INFO 2007-02-05 06:26:43
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-02-05 06:26:43
    Moving file c:/oracle/ora90/database/initDRS.ora to: orig_init_ora_tmp.txt.
    INFO 2007-02-05 06:26:43
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: c:\oracle\ora90\database\initDRS.ora.
    INFO 2007-02-05 06:26:43
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-02-05 06:26:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:26:45
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:26:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:26:52
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:26:55
    Creating file C:\SAPinst ORACLE KERNEL\brconnect.log.
    INFO 2007-02-05 06:26:55
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-02-05 06:26:55
    See 'D:\usr\sap\DRS\SYS\exe\run/brconnect -c -f crsyn -o SAPDRS' output in 'C:\SAPinst ORACLE KERNEL\brconnect.log'.
    ERROR 2007-02-05 06:26:55
    MOS-01012  PROBLEM: 'D:\usr\sap\DRS\SYS\exe\run/brconnect -c -f crsyn -o SAPDRS' returned with '128' which is not a defined as a success code.
    ERROR 2007-02-05 06:26:55
    FJS-00012  Error when executing script.
    kindly help me where i am going wrong.
    Yours friendly,
    Bharath.

    Hi Andreas,
    many thanks to you for the timely help.
    a.)I want to know why there is an error at brconnect ? why is it returning an error code (128) at UPDATE DATABASE STATISTICS stage.
    I have read in this forum itself that the UPDATE STATISTICS need not be suceesfully completed and we can edit database.r3s
    " ..on the other hand you can easily invoke the update statistics after the installation has ended (succesfully!)...edit DATABASE.R3S (or the appropriate template file you are using) by changing the status=ERROR to status=OK...this will let you finish the installation..-GreetZ, AH."
    I have searched for this file (database.r3s) in my system in vain Where can i find this file database.r3s?.
    Have i done any configuration mistake at the pre-installation stage. I have installed Oracle 9.0 using setup.exe of oracle. should i use sapserver.cmd to install oracle?.I havent applied any patch for Oracle 9.0
    Should I apply any patch just the same way we do for Oracle 8.1.x ?.  If so, where can i get the patch for Oracle 9.0 .?.
    b.) You said there should not be any spaces in file path (ex: C:/SAPinst ORACLE KERNEL/) . But I havent specified file path, the r/3 setup itself has created the directory path.
    c.) I want to know one thing- should we create a database before installing r/3. When we are installing Oracle 8/9. x what are the components that we are installing?
    Your friend,
    Bharath.

Maybe you are looking for