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.

Similar Messages

  • Open dataset - return code 8 - msg - Permission Denied

    This is the first time this company has tried to write files to the application server. They are running under Windows. The network admin set up a folder and I am getting a return code of 8 on 'open dataset'.  When I use this function to get more information I am getting
    a run-time error that the ABAP is bad.
    What is wrong with this function call?
    pfilename =
    saberdev\blacksmith\ftpout\bsproduct.txt
    call function 'AUTHORITY_CHECK_DATASET'
    EXPORTING
    program = 'ZBS_PRODUCT_OUTBOUND_INTERFACE'
    activity = 'WRITE'
    filename = pfilename
    EXCEPTIONS
    no_authority = 1
    activity_unknown = 2
    others = 3.

    Thanks, Santosh, that helped.
    Now I am getting sy-subrc =  0 on the function call but I am still getting a return code of 8 on the open dataset.  Here is my code.
    HELP!!
       call function 'AUTHORITY_CHECK_DATASET'
             EXPORTING
                  program          = 'ZBS_PRODUCT_OUTBOUND_INTERFACE'
                  activity         = 'WRITE'
             filename         = '
    saberdev\blacksmith\ftpout\bsproduct.txt'
             EXCEPTIONS
                  no_authority     = 1
                  activity_unknown = 2
                  others           = 3.
         check sy-subrc = 0.
        data: MSG(100).
        pfilename = '
    saberdev\blacksmith\ftpout\bsproduct.txt'.
        CLEAR MSG.
        OPEN DATASET pfilename FOR OUTPUT IN TEXT MODE MESSAGE MSG.
        IF SY-SUBRC <> 0.
          CONCATENATE 'file error: ' MSG INTO MSG.
          MESSAGE E208(00) WITH MSG.
        ENDIF.

  • Open dataset - return code 8

    I am getting sy-subrc = 0 on the function call but I am still getting a return code of 8 (permission denied) on the open dataset. Here is my code.
    HELP!!
    call function 'AUTHORITY_CHECK_DATASET'
    EXPORTING
    program = 'ZBS_PRODUCT_OUTBOUND_INTERFACE'
    activity = 'WRITE'
    filename = '
    saberdev\blacksmith\ftpout\bsproduct.txt'
    EXCEPTIONS
    no_authority = 1
    activity_unknown = 2
    others = 3.
    check sy-subrc = 0.
    data: MSG(100).
    pfilename = '
    saberdev\blacksmith\ftpout\bsproduct.txt'.
    CLEAR MSG.
    OPEN DATASET pfilename FOR OUTPUT IN TEXT MODE MESSAGE MSG.
    IF SY-SUBRC <> 0.
    CONCATENATE 'file error: ' MSG INTO MSG.
    MESSAGE E208(00) WITH MSG.
    ENDIF.

    Janet - Might be worth it to check the permissions/owner on the directory.  You might be able to use function module SUBST_GET_FILE_LIST  and trans SE37 to do this.
    Regards,
    Lawrence Schmit
    Message was edited by: Lawrence Schmit
    Keep in mind that the authority check only verifies your authorization level --> it doesn't verify that the drive/path/filename is valid.  Also, it looks as if you're attempting to write to a network drive (assumed because of the back-slashes "
    ").  If you're writing to a Unix directory, use forward slashes '/'.

  • BDC for transaction AC02, error opening dataset returning 0.

    Here is the code.
    Help me ASAP..             
    <unreadable code removed by moderator>
    Moderator message: please do some own research before posting, only posts text with less than 5000 characters, check formatting before posting, do not use terms like "ASAP".
    Edited by: Thomas Zloch on Jan 13, 2012

      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.

  • Data transfer error open dataset files

    hi,
    When i try to create a excel or text in my application server using open dataset.
    i.e
    l_filename type rlgrap-filename  value '/tmp/down.txt'.
    I got a short dump during the run time
    i got the output and put into an internal table.
    the following code has been used.
    form user_command using r_ucomm like sy-ucomm
    rs_selfield  type slis_selfield.
    if r_ucomm = 'confirm' .
    OPEN DATASET l_fname FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    LOOP AT it_out INTO wa_out.
      IF sy-subrc = 0.
        TRANSFER wa_out TO l_filename.
      ENDIF.
    ENDLOOP.
    endform.
    during the execution i hv a button alv grid outpu. when i click the button the file should be transferred.
    but NO authorization to open the file "/tmp/down.txt".
    and the error is pointed in the opendataset line.
    Please tell me where i am wrong . and  help me in resoving this.

    Try this..instead of moving field by field into the file 1st convert all he fields to a character stream..and then move that steam to file. Ex:
    loop at internal table into l_h_tbl_file.
    concatenate l_h_tbl_file-f1 l_h_tbl_file-f2 l_h_tbl_file-f3
    l_h_tbl_file-f4 l_h_tbl_file-f5 into g_string.
    TRANSFER g_string TO fu_wk_get_file.
    endloop.

  • 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

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

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

  • 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

  • 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

  • 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

  • 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

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

  • 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

Maybe you are looking for

  • Cannot open Icloud calendar in outlook 2010 since upgrade to win 8.1

    Since upgrading to Windows 8.1 cannot open iCloud calendars or contacts. I get "This set of folders cannot be opened. Theinformation store could not be opened."

  • Multiple journal lines mapping

    Hi, please let me know how to map these fields in PI Journal Line Multiple journal lines per header: Schema Element     Data /Journal/JournalLine/JournalLineCostCentre     Bank account control Cost Centre /Journal/JournalLine/JournalLineAccount     B

  • Need to add a MSSQL Server to our system

    I remember seeing a SQL connector or something Is there anything that will make life easier??? My understanding is we need Windows Server + CALs + MSSQL Server (+ cals for SQL) and everything is stored and run on the Windows box.... About the only th

  • Topics on EP and the sequence to be followed

    Hi ,    I have explored a few topics on the development side of the portal and there are a few on my mind .What I wish to know is if I have to develop a team of delivery capability then in what sequence these topics are to be taken with the team . I

  • Can retrieve users from some sub OUs and from other sub OUs cann't

    hi, I am using Windows 2003 Active Directory Server and Jndi to access that in my application. I am using follwing code to retrieve all Users from a aprticular OU. ctx = new InitialDirContext(environment); SearchControls ctls = new SearchControls();