Update rule from one Cube to another

Hello Gurus!
Here is the situation :-
We have a IC ZCube1. This cube contains order data at schedule line level. It contians an IO  for each Hold Status (in all 10 ) . IO has value 'X' if it is active else blank. 1 order line item can have multiple holds.
We need a aging report that should show how long particular line is on a Hold .
Date of change of hold status is not in the cube ZCube1, it is in another ODS. We have created new cube(ZCube2) that will have Orderitem, Line#, DOC#...etc(as key field) and an IO for Hold status (here we have only one IO to hold all status code) and data of change of hold status (we will populate it from ODS ) .
We have create start routine in ZCube2 that filter out order lines with no active Hold status. Also in this start routine we have logic to create 1 row for each hold status and store it in internal table(ITAB1). 
Problem :
Not able to understand how to proceed in update rule to insert multiple rows from  ITAB1 into ZCube2.
We can  copy ITAB1  to ITAB2 and read it with Key fields. After this we have ITAB2 with multiple Hold status codes with same order item.
Problem here is how do I assing multiple rows from ITAB2 in update rule to get multiple line item in ZCube2.
Any thought or input to above said will be very helpful.
Thanks,
Murtuza.

Hi Srinivas,
I did some change , till earlier post I was trying to figure out how to Move source DP values to internal table.
Eventually what I need is to Break each order line from source pacakge which contians multiple holds on same line into 1 orderline with only 1 hold status .
e.g for a orderline if there are 3 hold Source DP will return 1 row . After I execute below code is start routine Source DP will have 3 order line everything same but hold status . I have done changes to the code in previous post and I am able to achieve what I need , but not sure this is efficient way to do ...
Please advice .
LOOP AT SOURCE_PACKAGE  ASSIGNING <SOURCE_FIELDS>.
MOVE-CORRESPONDING <SOURCE_FIELDS> TO wa_ITAB_DP.
      IF <SOURCE_FIELDS>-/BIC/ZCSTATDM EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
      IF <SOURCE_FIELDS>-/BIC/ZCSTATFH EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
      IF <SOURCE_FIELDS>-/BIC/ZCSTATCC EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
      IF <SOURCE_FIELDS>-/BIC/ZCSTATSC EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
      IF <SOURCE_FIELDS>-/BIC/ZCSTATSP EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
      IF <SOURCE_FIELDS>-/BIC/ZCSTATFA EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
      IF <SOURCE_FIELDS>-/BIC/ZCSTATFV EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
      IF <SOURCE_FIELDS>-/BIC/ZCSTATNF EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
     ENDIF.
     IF <SOURCE_FIELDS>-/BIC/ZCSTATPV EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = 'X'.
        wa_ITAB_DP-/BIC/ZCSTATIP = ''.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
    IF <SOURCE_FIELDS>-/BIC/ZCSTATIP EQ 'X'.
        wa_ITAB_DP-/BIC/ZCSTATDM = ''.
        wa_ITAB_DP-/BIC/ZCSTATFH = ''.
        wa_ITAB_DP-/BIC/ZCSTATCC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSC = ''.
        wa_ITAB_DP-/BIC/ZCSTATSP = ''.
        wa_ITAB_DP-/BIC/ZCSTATFA = ''.
        wa_ITAB_DP-/BIC/ZCSTATFV = ''.
        wa_ITAB_DP-/BIC/ZCSTATNF = ''.
        wa_ITAB_DP-/BIC/ZCSTATPV = ''.
        wa_ITAB_DP-/BIC/ZCSTATIP = 'X'.
        APPEND wa_ITAB_DP to ITAB_DP.
      ENDIF.
     CLEAR  wa_ITAB_DP.
ENDLOOP.
SOURCE_PACKAGE[] = ITAB_DP[] .

