Transport Error in Import at QAs

Hi mates,
I collected standard objects and transported from DEV to QAs but I received the following error message:-
Selection for Import  - Completed
Import                - Completed 
Check Versions        - Completed
Method Execution      - <b>ENDED with ERRORs</b>
Ended with return code:  ===> 8 <===
Please advice

John
Just for FIAP- Transactional figures it should not take anything more than half an hour maximum. You are saying it's running since more than 12 hours so there must be some thing wrong.
1 Check How many objects you collected under one transport. Don't combine too many objects under one request. Collect only few objects in one transport
2 Check whether the job is still running or not. If it is running cancel the job and collect these objects again under new transport request and import that into Q system with Over write option so that it over writes if any objects already imported.
Hope this helps
Thnaks
Sat

Similar Messages

  • Transport Error when Importing appset in target system

    We are receiving the below error when importing the appset TEST in Quality system.
    We have include all the objects in the transport by setting UJT_TRANS_CHG to D for all TLOGO objects.
    Any clues to what the problem could be?
    Post-import method RS_AFTER_IMPORT started for APPS L, date and time: 20110519104427
    Post-processing taking place in client 100
    Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Activation Mode)
    Start After Import for AppSet TEST in Client 100 for RFC BI system
    Import Step UPDPTAB completed without errors
    Import Step ADMIN_DEF_UPD completed without errors
    Import Step FILE_SERV_UPD completed without errors
    Import Step DATA_TABLE_UPD completed without errors
    After Import method for AppSet TEST finished successfully
    Start of data checker messages
    Missing File/Dir:
    Missing File/Dir:
    Dimension COSTCENTER's master is empty!
    Dimension DATASRC's master is empty!
    Dimension PROFITCENTER's master is empty!
    BPF: Error reading master data
    Invalid attribute name (ACCTYPE) in dimension (CO_ENTITY)
    BPF: Validation error; Previous step has no matched step region "BR02"
    BPF: Validation error; Previous step has no matched step region "BR05"
    Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Delete Mode)
    Nothing to delete.
    End of after import methode RS_APPS_AFTER_IMPORT (Delete Mode) - runtime: 00:00:00
    Errors occurred during post-handling RS_AFTER_IMPORT for APPS L
    RS_AFTER_IMPORT belongs to package RS
    The errors affect the following components:
        BW-WHM (Warehouse Management)
    Post-import method RS_AFTER_IMPORT completed for APPS L, date and time: 20110519104506
    Post-import methods of change/transport request BPDK900158 completed
          Start of subsequent processing ... 20110519104427
          End of subsequent processing... 20110519104506
    Execute reports for change/transport request: BPDK900158
    Reports for change/transport request BPDK900158 have been executed
          Start of................ 20110519104506
          End of.................. 20110519104506
    Execution of programs after import (XPRA)
    End date and time : 20110519104506
    Ended with return code:  ===> 8 <===

    Hi Naresh,
    Thanks for reply.
    We have checked driver dim and region dim(s) members. Its looks fine. Even though we are facing import error.
    As per basis guidance we have executed program  SE38--> UJA_DATA_CHECKER  on source system appset. And observed there are several errors showing up related to BPFs & Invalid attribute name ACCTYPE for CO_ENTITY dimension.
    If any of you faced similar issue. Please share your input in this regard.
    Regards
    Amit

  • Transport error while importing Spinifix IT files

    Hello Gurus
    I have been given to load the files in development and import them
    So First I copy
    R1903976.MD1 to \usr\sap\trans\cofiles
    and
    K1903976.MD1 to \usr\sap\trans\datafiles
    then run transaction STMS ->import overview ->select the SAP system -> from extras -> other request -> add
    Then select the request and import
    Thats it.....
    All the other transports went smoothly accept 3976.MDI when trying to import it is displaying error as
    Transport control program tp ended with error code 0247 and
    Errors: addtobuffer has a problem with data- and /or cofile
    after clicking the solution it is displaying a popup as below
    Addto buffer failed for MD1K903976
    Neither datafile from tp and from tools called by tp: tp return code summary
    TOOLS: Highest return code of single steps wa :0**
    Errors : Hightest tp internal error was : 0247
    Can anyone help me to solve this problem please
    regards
    Piroz

    Hello Piroz,
    Also check the file permissions for those files, they should be owned by <sid>adm:sapsys and should have permissions as :
    rwxrr
    Regards,
    siddhesh

  • Transport Error while importing to QA system

    Hi Freinds,
    I requested the BASIS team to transport the 4 transport requests but out of them 3 are successfully imported but the the other one got followig errror.
    <b>Error when activating element 41LVLQQ0RUSHS5KOLE26LB0V1      
    Element 41OQEC6I2AVOV07Q01OWY1925 is missing in version M    
    Element 41OQEXIMQF6KLM8M7K70VHONX is missing in version M    </b>
    Thanks,
    sudha

    hi Sudha,
    normally this kind of error happened when you try to transport query with some dependant objects not included in the transport request, you can try to collect the objects with the query again and transport.
    rsa1->transport connection->left panel 'object type', middle 'query element' and 'query', 'select object', locate your query and transfer. right panel, use collection mode 'manual' and grouping 'only necessary objects'.
    following program (create with SE38) can be used to locate the missing elements.
    hope this helps.
    REPORT ZQUERY_DEF_TEST .
    Tables: rszeltdir, "query element table
    rszelttxt, "query element texts
    rszcompdir, "global query elements
    e071. "objects in transport requests
    *parameters
    parameters: Req_id like e071-trkorr.
    selection screen to input long ID 25 char generated name
    select-options: long_ID for rszeltdir-eltuid.
    *itab to hold related info
    data: begin of i_query_desc occurs 0,
    local, "Local to Query
    eltuid like rszeltdir-eltuid, "25 char generated ID
    compid like rszcompdir-compid, "technical name
    deftp like rszeltdir-deftp, "element type
    el_txt(16), "element type text
    txtsh like rszelttxt-txtsh, "short text
    txtlg like rszelttxt-txtlg, "long text
    owner like rszcompdir-owner, "owner
    end of i_query_desc.
    data: xlocal.
    sy-tvar0 = Req_id.
    *find all query objects for transport request entered
    select * from e071 where trkorr = req_id and
    object = 'ELEM'.
    add them to the select-options list
    long_ID-low = e071-obj_name.
    append long_ID.
    clear long_ID.
    endselect.
    *loop through select option table and find details of Query element
    Loop at long_ID.
    clear: i_query_desc,
    rszeltdir,
    rszelttxt,
    rszcompdir,
    xlocal.
    select single * from rszeltdir where eltuid = long_ID-low and
    objvers = 'A'.
    if sy-subrc <> 0.
    write: / long_ID-low, ' Query element not found.'.
    write: / .
    else.
    select single * from rszelttxt where eltuid = long_ID-low and
    objvers = 'A'.
    if sy-subrc <> 0.
    write: / long_ID-low, ' not found in table RSZELTTXT.'.
    endif.
    select single * from rszcompdir where compuid = long_ID-low and
    objvers = 'A'.
    if sy-subrc <> 0.
    write: / long_ID-low, ' not found in table RSZCOMPDIR.'.
    xlocal = 'X'.
    endif.
    fill itab for list
    i_query_desc-local = xlocal.
    i_query_desc-eltuid = rszeltdir-eltuid. "25 char generated ID
    i_query_desc-compid = rszcompdir-compid. "technical name
    i_query_desc-deftp = rszeltdir-deftp. "element type
    case i_query_desc-deftp.
    when 'SEL'.
    if xlocal = 'X'.
    i_query_desc-el_txt = 'Selection'.
    else.
    i_query_desc-el_txt = 'Restricted K/Fig'.
    endif.
    when 'REP'.
    i_query_desc-el_txt = 'Query'.
    when 'VAR'.
    i_query_desc-el_txt = 'Variable'.
    when 'STR'.
    i_query_desc-el_txt = 'Structure'.
    when 'CKF'.
    i_query_desc-el_txt = 'Calculated K/Fig'.
    when 'FML'.
    i_query_desc-el_txt = 'Formula'.
    endcase.
    i_query_desc-txtsh = rszelttxt-txtsh. "short text
    i_query_desc-txtlg = rszelttxt-txtlg. "long text
    i_query_desc-owner = rszcompdir-owner. "owner
    append i_query_desc.
    clear i_query_desc.
    endloop. "@ long_ID
    list results
    sort i_query_desc by local deftp owner.
    loop at i_query_desc.
    write: / sy-vline,
    i_query_desc-eltuid, sy-vline, "25 char generated ID
    i_query_desc-compid , sy-vline, "technical name
    i_query_desc-deftp , sy-vline, "element type
    i_query_desc-el_txt, sy-vline, "element text
    *write: / i_query_desc-txtsh , "short text
    i_query_desc-txtlg(40) , sy-vline, "long text
    i_query_desc-owner , sy-vline.
    write: sy-uline .
    endloop. "@ i_query_desc

  • Transport errors when importing a 4.6 transport in 4.5 system

    I am trying to export a customer development class (containing ABAP, function modules, and BOR objects) from a 4.6C system, and import the dev class into a 4.5B system.   The 4.6 system is on a NT/Oracle box, and the 4.5B system is on an OS/400 DB2 box.
    The import in 4.5 fails with a OS stop 13 error.   Some of the objects import correctly, such as the DDIC, and the BOR implementation, but all of the ABAP, function groups, and the ABAP behind the methods of the business objects do not import correctly.   So now I cannot modify or delete the BOR object, because SAP thinks it has been fully implemented, but the underlying code is not there.   I get the following error:  R3TR PROG Y4ARLBXO is missing in object list. 
    My questions are:   Is there anything I need to do to import a 46 transport in a 45 system, especially considering that the 45 system is an AS/400?   And how can I modify the object list so I am allowed to add the missing code (assuming the transport will never work)?
    Thanks for your help,
    Allan

    Hi Naresh,
    Thanks for reply.
    We have checked driver dim and region dim(s) members. Its looks fine. Even though we are facing import error.
    As per basis guidance we have executed program  SE38--> UJA_DATA_CHECKER  on source system appset. And observed there are several errors showing up related to BPFs & Invalid attribute name ACCTYPE for CO_ENTITY dimension.
    If any of you faced similar issue. Please share your input in this regard.
    Regards
    Amit

  • Transport Error when Importing TR to QA system

    Hi All,
    We are receiving the below error when transporting a TR to Quality system.
    Detail Error message:
      Execution of programs after import (XPRA)
      Transport request   : XXXXXX
      System              : XXX
      tp path             : tp
      Version and release: 372.04.88 701
      Post-import methods for change/transport request: XXXXX
         on the application server: XXXXXX
      Post-import method RS_AFTER_IMPORT started for APPS L, date and time: 20120210151806
      Post-processing taking place in client 500
      Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Activation Mode)
      Start After Import for AppSet MJN in Client 500 for RFC After Import
      Error in remote call of destination After Import
      Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Delete Mode)
      Nothing to delete.
      Errors occurred during post-handling RS_AFTER_IMPORT for APPS L
      RS_AFTER_IMPORT belongs to package RS
      The errors affect the following components:
         BW-WHM (Warehouse Management)
      Post-import method RS_AFTER_IMPORT completed for APPS L, date and time: 20120210151806
      Post-import methods of change/transport request XXXXXXXcompleted
           Start of subsequent processing ... 20120210151806
           End of subsequent processing... 20120210151806
      Execute reports for change/transport request: DB1K903324
         on the application server: mbixq2cs01
      Reports for change/transport request XXXXXXXX have been executed
           Start of................ 20120210151806
           End of.................. 20120210151806
      Execution of programs after import (XPRA)
      End date and time : 20120210151806
      Ended with return code:  ===> 8 <===
    Can any one have faced this kind of issue while transporting TR? Request to share your tought?
    Regards , Trine
    Edited by: trine_h on Feb 10, 2012 4:46 PM

    Hi,
    Thanks Rich for the help. But I did not find any dump log in ST22.
    Here with I am attaching details TR log with Message number, it may give some clue. Sorry I am attaching long messages. I know very difficult for people to got through all the message. Sorry for that.
    Log File:                /usr/sap/trans/log/DB1R903324.QB2
    000001
    TP                  199
    1
    000002
    TP                  162
    1
    Execution of programs after import (XPRA)
    000003
    TP                  101
    1
    Transport request   : XXXXXXXXXX
    000004
    TP                  102
    1
    System              : QB2
    000005
    TP                  108
    1
    tp path             : tp
    000006
    TP                  109
    1
    Version and release: 372.04.88 701
    000007
    TP                  198
    1
    000008
    PU                  126
    2
    Post-import methods for change/transport request: DB1K903324
    000009
    PU                  111
    4
    on the application server: mbixq2cs01
    000010
    PU                  122
    2
    Post-import method RS_AFTER_IMPORT started for APPS L, date and time: 20120210151806
    000011
    PU                  186
    2
    Post-processing taking place in client 500
    000012
    R7                  501
    2 E
    Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Activation Mode)
    000013
    UJT_EXCEPTION       047
    4
    Start After Import for AppSet XXX in Client 500 for RFC After Import
    000014
    RSPC                051
    3 E
    Error in remote call of destination After Import
    000015
    R7                  501
    2
    Start of the after-import method RS_APPS_AFTER_IMPORT for object type(s) APPS (Delete Mode)
    000016
    UJT_EXCEPTION       043
    4
    Nothing to delete.
    000017
    PU                  133
    2 E
    Errors occurred during post-handling RS_AFTER_IMPORT for APPS L
    000018
    PU                  135
    3
    RS_AFTER_IMPORT belongs to package RS
    000019
    PU                  136
    2 E
    The errors affect the following components:
    000020
    PU                  137
    2 E
    BW-WHM (Warehouse Management)
    000021
    PU                  123
    3
    Post-import method RS_AFTER_IMPORT completed for APPS L, date and time: 20120210151806
    000022
    PU                  127
    2
    Post-import methods of change/transport request DB1K903324 completed
    000023
    PU                  128
    2
    Start of subsequent processing ... 20120210151806
    000024
    PU                  129
    2
    End of subsequent processing... 20120210151806
    000025
    PU                  110
    2
    Execute reports for change/transport request: XXXXXXXXXXX
    000026
    PU                  111
    4
    on the application server: mbixq2cs01
    000027
    TP                  000
    3
    000028
    TP                  000
    3
    000029
    TP                  000
    3
    000030
    PU                  117
    2
    Reports for change/transport request XXXXXXXXXX have been executed
    000031
    PU                  118
    2
    Start of................ 20120210151806
    000032
    PU                  119
    2
    End of.................. 20120210151806
    000033
    TP                  162
    1
    Execution of programs after import (XPRA)
    000034
    TP                  110
    1
    End date and time : 20120210151806
    000035
    TP                  111
    1 E
    Ended with return code:  ===> 8 <===
    000036
    TP                  199
    1
    Regards, Trine

  • Error when importing CO Hierarchies from R/3 DEV to R/3 QAS

    Dear SDN,
    I am getting the following error when importing Cost center and cost element hierarchies from R/3 DEV to R/3 QAS...
    Object OSOA  0COSTCENTER_0101_HIER has not yet been imported successfully
    Object OSOA  0COSTELMNT_0102_HIER has not yet been imported successfully
    Ended with Return code ===8...
    But The two hierarchies were available in R/3 QAS and also i am able to utilise..
    My doubt is if i transport these hierarchies from R/3 QAS to R/3 Production any major issues...
    Now i want to test a data in BW DEV from R/3 Production data...
    So, I am planning to transport These hierarchies from R/3 QAS to R/3 PROD...
    Here we do not have BW QAS...So, getting data from R/3Production to BW DEV and testing...
    After testing Directly use in BW Production...
    So, Please suggest me why when importing these hierarchies errors occuring???
    Help will be greatly appreciated with points...
    Thanks in advance...

    Hi Venkat,
    Please go through the following threads...
    Hierarchy  Transports
    Transporting cost center and profit center standard hierarchies
    /community [original link is broken]://Transporting a hierarchy
    Transport Hierarchy
    Khaja

  • BI Transport Req Error 8 - Error in Import and Method Execution

    Hi All,
    I have collected the Update Rule in a Transport Request. The Update Rule has couple of lookup routine(s) for the data and key field.
    When Moved the transport request to Quality the same is ending with error 8.
    Error at the time of Import
    R3TRROUT 3AQ..........was repaired in this system
    Object R3TRROUT 3AQ.......... is in repair status.  Therefore cannot be imported
    Procedure: If you still want to import release the relevant repair and repart the import
    Error message at Method Execution Log
    Object ROUT 3AQ.... has not been imported successfully
    The Object R3TRROUT 3AQ.......... has not yet been imported without error.
    Import Post Processing is not performed for this InfoObject.
    Note : I have tried this couple of times but the error remains same. Checked the Routines in development and quality and they are all same....Could not able to analyse what exactly is the error.
    Please help. I am not able to understand how to go a head.

    Dear Pavan,
    Iu2019m going try to help you regarding your question,
    I have been a similar problem with transformation, the transport request after accept in the system target have given a similar error. I have fixed following the next step:
    u2022     I activating again the source and target, if those source and target was changed it is important to transport before the update rule.
    u2022     When you are sure that you have the same source and target in both systems, furthermore both have been activated, you can move on with the transport request of update rule.
    I hope this suggestion can help you to answer your question,
    Luis

  • Transport Error:could not be written on output device T

    Hi,
      I transport ODS/CUBE/Transformation to QAS of BW. Error information:
       Program terminated (job: RDDEXECL, no.: 16525500)
          See job log
       Execution of programs after import (XPRA)
       End date and time : 20071217165645
       Ended with return code:  ===> 12 <===
    Click "See job log" display these information:
    Job started
    Step 001 started (program RDDEXECL, variant , user ID DDIC)
    All DB buffers of application server janapbq1 were synchronized
    STDO: Log  could not be written on output device T
    Replication completed successfully
    InfoSource 8ZSFE_O21 was successfully created
    Communication Structure /BIC/CS8ZSFE_O21 activated
    Transfer Rule(s) 8ZSFE_O21_AA activated
    STDO: Log  could not be written on output device T
    STDO: Log  could not be written on output device T
    STDO: Log  could not be written on output device T
    STDO: Log  could not be written on output device T
    STDO: Log  could not be written on output device T
    STDO: Log  could not be written on output device T
    STDO: Log  could not be written on output device T
    STDO: Log  could not be written on output device T
    STDO: Log  could not be written on output device T
    Replication completed successfully
    InfoSource 8ZSFE_O33 was successfully created
    Communication Structure /BIC/CS8ZSFE_O33 activated
    Transfer Rule(s) 8ZSFE_O33_AA activated
    ABAP/4 processor: OBJECTS_OBJREF_NOT_ASSIGNED
    Job cancelled
    My BI System information:
    SAP_ABA                     700                     0013
    SAP_BASIS     700                     0013
    PI_BASIS                    2005_1_700     0013
    ST-PI                    2005_1_700     0003
    SAP_BW                    700                     0015
    FINBASIS                    600                     0005
    SEM-BW                    600                     0005
    BI_CONT                   703                     0004
    ST-A/PI                   01I_BCO700     0000
    This is urgent..
    Any Thoughts.....
    Thanks.

    Hi,
    Once again try to activate all the object and retry the transport, this is due to inactive object or object not properly activate.
    since nothing is mentioned activate all object incluging data target and transformation also.
    if this success don't forget to assign points
    Thanks,
    Ravi - IM
    Edited by: Ravi Kumar P S on Dec 18, 2007 5:37 AM

  • Error while importing a table index.

    Hi,
    We are facing a problem while importing an index to the production region. Below are the details.
    1. A secondary index was created on standard SAP table ILOA in DEV region.
    2. The Index was successfully moved to the Quality system, without any glitches.
    3. Due to some issue (releated to testing, for which we had to revert back the changes), we had to delete the index on ILOA in the DEV region. The transports were moved to the PPD region and hence, the index on ILOA was deleted in PPD also.
    4. Once the issue related to testing was resolved, we again created an index on the table ILOA and moved it to PPD.
    All these 4 mentioned steps happened successfully and in PPD there was no error while importing the transports.
    But, while moving the above transports to the Production region, there was an error :
    "Index ILOA~Y could not be activated
    (E - No index ILOA~Y found with status M)"
    Please note that Y is the name of the index that was created on the table ILOA.
    The error code that we have got is "8".
    Can anyone please shed any light on what the issue is?? WE cannot re-import the transports in to Production without analysing this issue,because our client doesnt permit that.
    Thanks and eagerly awaiting a kind reply.
    Regards,
    Raghavendra.

    You've three transports - one to create the index, one to delete, and one to recreate.  It could be that the the third one tried to run before the database had finished with the second?
    Have you looked on SE14 for the actual status on production of the index?
    matt

  • Support Pack upgrade error in Import Phase

    Hello,
    Currently I am upgrading SCM system with Support pack level 12 to 20 . When i am applying Basis 12 to 20. I got an error in Import_Proper phase.
    Could you please help me on this? I tried and still searching solution for this..But no luck...
    Os is : AIX and
    Log File:                /usr/sap/trans/log/SAPIB70013.xxx
    Main import
    Transport request   : SAPKB70013
    System              : xxxx
    tp path             : tp
    Version and release: 372.04.71 700
    child process 934006 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_report_interface
    fcode:      CLOSE_LINE_MODE
    tabname:    SOURCE
    len (char): 40
    key:        CL_OBJECT_COLLECTION==========CT
    retcode:    1
    SQL error -913 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -913, ER
    child process 1212554 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_report_interface
    fcode:      CLOSE_LINE_MODE
    tabname:    SOURCE
    len (char): 40
    key:        CL_WDR_APPLICATION_WINDOW=====CT
    retcode:    1
    SQL error -913 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -913, ER
    child process 1171520 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_report_interface
    fcode:      CLOSE_LINE_MODE
    tabname:    SOURCE
    len (char): 40
    key:        CL_WDY_MD_EVENT_SOURCE========CI
    retcode:    1
    SQL error -913 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -913, ER
    child process 1331412 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_xrtab
    fcode:      RT_MI_LOAD
    tabname:    ECSCR_DATA
    len (char): 106
    key:        EC_TEST_DATA                  00000000P10                           IECATTDEFAULT
    retcode:    1
    SQL error -904 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -904, ER
    insert / update sequence failed due to an error in DBI.
    maybe there's a concurrent process which inserted this table entry at the same time.
    insert / update sequence failed due to an error in DBI.                       
    maybe there's a concurrent process which inserted this table entry at the same time.
    child process 1310922 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_xrtab
    fcode:      RT_MI_END
    tabname:    WDY_APP_PROPERTY
    len (char): 64
    key:        DEMO_UIEL_DROPDOWN_BY_IDX     DEMO_VIEW
    retcode:    1
    SQL error -904 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -904, ER
    import portion 018446 - 999999 not imported because the child processes died for unknown reason
    child process 1310924 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_report_interface
    fcode:      CLOSE_LINE_MODE
    tabname:    SOURCE
    len (char): 40
    key:        CL_WDY_MD_OUTGOING_EVENT======CT
    retcode:    1
    SQL error -913 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -913, ER
    child process 1286192 terminated -> setting rc=12 for this import portion
    sap_dext called with msgnr 1:
    db call info -
    function:   db_xrtab
    fcode:      RT_MI_LOAD
    tabname:    ECSCR_DATA
    len (char): 106
    key:        EC_TEST_DATA                  00000000P10                           IECATTDEFAULT
    retcode:    1
    SQL error -904 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -904, ER
    import portion 009158 - 018411 not imported because the child processes died for unknown reason
    import portion 018412 - 018527 not imported because the child processes died for unknown reason
    import portion 018528 - 999999 not imported because the child processes died for unknown reason
    sap_dext called with msgnr 1:
    db call info -
    function:   db_xrtab
    fcode:      RT_MI_LOAD
    tabname:    ECSCR_DATA
    len (char): 106
    key:        EC_TEST_DATA                  00000000P10                           IECATTDEFAULT
    retcode:    1
    SQL error -904 accessing  : [IBM][CLI Driver][DB2] DSNT408I SQLCODE = -904, ER
    Main import
    End date and time : 20100909034914
    Ended with return code:  ===> 12 <===
         |   ######################################                     
    Thanks and Regards,
    Sankar
    SAP BASIS Consultant

    Hi,
    Thanks for you reply. I restarted import but no luck still. I activated some object also not working. when i call SPAM it is not going to the SPAM pager. Showing dump...
    Runtime Errors         CALL_FUNCTION_NOT_FOUND
    Except.                CX_SY_DYN_CALL_ILLEGAL_FUNC
    Date and Time          10.09.2010 09:41:37
    Short text
         Function module "POSS_UIREQ_OPT_SUBMIT" not found.
    What happened?
         The function module "POSS_UIREQ_OPT_SUBMIT" is called,
         but cannot be found in the library.
         Error in the ABAP Application Program
         The current ABAP program "SAPLSTXC" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    Error analysis
         An exception occurred that is explained in detail below.
         The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_FUNC', was
          not caught in
         procedure "OPEN_FORM" "(FUNCTION)", nor was it propagated by a RAISING clause.
         Since the caller of the procedure could not have anticipated that the
         exception would occur, the current program is terminated.
         The reason for the exception is:
         The program "SAPLSTXC" contains the CALL FUNCTION statement.
         The name of the function module to be called is "POSS_UIREQ_OPT_SUBMIT".
         No function module exists with the name "POSS_UIREQ_OPT_SUBMIT".
         All function modules are listed in the Function Library (SE37).
    Possible reasons:
    a) Wrong name specified. Pay particular attenti
        upper/lower case and underscores ("_").
        or
    b) Transport error
    c) In the case of an enqueue/dequeue module,
        the lock object may not have been activated
        (ABAP/4 Dictionary).
    When i tried to check function module it is not there..
    Could you please help on this?
    Regards,
    Sankar Basis Consultant

  • Transport error while exporting swf to enterprise

    Hi all,
    OLD scenario : Server OS :  Windows2003, BO  XI3.1   Client OS : Windows XP , all BO lcient tools and Xcelsius 2008 ..system works fine in all respects
    New Scenario : Server OS upgraded to Windows 2008 with out doing any modifications on the running applicaitions.
    All client tools are able to connect to BO Application including designer, deski , importwizrd, webirichclient with EXCEPTION Xelcius 2008.
    In Xcelsius 2008 with SP1 --> while tring to export to Business objects platform, upon giving username and password and authenticationi (any) ...waits for 3-4 sec ...pops up " Transport Error : Communication Failure" .... same error while importing also ..application is not getting response from server ...
    pls guide ...thnx ..
    .kishore

    Sorry for delayed update .The Issue is resolved after un-checking auto assign port to CMS and assigning port number manually.

  • Getting error while importing

    Hi Guys,
    I'm gettig below error while importing the request.I have checked info objects and DSO's  in source and target systems all were in active version.Please give your inputs why i'm getting like this.
    InfoObject ZEMC_FRSC is not available in version A
    InfoObject ZEMC_FREL is not available in version A
    InfoObject ZLICAPTYP is not available in version A
    InfoObject ZLICBATCH is not available in version A
    InfoObject ZLIC_TYPE deleted from DataStore object ZDB_LI05
    InfoObject ZTA_OWLF deleted from DataStore object ZDB_LI05
    InfoObject ZLICAPTYP is not available in version A
    InfoObject ZLICBATCH is not available in version A
    InfoObject ZLIC_TYPE deleted from DataStore object ZLICS_01
    InfoObject ZTA_OWLF deleted from DataStore object ZLICS_01
    Thanks in advance...
    Regards,

    Hi,
    once check the objects are active or not.
    if objects are active
    1. Goto rsa1.click on Transport connection.
    2. select your objects, draga and droup into rightside pannel
    3. click on Truck button to create the request.
    4. select your datatargets, drag and droup into pannel
    5. create the request for the same.
    6. goto SE09.
    7. Release the request.
    8. import that request in QUA system.
    Regards,
    Suman.

  • Error while importing an index

    Hi,
    We are facing a problem while importing an index to the production region. Below are the details.
    1. A secondary index was created on standard SAP table ILOA in DEV region.
    2. The Index was successfully moved to the Quality system, without any glitches.
    3. Due to some issue (releated to testing, for which we had to revert back the changes), we had to delete the index on ILOA in the DEV region. The transports were moved to the PPD region and hence, the index on ILOA was deleted in PPD also.
    4. Once the issue related to testing was resolved, we again created an index on the table ILOA and moved it to PPD.
    All these 4 mentioned steps happened successfully and in PPD there was no error while importing the transports.
    But, while moving the above transports to the Production region, there was an error :
    "Index ILOA~Y could not be activated
    (E - No index ILOA~Y found with status M)"
    Please note that Y is the name of the index that was created on the table ILOA.
    The error code that we have got is "8".
    Can anyone please shed any light on what the issue is?? WE cannot re-import the transports in to Production without analysing this issue,because our client doesnt permit that.
    Thanks and eagerly awaiting a kind reply.
    Regards,
    Raghavendra.

    Hi,
    As pointed out earlier, everything is fine in the PPD region. However, the issue is while tranporting the change from QA system to the productions system.
    Also, please note that the table is active in both the PPD and PRD system. (in PPD system with index and in PRD system without the index).
    ALso, its not possible to manually adjust the table in SE14 in out production system.
    Please let me know if you have any further ideas on this.
    Thanks a lot
    Raghavendra.

  • Error While importing SAP query into quality system

    Hi,
    When Itried to import the dataset(Transport Request)  generated in develoment system into Quality system I am getting the following error.
    Query already exists and Infoset contains a structures which is not there in data dictionary .
    How to oversome this error to import successfully into quality system
    thanks

    hi,
    You need to transport your Z tables to the quality.
    Make sure you transport all the data elements , domain.. etc to the quality.
    Thats why its giving you the error.
    It does not find the Z tables in Quality
    Regards,
    Vinod

