Error importing Idoc - Unable to read segments

Hi experts,
I have some problems importing a custom built IDoc in IR.
The error I got was:
ZPATINFO_IDTY.ZPATINFO: Error
+Error: IDoc type ZPATINFO contains error (unable to read segments)
Import failed with 1 error.
I've tried to import standard IDocs and they were successful.
I tried to import the metadata in IDX2, and was successful. A popup saying "unable to read segment versions" but i could still see the structure in IDX2.
I've added roles to my user:
SAP_BC_MID_ALE_DEVELOPER
SAP_BC_MID_ALE_IDOC_ADMIN
SAP_BC_MID_ALE_IDOC_DEVELOPER
Please help.
Thanks!
Ron

First of all check if you have the proper authorizations;
From Note: 837595
Authorization object S_RFC
Field name RFC_TYPE value FUGR
Field name RFC_NAME value EDIMEXT, SDTX
Field name ACTVT    value 16
Authorization object S_IDOCDEFT
Field name ACTVT   value 03
Field name EDI_CIM value ' '
Field name EDI_DOC value TXTRAW01
Field name EDI_TCD value WE30
Authorization object S_CTS_ADMI
Field name CTS_ADMFCT  value TABL
Authorization object S_TABU_DIS
Field name ACTVT      value 03
Field name DICBERCLS  value
Then check if the idoc and its segments have been released in R3.