Similar Messages

  • Error while copying Update rules from One Cube to other

    I am getting the following error message while I was trying to copy an existing update rule from an existing InfoCube to a New InfoCube. Has anyone experienced this before? Please let me know how to resolve this.
    Formula 3ZKQ....... (Object version M) could not be read.
    The new and original cubes are custom cubes.
    Thanks!

    Hi Vinod,
    Check the update rules for the original cube. Are they active? It appears that they contain a formula...check this too.
    Hope this helps...

  • Move data from one cube to another cube

    Hi,
    I am on BW 3.5 and I have moved the data from one cube to another cube and found that the number of records in the original cube does not match to the newly created cube. for eg. if the original cube contains 8,549 records then the back up cube contains 7,379 records.
    Please help me on what I need to look on and if in case the records are getting aggregated then how do I check the aggregating record.
    Regards,
    Tyson

    Dear tyson m ,
    check with any update rules in ur transfer.If so check in it.
    Just go through these methods for making transfer from one cube to another cube fully without missing data.
    Update rules method
    if it's updated from ods, you can create update rules for cube2 and update from ods
    or you can try datamart scenario
    cube1 right click 'generate export datasource'
    create update rules for cube2, assign with cube1
    rsa1->source system->bw myself, right click 'replicate datasource'
    rsa1-> infosource -> search 8cube1 name
    (if not get, try right click root note 'infosource'->insert lost node(s)
    from that infosource, you will find assigned with datasource, right click and 'create infopackage', schedule and run.
    Copy from
    While creating the new cube give the cube name in the "Copy from" section. It would copy all the characteristics and Key figures. It would even copy the dimensions and Navigational attributes
    Another option is:
    The steps for copying the contents of one cube to another:
    1. Go to Manage -> Recontruct of the new cube.
    2. Select the "selection button"(red , yellow, blue diamond button).
    3.In the selection screen you can give the technical name of the old cube, requests ids you want to load, from & to date.
    4.Execute and the new cube would be loaded.
    Its all that easy!!!!!!
    Refer this link:
    Copying the structure of an Infocube
    Reward if helpful,
    Regards
    Bala

  • ABAP Function Module Example to move data from one Cube into Another

    Hi experts,
    Can any please help out in this ..?
    A Simple ABAP Function Module Example to move data from one Cube into Another Cube
    (How do i send the data from one client to another client using Function moduel).
    Thanks
    -Upen.
    Moderator message: too vague, help not possible, please describe problems in all technical detail when posting again, BI related? ("cube"), also search for information before asking.
    Edited by: Thomas Zloch on Oct 29, 2010 1:19 PM

    This is the start routine to duplicate records in two currencies.
    DATA: datew   TYPE /bi0/oidateto,
          datew2  TYPE rsgeneral-chavl,
          fweek   TYPE rsgeneral-chavl,
          prodhier TYPE /bi0/oiprod_hier,
          market  TYPE /bic/oima_seg,
          segment TYPE /bic/oizsegment.
    DATA: BEGIN OF S_DATA_PACK OCCURS 0.
            INCLUDE STRUCTURE /BIC/CS8ZSDREV.
    DATA: END OF S_DATA_PACK.
    S_DATA_PACK[] = DATA_PACKAGE[].
      REFRESH DATA_PACKAGE.
      LOOP AT S_DATA_PACK.
        move-corresponding s_data_pack to DATA_PACKAGE.
        if DATA_PACKAGE-loc_currcy = 'EUR'.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalloc.
          DATA_PACKAGE-CURRENCY = 'EUR'.
          APPEND DATA_PACKAGE.
        else.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
        endif.
      ENDLOOP.
    This is to load Quantity field
    RESULT = COMM_STRUCTURE-BILL_QTY.
    This is to load Value field
    RESULT = COMM_STRUCTURE-NETVAL_INV.
    UNIT = COMM_STRUCTURE-currency.

  • Load from one cube to another

    hi all,
    can any one gimme  step by step procedure to load data from one cube to another cube in BI7
    thanx in advance

    Hi Srikanth,
    Cube to Cube Load 
    You need to move some data from one cube to another.
    The steps involved are :-
    First You need to  create 'Export Data Source' from original cube (right-click on the InfoCube and select Generate Export Data Source). 
    Then, assign the new datasource to new cube. (you may click on 'Source system' and select your BW server and click 'Replicate'). 
    Then, Create DTP and execute. 
    Lastly, you are ready to load. 
    Regards
    Suresh B.G.

  • Partitioning two Years Of Data From One Cube Yo Another

    Hi Experts,
    Can any one please help me on the following issue.
    I got the requirement where I need to copy the data from one cube to another having unequal number of dimensions.
    I have achieved this using Transparent partitioning, But I could be able to copy only one year data.
    In cube1 I have the months like Jan, Feb...Dec and in cube2 I have the structure like Jan-11..Dec-11, Jan-12...Dec-12.
    While creating the partition how can I map the Jan with Jan-11 and Jan-12.
    Thanks In Advance,
    Ram

    You can map manually. it is possible.

  • Loading Data from one Cube into another Cube

    Hi Guys,
    I am trying to load data from one cube A to another cube B. Cube A has data around 200,000 records. I generate export datasource on Cube A. Replicated the datasource and created InfoSource and activated it.
    I created update rules for Cube B selecting Source as Cube A. I do have a start routine to duplicate records in Cube A. Now when I schedule load,
    It stops at Processing Datapacket and says no data. Is there something wrong with the update routine or is there any other way to load form cube to cube in a simpler way?
    Thanks in advance

    This is the start routine to duplicate records in two currencies.
    DATA: datew   TYPE /bi0/oidateto,
          datew2  TYPE rsgeneral-chavl,
          fweek   TYPE rsgeneral-chavl,
          prodhier TYPE /bi0/oiprod_hier,
          market  TYPE /bic/oima_seg,
          segment TYPE /bic/oizsegment.
    DATA: BEGIN OF S_DATA_PACK OCCURS 0.
            INCLUDE STRUCTURE /BIC/CS8ZSDREV.
    DATA: END OF S_DATA_PACK.
    S_DATA_PACK[] = DATA_PACKAGE[].
      REFRESH DATA_PACKAGE.
      LOOP AT S_DATA_PACK.
        move-corresponding s_data_pack to DATA_PACKAGE.
        if DATA_PACKAGE-loc_currcy = 'EUR'.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalloc.
          DATA_PACKAGE-CURRENCY = 'EUR'.
          APPEND DATA_PACKAGE.
        else.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
        endif.
      ENDLOOP.
    This is to load Quantity field
    RESULT = COMM_STRUCTURE-BILL_QTY.
    This is to load Value field
    RESULT = COMM_STRUCTURE-NETVAL_INV.
    UNIT = COMM_STRUCTURE-currency.

  • How to copy documents for InfoProvider data from one cube to another cube

    Hello Everyone,
    We are using standard document feature to store document/comment about the data shown in the report/planning query. Relevant characteristics have the property 'characteristics is document attrib' turned on/selected for this purpose.
    Looks like the documents created gets tagged to a particular InfoProvider along with characteristic value assignment.
    Is there a way to move or copy documents from one InfoProvider to another InfoProvider.
    As per the design requirement, we need to move data from a real time InfoProvider (transaction cube) to a basic reporting cube. The data in the first/source cube stays for a period of approx 3 months before moved to other cube. We want the documents associated with InfoProvider data also to be moved, so that users can continue to see the document/comments what they  had created earlier.  
    I looked at the Documents tab in DataWarehouse workbench. No options seem to be available to copy or move documents.
    Any help will be highly appreciated and points will be rewarded accordingly!
    Best regards,
    Sanjeeb

    Hi
    Have you got any answer to this? I would also be interested in a copy function but more from one query ID to another.
    Kind regards,
    Daniel Müller

  • Moving directory with Software Update files from one server to another

    Hi guys,
    I have recently bought a Mac Mini to move on it my test system Mac OS 10.9 with Server 3.0, running on VM.
    My question is:
    Is it possible to move the Software Update packages/directory from one server to another, so I don't need to wait a whole week to have them all downloaded from the Apple servers?
    I assume, if replace all the Software update fodder it is not going to work as there are some kind of index files elsewhere that will not accept that change.
    I haven’t tried any migration assistant as don’t want to replicate the server.
    Any suggestions, please?

    hi Lucas,
    i just stumbled onto this post of yours while searching for solutions for a somehow related issue that's kept me thinking.
    your post isn't new, yet it received no answers... maybe you found a solution already.
    in case you haven't, a possible hint might come from https://discussions.apple.com/message/20478878#20478878
    for the record, i've installed os x server 3.0 on mvrx 10.9 on a 4-year old Intel Core 2 Duo mac mini with 500GB disks.
    in my case, it's the almost 200GB of update files wasting what's left of my storage real estate to press for a solution.
    tried to do what's suggested here, seems to work fine on my system, too. hope this helps.

  • Copy Query from one cube to another

    Hi ,
    Where can i do copy query from one to another cube
    Thanks
    Gururaj

    Hi,
    For copying queries from one cube to the another use Tcode :RSZC.
    If you have RKF and CKF in the queries,
    then only  those RKF's and CKF's which are used in the query will be copied(Only those which you use in the structure).
    One more important all the keyfigures will be copied with Technical name as _1 at the end.
    i.e: if you have a KF called AVERAGE with Techname as <b>OSD_AVG</b> then this will be copied as <b>OSD_AVG_1</b>.Meaning you cannot define your own Tech names.
    Thanks,
    Uma Srinivasa Rao.

  • Aggregation of data from one cube to another

    Hello,
       I would like to copy the data of one cube to another cube, at an aggregated level like we do in BW.
       For instance, cube A has cost center, while cube B has to be the totals of all the cost centers from cube A.  And hence, cube B will not have a field cost center at all.
       Could someone help me on this topic please.
    Thanks and Best Regards,
    Rajkumar A

    Hi dear,
    it's enough to do not put in your copy cube the cost center (the OLAP processor when you execute a query will do the rest)!
    Otherwise, if you want to have all the records PHYSICALLY AGGREGATED, you have to go with an ODS as destination (and here you can aggregate as you prefer on the basis of your key part !)...
    Or you can aggregate all the records in a single data package with a SUM operation into an internal table in your start routine (without the cost center, clearly !)...
    Hope it helps!
    Bye,
    ROberto

  • How to copy query from one cube to another ? OR atlest a KF strecture?

    Hello edperts,
    just wanted some tips on coping a query or KF strecture from one cube to other . i am trying to use TCODE RSZC, but bcoz some of the chars. are not present in the target cube i a m not able to copy it.
    But, looks like both the cube has save KFs, so i thought atlest let me copy KFS , so i just have to pull manually chars. but thats also not working..
    Is there any back door way to do it ? please help me, it might save lots of time.
    Appreciated.

    Hi,
    Check the below article, it might help you out.
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/204111a9-0fca-2d10-219c-be20e686cdb5?QuickLink=index&overridelayout=true]
    Regards,
    Durgesh.

  • Copying a query from one cube to another cube

    HI BW Gurus,
    I am having a report due date for net payment analysis in Accounts receivables and i want to copy the same query into a different infocube accounts payable.
    Is it posssible to copy a query from one infocube to another infocube.
    Regards,
    Syed

    Hi,
    Yes,it is possible to copy query from one infoprovider to another infoprovider with some conditions.Please have a look at the note 981104 which explains you how to Copy between InfoProviders and Copy within one InfoProvider.
    Rgds
    Manoj Kumar

  • Copying Outline from one cube to another cube

    please, Can any one help me with the following issues
    1) I am on planning 9.3v, can anybody tell me how to copy the outline from one application to another, what is the procedure involved?
    2)How can i change alias tables in data forms.
    Thanks.
    Edited by: 813627 on Feb 24, 2011 7:50 AM

    1) I am on planning 9.3v, can anybody tell me how to copy the outline from one application to another, what is the procedure involved?http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_hp_admin/ch09s01.html
    2)How can i change alias tables in data forms.http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_hp_admin/ch11s03s07.html
    Cheers...!!!

  • Transport of update rules from one BW system to another

    Hello all,
    SAP BW 7.0. Two systems: acceptance, development.
    We adjusted 4 old update rules between DSOs and InfoCubes in development system. Trying to transport it to acceptance system (transactions se01, STMS).
    Two update rules were transferred succesfully as executable. Other two were transferred as inactive. Overall transfer error code 8.
    Strange that when I select some of these update rule and push "check" button it says no errors. But in transport log errors exactly in checking and activating of these rules. Please if someone faced with such strange things suggest a solution.
    Want to add that rules are consistent, they are transported fully to acceptance. Proble just two are inective. In development they are active, of course.
    Activate after transport not an option. They must be transported as active, all 4.
    Appreciate any thoughts, thanks in advance,
    Pavel

    Hi ,
    My friend , kindly follow the steps
    Step1
    Analyze the transfer rules in development , check for any start routines if any , and also field routines , and also some Tables which are associated with the start routines.
    Step2
    In case if you find those , first transport those and collect it in a separate request and transport it
    Step3
    later collect a transfer rule request and go with Over write option ( please tell your BASIS guys )
    Hopefully your issue will be solved
    santosh

Maybe you are looking for

  • Automatic creation of PR

    Hello, I created material requirement under activity and saved the project. If I correctly understand the logic the PR should be automatically created. Where can I see PR? Thanks

  • How to get the value of h:selectOneMenu in the javascript

    Hi, I want to get the value of <h:selectOneMenu> value in the javascript.... i have tried doing this but it returns null. can anyone plz suggest me a soln for this issue. My codes: JSF codes are: <a4j:form> <h:messages/> <h:panelGrid columns="2" id="

  • Songs from shared library not available

    I have a base computer (XP) with Itunes set up. I manage my own library and have multiple directories. Everything shows up and runs fine on that computer. However I have a laptop that I use to feed an Airport Express on my stereo. When I load the sha

  • How to execute a loop for every 15 minutes

    how to execute a loop for every 15 minutes or 30 minutes constantly...

  • 2LIS_06_INV - Dump when loading data

    Hi all! I'm having a problem when I try to load data with IS 2LIS_06_INV. The infopackage starts in background but it seems to be very slow. Suddently the error appears: Short dump in the Warehouse Diagnosis The data update was not finished. A short