Workflow problem during import of record

Hi,
We get the following error message during import of a record using import manager:
4868 2008/05/05 15:12:44.861   Error: RC: 0x80000002  
4868 2008/05/05 15:12:44.861   Error: Failed to GetJoinCheckOutRights. [Owner: WF Owner; Job Id: 10165]
Currently we run MDM 5.5 SP6 Patch 2. This worked fine before we applied patch 2.
The record is getting checked out in the start step. If I don't check out the record it's working fine.
Any ideas?
BR
Michael

Hi Michel,
In the start step of Workflow there is an option as check out records(yes,no). select yes, when record will enter into the workflow it will get check out and no user will be able to modify that record throughout the workflow cycle.I you want that the record shoukd be modyfied at some step during workflow then you have to give rights (Join CheckOut )to the user of that Particular step.For That login with the user which is the Owner  of the workflow now rightclick onthe record or records and check in\out->Modify Join Permissions->either add a user or a role.This will allow that added user to Join check out and modify the Record(right clik on record ->join check out).Then that User will be able to modify the records.
Reward if Helpfull.
With Regards,
Vinay Yadav

Similar Messages

  • Problem during import of 121 transport requests to productive system

    Hello
    We have problem during import of transport requests to productive system. Import of 121 transport requests stopped very soon in phase "N" (in TRBAT I have only one entry and in  TRJOB  as well).
    In sm50 there is an BGD running under user DDIC in client 000 now for 14453 seconds (program SAPLSDB2). This should be import.
    In SM37 I can see it as  job "RDDGEN0L" with  repport"RDDGENBB". Based on some literature it should perform "Converting all structure changes generated by the import and recorded in table TBATG, other than the structure changes to matchcode objects." Very interesting  that TBATG has only four entries related to 2 indexes in table "DFKKOPK" , one in table "DFKKREP06" and one" ENQU" for EFKKEXC". (only this last one has not status error)
    For fist two indexes I know they are not present  as objects "LIMU""INDX" in any transport request beeing imported.
    Also on productive system there is no"VOL" and "ZOL"indexes for table "DFKKOPK"(instead they are created on test system ie. not transported from development to test system)
    Last command for that process is "CREATE INDEX "DFKKOPK~HKO" ON "DFKKOPK" ("MANDT", "HKONT", "OPBEL") PCTFREE 10 INITRANS 002 TABLESPACE PSA
    PTR3 STORAGE (INITIAL 0000000016 K NEXT 0000000016 K MINEXTENTS 0000000001 MAXEXTENTS UNLIMITED PCTINCREAS"
    There is enaught space on disk and in tablespaces (it is an oracle/HPux server).
    Does anyone knows workaroun to solve production

    are you importing these transport requests simultaneously into production?
    I would suggest you try doing in smaller groups of 5 or 10 and then see whether you are able to import the requests
    Rohit

  • Problem During Importing using DBMS_DATAPUMP

    Hi,
    I am facing Problems while Importing usinf DBMS_DATAPUMP:
    Its not showing any Error but the Tables not getting Imported.
    Below is the Code whihc i have written for Import:
    CREATE OR REPLACE PROCEDURE Data_Pump_Import_Load AS
    ind NUMBER; -- Loop index
    h1 NUMBER; -- Data Pump job handle
    percent_done NUMBER; -- Percentage of job complete
    job_state VARCHAR2(30); -- To keep track of job state
    le ku$_LogEntry; -- For WIP and error messages
    js ku$_JobStatus; -- The job status from get_status
    jd ku$_JobDesc; -- The job description from get_status
    sts ku$_Status; -- The status object returned by get_status
    BEGIN
    -- Create a (user-named) Data Pump job to do a schema export.
    DBMS_OUTPUT.PUT_LINE('COMES HERE');
    h1 := DBMS_DATAPUMP.OPEN(operation => 'IMPORT', job_mode =>
    'TABLE',job_name => 'RET_IMPORT_TEST');
    DBMS_OUTPUT.PUT_LINE('COMES HERE1111');
    DBMS_DATAPUMP.ADD_FILE(handle => h1,filename =>
    'MYEXPORTTEST.DMP', DIRECTORY => 'EXPORT_DIR',filetype=>1);
    DBMS_OUTPUT.PUT_LINE('COMES HERE2222');
    DBMS_DATAPUMP.ADD_FILE(handle => h1,filename =>
    'MYEIMPORTTEST.LOG',DIRECTORY => 'EXPORT_DIR',filetype=>3);
    DBMS_DATAPUMP.SET_PARAMETER (handle => h1,
    NAME => 'INCLUDE_METADATA',
    VALUE => 1);
    DBMS_DATAPUMP.SET_PARAMETER(handle => h1,NAME =>
    'DATA_ACCESS_METHOD', VALUE =>'AUTOMATIC');
    DBMS_DATAPUMP.SET_PARAMETER(handle => h1,NAME =>
    'TABLE_EXISTS_ACTION', VALUE =>'REPLACE');
    DBMS_OUTPUT.PUT_LINE('COMES HERE3333');
    -- Specify a single dump file for the job (using the handle just returned)
    -- and a directory object, which must already be defined and accessible
    -- to the user running this procedure.
    -- Start the job. An exception will be generated if something is not set up
    -- properly.
    DBMS_DATAPUMP.START_JOB(h1);
    -- The export job should now be running. In the following loop, the job
    -- is monitored until it completes. In the meantime, progress information is
    -- displayed.
    percent_done := 0;
    job_state := 'UNDEFINED';
    WHILE (job_state != 'COMPLETED') AND (job_state != 'STOPPED') LOOP
    dbms_datapump.get_status(h1,
    dbms_datapump.ku$_status_job_error +
    dbms_datapump.ku$_status_job_status +
    dbms_datapump.ku$_status_wip,-1,job_state,sts);
    js := sts.job_status;
    -- If the percentage done changed, display the new value.
    IF js.percent_done != percent_done
    THEN
    DBMS_OUTPUT.PUT_LINE('*** Job percent done = ' ||
    TO_CHAR(js.percent_done));
    percent_done := js.percent_done;
    END IF;
    -- If any work-in-progress (WIP) or error messages were received for the job,
    -- display them.
    IF (BITAND(sts.mask,dbms_datapump.ku$_status_wip) != 0)
    THEN
    le := sts.wip;
    ELSE
    IF (BITAND(sts.mask,dbms_datapump.ku$_status_job_error) != 0)
    THEN
    le := sts.error;
    ELSE
    le := NULL;
    END IF;
    END IF;
    IF le IS NOT NULL
    THEN
    ind := le.FIRST;
    WHILE ind IS NOT NULL LOOP
    DBMS_OUTPUT.PUT_LINE(le(ind).LogText);
    ind := le.NEXT(ind);
    END LOOP;
    END IF;
    END LOOP;
    -- Indicate that the job finished and detach from it.
    DBMS_OUTPUT.PUT_LINE('Job has completed');
    DBMS_OUTPUT.PUT_LINE('Final job state = ' || job_state);
    dbms_datapump.detach(h1);
    END;
    /

    Use metadata_remap proc with REMAP_SCHEMA option:
    DBMS_DATAPUMP.METADATA_RAMAP(id, 'REMAP_SCHEMA', 'SOURCE_SCHEMA', 'DESTINATION_SCHEMA');

  • URGENT BIG PROBLEM:during import track st. in queue simply does not disap

    I have problem when importing transport request on production(the transport domain controler is on development system) . The track status in queue simply does not disappear.
    I tried(based on what I have seen on an other thread) to delete the transport in import monitor and tp on OS level on productive and development system
    Then I deleted entries in TRBAT&TRJOB tables. The TPSTAT is empty.
    The problem persists.
    What would you suggest . The go live depends on this problem

    Hi,
    /usr/sap/trans/buffer might still contain entries, be careful do not modify anything here.
    Check the link
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/ad5b5a4ebc11d182bf0000e829fbfe/frameset.htm
    Check the 'Cleaning up the transport directory' and 'Synchronizing the Buffers' links within the above link.
    Please do not use subjects like : URGENT BIG PROBLEM.. it is against the rules of this forum.
    Regards,
    Siddhesh

  • Problems during import BW structure - Don't view the queries

    Hello!
    I have a problem when import the structure of BW 7.0 with xmla file in OBIEE+. The version of OBIEE is 10.1.3.4.
    When I do the importation, I don't see the queries created on BW, only the infocubes. But the queries is associate to infocube.
    Can help me?
    Thks,
    Flavia

    I solved this problem.
    In the BEx Query Designer (BW 7), opened the query and click on "Query Properties" and then, "Extended" option. There is a checked box called “Allow External Access to this query” that must be checked. At the end, save the query in BEx and import the XMLA on OBIEE+. The queries is loaded.

  • Delete records during import new records. Filtering / matching?

    During SRM MDM Catalogue import we are making use of the Import Server component.
    We defined one Port to import all supplier catalogues. In the port, we enter the Import map which is to be used for all suppliers. All suppliers deliver their catalogue in a predefined and fixed format.
    The functionality we want to achieve is more or less described at help.sap.com:
    http://help.sap.com/saphelp_srmmdm20/helpdata/en/30/96cbb9f3cd40b5bfc4cef178880e66/content.htm
    At this moment we do not succeed in getting this done. The following example illustrates the issue:
    Current catalogue
    Supplier        Supplier part.no.
    1000            8000
    1000            8001
    1000            8002
    1001            8001
    1001            8001
    1001            8002
    Supplier 1000 comes with a new file containing the current assortment.
    1000     8000 has not changes
    1000     8001 is changed (update)
    1000     8002 no longer exist and is not part of the new file.
    During record matching we have the combined matching fields Supplier and Supplier part.no.
    A filter on all suppliers has the side effect that the other 4 products are deleted from the catalogue (so also 3 products from supplier 1001).
    A filter on only supplier 1000 is not wanted, because we would then need an individual import map for all suppliers. The result of this would also be: as many Ports, Import Server Ready folders and Import maps as we have suppliers in the catalogue.
    Wanted situation: How can we determine that entry 1000 u2013 8002 needs to be deleted? (Without help of multiple Ports, Ready folders and Import maps).
    We are looking forward to be receiving your reply.

    The answer is given in Patch 4.
    Note 1292931. https://service.sap.com/sap/support/notes/1292931
    After this patch dynamic filtering can be done. See copy text from note below.
    For more info look at article on SDN Using Dynamic Record Filtering in MDM Import Manager.  https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0245870-0adf-2b10-46a8-ca9dcf8e1a4d
    We have not yet implemented it but is seems to solve the problem.
    Kind Regards,
    Job Jansen
    Extract Note 1292931:
    MDM Import Manager:
    Enhanced: Support for dynamic source/destination filter. Added a virtual value "[Mapped Values]" into the matching fields filter. When this value is selected, ImportManager and MDIS will substitute it with all the map values of the lookup field during record matching. This creates a generic map that supports source/destination filters that are based on map values instead of fixed values.
    Edited by: Job Jansen on Mar 19, 2009 3:36 PM

  • Workflow problem during upgrade ?

    Hi,
    We are Upgrading the system from 4.6C to ECC6.0.
    What kind of general problem will happen to workflow during upgrade?
    So that we would take necessary precautions.
    Thanks!
    Richard A

    Hi Richard,
    The following document is a very useful source of information for upgrading to ECC 6.0:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/103b1a61-294f-2a10-6491-9827479d0bf1
    Best Regards,
    Trevor

  • Problem during import of Adapative WS Model in 2004s SP09

    Hi,
    I try to import a Adaptive WS Model and I have this error in error log file:
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. Could not load web service model. See nested exception for details.
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:149)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.<init>(DGenericServiceImpl.java:49)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:71)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:411)
         ... 53 more
    Caused by: java.lang.ClassCastException: com.sap.engine.services.webservices.jaxrpc.encoding.primitive.Array11SD
         at com.sap.engine.services.webservices.espbase.client.dynamic.types.impl.MetadataLoader.LoadMetaData(MetadataLoader.java:260)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.initServiceBase(DGenericServiceImpl.java:176)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:147)
         ... 56 more
    I open my WSDL in xmlSpy to test its syntax but it's ok !
    Did you have this problem ?
    Thanks a lot.
    My IDE is NW2004s SP09.

    run 'ls -lrta' in /tmp/sapinst_instdir/.... (whatever the lowest path is there, where all the log files are).  You should see something like sap<something>.tsk and sap<something>.log.  Look at the most recently updated sap<something>.log file for the specific error.  One problem I've seen is that if you configure the advanced oracle config to turn off AUTOEXTEND on the tablespaces, the abap load will bomb because it runs out of space.  Also, make sure your SYSTEM tablespace has at least 500M.
    Posting the relevant contents of the log with the detailed error description would help us provide a better answer as well.
    Rich

  • XSD Problem during Import

    Hi! I have created a XML to load the catalog item in batch mode and I understand that I have to use a XSD. So, I got a generated copy of the XSD (using XMLSpy), added the XML schema in the MDM Console and assigned it to the appropriate Port. I then loaded the product file in the Ready folder and the file disappeared - indicating that it has been processed. An exception occurred on checking the status of the load. In the report, there is a message - Source file does not conform to XML Schema.
    I then tried to import the XML through Import Manager and am able to import without problem. However, if I do the import using XSD, I found that the data did not appear at all for the structure. I reckon that may be the reason why the batch import did not work. However, I am not sure what is wrong with the XSD. Anybody has any idea? Thanks in advance for any help rendered.
    Below are my XML data and XSD:
    <?xml version="1.0" encoding="utf-8"?>
    <ProductCatalog xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\TEMP\Product Load XML.xsd">
         <MaterialContent>
              <Category>OTHER</Category>
              <MfgPartNum/>
              <MfgName/>
              <SupPartNum>9999TEST</SupPartNum>
              <SupName>Company ABC</SupName>
              <SupID>5650</SupID>
              <Description>9999 TEST ITEM</Description>
              <ScaleValue>1</ScaleValue>
              <Price>2.0</Price>
              <InfoRecord/>
              <PurOrg/>
              <Currency>NZD</Currency>
              <UOM>EA</UOM>
              <LongDescription/>
              <Picture/>
              <UNSPSC>44122011</UNSPSC>
              <UNSPSCDesc>Folders</UNSPSCDesc>
              <LeadTime>2</LeadTime>
              <Aliases/>
              <ProdGroup>00603</ProdGroup>
              <ItemType/>
              <Type/>
              <MimeType/>
              <URLDesc/>
              <URLLink/>
         </MaterialContent>
    </ProductCatalog>
    XSD:
    <?xml version="1.0" encoding="UTF-8"?>
    <!W3C Schema generated by XMLSpy v2008 rel. 2 (http://www.altova.com)>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
         <xs:element name="URLLink">
              <xs:complexType/>
         </xs:element>
         <xs:element name="URLDesc">
              <xs:complexType/>
         </xs:element>
         <xs:element name="UOM" type="xs:string"/>
         <xs:element name="UNSPSCDesc" type="xs:string"/>
         <xs:element name="UNSPSC" type="xs:int"/>
         <xs:element name="Type">
              <xs:complexType/>
         </xs:element>
         <xs:element name="SupPartNum" type="xs:string"/>
         <xs:element name="SupName" type="xs:string"/>
         <xs:element name="SupID" type="xs:short"/>
         <xs:element name="ScaleValue" type="xs:byte"/>
         <xs:element name="PurOrg">
              <xs:complexType/>
         </xs:element>
         <xs:element name="ProductCatalog">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="MaterialContent" maxOccurs="unbounded"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="ProdGroup" type="xs:short"/>
         <xs:element name="Price" type="xs:decimal"/>
         <xs:element name="Picture" type="xs:string"/>
         <xs:element name="MimeType">
              <xs:complexType/>
         </xs:element>
         <xs:element name="MfgPartNum">
              <xs:complexType/>
         </xs:element>
         <xs:element name="MfgName">
              <xs:complexType/>
         </xs:element>
         <xs:element name="MaterialContent">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="Category"/>
                        <xs:element ref="MfgPartNum"/>
                        <xs:element ref="MfgName"/>
                        <xs:element ref="SupPartNum"/>
                        <xs:element ref="SupName"/>
                        <xs:element ref="SupID"/>
                        <xs:element ref="Description"/>
                        <xs:element ref="ScaleValue"/>
                        <xs:element ref="Price"/>
                        <xs:element ref="InfoRecord"/>
                        <xs:element ref="PurOrg"/>
                        <xs:element ref="Currency"/>
                        <xs:element ref="UOM"/>
                        <xs:element ref="LongDescription"/>
                        <xs:element ref="Picture"/>
                        <xs:element ref="UNSPSC"/>
                        <xs:element ref="UNSPSCDesc"/>
                        <xs:element ref="LeadTime"/>
                        <xs:element ref="Aliases"/>
                        <xs:element ref="ProdGroup"/>
                        <xs:element ref="ItemType"/>
                        <xs:element ref="Type"/>
                        <xs:element ref="MimeType"/>
                        <xs:element ref="URLDesc"/>
                        <xs:element ref="URLLink"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="LongDescription">
              <xs:complexType/>
         </xs:element>
         <xs:element name="LeadTime" type="xs:byte"/>
         <xs:element name="ItemType">
              <xs:complexType/>
         </xs:element>
         <xs:element name="InfoRecord">
              <xs:complexType/>
         </xs:element>
         <xs:element name="Description" type="xs:string"/>
         <xs:element name="Currency" type="xs:string"/>
         <xs:element name="Category" type="xs:string"/>
         <xs:element name="Aliases">
              <xs:complexType/>
         </xs:element>
    </xs:schema>

    Hi I have finally resolved the problem! I did that by modifying the XSD into a simpler format which at least I can understand
    In general, I grouped the element definitions together and then put the top element at the bottom to reference to these elements. I also changed the type of some of the elements from complex to simple. Note that I didn't have to remove the namespace here.
    For those who are interested, below is the XSD I have modified from the generated XSD shown in my original posting on this problem:
    <?xml version="1.0" encoding="UTF-8"?>
    <!W3C Schema generated by XMLSpy v2008 rel. 2 (http://www.altova.com)>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <!-- definition of elements -->
         <xs:element name="URLLink" type="xs:string"/>
         <xs:element name="URLDesc" type="xs:string"/>
         <xs:element name="UOM" type="xs:string"/>
         <xs:element name="UNSPSCDesc" type="xs:string"/>
         <xs:element name="UNSPSC" type="xs:int"/>
         <xs:element name="Type" type="xs:string"/>
         <xs:element name="SupPartNum" type="xs:string"/>
         <xs:element name="SupName" type="xs:string"/>
         <xs:element name="SupID" type="xs:short"/>
         <xs:element name="ScaleValue" type="xs:byte"/>
         <xs:element name="PurOrg" type="xs:string"/>
         <xs:element name="ProdGroup" type="xs:short"/>
         <xs:element name="Price" type="xs:decimal"/>
         <xs:element name="Picture" type="xs:string"/>
         <xs:element name="MimeType" type="xs:string"/>
         <xs:element name="MfgPartNum" type="xs:string"/>
         <xs:element name="MfgName" type="xs:string"/>
         <xs:element name="LongDescription" type="xs:string"/>
         <xs:element name="LeadTime" type="xs:byte"/>
         <xs:element name="ItemType" type="xs:string"/>
         <xs:element name="InfoRecord" type="xs:string"/>
         <xs:element name="Description" type="xs:string"/>
         <xs:element name="Currency" type="xs:string"/>
         <xs:element name="Category" type="xs:string"/>
         <xs:element name="Aliases" type="xs:string"/>
    <!-- definition of complex elements -->
         <xs:element name="MaterialContent">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="Category"/>
                        <xs:element ref="MfgPartNum"/>
                        <xs:element ref="MfgName"/>
                        <xs:element ref="SupPartNum"/>
                        <xs:element ref="SupName"/>
                        <xs:element ref="SupID"/>
                        <xs:element ref="Description"/>
                        <xs:element ref="ScaleValue"/>
                        <xs:element ref="Price"/>
                        <xs:element ref="InfoRecord"/>
                        <xs:element ref="PurOrg"/>
                        <xs:element ref="Currency"/>
                        <xs:element ref="UOM"/>
                        <xs:element ref="LongDescription"/>
                        <xs:element ref="Picture"/>
                        <xs:element ref="UNSPSC"/>
                        <xs:element ref="UNSPSCDesc"/>
                        <xs:element ref="LeadTime"/>
                        <xs:element ref="Aliases"/>
                        <xs:element ref="ProdGroup"/>
                        <xs:element ref="ItemType"/>
                        <xs:element ref="Type"/>
                        <xs:element ref="MimeType"/>
                        <xs:element ref="URLDesc"/>
                        <xs:element ref="URLLink"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name="ProductCatalog">
               <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="MaterialContent" maxOccurs="unbounded"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
    </xs:schema>
    Edited by: SF on Dec 3, 2008 11:17 AM

  • Bizarre problem during Import

    I just imported some images from Kauai taken last year with my previous camera, a Nikon D70. I can import all the directories except one. That directory contains 4 files, call them x.nef, x.psd, y.nef and y.psd. No matter what I try I cannot import any of those images, even when I specify that duplicates should not be ignored. The PSD files were not saved with 'maximum compatibility' specified and Lightroom indicates that...even when I have selected just the 2 NEF files. Has anybody else had this problem? I think I've come across a bug.

    Earth to Don :)
    Are you there?
    As I pointed out above, I cannot import either NEF file as long as the PSDs are in the same folder. This happens even when I indicate only the NEFs are to be imported.
    There have been other instances when I have been able to import the NEF, export a PSD and import the PSD and both are then in Lightroom. What gets imported depends critically on the sequence of events.
    And here is yet another variation which I sent to Technical Support and they reproduced.
    >(1) Import a raw file (NEF in my case) into Lightroom.
    (2) Export to a PSD file in the same directory.
    (3) Import the PSD into Lightroom ("ignore duplicates").
    (4) BOTH the NEF and PSD files are in Lightroom!
    (5) Remove both the NEF and PSD files from the Lightroom Library.
    (6) Import the NEF by explicitly selecting the icon and specify "ignore duplicates". What I get, every time, is the PSD file instead of the NEF.
    (7) Remove the PSD from the Lightroom Library.
    Now move one level higher in the directory structure and instruct Lightroom to import everything in this 'test' directory and to ignore duplicates. The ONLY file to get imported is the PSD. The NEF is totally ignored even though that is the only one I specified should be imported.
    As you can see from this sequence and the most recent problem the result is not deterministic :)

  • Rollback problem during import

    Hello experts,
    please help.
    I have the following error when importing table data to my
    Oracle 8.1.7 database.
    IMP-00058: ORACLE error 1562 encountered
    ORA-01562: failed to extend rollback segment number 16
    ORA-01237: cannot extend datafile 3
    kind regards
    Yogeeraj

    You have two options. Either give your Rollback Segment
    tablespace more room to grow, or you could try using the
    commit=y parameter on your import. This will periodically commit
    transactiosn during the import. Although off the top of my head,
    I don't remember what it is based off of. Maybe buffer.

  • Problems during import in Test

    Hallo,
    during the import in Test the failure described below occures. The missing jar i believe must be build on the server by deployment, isn´t it?
    Thanks in advance,
    Frank
    SAP Change Management Service
    Software Component enbw.net/AWEL_SOA
    Version WT2_AWEL_C.20070621151816
    Label 1.0 Level 0 Update AWEL.06211518
    System AWEL-Test
    Step SDM-deploy
    Log /usr/sap/JTrans/CMS/log/AWEL_Q@WT2/[email protected]
    Info:Starting Step SDM-deploy at 2007-06-21 17:20:08.0172 +2:00
    Info:start deployment of archives to SDM:http://test-was.enbw.net:50018
    Info:The following archives will be deployed (on http://test-was.enbw.net:50018)
    Info:/usr/sap/JTrans/CMS/archives/enbw.netAWEL_SOAWT2_AWEL_C~20070621151816.sca
    Info:SDM log:
    Info:
    Info:
    Info:
    Info:
    Info:
    Info:
    Info:
    Info:
    Info:Jun 21, 2007 5:20:08 PM  Info: -
    Starting deployment -
    Info:Jun 21, 2007 5:20:08 PM  Info: Error handling strategy: OnErrorStop
    Info:Jun 21, 2007 5:20:08 PM  Info: Prerequisite error handling strategy: OnPrerequisiteErrorStop
    Info:Jun 21, 2007 5:20:08 PM  Info: Update strategy: UpdateAllVersions
    Info:Jun 21, 2007 5:20:08 PM  Info: Starting deployment prerequisites:
    Info:Jun 21, 2007 5:20:09 PM  Info: Loading selected archives...
    Info:Jun 21, 2007 5:20:09 PM  Info: Loading archive '/usr/sap/WQ2/DVEBMGS00/SDM/program/temp/enbw.netAWEL_SOAWT2_AWEL_C~20070621151816.sca'
    Info:Jun 21, 2007 5:20:10 PM  Info: Selected archives successfully loaded.
    Info:Jun 21, 2007 5:20:10 PM  Info: Actions per selected component:
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AwelAnfrageZaehlpunktEAR'/'enbw.net'/'WT2_AWEL_C'/'96130' updates currently deployed development component 'AwelAnfrageZaehlpunktEAR'/'enbw.net'/'WT2_AWEL_C'/'96130'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AenderungZaehlpunktVer1EAR'/'enbw.net'/'WT2_AWEL_C'/'96133' updates currently deployed development component 'AenderungZaehlpunktVer1EAR'/'enbw.net'/'WT2_AWEL_C'/'96133'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Initial deployment: Selected development component 'AenderungGeschaeftspartnerGasEAR'/'sap.com'/'WT2_AWEL_C'/'96168' will be deployed.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AenderungGeschaeftspartnerEAR'/'enbw.net'/'WT2_AWEL_C'/'96178' updates currently deployed development component 'AenderungGeschaeftspartnerEAR'/'enbw.net'/'WT2_AWEL_C'/'96127'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AwelKlaerungNetzlogistikVMEEAR'/'enbw.net'/'WT2_AWEL_C'/'96134' updates currently deployed development component 'AwelKlaerungNetzlogistikVMEEAR'/'enbw.net'/'WT2_AWEL_C'/'96134'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AwelAuftragGasEAR'/'enbw.net'/'WT2_AWEL_C'/'96164' updates currently deployed development component 'AwelAuftragGasEAR'/'enbw.net'/'WT2_AWEL_C'/'96131'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Initial deployment: Selected development component 'AwelAuftragGasVer1EAR'/'enbw.net'/'WT2_AWEL_C'/'96165' will be deployed.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AwelBeziehungNewEAR'/'enbw.net'/'WT2_AWEL_C'/'96129' updates currently deployed development component 'AwelBeziehungNewEAR'/'enbw.net'/'WT2_AWEL_C'/'96129'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AwelBeziehungGasEAR'/'enbw.net'/'WT2_AWEL_C'/'96132' updates currently deployed development component 'AwelBeziehungGasEAR'/'enbw.net'/'WT2_AWEL_C'/'96132'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AwelAenderungZaehlpunktGasEAR'/'enbw.net'/'WT2_AWEL_C'/'96126' updates currently deployed development component 'AwelAenderungZaehlpunktGasEAR'/'enbw.net'/'WT2_AWEL_C'/'96126'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'Library'/'enbw.net'/'WT2_AWEL_C'/'96113' updates currently deployed development component 'Library'/'enbw.net'/'WT2_AWEL_C'/'96113'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Update: Selected development component 'AenderungZaehlpunktEAR'/'enbw.net'/'WT2_AWEL_C'/'96125' updates currently deployed development component 'AenderungZaehlpunktEAR'/'enbw.net'/'WT2_AWEL_C'/'96125'.
    Info:Jun 21, 2007 5:20:10 PM  Info: Initial deployment: Selected software component 'AWEL_SOA'/'enbw.net'/'WT2_AWEL_C'/'1000.1.0.0.0.20070621151816' will be deployed.
    Info:Jun 21, 2007 5:20:10 PM  Info: Initial deployment: Selected development component 'AenderungGeschaeftspartnerGasVer1EAR'/'enbw.net'/'WT2_AWEL_C'/'96162' will be deployed.
    Info:Jun 21, 2007 5:20:10 PM  Info: Ending deployment prerequisites. All items are correct.
    Info:Jun 21, 2007 5:20:10 PM  Info: Saved current Engine state.
    Info:Jun 21, 2007 5:20:10 PM  Info: Starting: Update: Selected development component 'AenderungGeschaeftspartnerEAR'/'enbw.net'/'WT2_AWEL_C'/'96178' updates currently deployed development component 'AenderungGeschaeftspartnerEAR'/'enbw.net'/'WT2_AWEL_C'/'96127'.
    Info:Jun 21, 2007 5:20:10 PM  Info: SDA to be deployed: /usr/sap/WQ2/DVEBMGS00/SDM/root/origin/enbw.net/AenderungGeschaeftspartnerEAR/WT2_AWEL_C/96178/enbw.net_AenderungGeschaeftspartnerEAR.sda
    Info:Jun 21, 2007 5:20:10 PM  Info: Software type of SDA: J2EE
    Info:Jun 21, 2007 5:20:10 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Info:Jun 21, 2007 5:20:27 PM  Info: Begin of log messages of the target system:
    Info:07/06/21 17:20:10 -  ***********************************************************
    Info:07/06/21 17:20:13 -  Start updating EAR file...
    Info:07/06/21 17:20:13 -  start-up mode is lazy
    Info:07/06/21 17:20:13 -  EAR file updated successfully for 142ms.
    Info:07/06/21 17:20:13 -  Start updating...
    Info:07/06/21 17:20:14 -  EAR file uploaded to server for 158ms.
    Info:07/06/21 17:20:26 -  Successfully updated. Update took 11648ms.
    Info:07/06/21 17:20:26 -  Deploy Service status:
    Info:07/06/21 17:20:26 -    Application : enbw.net/AenderungGeschaeftspartnerEAR
    Info:07/06/21 17:20:26 -   
    Info:07/06/21 17:20:26 -    AwelAenderungGeschaeftspartnerBean  - EJB
    Info:07/06/21 17:20:26 -    WEB SERVICE PORTS:
    Info:                     /AwelAenderungGeschaeftspartner_Ver2/Config1
    Info:                       - WEBSERVICES
    Info:07/06/21 17:20:26 -    AwelAenderungGeschaeftspartner_Ver2/Config1  - WEB
    Info:07/06/21 17:20:26 -  ***********************************************************
    Info:Jun 21, 2007 5:20:27 PM  Info: End of log messages of the target system.
    Info:Jun 21, 2007 5:20:27 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Info:Jun 21, 2007 5:20:27 PM  Info: Finished successfully: development component 'AenderungGeschaeftspartnerEAR'/'enbw.net'/'WT2_AWEL_C'/'96178', grouped by software component 'AWEL_SOA'/'enbw.net'/'WT2_AWEL_C'/'1000.1.0.0.0.20070621151816'
    Info:Jun 21, 2007 5:20:28 PM  Info: Starting: Initial deployment: Selected development component 'AenderungGeschaeftspartnerGasEAR'/'sap.com'/'WT2_AWEL_C'/'96168' will be deployed.
    Info:Jun 21, 2007 5:20:28 PM  Info: SDA to be deployed: /usr/sap/WQ2/DVEBMGS00/SDM/root/origin/sap.com/AenderungGeschaeftspartnerGasEAR/WT2_AWEL_C/96168/sap.com_AenderungGeschaeftspartnerGasEAR.sda
    Info:Jun 21, 2007 5:20:28 PM  Info: Software type of SDA: J2EE
    Info:Jun 21, 2007 5:20:28 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Info:Jun 21, 2007 5:20:28 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Info:Jun 21, 2007 5:20:28 PM  Error: Aborted: development component 'AenderungGeschaeftspartnerGasEAR'/'sap.com'/'WT2_AWEL_C'/'96168', grouped by software component 'AWEL_SOA'/'enbw.net'/'WT2_AWEL_C'/'1000.1.0.0.0.20070621151816':
    Info:Caught exception during access of archive "/usr/sap/WQ2/DVEBMGS00/SDM/root/origin/sap.com/AenderungGeschaeftspartnerGasEAR/WT2_AWEL_C/96168/sap.com_AenderungGeschaeftspartnerGasEAR.sda":
    Info:java.lang.RuntimeException: ERROR: Cannot initialize EARReader: com.sap.engine.services.deploy.exceptions.BaseIOException: Cannot convert EAR /usr/sap/WQ2/DVEBMGS00/SDM/root/origin/sap.com/AenderungGeschaeftspartnerGasEAR/WT2_AWEL_C/96168/sap.com_AenderungGeschaeftspartnerGasEAR.sda to J2EE 1.3.
    Info:Exception is:
    Info:com.sap.engine.services.deploy.exceptions.BaseIOException: Cannot convert EAR /usr/sap/WQ2/DVEBMGS00/SDM/root/origin/sap.com/AenderungGeschaeftspartnerGasEAR/WT2_AWEL_C/96168/sap.com_AenderungGeschaeftspartnerGasEAR.sda to J2EE 1.3.
    Info:     at com.sap.engine.services.deploy.converter.EARConverter.convert(EARConverter.java:185)
    Info:     at com.sap.engine.deploy.manager.DeployManagerImpl.setEar(DeployManagerImpl.java:444)
    Info:     at com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.initDeployManager(EngineApplOnlineDeployerImpl.java:300)
    Info:     at com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performDeployment(EngineApplOnlineDeployerImpl.java:134)
    Info:     at com.sap.sdm.serverext.servertype.inqmy.extern.EngineDeployerImpl.deploy(EngineDeployerImpl.java:96)
    Info:     at com.sap.sdm.serverext.servertype.inqmy.EngineProcessor.executeAction(EngineProcessor.java:224)
    Info:     at com.sap.sdm.app.proc.deployment.impl.PhysicalDeploymentActionExecutor.execute(PhysicalDeploymentActionExecutor.java:60)
    Info:     at com.sap.sdm.app.proc.deployment.impl.DeploymentActionImpl.execute(DeploymentActionImpl.java:186)
    Info:     at com.sap.sdm.app.proc.deployment.controllers.internal.impl.DeploymentExecutorImpl.execute(DeploymentExecutorImpl.java:48)
    Info:     at com.sap.sdm.app.proc.deployment.states.eventhandler.ExecuteDeploymentHandler.executeAction(ExecuteDeploymentHandler.java:83)
    Info:     at com.sap.sdm.app.proc.deployment.states.eventhandler.ExecuteDeploymentHandler.handleEvent(ExecuteDeploymentHandler.java:60)
    Info:     at com.sap.sdm.app.proc.deployment.states.StateBeforeNextDeployment.processEvent(StateBeforeNextDeployment.java:127)
    Info:     at com.sap.sdm.app.proc.deployment.states.InstContext.processEventServerSide(InstContext.java:73)
    Info:     at com.sap.sdm.app.proc.deployment.states.InstContext.processEvent(InstContext.java:59)
    Info:     at com.sap.sdm.app.sequential.deployment.impl.DeployerImpl.doPhysicalDeployment(DeployerImpl.java:119)
    Info:     at com.sap.sdm.app.sequential.deployment.impl.DeployerImpl.deploy(DeployerImpl.java:88)
    Info:     at com.sap.sdm.apiimpl.local.DeployProcessorImpl.deploy(DeployProcessorImpl.java:74)
    Info:     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    Info:     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    Info:     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Info:     at java.lang.reflect.Method.invoke(Method.java:324)
    Info:     at com.sap.sdm.is.cs.remoteproxy.server.impl.RemoteProxyServerImpl.requestRemoteCall(RemoteProxyServerImpl.java:127)
    Info:     at com.sap.sdm.is.cs.remoteproxy.server.impl.RemoteProxyServerImpl.process(RemoteProxyServerImpl.java:38)
    Info:     at com.sap.sdm.apiimpl.remote.server.ApiClientRoleCmdProcessor.process(ApiClientRoleCmdProcessor.java:84)
    Info:     at com.sap.sdm.is.cs.session.server.SessionCmdProcessor.process(SessionCmdProcessor.java:67)
    Info:     at com.sap.sdm.is.cs.cmd.server.CmdServer.execCommand(CmdServer.java:76)
    Info:     at com.sap.sdm.client_server.launch.ServerLauncher$ConnectionHandlerImpl.handle(ServerLauncher.java:286)
    Info:     at com.sap.sdm.is.cs.ncserver.NetCommServer.serve(NetCommServer.java:43)
    Info:     at com.sap.sdm.is.cs.ncwrapper.impl.ServiceWrapper.serve(ServiceWrapper.java:39)
    Info:     at com.sap.bc.cts.tp.net.Worker.run(Worker.java:50)
    Info:     at java.lang.Thread.run(Thread.java:534)
    Info:Caused by: java.io.IOException: The following archives that are
    Info:described in the ear descriptor are not found in the ear:
    Info:     enbw.net~AenderungGeschaeftspartnerGas.jar,
    Info:Please check the ear content.
    Info:     at com.sap.engine.services.deploy.extended.ear.ExtendedEARReader.checkDescriptor(ExtendedEARReader.java:805)
    Info:     at com.sap.engine.services.deploy.extended.ear.ExtendedEARReader.getDescriptor(ExtendedEARReader.java:324)
    Info:     at com.sap.engine.services.deploy.extended.ear.ExtendedEARReader.(ExtendedEARReader.java:87)
    Info:     at com.sap.engine.services.deploy.converter.EARConverter.convert(EARConverter.java:85)
    Info:     ... 30 more
    Info:
    Info:
    Info:
    Info: (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).null)
    Info:Jun 21, 2007 5:20:28 PM  Info: Starting: Initial deployment: Selected software component 'AWEL_SOA'/'enbw.net'/'WT2_AWEL_C'/'1000.1.0.0.0.20070621151816' will be deployed.
    Info:Jun 21, 2007 5:20:28 PM  Error: Aborted: software component 'AWEL_SOA'/'enbw.net'/'WT2_AWEL_C'/'1000.1.0.0.0.20070621151816':
    Info:No further description found.
    Info:Jun 21, 2007 5:20:29 PM  Info: J2EE Engine is in same state (online/offline) as it has been before this deployment process.
    Info:Jun 21, 2007 5:20:29 PM  Error: -
    At least one of the Deployments failed -
    Info:end of log received from SDM
    Info:RC of deployment: 12
    Info:Step SDM-deploy ended with result 'fatal error' ,stopping execution at 2007-06-21 17:20:30.0363 +2:00

    thanks a lot for your reply..
    initially i was using OCI for connecting to the database and i didnt define any ODBC driver in my system DSN. but when the import got failed again and again, then i setup the ODBC driver in the system DSN and retried the import. again the same probblem is appearing.
    i have checked the table structures in the database. all are simple tables with or without a primary key and several foreign keys and indexes.
    please suggest.

  • Problem during importing file

    Hi all,
    I wrote the following command in the cmd: (imp user/pass file=d:\hr.dmp full=y)
    During the import process I recieve this message: (About to enable constraints)
    and I wait alot and it didn't finish.

    Is it still running? Do you see the process continuing to consume CPU, for example? Enabling constraints involves building indexes which may well take quite a while.
    Justin

  • Rollback segment  problem during import

    Hello experts,
    please help.
    I have the following error when importing table data to my
    Oracle 8.1.7 database.
    IMP-00058: ORACLE error 1562 encountered
    ORA-01562: failed to extend rollback segment number 16
    ORA-01237: cannot extend datafile 3
    kind regards
    Yogeeraj

    alter the tablespace which contains rollback segments, and
    either change the existing datafile (datafile 3) to autoextend
    on or resize, or add new datafile in another disk drive which
    has more space (it is better to set autoextend on or give it a
    larger space).
    Hello experts,
    please help.
    I have the following error when importing table data to my
    Oracle 8.1.7 database.
    IMP-00058: ORACLE error 1562 encountered
    ORA-01562: failed to extend rollback segment number 16
    ORA-01237: cannot extend datafile 3
    kind regards
    Yogeeraj

  • Problem during import

    hi gems...
    when i am trying to import a dump file into our database then the following error occured...
    i am using the simple import utility since the dump has taken using simple export utility..
    IMP-00017: following statement failed with ORACLE error 14063:
    "ALTER TABLE "TABLE_NAME" ADD CONSTRAINT "PK1_TABLE_NAME"
    PRIMARY KEY ("COLUMN_NAME_1") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT) TABLESPACE "INDEX_TBS" LOGGING"
    IMP-00003: ORACLE error 14063 encountered
    ORA-14063: Unusable index exists on unique/primary constraint key
    IMP-00017: following statement failed with ORACLE error 14048:
    "ALTER INDEX "PK1_TABLE_NAME" UNUSABLE ENABLE "
    IMP-00003: ORACLE error 14048 encountered
    ORA-14048: a partition maintenance operation may not be combined with other operations
    i have gone through the online helps from different sites but didnt found any action...
    please help...

    Please check this out :
    ORA-14063: Unusable index exists on unique/primary constraint key
    Cause: User attempted to add or enable a primary key/unique constraint on column(s) of a table on which there exists an index marked Index Unusable.
    Action: Drop the existing index or rebuild it using ALTER INDEX REBUILD
    ORA-14048: a partition maintenance operation may not be combined with other operations
    Cause: ALTER TABLE or ALTER INDEX statement attempted to combine a partition maintenance operation (e.g. MOVE PARTITION) with some other operation (e.g. ADD PARTITION or PCTFREE which is illegal
    Action: Ensure that a partition maintenance operation is the sole operation specified in ALTER TABLE or ALTER INDEX statement; operations other than those dealing with partitions, default attributes of partitioned tables/indices or specifying that a table be renamed (ALTER TABLE RENAME) may be combined at will
    May i know which sort of import you are performing ? schema/full_db/table_level ?
    Please truncate all the tables and drop all other objects in the database or database schema(based on the requirement) on which you are going to import the data...

Maybe you are looking for

  • Regarding Data load in cube

    Hello Experts, While loading a data from ODS to Cube i am getting this error while executing DTP: " Exceptions in Substep: Rules" Please Help me. Thanks in advance

  • External Hard Drive does not mount

    My 2TB external hard drive does not mount and I cannot get it to.  Have tried turning the hard drive off and then back on.  No response.  Any thoughts as to how I can get it to be recognized?

  • Enhanced RD

    Hello All, I am facing some issue with Enhanced Reciever determiantion in PI 7.1 I am not able to select Operation Mapping(Interface mapping) in my Enhanced Receiver Determination. Any Inputs/links on this. Regards, Naresh

  • Cant get airplay icon in iTunes to display

    I have followed all the steps in Troubleshooting AirPlay and AirPlay Mirroring even called tech support, reloaded itunes and turned off windows firewall, what next to try.  It works on another pc with similiar config so I know it works in my network

  • My password will not allow me into my ipod touch

    Hi all, I have my ipod touch only a short while, I have availed of the password facility and it worked well until just recently when I entered my password and didnt get into my ipod. the music seems to be still playing on random and it wont stop. I d