Transport Error when including Transformations with Formulas

I am attempting to transport a transformation that includes formulas.  I am getting an ASSERTION_FAILED short dump and my transport stops with an Error Code = 12.  Transformations without formulas or with routines seem to go ok.
Here is a piece of the short dump:
Information on where terminated
    Termination occurred in the ABAP program "CL_RSTRAN_RSFO================CP" -
     in "COPY_ON_DATABASE".
    The main program was "RDDEXECU ".
    In the source code you have the termination point in line 51
    of the (Include) program "CL_RSTRAN_RSFO================CM01U".
    The program "CL_RSTRAN_RSFO================CP" was started as a background job.
    Job Name....... "RDDEXECL"
    Job Initiator.. "DDIC"
    Job Number..... 15091300
We are currently on NW2004s SP10.  I cannot seem to find any OSS notes that are applicable?  Anyone have any help?

We had to log an OSS Message with SAP to get this fixed.  Somewhere in the development of the transformation, the rules with the formula got corrupted, even though it did not appear to be corrupted from the front-end.
Here is the text from the OSS Message:
The problem is that the yuo defined 2 formulas for this
transformation but in table RSTRANSTEPROUT there are 3 active
entries. RULEID 4 is wrong, because this ruleid
is not avialable in table RSTRANFIELD and RSTRANRULE. To delete
an inconsistent ruleid you can use the procedure which is
described in note 983036.
Once we cleaned this up, the transformation transported successfully.
Hope this helps!