Maybe you are looking for

  • Network Load Balancing not failing over properly

    I have 2 MS 2012 servers setup in a NLB unicast configuration, with 2 NICs each on the same subnet.  When I take down the second server (and only the second server) the FQDN goes offline.  Below are the ipconfigs for each server.  Any help would be g

  • Optimal HD export settings for Apple TV

    I've captured some video from my Canon HV20 and want to view it in the highest quality I can via my Apple TV. If I read the tech specs on the Apple TV it says "H.264 up to 5 Mbps, Progressive Main Profile (CAVLC) with AAC-LC audio up to 160 Kbps (max

  • Copying to CD on iMac

    Hello, New discussion forum poster but long-time mac user. Asking what seems to be a very simple question but for the life of me I can't seem to work out the solution to my problem. When I try to copy (photos, movie clips, files) to a blank CD (by dr

  • Problem with populating ROWSET

    Hi , I have a problem with ROWSET. I have a table with 6 columns and approximately more than 200 records. I reterive them in a ResultSet and resultset gets populated. But I populate Rowset with that ResultSet then it hangs for atleast 1 minuate and t

  • Comment mettre a jour camera raw pour CS6

    J'ai un NIKON D800E, et je ne peux pas ouvrir mes fichiers RAW sous Photoshop CS6 et Lightroom 4. Merci de m'aider