Error: UDF add return code  -5002

when i am inserting user fields i am getting this error
this is the code i am writing and " code" i am auto incrementing this value .the code i wrote is this.
userTable.Name = "aaaa1";
                     userTable.UserFields.Fields.Item("U_Location").Value =txt_Location.Text;
                    userTable.UserFields.Fields.Item("U_CliName").Value = txt_ClientName.Text;
                    userTable.UserFields.Fields.Item("U_ProManag").Value = txt_ProjectManager.Text;
                    userTable.UserFields.Fields.Item("U_ProMail").Value = txt_PMmailID.Text;
                    userTable.UserFields.Fields.Item("U_TelNo").Value = txt_PMmobileNO.Text;
                    lRetCode = userTable.Add();

Hi,
Have you tried finding a solution to this by searching this forum? After a quick search I found these:
Howto add/update data in UDT/UDF?
Adding Rows To A UserTable Object
HTH
Juha
Message was edited by: Juha Lassila

Similar Messages

  • Error: 10000113 - Invalid value Code(-5002)

    Hi all,
    We have just upgraded from 2007A SP1 PL13 to 8.8 PL19 HF1, and we are using a program called DataProLogic (formerly xFusion) for EDI purposes, it uses the DIAPI to create/update objects in B1.
    I have found that when updating a draft stock transfer, I am receiving the following error:
    Error: 10000113 - Invalid value Code(-5002)
    I have reduced the fields being updated to none, so the only field mapped is the docnum, and no actual changes are being made but the error still exists.  I've also tried mapping the docobjectcode as 67 which I didn't have set for 2007A, but that doesn't work either.
    I have noticed in DataProLogic in the list of B1 objects, that there is now a "Stock Transfer Draft' object as well as the normal "Drafts" object (I am just using the Drafts object), so I thought maybe this has changed but I can't even select it as an option, it gives me an error of "Object SAPbobsCOM Stock Transfer not found".
    If anyone has any ideas on how to get my stock transfer drafts working please let me know!
    Thanks,
    Michael

    Hi Michael,
    When you need upgrade, first thing to test is the add-on you have. Only if all add-on working, you can upgrade. Hope you are still in the testing process. If not, the best way is to contact the add-on vendor to get the new updated program.
    Thanks,
    Gordon

  • Error opening dataset, return code:        8

    Hi,
    I'm passing the information from a txt to a transparente table. The problem is that it throws me the following message: Error opening dataset, return code:        8  .
    When I debug it the first row of information enters to the internal table but after it this erro comes.
    The code is the following:
    DATA: BEGIN OF record,
    data element: TABNAME
            tablename_001(030),
    data element: DESCR40
            des_002(040),
    data element: TYKLA
            tipo_003(015),
    data element: QUANTITY_I
            quan_004(011),
    data element: PRICE
            precio_005(021),
    data element: TOT01
            total_006(017),
          END OF record.
    End generated data section ***
    DATA:
    BEGIN OF i_tabla OCCURS 0,
    dest(40),
    type(15),
    quan(10),
    precio(15),
    tot(15),
    END OF i_tabla.
    PARAMETERS:
    p_user LIKE apqi-userid OBLIGATORY DEFAULT  sy-uname,
    p_fich LIKE rlgrap-filename OBLIGATORY
    DEFAULT: 'C:\Documents and Settings\lseri\My Documents\Book1.txt'.
    START-OF-SELECTION.
      CALL FUNCTION 'UPLOAD'
       EXPORTING
      CODEPAGE                      = ' '
         filename                      = p_fich
         filetype                      = 'DAT'
        TABLES
          data_tab                      = i_tabla
       EXCEPTIONS
         conversion_error              = 1
         invalid_table_width           = 2
         invalid_type                  = 3
         no_batch                      = 4
         unknown_error                 = 5
         gui_refuse_filetransfer       = 6
         OTHERS                        = 7
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      PERFORM open_dataset USING dataset.
      PERFORM open_group.
      LOOP AT i_tabla FROM 2.
    PERFORM bdc_dynpro      USING 'SAPLSETB' '0230'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'DATABROWSE-TABLENAME'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=ANLE'.
        PERFORM bdc_field       USING 'DATABROWSE-TABLENAME'
                                      record-tablename_001.
        PERFORM bdc_dynpro      USING '/1BCDWB/DBZSTOCK_TEST' '0101'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'ZSTOCK_TEST-TOTAL'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=SAVE'.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-DES'
                                      record-des_002.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-TIPO'
                                      record-tipo_003.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-QUAN'
                                      record-quan_004.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-PRECIO'
                                      record-precio_005.
        PERFORM bdc_field       USING 'ZSTOCK_TEST-TOTAL'
                                      record-total_006.
        PERFORM bdc_dynpro      USING '/1BCDWB/DBZSTOCK_TEST' '0101'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/EBACK'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'ZSTOCK_TEST-DES'.
        PERFORM bdc_dynpro      USING 'SAPLSETB' '0230'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '/EBACK'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'DATABROWSE-TABLENAME'.
        PERFORM bdc_transaction USING 'SE16'.
      ENDLOOP.
      PERFORM close_group.
      PERFORM close_dataset USING dataset.
    Please help me!
    Thanks

      open dataset                                                       *
    FORM OPEN_DATASET USING P_DATASET.
      OPEN DATASET P_DATASET
                   FOR INPUT IN TEXT MODE
                   ENCODING DEFAULT.
      IF SY-SUBRC <> 0.
        WRITE: / TEXT-E00, SY-SUBRC.
        STOP.
      ENDIF.
    ENDFORM.
      create batchinput session                                          *
      (not for call transaction using...)                                *
    FORM OPEN_GROUP.
      IF SESSION = 'X'.
        SKIP.
        WRITE: /(20) 'Create group'(I01), GROUP.
        SKIP.
      open batchinput group
        CALL FUNCTION 'BDC_OPEN_GROUP'
             EXPORTING  CLIENT   = SY-MANDT
                        GROUP    = GROUP
                        USER     = USER
                        KEEP     = KEEP
                        HOLDDATE = HOLDDATE.
        WRITE: /(30) 'BDC_OPEN_GROUP'(I02),
                (12) 'returncode:'(I05),
                     SY-SUBRC.
      ENDIF.
    ENDFORM.
    I'm using these performs because they appeared automatically when the recording became a program.

  • Program ended with error or warning, return code: F

    Friends, During client export i am facing below mention error, Pl suggest asap
    Client export from 06.04.2011 18:00:44
    System ID............................ PPT
    R/3 Release.......................... 700
       Basis Support Package...............SAPKB70018
    Host................................. pptest
    Start in background............. .....X
    User................................. SUPER
    Parameter
    Source client........................ 500
    Source client user masters............500
    Copier profile:.......................SAP_ALL
    Table selection
    Command file......................... PPTKT00008
    Customizing data .....................X
    With application data................ X
    Initialize and recreate......... X
    Change documents are not copied
    Transport control program tp ended with error code 0012
    Error exporting request PPTKT00008 23:40:31
    Program ended with error or warning, return code: F
    Runtime (seconds)         :         20,390
    End of processing: 23:40:33

    There could be three things possibly causing this error:
    1. There is some database issues, that is the connection to the database maybe is lost that's why TP ends.
    2. The TP return Code can also arise due to issues at the OS level, where SAP is installed.
    3. Due to permission issues also this can creep in. By permission issues I mean there are not enough permissions, please use trace ST01 and run the process again.
    Also please paste the Imort Log, as it can help in further analysis and with that please give your database and OS informations.

  • Importing error Ended with return code:  === 8 ===

    Hi Experts,
    I am trying to transporting an infoobject 0EMPLOYEE from Dev to Production.While importing the request I am getting an error like
    Execution of programs after import (XPRA)
    Transport request   : BD1K901543
    System              : BP1
    tp path             : tp
    Version and release: 372.04.36 700
    Execution of programs after import (XPRA)
    End date and time : 20090206164251
    Ended with return code:  ===> 8 <===
    after expanding this error msg i am getting
    Start of the after-import method RS_IOBJ_AFTER_IMPORT for object type(s) IOBJ (Activation Mode)
    Characteristic 0CM_CTAR: Unit 0UNIT_DIM no allowed in compounding
    Characteristic 0CM_SHAR: Unit 0AREA_UNIT no allowed in compounding
    by clicking on the error mag
    Diagnosis;
    If the characteristic is used in an InfoProvider with dimensions (for example, an InfoCube or MultiProvider), the compounded unit is not unique if currency key figures are used at the same time.
    System Response
    This type of modeling is not supported.
    Procedure
    Replace the currency with a different characteristic. If you nevertheless want to use a unit in the compounding, you should use the modeling of a characteristic that semantically represents a unit. To do so, copy the technical properties of the unit of measure or the currency.
    How can I solve this problem?
    Can add any other char to this compounding char is it works?if yes which currency char i need to add here?
    Thanks & Regards,
    Sridhar

    Hi Sridhar,
            I am facing the problem with 0CM_CTAR and 0CM_SHAR. both the characteristics are not allowed compouding ATTRIBUTES.
      0cm_ctar not allowed comp .attr of 0unit_dim
      0cm_shar not allowed comp.attr 0f area_unit.
    for this reason what i need to do. Please give me help on this.
    sridhar could you give me solution what i need to do. i am also implement  same sap note or any other solution you have.
    Please kindly give me reply.
    Thnaks,
    Guna.
    Edited by: gunasekhar raya on Apr 14, 2009 6:16 PM

  • Error with sapstartsrv return code -1

    Hello, i'm trying to install the preview and on step 2 it fails registering sapstartsrv, the error message is the following:
    Execution of the command "C:\usr\sap\J2E\SCS01\exe\sapstartsrv.exe -r -q -p C:\usr\sap\J2E\SYS\profile\START_SCS01_WRODRIGUEZ -s J2E -n 01 -U WRODRIGUEZ\SAPServiceJ2E -P ******** -e WRODRIGUEZ\j2eadm" finished with return code -1. Output: Cannot register COM interface.
    if i check window's event viewer, i see:
    Cannot open Registry key HKEY_LOCAL_MACHINE\Software\SAP\J2E\Environment (Error 2 ENOENT*: No such file or directory OR: The system cannot find the file specified. ) [ntservmgr.cpp 264]
    So i create those in the registry manually and still not working.
    The WEIRDEST thing is that everytime i restart my computer i can see sapstartsrv service running...
    PLEASE, can someone help??
    thanks in advance.

    sorry, something i forgot to say, when i go to control panel->event viewer, i can see the following error:
    Cannot open Registry key HKEY_LOCAL_MACHIE\Software\SAP\J2E\Environment
    I check the registry and i can see that the key doesn't exist, i create it manually and nothing happens, it keeps giving the same error. The thing is that i think installation program cannot create the key.  I followed instructions from the post:
    WAS 6.40 installation "sapstartsrv.exe' returned with '-1'."
    And it didn't work for me.
    Please, does anyone have any insight on this? i'd really like to install the preview...
    thanks in advance

  • Transport error failure with return code 12

    Hello Experts
    I was trying to transport a request which consists of four Cubes, Infosources, datasources, Update rules and communication structure from QA to Test. The transport went without any problems from Dev to QA. However, while transporting to Q, it finished with errors with return code 12 with the following error: I tried to import it thrice with no success
    Program terminated (job: RDDEXECL, no.: 21120900)
    I checked in SM37 and the background job for this transport gets terminated everytime with the following dump:
    Error analysis                                                                               
    An exception occurred which is explained in detail below.  The exception, which is assigned to class 'CX_RSR_X_MESSAGE', was not caught and therefore caused a runtime error. The reason for the exception is: No text available for this exception   
    Does anyone has a clue about this?
    Thanks
    Rishi

    Hi Rishi ,
    The Issue may be with the buffer capacity while transporting .
    As i see from the post that you have captured all the objects
    in one request and sent to target system . As per my experience never include all the objects in one Request .
    Try to separate them depending on the onject types ,i mean datasource , infosource , ODS & cube seperately .
    IF you cannot solve the problem , i think it is better to create a new request as i said in Development and try to move them to production .If next time request fail then you can look at the only that particuler Request only .
    IF you have more information please share .
    Thanks
    Santosh

  • Error /SAPAPO/OM102, return code 40,015 in APO DP

    I am using APO DP V5.
    In interactive DP, we are getting error /SAPAPO/OM102 with return code 40,015.
    Had anyone had experience of this?
    Thanks,
    Bob Austin, Atos Origin.

    Hello,
    As per my understanding of your qurery...
    You are accessing intractie Demand planning
    that time you are getting error.
    /SAPAPO/OM102 Return code 40015
    With the above understanding ... I am trying to reply your query as
    When I tried to execute transaction /SAPAPO/OM10 - Display Meaning of Return Code
    And entered return code 40015
    I received Display messages as "Date is before start date of time buckets profile"
    ON long text it is "Date is before start date of time buckets profile
    Message no. /SAPAPO/OM_TS015
    Diagnosis
    The date lies before the start date of the time buckets profile used.
    This problem is due to an error in the application.
    Procedure
    Open an OSS message in accordance with SAP Note 167280.
    Please check the details above.
    In Intractive demand planning what type of work you were doing during this error occured?

  • ZTI ERROR - Non-zero return code by LiteTouch, rc = -2147023589 0x8007051B

    Hi,
    Operating system is installed and after that defined applications are not getting installed. Deployment ended with below errors. Please help me to solve the problem.
    MSD 2010 is the tool which is used for deploying Windows 7 Enterprise Edition 32 bit operating system. 
    ResourceRoot = \\Server1\DeploymentShare
    Property ResourceDrive is now = Z:
    ResourceDrive = Z:
    Property _SMSTSPackageName is now = Lite Touch Installation
    SMS Task Sequencer already found on C:\MININT\Tools\X86
    LiteTouch
    RUN: regsvr32.exe /s "C:\Users\ADMINI~1\AppData\Local\Temp\Tools\x86\Microsoft.BDD.Utility.dll"
    LiteTouch
    RUN: regsvr32.exe /s "C:\Users\ADMINI~1\AppData\Local\Temp\Tools\x64\Microsoft.BDD.Utility.dll"
    LiteTouch
    FAILURE (Err): 429: CreateObject(Microsoft.BDD.Utility) - ActiveX component can't create object
    LiteTouch
    LTI beginning deployment
    About to run command: "C:\MININT\Tools\X86\TsmBootstrap.exe" /env:SAStart
    Litetouch deployment failed, Return Code = -2147023589  0x8007051B
    For more information, consult the task sequencer log ...\SMSTS.LOG
    Property RetVal is now = -2147023589
    CleanStartItems Complete
    About to run command: MSHTA.exe "\\Server1\DeploymentShare\scripts\Wizard.hta" /definition:Summary_Definition_ENU.xml
    Property definition is now = Summary_Definition_ENU.xml
    Wizard
    Microsoft Deployment Toolkit version: 5.1.1642.01
    Wizard
    Not Wizard = False Wizard
    Property WizardComplete is now = N Wizard

    For more information, consult the task sequencer log ...\SMSTS.LOG
    Check the SMSTS.log file. If you need additional help, please copy the log file to a public share like onedrive and send the link here.
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • WSRP Consumer - producer registration error : (100)continue return code

    I am trying to get an ALI WSRP Consumer working with the ALI WSRP Producer. Whenever I try to register the producer wsdl, the consumer fails with the error :
    Failed to get a service description from WSRP provider!
    Error message from WSRP provider: (100)Continue
    Any clues? I can successfully register this producer with a different portal's consumer. Is there a configuration property that needs to be set to allow the (100) response code? Or perhaps my Producer should avoid that response code in the first place? Has anybody run into this?
    Below is the stack trace generated by my consumer on the back-end (from ALI Logging Spy) :
    Failed to get service description from WSRP provider: http://scollins.sd.defenseweb.net:80/wsrpproducer1.1/1.0/WSRPBaseService.asmx
    AxisFault
    faultCode: {http://xml.apache.org/axis/}HTTP
    faultSubcode:
    faultString: (100)Continue
    faultActor:
    faultNode:
    faultDetail:
         {}string: return code: 100
    HTTP/1.1 200 OK
    Server: Microsoft-IIS/5.1
    Date: Wed, 22 Apr 2009 23:31:53 GMT
    X-Powered-By: ASP.NET
    Connection: close
    X-AspNet-Version: 2.0.50727
    Cache-Control: private, max-age=0
    Content-Type: text/xml; charset=utf-8
    Content-Length: 3084
    &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:wsa=&quot;http://schemas.xmlsoap.org/ws/2004/03/addressing&quot; xmlns:wsse=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot; xmlns:wsu=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd&quot;&gt;&lt;soap:Header&gt;&lt;wsa:Action&gt;urn:oasis:names:tc:wsrp:v1:getServiceDescriptionResponse&lt;/wsa:Action&gt;&lt;wsa:MessageID&gt;uuid:dc3a3069-320a-4a6d-a997-45313098bc00&lt;/wsa:MessageID&gt;&lt;wsa:RelatesTo&gt;uuid:c827c145-c82d-4958-a201-30e7a86c053b&lt;/wsa:RelatesTo&gt;&lt;wsa:To&gt;http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous&lt;/wsa:To&gt;&lt;wsse:Security&gt;&lt;wsu:Timestamp wsu:Id=&quot;Timestamp-18d05f2a-c5dd-4519-8d1d-24b68f27b9e5&quot;&gt;&lt;wsu:Created&gt;2009-04-22T23:31:54Z&lt;/wsu:Created&gt;&lt;wsu:Expires&gt;2009-04-22T23:36:54Z&lt;/wsu:Expires&gt;&lt;/wsu:Timestamp&gt;&lt;/wsse:Security&gt;&lt;/soap:Header&gt;&lt;soap:Body&gt;&lt;getServiceDescriptionResponse xmlns=&quot;urn:oasis:names:tc:wsrp:v1:types&quot;&gt;&lt;requiresRegistration&gt;false&lt;/requiresRegistration&gt;&lt;offeredPortlets&gt;&lt;portletHandle&gt;simple&lt;/portletHandle&gt;&lt;markupTypes&gt;&lt;mimeType&gt;text/html&lt;/mimeType&gt;&lt;modes&gt;wsrp:edit&lt;/modes&gt;&lt;modes&gt;wsrp:help&lt;/modes&gt;&lt;modes&gt;wsrp:view&lt;/modes&gt;&lt;windowStates&gt;wsrp:maximized&lt;/windowStates&gt;&lt;windowStates&gt;wsrp:minimized&lt;/windowStates&gt;&lt;windowStates&gt;wsrp:normal&lt;/windowStates&gt;&lt;windowStates&gt;wsrp:solo&lt;/windowStates&gt;&lt;locales&gt;en&lt;/locales&gt;&lt;/markupTypes&gt;&lt;description xml:lang=&quot;en&quot;&gt;&lt;value&gt;Simple view portlet to test WSRP viewing&lt;/value&gt;&lt;/description&gt;&lt;shortTitle xml:lang=&quot;en&quot;&gt;&lt;value&gt;View&lt;/value&gt;&lt;/shortTitle&gt;&lt;title xml:lang=&quot;en&quot;&gt;&lt;value&gt;View Portlet&lt;/value&gt;&lt;/title&gt;&lt;displayName xml:lang=&quot;en&quot;&gt;&lt;value&gt;SimpleView&lt;/value&gt;&lt;/displayName&gt;&lt;userProfileItems&gt;UserProfileName/PropertyName&lt;/userProfileItems&gt;&lt;templatesStoredInSession&gt;true&lt;/templatesStoredInSession&gt;&lt;doesUrlTemplateProcessing&gt;true&lt;/doesUrlTemplateProcessing&gt;&lt;/offeredPortlets&gt;&lt;offeredPortlets&gt;&lt;portletHandle&gt;helloworld&lt;/portletHandle&gt;&lt;markupTypes&gt;&lt;mimeType&gt;text/html&lt;/mimeType&gt;&lt;modes&gt;wsrp:edit&lt;/modes&gt;&lt;modes&gt;wsrp:help&lt;/modes&gt;&lt;modes&gt;wsrp:view&lt;/modes&gt;&lt;windowStates&gt;wsrp:maximized&lt;/windowStates&gt;&lt;windowStates&gt;wsrp:minimized&lt;/windowStates&gt;&lt;windowStates&gt;wsrp:normal&lt;/windowStates&gt;&lt;windowStates&gt;wsrp:solo&lt;/windowStates&gt;&lt;locales&gt;en&lt;/locales&gt;&lt;/markupTypes&gt;&lt;description xml:lang=&quot;en&quot;&gt;&lt;value&gt;Hello world portlet to test WSRP viewing&lt;/value&gt;&lt;/description&gt;&lt;shortTitle xml:lang=&quot;en&quot;&gt;&lt;value&gt;View&lt;/value&gt;&lt;/shortTitle&gt;&lt;title xml:lang=&quot;en&quot;&gt;&lt;value&gt;Hello World Portlet&lt;/value&gt;&lt;/title&gt;&lt;displayName xml:lang=&quot;en&quot;&gt;&lt;value&gt;HelloWorld99&lt;/value&gt;&lt;/displayName&gt;&lt;userProfileItems&gt;UserProfileName/PropertyName&lt;/userProfileItems&gt;&lt;templatesStoredInSession&gt;true&lt;/templatesStoredInSession&gt;&lt;doesUrlTemplateProcessing&gt;true&lt;/doesUrlTemplateProcessing&gt;&lt;/offeredPortlets&gt;&lt;registrationPropertyDescription&gt;&lt;propertyDescriptions name=&quot;ConsumerName&quot; type=&quot;xsd:string&quot; /&gt;&lt;propertyDescriptions name=&quot;BuildDate&quot; type=&quot;xsd:dateTime&quot; /&gt;&lt;/registrationPropertyDescription&gt;&lt;/getServiceDescriptionResponse&gt;&lt;/soap:Body&gt;&lt;/soap:Envelope&gt;
    (100)Continue
         at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:695)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:129)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:150)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:120)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:180)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2575)
         at org.apache.axis.client.Call.invoke(Call.java:2564)
         at org.apache.axis.client.Call.invoke(Call.java:2259)
         at org.apache.axis.client.Call.invoke(Call.java:2182)
         at org.apache.axis.client.Call.invoke(Call.java:1702)
         at com.plumtree.wsrp.base.WSRP_v1_ServiceDescription_Binding_SOAPStub.getServiceDescription(WSRP_v1_ServiceDescription_Binding_SOAPStub.java:857)
         at com.plumtree.wsrp.consumer.impl.ServiceDescriptionManager.getServiceDescription(ServiceDescriptionManager.java:118)
         at com.plumtree.wsrp.consumer.servlet.AdminPreference.renderSetRegistrationPage(AdminPreference.java:992)
         at com.plumtree.wsrp.consumer.servlet.AdminPreference.service(AdminPreference.java:117)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)

    This seemed promising, but the proposed solution (adding 'servicePointManager expect100Continue="false"' to Web.config) had no effect.
    My consumer request actually does not include the "Expect: 100-continue" header and receives the 100 response anyways. My understanding now is that this is okay (thought I'm not sure why) and that the client should be expected to handle that response code in any case.
    I am wondering if there is an issue with the combination of products in my environment that is not supported by this product?? I am using
    IIS 5.1,
    .Net 2.0
    AquaLogic WSRP Producer 1.1/WebCenter WSRP Producer 10.3.0 (tried both)
    I am testing this producer in two environments -
    - AquaLogic Consumer running on AL Portal 6.5. When the WSRPConsumer is configured with the producer wsdl, it fails with message "Failed to get service description from WSRP Provider: .... faultString: (100) Continue".
    - Liferay - AFTER successful registration, attempts to deploy my registered .Net portlet (simple hello-world) result in an internal exception thrown in the Producer [Bea.Portlet.Management.PortletManager.LoadPortlet(PortletManager.cs:line 114)] Error loading PortletContainer: Bad PortletState. No request is made to my .Net application.
    It appears from both of these tests that both my producer and consumer are having fundamental problems that do not seem overly exotic (although I have successfully registered other WSRP portlets with the AL Consumer). However, I have not come across much information on these sorts of problems.

  • Console error with GUI , return code -17

    Hi All,
    I have just finished the Installation of SAP IDES 4.7. Installation was sucessful, after that I Installed GUI 640. But when we are starting the Console it is starting without any error which also shows WP table details in run mode. When we logon to gui, console becomes "Yellow" and dispatch process stop with a return code -17.
    Please help.
    Thanks
    Jagat.

    Hi Kaushal,
    Thanks for ur reply. Actually when we started the installation process, and GUI, we have not provide the loopback adapter in the Primary DNS, but Loopback Adapter was properly configured with IP.
    Later on we realised and added the 127.0.0.1 in the Primary DNS. But its still not working. 
    The Log which u have asked for is attached.
    trc file: "dev_w0", trc level: 1, release: "620"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Sat Mar 04 10:18:27 2000
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\TEK\SYS\exe\run\dboraslib.dll' ...
    B  Library 'C:\usr\sap\TEK\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'C:\usr\sap\TEK\SYS\exe\run\dboraslib.dll' is "620.02", patchlevel (0.112)
    B  New connection 0 created
    M  systemid   560 (PC with Windows NT)
    M  relno      6200
    M  patchlevel 0
    M  patchno    251
    M  intno      20020600
    M  pid        2792

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2792) [dpxxdisp.c   1016]
    I  MtxInit: -2 0 0

    X Sat Mar 04 10:18:29 2000
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation std
    M  <EsNT> Memory Reset enabled as NT default
    X  ES initialized.
    M  calling db_connect ...
    C  Got ORACLE_HOME=D:\oracle\ora81 from environment

    C Sat Mar 04 10:18:30 2000
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPTEK's password
    C  Connecting as /@TEK on connection 0 ...
    C  Attaching to DB Server TEK (con_hdl=0,svchp=06A497E8,svrhp=06A495F4)

    C Sat Mar 04 10:19:07 2000
    C  Starting user session (con_hdl=0,svchp=06A497E8,srvhp=06A495F4,usrhp=06A913AC)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      3718]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dboci.c      9536]
    C  Try to connect with default password
    C  Connecting as SAPTEK/<pwd>@TEK on connection 0 ...
    C  Starting user session (con_hdl=0,svchp=06A497E8,srvhp=06A495F4,usrhp=06A913AC)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      3718]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dboci.c      9536]
    B  ***LOG BY2=> sql error 1017   performing CON [dbsh#2 @ 962] [dbsh    0962 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dbsh#2 @ 962] [dbsh    0962 ]
    B  ***LOG BY2=> sql error 1017   performing CON [dblink#1 @ 419] [dblink  0419 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dblink#1 @ 419] [dblink  0419 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1098]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   8277]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server sapsrv_TEK_00 on host sapsrv (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Sat Mar 04 10:19:07 2000
    M  *  RELEASE     620
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        8408
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >SAP-Trace buffer write< for event BEFORE_DUMP
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   672]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  235]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2792) [dpnttool.c   345]

  • Transport error failure with return code 12 for BIA indexed Cube

    Hello,
    I was trying to transport few cubes from the Dev to the QA system. However, the transport failed repeatedly with return code 12. I noticed that the version of Cubes in the target system had BIA indexes loaded on it.   So, I deleted those indexes and re-transported the cubes.To my surprise, the transport went fine without the BIA indexes. This now opens up a new avenue for discussion of dropping and recreating BIA indexes for those cubes that needs to be transported.
    Any thoughts on this new aspect before. Has anyone faced similar problems. I want to know your experiences before we can take this issue to SAP.
    Thanks,
    Rishi

    Rishi/Vitaly/Marc,
    How do you transport cubes with BIA indexes.
    Do you drop/recreate the BIA index before the transport.
    In my case, the transport kicked off adjustment job exactly as described in [Note 1012008|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1012008]
    Indexes looks fine once this jobs completes successfully. The transport does not fail.
    Is this approach fine.
    I see that most of the customers drop/recreate indexes before transporting cubes.
    Can I run into data consistency issues with this approach?
    Input required.
    Thanks,
    Saurabh

  • Received return code 500 ( Error during conversion of XI message )

    Hello Experts,
    I am configuring the WSRM for SD in SAP. I have only configured services CreditWorthinessQuery_Out and CreditWorthinessQuery_In on soamanager to carry out credit checks.
    while i am creating sales order i am getting below error.
    Received return code 500 ( Error during conversion of XI message )
    In debug i checked the string of error it showed me below string :
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">#<SOAP:Hea
    der>#</SOAP:Header>#<SOAP:Body>#<SOAP:Fault xmlns:SOAP="http://schemas.xmlsoap.o
    rg/soap/envelope/"><faultcode>SOAP:Client</faultcode><faultstring>Error during c
    onversion of XI message</faultstring><faultactor>http://sap.com/xi/XI/Message/30
    </faultactor><detail><SAP:Error SOAP:mustUnderstand="1" xmlns:SAP="http://sap.co
    m/xi/XI/Message/30"><SAP:Category>XIProtocol</SAP:Category><SAP:Code area="PARSE
    R">UNEXPECTED_VALUE</SAP:Code><SAP:P1>Main/@versionMajor</SAP:P1><SAP:P2>000</SA
    P:P2><SAP:P3>003</SAP:P3><SAP:P4/><SAP:AdditionalText/><SAP:ApplicationFaultMess
    age namespace=""/><SAP:Stack>XML tag Main/@versionMajor has incorrect value 000;
    expected value is 003##</SAP:Stack></SAP:Error></detail></SOAP:Fault>#</SOAP:Bo
    dy>#</SOAP:Envelope>#
    Does anyone have any idea about this? I am not integrating with PI/XI system.

    Hi
    Can you check this out?
    Transaction SXMB_ADM  Integration Engine Configuration
    For an application system you have to maintain the role of the business system as an application system. Set the corresponding Integration Server as an HTTP destination (for example, dest://INTEGRATION_SERVER). Create the destination in transaction SM59 and set the type to HTTP Connections to R/3 System. Test the connection by using the Connection Test button; you should get HTTP 500 u2013 Empty HTTP Request received, because no u201Ereal‟ XML document is sent during this test.
    A HTTP return code 500 (Internal Server Error) is OK.
    Regards
    Pothana

  • Failed (why else would I post). Error creating an image of Drive D:, rc = 2. Return Code -2147467259 0x80004005. "Not enough storage is available to process this command".

    Seems a common set of Return Codes to post so apologies that's not specific.
    To me appears the issue is related to the "Not enough storage is available to process this command" log entry. Looked into it and some SCCM 2007 issues that were related to too many sessions to the site server, but even after rebooting my MDT server
    I get the same issue.
    The server I am attempting to capture has a 60gb VHD with around 30gb actually used. The MDT Server has over 100GB free space.
    Here is from BDD.log:
      Console > Turning on VERIFY option for network share
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Scanning files and directories...
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Error imaging drive [D:\]
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Not enough storage is available to process this command.
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    Return code from command = 2 ZTIBackup
    10/10/2014 12:56:31 PM 0 (0x0000)
    Error creating an image of drive D:, rc = 2
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    Event 41036 sent: Error creating an image of drive D:, rc = 2
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    ZTIBackup COMPLETED.  Return Value = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    ZTI ERROR - Non-zero return code by ZTIBackup, rc = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    Event 41002 sent: ZTI ERROR - Non-zero return code by ZTIBackup, rc = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    Command completed, return code = -2147467259
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    Litetouch deployment failed, Return Code = -2147467259  0x80004005
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    Event 41014 sent: Litetouch deployment failed, Return Code = -2147467259  0x80004005
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    I'll post below full logs.

    imagex reported:
      Console > Error imaging drive [D:\]
      Console > Not enough storage is available to process this command.
    obvious question is: do you have enough free space on
    "\\arcadmin3\deploymentshare$\Captures\SIMSERVER.wim"
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Client Copy with return code error :W

    Hi Gurus,
    When I am copying from Prod. client 500 to Quality Client 400 in (ECC 6), I am getting
    'Program ended with error or warning, return code: W"
    can any body please give soultions for this
    Regards
    Gokul

    Hello Mr.  Bhavik,
    I had check in SCC3 client copy log and all error was got in test run, below gives details of log and examples of some table details log please help me what I can do?
    Target Client     400     
    Source RFC Dest.:     CLNT500TRP
      System Name:     TRP     
      Client in Source System     500     
    Copy Type     Remote copy
    Copy Type     Test Run     
    Profile          SAP_ALL     
    Status          Completed w. Dictionary Errors
    User          BASIS     
    Start on          27.03.2010 / 11:33:21
    Last Entry on     27.03.2010 / 12:20:36
    Statistics for this Run     
    No. of Tables         52598 of     54115
    Deleted Lines     5394087     
    Copied Lines     31175343     
    Warnings and Errors
    Table Name     Component     Package
    A001     SD-MD-CM     DDIC Error        (See SE14)
    A004     SD-MD-CM     DDIC Error        (See SE14)
    A005     SD-MD-CM     DDIC Error        (See SE14)
    A006     SD-MD-CM     DDIC Error        (See SE14)
    A007     SD-MD-CM     DDIC Error        (See SE14)
    A009     SD-MD-CM     DDIC Error        (See SE14)
    A010     SD-MD-CM     DDIC Error        (See SE14)
    A012     SD-MD-CM     DDIC Error        (See SE14)
    A015     SD-MD-CM     DDIC Error        (See SE14)
    A016     SD-MD-CM     DDIC Error        (See SE14)
    A017     SD-MD-CM     DDIC Error        (See SE14)
    A018     SD-MD-CM     DDIC Error        (See SE14)
    A019     SD-MD-CM     DDIC Error        (See SE14)
    A021     SD-MD-CM     DDIC Error        (See SE14)
    Table Information
    Table:                      A001
    - Short Description:        Not Used in Standard
    Package:                    VKON
    - Short Description:        Application development R/3 conditions
    Application Component:      SD-MD-CM
    - Short Description:        Conditions
    Delivery Class:             A
    Table Type:                 Pooled table
    Technical Information:
    Nametab of Table is Correct
    Table Exists in Database:   KAPOL
    Table Information
    Table:                      A028
    - Short Description:        Info Record for Non-Stock Item
    Package:                    VKON
    - Short Description:        Application development R/3 conditions
    Application Component:      SD-MD-CM
    - Short Description:        Conditions
    Delivery Class:             A
    Table Type:                 Pooled table
    Technical Information:
    Nametab of Table is Correct
    Table Exists in Database:   KAPOL
    Regards
    Gokul Borse
    9881843629
    Edited by: Gokul Borse on Mar 28, 2010 7:17 AM

Maybe you are looking for

  • 0ENTRY_DATE not displayed in the Cube

    Hi All,             Please help me out its urgent, I'm having a field(0entry_date) in the transfer structure and also in the communication structure of the infosource, but the field is not being displayed in the Cube and also in the Update rules.The

  • Viewing on External Monitor

    While editing in FCP, I can see my sequence on an external monitor just fine. But when I'm working in Motion, I cannot see Motion's output on the external monitor. I think I've tried all the basic fixes. G5, 2.0 DP, 4GB Ram   Mac OS X (10.4.6)  

  • My ipad has frozen since trying to update ios 8

    I have been trying to update to IOS 8. But my pad has now stopped responding all together. All I have is a screen with the itunes logo and a charging lead under it. apart from that the pad is doing nothing.

  • Gap Analysis

    Hi, I am trying to create a purchasing report with Vendor, Buyer, Plant and Calender Month and with keyfigures # Created, #Closed, and #Processed. I did some research on standard business content. These fields are available in some cubes, queries, an

  • Error in FI document creation

    Hi, I am trying to post excise document through  J1IS but am getting the following error: "Error in FI Document Create" Message No. 8I031 Kindly help Regards.