Similar Messages

  • IDOC import from CRM 7.0 to SAP PI 7.0 fails: unable to read segments

    Hello,
    We want to import an Idoc from a CRM 7.0 system to SAP PI 7.0.
    The import fails with the message ""unable to read segments".
    The issue is related to ALL Idocs, standard and customer defined.
    The result of any import is that we can see the object in the import folder, but the structure is missing.
    Importing any RFC from the same CRM system is no problem.
    Any ideas?
    Your help is appreciated.
    Regards
    Dirk

    Hi Peter,
    Thank you for your answer.
    But we need to find out what the reason for this import error is.
    Our customer will not be very pleased to see that all IDocs from CRM system cannot be found in the IDOC folder.
    IDX2 import of metadata is no issue.
    We were successful for standard and customer Idocs here.
    Additional information:
    We are already importing Idocs from a SAP ECC 6.0 system into PI in another SWCV
    successfully. So this is a CRM system specific issue in our environment.
    Regards
    Dirk
    Edited by: Meinhard Dirk on Aug 27, 2010 10:30 AM

  • IDOC type abc contains error (Unable to read segments)

    Hi All
    While importing IDOC in IR i am getting error "IDOC type abc contains error (Unable to read segments)".
    We have added one extra field into our existing customised IDOC into R3 and successfully releases. Previous IDOC having version 640 and modified IDOC having version 700.
    In IDX2 i have successfully imported IDOC metadata and one extra added field also i can see there. But while importing into IR its showing me error "IDOC type abc contains error (Unable to read segments)".
    I have tried to import different IDOC using same user and it was successfully imported means there is no authorization error.
    Please suggest me where could be the problem?
    Regards
    Dheeraj Kumar

    Do The following:
    1) Delete the IDX2 entry and try to reimport once again....and in the IR also do the same.
    2) Have a look into this SAP Note- 742093
    3) Check the IDX1 entry , RFC destination entry... may be not pointing correctly.
    4) If any field which is mandatory in the idoc must not be disabled...take care about it.

  • IDOC / Integration Builder  -- contains errors (unable to read segments)

    HELLO,
    I have a problem. I have created a new IDOC. but when I imported to the KIntegration Builder it says:
    Import started...
    ZHRMD_IT.ZHRMD_IT: Error
      + Error: IDoc type ZHRMD_IT contains errors (unable to read segments)
    Import failed with 1 error.
    The rare thing is that the idoc is a copy of another idoc of SAP (HRMD_A06) but I have taken out some E1Pxxxxx.
    Its like a reduced Idoc but as a new idoc.
    Can Someone help me, please.
    How can I see what segment is wrong in the new idoc (ZHRMD_IT)?
    Thank you
    Pablo Mortera.

    Hi,
    As per the error , you are importing some custom idocs.
    Go to WE30 and check that, all the segments in the idoc has got released or not ..
    <i>All the segments are the sap stardard segments.</i>
    >>You may be using standrad segments, but in custom idocs right.Anyway check, idoc and its segments are released or not..
    Then start importing the idoc into IR..
    Regards,
    Moorthy

  • Error Importing IDOCS

    I get the following error when trying to import any idocs...
    Error: IDoc type ALEAUD01 contains errors (unable to read segments)
    Import failed with 1 error
    Does anyone know why this is happening and how to fix it?

    Hi Ricardo,
    login to SAP R/3 ....go to transactio WE30....give this IDOC name.....see if this IDOC is well-formed on your SAP R/3 segment.....there are errors in your ALEAUD01 IDOC in SAP R/3.......rectify them........then import this idoc in XI....then your IDOC will be imported successfully...also check in IDX2, the metadata of this IDOC.
    Thanks,
    Rajeev Gupta
    Message was edited by:
            RAJEEV GUPTA

  • ORA-29400: data cartridge error/IMG-00703: unable to read image data error

    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0
    ORA-29400: data cartridge error
    IMG-00703: unable to read image data
    ORA-06512: at "ORDSYS.ORDIMERRORCODES", line 75
    ORA-06512: at "ORDSYS.ORDIMERRORCODES", line 65
    ORA-06512: at "ORDSYS.ORDIMG_PKG", line 37
    ORA-06512: at "ORDSYS.ORDIMAGE", line 927
    is raised when the following trigger is processing certain JPGs (example). Other JPGs are handled as expected:
    create or replace trigger photo_size_trg
    before insert or update on photos
    for each row
    declare
      photo_width integer;
    begin
      -- Check to see if the new photograph is different from the old one...      --
      if dbms_lob.compare(:old.photo, :new.photo) != 0
      then
        -- ...if so, check to see if it's wider than the desired 250 pixel        --
        -- maximum...                                                             --
        photo_width := to_number(ordImage.getMetadata(:new.photo)(1).extract('/ordImageAttributes/width/text()').getStringVal());
        if photo_width > 250
        then
          -- ...and if so, apply an image transform that will resize to the photo --
          -- to a maximum of 250 pixels wide, keeping the original aspect ratio.  --
          -- There doesn't seem to be an elegant way of specifying a constraint   --
          -- in one dimension like this, so the height is specifed as a large     --
          -- enough value to cover all practical contingencies.                   --
          ordImage.process(:new.photo, 'maxScale=250 10000');
        end if;
      end if;
    end;Any thoughts/suggestions?

    hi,
    I am getting following error,kindly help me out to rectify this ..
    thank you
    ORA-29400: data cartridge error
    ORA-00600: internal error code, arguments: [kokbCollTerminate], [13], [], [], [], [], [], []

  • WebUtil error: WUC-6: Unable to read WebUtil configuration file

    Dear Colleague,
    I received the following error:
    WUC-6: Unable to read WebUtil configuration file
    c:\OraHome_BIForms\forms\server\webutil.cfg
    In the meantime, I have verified that my default.env file contains the following path definition:
    # webutil config file path
    WEBUTIL_CONFIG=C:\OraHome_BIForms\forms\server\webutil.cfg
    What is wrong here? Does "unable to read..." mean that the file security settings do not allow read access to the webutil.cfg file?
    I would appreciate any advice you can give me.
    Thank you and kind regards,
    Randy

    In the meantime, I have figured out the solution to my problem.
    The webutil.cfg file was not in the directory that was being pointed to in the path parameter.
    Regards,
    Randy

  • FCP5: Capture ERROR: "FCP was unable to read movie file just captured"

    Something I've never had trouble before has just happened: I get the following error message when I try to capture DV footage as soon as it has completed the capture: "FCP was unable to read the movie file just captured" It doesn't matter what length the file is.
    I am using a Sony Z1 and have captured hundreds of hours of footage. I tried capturing HDV footage and it works fine. My sequence and capture settings all match what's on tape.
    When I try in iMovie HD, it captures DV fine.
    I checked software update and there's nothing for me right now. The only thing that has changed on my system is updating to OS 10.5.4 along with the Quicktime and iTunes updates. Could that be the problem? But why does iMovie work fine then?
    Any ideas would be mucho appreciado

    Forgot to add, if I capture that same HDV tape but downsample it to DV within the camera, it also does not save the captured file. Thanks

  • Error Importing IDOCs in SM58

    Hello,
    I'm trying to import an IDOC by RFC with a RFC user with few permissions.
    The Idoc stills with error in SM58 transaction with message "You're not authorized to send IDOCs of message type ORDRSP"...
    If a press F6 to "in theory" reprocess the message, I receive the message "Function Module does not exists or EXCEPTION raised".
    I work in R/3 4.6C.
    Could you help me with the authorizations needed to import the IDOC by RFC in my RFC user ??
    Thanks in advance

    Authorization problem

  • Error Importing IDOC

    Hi,
    We are working on PI7.1 and I am trying to import an IDOC structure from an ISU system.
    When I try to use "Import Objects" in PI I get the error "Invalid user/password combination". I have tried the username and password in upper case and still no joy.
    Is there anything else I'm missing?
    Thanks,
    Gareth

    >
    > We are working on PI7.1 and I am trying to import an IDOC structure from an ISU system.
    >
    > When I try to use "Import Objects" in PI I get the error "Invalid user/password combination". I have tried the username and password in upper case and still no joy.
    >
    > Is there anything else I'm missing?
    You have to give correct user name and password details of your ECC system,and check the clinet and apllicaztion server details correct or not.
    Regards,
    Raj

  • Error in importing idoc cremas03

    Dear all,
      I am trying to import an idoc cremas.cremas03 in XI but it is giving following messages
      " import started"
      " Idoc type cremas03 contains error(unable to read segments)
      "  idoc import failed with 1 error "
    i have tried to import 4 to 5  idoc types but all of them are giving the same error
    kindly help
    Regards
    Tarang

    Hi,
    Refer the following Link
    Import IDOC into XI fails - unable to read segments
    Regards,
    Ashwin M
    [Dont forget to mark Useful replies]

  • Error : idoc xml record in segment attribute instead of SEGMENT

    hi friends
    can any one solve my problem. In message mapping I mapped with a IDOC. In message mapping I Mapped all the fields. Still I am getting the error as "IDOC XML RECORD IN SEGMENT ATRIBUTE INSTEAD OF SEGMENT" I dont know about this error.
    can any one solve this problem please . I am doing this scenario since 5 days. help me..
    thanks in advance
    Vasu

    Hi Vasudeva,
    Can you pls provide little more details on the scenario ?
    Also at which place are you getting this error ?
    Assuming that you have created a message mapping for some source message to target IDoc message, here are some suggestions.
    1) Test the message mapping. (are you getting the error in testing itself ?)
    2) Apart from mandatory fields' mapping, are there any constants to be assigned to some IDoc fields ? Or any node to be disabled ? Or any such additional things...
    Regards,

  • Error in IDOC: XML IDoc conversion: No known segments identified

    Hi Team
    i am facing error in my scenario.  When we are testing my  interface, another  Interface is picking up the Messages and resulting into an error.
    There is no mapping involved in my scenario.
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_IDOC_RUNTIME</SAP:Code>
      <SAP:P1>XML IDoc conversion: No known segments identified</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:Stack>Error: XML IDoc conversion: No known segments identified</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    please help me out
    thanx in advance

    Hi,
      Do The following:
    1) Delete the IDX2 entry and try to reimport once again....and in the IR also do the same.
    2) Have a look into this SAP Note- 742093
    3) Check the IDX1 entry , RFC destination entry... may be not pointing correctly.
    4) If any field which is mandatory in the idoc must not be disabled...take care about it.
    Hope this will help you...
    Regds,
    Pinangshuk.

  • B2B RosettaNet Rcpt Ack and Excp throws error "Unable to read the preamble"

    Hello All,
    We have configured a 2 way PIP Config and we are able to succesfully transfer the paload to the TP.
    But when receiving the Ackowledgement and Exception, we are getting error "B2B-51705 Unable to read the preamble"
    Can anyone help me on this
    Thanks,
    Sunil

    Hi Anuj,
    Just want to confirm one more thing
    Below given the xsd used for Exception and Acknowledgement
    Can you please confirm the format of the same
    AcknowledgeMent
    ===========
    <?xml version = "1.0" encoding = "UTF-8"?>
    <!-- -->
    <!-- Copyright (c) 2000 BEA -->
    <!-- All rights reserved -->
    <!-- -->
    <!-- THIS IS UNPUBLISHED PROPRIETARY -->
    <!-- SOURCE CODE OF BEA Systems Inc. -->
    <!-- The copyright notice above does not -->
    <!-- evidence any actual or intended -->
    <!-- publication of such source code. -->
    <xsd:schema xmlns:xsd = "http://www.w3.org/2001/XMLSchema">
    <xsd:annotation>
         <xsd:documentation>
    RosettaNet XML Message Schema
    AcknowledgmentOfReceipt_MS_V02_00.dtd
    This document has been prepared by Edifecs (http://www.edifecs.com/)
    based On the Business Collaboration Framework from requirements
    in conformance with the RosettaNet methodology.
         </xsd:documentation>
    </xsd:annotation>
         <xsd:element name = "ReceiptAcknowledgment">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element ref = "NonRepudiationInformation" minOccurs = "0"/>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:element name = "NonRepudiationInformation">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element ref = "OriginalMessageDigest"/>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <xsd:element name = "OriginalMessageDigest" type = "xsd:string"/>
    </xsd:schema>
    Exception
    =====
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!--W3C Schema generated by XMLSpy v2011 rel. 3 sp1 (http://www.altova.com)-->
    <!--Please add namespace attributes, a targetNamespace attribute and import elements according to your requirements-->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
         <xs:import namespace="http://www.w3.org/XML/1998/namespace"/>
         <xs:element name="Exception">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="ExceptionDescription"/>
                        <xs:element ref="GlobalExceptionTypeCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="ExceptionDescription">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="errorClassification"/>
                        <xs:element ref="errorDescription"/>
                        <xs:element ref="offendingMessageComponent" minOccurs="0"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="errorClassification">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="GlobalMessageExceptionCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="GlobalMessageExceptionCode">
              <xs:complexType mixed="true"/>
         </xs:element>
         <xs:element name="errorDescription">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="FreeFormText"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="FreeFormText">
              <xs:complexType mixed="true">
                   <xs:attribute ref="xml:lang"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="offendingMessageComponent">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="GlobalMessageComponentCode"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="GlobalMessageComponentCode">
              <xs:complexType mixed="true"/>
         </xs:element>
         <xs:element name="GlobalExceptionTypeCode">
              <xs:complexType mixed="true"/>
         </xs:element>
    </xs:schema>
    Pleace correct me if I am wrong in these xsd's
    Thanks,
    Sunil

  • Error accessing device data in netweaver."Unable to read data;can't connect

    Hi Friends,
    We have implemented MAM in one of our client here in India. Its around 7 months the project been gone live.
    From last few weeks we are facing problem accessing Device in Netweaver.
    We prepared a patch to be applied to devices but on searching by providing mobile device name ie. eg. MOBILE_000011 it gives an error which says "Unable to read data; cannot connect to middleware".
    It searches the device successfully but but doesnt display its device details,components etc.
    I checked in MI server for short dumps TSV_TNEW_PAGE_ALLOC_FAILED.
    All the measures have been taken to remove this dump. But problem still persist.
    Please suggest to identify the problem.
    Thanks, Amit Sharma

    hello frnds....
    still expecting your views....

Maybe you are looking for

  • How to delete hundred of groups in icloud ?

    How to delete hundred of groups in icloud ?

  • How to delimit records using FM HR_INFOTYPE_OPERATION  ( in background )

    Hi all, Has anyone used HR_INFOTYPE_OPERATION with OPERATION = 'LIS9' to delimit a record? I keep on getting 'A complex application error has occurred' error message. When I go into dialog mode = '2', the FM will go into the Overview Screen and I rea

  • HT201304 Can I turn imessaging off in my childs ipod?

    I want to restrict my childs imessaging so they can't use it at school. I also would like to restrict or turn off their wi-fi during these hours do they can't use it. There really isn't anything under restrictions and how can I do it so they can't ju

  • Af:tree skin selectors in JDeveloper 10.1.3.3

    Hi, i've read that in JDeveloper release 10.1.3.3 the af:tree component can now be skinned. Does anyone know of any documentation or examples in relation to this? The af:treeTable component is documented in http://www.oracle.com/technology/products/j

  • Max results returned by a search

    Hi there, I have been struggling in the Content DB Api to find out about the max results returned when performing a search. Let's say for instance, I am doing a search on attribute NAME = * on a library that potentially contains more than 100 000 doc