Similar Messages

  • Error when activate transformation with mapping ROCANCEL to 0RECORDMODE

    In the techical rule group, I maped ROCANCEL with 0RECORDMODE but the transformation can not activate with the error
    Rule7 (target: 0RECORDMODE): Source parameter ROCANCEL is not being use
    Please advise what went wrong ?

    Hi,
    ROCANCEL field is indicates the status of record
    i.e Indicator: cancellation record
    This will be mapped to 0RECORDMODE infoobject. that field is necessary for DSO to identify the status of records(cancellation/deletions/changed/new record).
    Regards,
    Suman

  • Transport error when transporting a transformation with formulas/routines

    Hi All,
    I have migrated some 3.5 dataflow (Datasource, Transfer rules, Update rules, Infosource etc..) to 7.0. I am able to load the datatargets using the DTP's just fine.
    The problem I am facing is transporting these dataflows to Quality and Production systems. I am specifically having problem with transporting transformations which has formulas/routines.
    I was able to transport the transformations with direct mapping from source field to target fields (no formulas/routines) without any problem and it works fine in Quality system. I tried to transport couple of transformations with formulas/routines, all of them give a shortdump ASSERTION_FAILED (transport fails with error code 12).
    I am not sure what the problem is. We are on support package 16. Has anyone faced this problem before? Any suggestions are appreciated.
    Points are assured
    Thanks,
    Sirish.

    Hi,
    What is the dump message you are getting? Check in ST22 and let us know. And try the process which is said in the previous post collect all the transformations through transport connections and transport them.
    Khaja

  • Error when generate Transformation- GP_ERR_RSTRAN_MASTER_TMPL related

    Dear all:
    We created transformation for cube 0PA_C01 and infoSource 0HR_PA_1 based on 3.x transfer rule. When we performed "Check", it is done successfully with any error. But during activation, there s syntax error occurred in program "GP_ERR_RSTRAN_MASTER_TMPL". And error lines are as following--
      line 2815:
      "Field "_B_1-MVIEW-CO_AREA" is unknown. It is neither in one of the spe"
      "cified tables nor defined by a "DATA" statement. "DATA" statement. "DA"
      "TA" statement."
    Also there are two error message generated :
    RSTRAN511- Error During generation
    RSO404      - Error when activating Transformation 0ERUYQ8XMDJS1DP5U5U7HTBBNBME3GOE
    Any thought please ~~~
    BR
    SF

    Hi
    Iam creating transformations for 0IC_C03. Iam facing problem in activating the transformations successfully. Some times it is throughing the above said error and some other times it is throughing the error ASSIGN_TYPE_CONFLICT. I searched forums almost a day and i found that SP 9 is unstable in which we are now and experts suggesting to upgrade to SP10 or SP12. But the problem is client is not willing to go to SP upgradation now. I have no clue now. I almost spend two days on this. But on the other hand iam able to generate transformations successfully and able to load data for other cube 0SD_D04.
    kindly suggest any one to get rid of this issue. Iam running out of time.
    Thanks
    Kumar

  • Error when opening document with ECL control: INVALID_DATA

    Hi Gurus,
    I've tried to search the net for this problem but could not find anything and I'm stuck now.
    Description:
    we're using ECL to view attached documents (to POs etc.) which are stored through ArchiveLink on the content repository.
    when we try to open this document, time-to-time we get following error:
    Error when opening document with ECL control: INVALID_DATA
    Message no. SDV004
    by time-to-time I mean that when we try to open same attachment again it opens successfully (sometimes we need to re-open it 3-4 times to get it)
    what we've tried is to enlarge timeout for HTTP protocol (tx SMICM, from former 30 to actual 60) but only effect we got is that we're waiting for the error longer time
    It will be really great if anybody of you guys can give me an advice where the problem can be or where should I look and what to check
    Thanks,
    David

    Hi Christoph,
    thanks for tip, unfortunately this was already flagged, currently settings are:
    for Display Settings:
    yes - include ECL control
    use HTML control
    empty - maximum viewer wait time
    (do you think that setting some value for this could help)
    yes - deactivate generic object services in viewer
    no - doc display as dialog box
    yes - deactivate data provider cache
    Storage Settings:
    yes - always copy document class from document type
    yes - permit multiple assignment
    Thanks,
    David

  • ORA-04062 error when running forms with different users

    ORA-04062 error when running forms with different users
    I have a form that has a block that should display some data from another users tables. (The other user's name is dynamic, it's selected from a list box)
    I wrote a stored procedure to get the data from other user's tables.
    When I compile the form and run it with the same user I compiled, it works without any error. But when I run the compiled form with another user I get the ORA-04062 (signature of procedure has been changed) error.
    I tried setting REMOTE_DEPENDENCIES_MODE to SIGNATURE in init.ora but it didn't help.
    My Forms version is 6i with Patch 15.
    Database version is 9.
    Here is my stored procedure:
    TYPE Scenario_Tab IS TABLE OF NUMBER(34) INDEX BY BINARY INTEGER;
    TYPE Open_Curs IS REF CURSOR;
    PROCEDURE Get_Scenarios(User_Name IN VARCHAR2, Scen_Table OUT Scenario_Tab) IS
    Curs Open_Curs;
    i NUMBER;
    BEGIN
    OPEN Curs FOR
    'SELECT Seq_No FROM '|| User_Name ||'.scenario';
    i := 1;
    LOOP
    FETCH Curs INTO Scen_Table(i);
    EXIT WHEN Curs%NOTFOUND;
    i := i + 1;
    END LOOP;
    END Get_Senarios;
    I would be happy to solve this problem. It's really important.
    Maybe somebody can tell me another way to do what I want to do. (getting a list of values from another users tables)

    I think it should be a better solution to create a package,
    and put your own TYPES and procedure into it.
    CREATE OR REPLACE PACKAGE PKG_XXX IS
    TYPE TYP_TAB_CHAR IS TABLE OF .... ;
    PROCEDURE P_XX ( Var1 IN VARCHAR2, var2 IN OUT TYP_TAB_CHAR );
    END ;
    Then in your Form :
    Declare
    var PKG_XXX.TYP_TAB_CHAR ;
    Begin
    PKG_XXX.P_XX( 'user_name', var ) ;
    End ;

  • Error when extracting data with extractor 2lis_04_matnr - NEED HELP ASAP !!

    Hi experts!
    Got an error when extracting data with extractor 2lis_04_matnr.
    System says (short dump):
    DUMP TEXT START----
    Runtime error:    CONNE_IMPORT_WRONG_COMP_TYPE
    Exception:   CX_SY_IMPORT_MISMATCH_ERROR
    Error when attempting to import object "MC04P_0MAT_TAB".
    The current ABAP program "SAPLMCEX" had to be terminated because one of the statements could not be executed. This is probably due to an error in the ABAP program. When attempting to import data, it was discovered that the data type of the stored data was not the same as that specified in the program.
    An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', was neither caught nor passed along using a RAISING clause, in the procedure  "MCEX_BW_LO_API" "(FUNCTION)".                                                                             
    Since the caller of the procedure could not have expected this exception      
    to occur, the running program was terminated.                                
    The reason for the exception is:  When importing the object "MC04P_0MAT_TAB", the component no. 5 in the dataset has a different type from the corresponding component of the target object in the program "SAPLMCEX". <b>The data type is "D" in the dataset, but "C" in the program.</b>
    DUMP TEXT END----
    Please, can someone explain me how to solve it? 
    Really need help ASAP!
    Thanks in advance,
    Jaume
    Message was edited by:
            Jaume Saumell
    Message was edited by:
            Jaume Saumell

    Hi,
    Check this note: 328181
    So you need to delete entries in SM13/LBWQ for application and also detup table content.
    And then refill teh set up table.
    If you are in production clear the entries by running collective run no of times for this application 04.
    With rgds,
    Anil Kumar Sharma .P

  • Error when make controller with MVC entity framework

    error when make MVC with entity framework, WHY??

    Hi Arif Kalbu,
    It would be better if you could share us the detailed error message, so I could provide useful informaiton or provide the correct forum for this issue, you know that this forum is to discuss the VS IDE.
    But if the real issue is related to the MVC project, maybe the ASP.net forum would be better: http://forums.asp.net. If then, you could get an answer more quickly and professional. Thanks for your cooperation.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SAP DMS : Error when opening document with ECL control: INVALID_DATA

    We are receiving following error while try to view .FAX file through SAP Document viewer
    "2D viewer - Unable to opend Document"
    "Error when opening document with ECL control: INVALID_DATA"
    Appreciate your quick effort.
    Thanks,
    Sam.

    Yes, We have checked in both ways, I have also followed other threads on the same issue
    But not able to find the solution for the issue. We are facing the issue when we are using files scannned by Kodak Scanner i1420 in tiff format.
    But If I will attach any other tiff files from directory then It can viewed through SAP Document Viewer.
    I appreaciate your help in this regards.
    Thanks,
    Sam,

  • 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

  • Error when doing importing with impdp

    Hi,
    I tried to do export then import the schema from and to same schema. However, when doing export with expdp everything was okay.
    Problem begins when I tried to do importing by using impdp. I also tried to drop the current schema and created the new one but it still doesn't work.
    If I didn't drop the current schema, it logs looks like this
    Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
    ORA-31684: Object type SEQUENCE:"HSS"."LCM-MIGRATION_ID-SEQ" already exists
    ORA-31684: Object type SEQUENCE:"HSS"."WKS_IDENTITY_SEQ" already exists
    ORA-31684: Object type SEQUENCE:"HSS"."ESS_FAILOVER_RESOURCE_SEQ" already exists
    ORA-31684: Object type SEQUENCE:"HSS"."ESS_FAILOVER_LEASE_OWNER_SEQ" already exists
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    ORA-39151: Table "HSS"."HSS_COMPONENT" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."HSS_COMPONENT_LINKS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."HSS_COMPONENT_PROPERTY_VALUES" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."HSS_COMPONENT_TIERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."ESS_CLUSTER_SERVER_MAPPING" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."HSS_COMPONENT_TYPES" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."CSS_IDENTITY" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."CSS_GROUP_MEMBERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    ORA-39151: Table "HSS"."CSS_USERS" exists. All dependent metadata and data will be skipped due to table_exists_action of skip
    Job "HSS"."SYS_IMPORT_FULL_01" completed with 95 error(s) at 08:47:21
    And then this is the log when doing importing, I only highlighted the necessary part which I think related with my problem
    Starting "HYPSS"."SYS_IMPORT_FULL_01": HYPSS/******** TRANSFORM=oid:n:type directory=test_dir logfile=imptest.log dumpfile=HYPSS.dmp
    Processing object type SCHEMA_EXPORT/USER
    ORA-31684: Object type USER:"HYPSS" already exists
    . . imported "HYPSS"."CSS_ROLE_LOCALES" 1.630 MB 6358 rows
    . . imported "HYPSS"."HSS_COMPONENT_FILES" 601.5 KB 33 rows
    . . imported "HYPSS"."HSS_COMPONENT_PROPERTY_VALUES" 130.7 KB 1657 rows
    . . imported "HYPSS"."CES_APPS" 10.54 KB 1 rows
    etc....
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    ORA-39083: Object type INDEX_STATISTICS failed to create with error:
    ORA-01403: no data found
    ORA-01403: no data found
    Failing sql is:
    DECLARE I_N VARCHAR2(60); I_O VARCHAR2(60); c DBMS_METADATA.T_VAR_COLL; df varchar2(21) := 'YYYY-MM-DD:HH24:MI:SS'; BEGIN DELETE FROM "SYS"."IMPDP_STATS"; c(1) := 'TRIGGER_NAME'; c(2) := 'TRIGGER_GROUP'; DBMS_METADATA.GET_STAT_INDNAME('HYPSS','QRTZ_TRIGGERS',c,2,i_o,i_n); INSERT INTO "SYS"."IMPDP_STATS" (type,version,flags,c1,c2,c3,c5,n1,n2,n3,n4,n5,n6,n7,n8,n
    Processing object type SCHEMA_EXPORT/TABLE/COMMENT
    The source schema is on USERS tablespace (default). The destination schema I tried to put on the same tablespace but it doesn't work. However when I changed the destination tablespace, it also doesn't work.
    Anybody got the idea why this occurs? Thanks.

    got error like this
    ORA-39152: Table "HSS"."CSS_GROUP_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_USERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_ROLES" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_DELEGATED_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_ROLE_MEMBERS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_ROLE_LOCALES" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-39152: Table "HSS"."CSS_GROUPS" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-29913: error in executing ODCIEXTTABLEFETCH callout
    ORA-00001: unique constraint (HSS.COMPONENT_LINKS_PK_IND) violated
    ORA-31693: Table data object "HSS"."HSS_COMPONENT_TYPES" failed to load/unload and is being skipped due to error:
    ORA-00001: unique constraint (HSS.COMPONENT_TYPES_PK_IND) violated
    ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists
    ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists
    ORA-39111: Dependent object type COMMENT skipped, base object type VIEW:"HSS"."VW_APPLICATIONS" already exists

  • Runtime error when syncing P1i with PC

    I get a runtime error when syncing my P1i to PC. The error is linked with this file, 'dxp syncml.exe', and the application is said to request the 'Runtime to terminate it in an unusual way'. How do you fix this?

    Thanks Joanne. Let me give you feedback on whats happening so far.
    After some doing, I discovered that my firewall is controlled by Norton Firewall Provider. (Bear in mind I am a novice in terms of managing these computer protocols). To modify the firewall settings, Norton calls this in their the control panel  'Smart firewall', I go to program control then configure. A list of programs came up with the options to add, modify, remove or rename. I searched the list and found that DXP SyncML.exe and mRouterRuntime.exe were listed and set to 'Auto' in the Access column. I noticed that under access, the options include auto, allow, block and custom. I reasoned that 'allow' is the highest level of access, and to support the sync feature, I changed the status to 'allow' from 'auto' for the DXP SyncML and mRouterRuntime executable files. If you believe it is ok and safer to keep the auto status, advise me.
    I did not find in the listing any of these programs; Bearer Abstraction Layer (SCBAL.exe), Generic Device Management Executable (Generic.exe) or Symbian Connect Object Model for Symbian Connect QI (SymbianConnectRuntime.exe).I did a search and located the generic.exe and the other two files under 'common files' in 'teleca shared' folder, and 'symbian' in 'shared' and 'symbianconnectruntime', respectively.
    Norton's control panel for Smart Firewall gave me three options when adding programs: allow, block and manual configure internet settings. The last of the three was recommended by Norton. However, I selected 'allow' for the generic.exe, symbianconnectruntim.exe and scba.exe.Please advise if you believe I need to modify the terms I entered to set up this procedure (is there a better setting that allow me to achieve the same level of functionality without compromising my security?)
    Now Joanne, whats left is for me to try the sync after making these changes. I feel as if I accomplished a lot by only reaching this far. I will have to do a reinstallation of the SE PC Suite before moving on though. Let me explain.
    When the sync failed repatedly because of the unexpected termination linked with the dxp syncml.exe, I uninstalled the SE PC Suite which was done from a disc, and installed a version from the Sony website. That version is 1.6.0, with a copyright date of 2006. With this, the sync worked. By the way I am using Windows 7 Starter. Now what I am going to do later is uninstall this version of the suite, and reinstall the one from the disc that was linked with the problem we are solving. When I do that later, I will give you feedback.
    Just in case you are wondering, I have a vested interest in using the PC Suite from the disc. This application works fine for the file manager component where the drive on the phone and removable media card are read. In the 1.6.0 version, I cannot get the file manager to see the phone as connected though when I put the card (is that called M2 disc?) in the phone, it reads. So, I although sync is working with the 1.6.0 version from the website, I want to use the version I have on disc if the sync component gets over the problem we are trying to solve.
    Hope I am on the right  track so far I thank you profusely for your patience and dealing with my qeurry; the solution will make a world of a difference for me and many other P1i owners. Look foward to the follow up
    Rohan Bell

  • CR error when using 'previous' in formula

    I have a formula that compares the date an action occurred with the date of the previous record if the requester and the application were the same:
    DateTimeVar e := {HD_IPR_IncidentProblem.Core_CreateDate};
    DateTimeVar f := Previous({HD_IPR_IncidentProblem.Core_CreateDate});
    if (OnFirstRecord)= FALSE  then
    if (Previous ({HD_IPR_IncidentProblem.Data_CustomersName}) = {HD_IPR_IncidentProblem.Data_CustomersName})  and (Previous ({HD_IPR_IncidentProblem.Data_ItemSubTypeCurrent} ) =   {HD_IPR_IncidentProblem.Data_ItemSubTypeCurrent} ) then
    DateTimeDiff(e,f);
    This works fine on CR XI Pro on the desktop, but produces the following error when scheduled on CR Server Release 1:
    Error in File S:\Business Objects\BusinessObjects Enterprise 11\Data\procSched\HADRIAN.reportjobserver\~tmp6fbc5654c726148.rpt: Error in formula <Date_Between_Changes>. 'whileprintingrecords; ' UFL 'u2ldtdif.dll' that implements this function is missing.
    Can anyone explain?
    Edited by: Andrew Jones on Oct 1, 2008 3:12 PM
    Edited by: Andrew Jones on Oct 1, 2008 3:16 PM

    Hi Andrew,
    When you install the Service Pack the missing dll will get installed.
    You can get the latest Service Packs at http://service.sap.com > Software Download> Business Objects Downloads.
    If you can not access this check out the service pack for the Crystal Report Server at the link below.
    http://support.businessobjects.com/downloads/service_packs/default.asp
    Hope this is helpful
    Regards,
    Aditya Joshi

  • 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 including JAR

    Hi all,
    I am getting this error when i try to include xbean.jar. The error is:
    The project was not built since its build path is incomplete. Cannot find the class file for javax.xml.stream.XMLStreamReader. Fix the build path then try building this project.
    Can you recommend a solution for this? Should i download this jar file again?

    First, need more info.. where is xbean.jar located ? locally ? if yes is the path included in your class path ? Let me give you a quick workaround if you have the jar file with you and are still struggling to include it :)
    say you have a jar file with a package foo. Just decompress the jar file and you should get a folder named foo. Copy this to the place where you have your .class files. Then use the following command to create the jar file. * will include everything including all the folders and this is a quick workaround to get it to work. If you want to know how to actually do it the correct way, more info is needed on your problem !
    jar cvfm bar.jar MANIFEST.TXT *Let me know if you still have difficulties
    Cheers
    Prashanth

Maybe you are looking for

  • Gmail help: no mssgs in Sent, on ipad

    I can access my gmail inbox, on safari in ipad, but the sent folder says there are no sent mssgs. On my laptop in firefox, everything is there. Is this an iPad or safari issue?.

  • Performance reports using Grid Control

    Hello! Can we create and schedule database performance reports using oracle 10g grid control? Thanks.

  • Sender Synchronous HTTP Adapter

    My Scenario   HTTP (Synchronous) to XI to R/3(Synchronous RFC) My question: How do I create a Sender Agreement for this Scenario, because I am going to use the HTTP Synchronous adapter on the Sender Side? I am bit confused.  I have used the Receiver

  • Quality in production

    hi friends,                  i want to use usage decision of accept or reject only at the time of goods reciept(production). can any body pl help me how to do the same. thanx in advance....

  • POST in Java

    Hello, I am trying to read a web page in Java that requires a POST. I can read normal web pages but I cannot determine how to POST data to a page. I am trying to read is: http://www.ohr.psu.edu/EMPLMENT/faculty.cfm If you use the drop down menu at th