About data transfer/update rules setup

Hi All,
After this BW loading project, I am wondering if anyone can confirm with my issues.
--What is the difference between'initail load & full load'? Examples to use them, please.
--If i use V3 to update, can I choose weekly? some expert told me that i can change the setting in OMO1 after first time loading. I tried it and it didn't work. Why???
--If we loaded into ODS and re-loaded to Cube, should I have the same loading schedules(update rules) for ODS and Cube?? (ex: both full load and weekly)?
--The update rule in OMO1 is for transfer datasource to BW and is nothing about ODS and CUBE loading, Am I right?
--Should I have the same keys for ODS and Cube?
--How can system not replicate loading? EX: every month sales order loading.
Thank you for helping me to understanding data loading in BW.

Hi John,
Here are the answer
--What is the difference between'initail load & full load'?
Ans:-Initial load means initialization which is one time activity if you do not provide any selection criteria while initialization ( this will take your all data to BW depends on extractor you are using ) once that is successful you need to switch your load to delta when you do this only records which are changed will be fetched.
Full load means al records will be fetched and will be aggregated whether you should go for initialization or full load depends on your data requirement.
--If i use V3 to update, can I choose weekly? some expert told me that i can change the setting in OMO1 after first time loading. I tried it and it didn't work. Why???
Ans :--> I think if you are using Lo then you can change this in LBWE job control . OMO1 is if you are using LIS and you want to switch your update in LIS delta tables then the procedure is to go in LBW0 first deactivate your delta mechanism by putting your infostructure name then go to OMO1 and change your control parameter to schedule your delta mechanism on.
--If we loaded into ODS and re-loaded to Cube, should I have the same loading schedules(update rules) for ODS and Cube?? (ex: both full load and weekly)?
Ans:--> Not compulsory but good to have same schedule I mean as soon as ODS is loaded successfully start the load for cube.
--The update rule in OMO1 is for transfer datasource to BW and is nothing about ODS and CUBE loading, Am I right?
Ans -->yes you are right but let me make some correction
in OMO1  update parameters are for switching of delta tables of LIS .
--Should I have the same keys for ODS and Cube?
Ans--> Not compulsory depends on your business logic.
--How can system not replicate loading? EX: every month sales order loading.
Ans--> question not clear for me.
Hope this will help you .
Suneel

Similar Messages

  • Access master data in update rules

    Hi,
    I try to calculate a weight in my update rules. Therefore I need the product weight and the number of peaces. I try to read the product weight from master data. The problem is, that it always calculates zero as the result. Is it possible to read master data in update rules?
    If I try to calculate the weight in the transfer rules, I get the message in the monitor, that the transfer rules don't finish. Do you have an idea what to do?
    Regards,
    Gabi

    Hi Robert,
    here is my code in the update rule.
    fill the internal table "MONITOR", to make monitor entries
      DATA: l_s_errorlog TYPE RSMONITOR.
      data: temp_prod_weight type /BIC/PZL2_P_ID.
    general values
      RESULT = COMM_STRUCTURE-/BIC/ZL2_POTMW.   "weight
      UNIT = COMM_STRUCTURE-UNIT_OF_WT.
      RETURNCODE = 0.
      ABORT = 0.
    calculate weight from master data, if it is zero
      IF COMM_STRUCTURE-/BIC/ZL2_POTMW = 0
      or COMM_STRUCTURE-/BIC/ZL2_POTMW = '0'
      or COMM_STRUCTURE-/BIC/ZL2_POTMW is initial.
        select single /BIC/ZL2_NETW UNIT_OF_WT
        from /BIC/PZL2_P_ID
        into corresponding fields of temp_prod_weight
        where /BIC/ZL2_P_ID = COMM_STRUCTURE-/BIC/ZL2_P_ID
        and objvers = 'A'.
        if sy-subrc <> 0.
          l_s_errorlog-MSGTY = 'I'.
          append l_s_errorlog to MONITOR.
          RESULT = 0.
    abort, if calculation is not possible
          ABORT = 1.
        else.
          RESULT = temp_prod_weight-/BIC/ZL2_NETW
    COMM_STRUCTURE-/BIC/ZL2_POTMQ.
          UNIT = temp_prod_weight-UNIT_OF_WT.
        endif.
    ENDIF.
    convert unit
      CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
        EXPORTING
          INPUT                      = RESULT
        NO_TYPE_CHECK              = 'X'
        ROUND_SIGN                 = ' '
          UNIT_IN                    = COMM_STRUCTURE-UNIT_OF_WT
          UNIT_OUT                   = 'KG'
        IMPORTING
        ADD_CONST                  =
        DECIMALS                   =
        DENOMINATOR                =
        NUMERATOR                  =
          OUTPUT                     = RESULT
        EXCEPTIONS
          CONVERSION_NOT_FOUND       = 1
          DIVISION_BY_ZERO           = 2
          INPUT_INVALID              = 3
          OUTPUT_INVALID             = 4
          OVERFLOW                   = 5
          TYPE_INVALID               = 6
          UNITS_MISSING              = 7
          UNIT_IN_NOT_FOUND          = 8
          UNIT_OUT_NOT_FOUND         = 9
          OTHERS                     = 10
      IF SY-SUBRC <> 0.
        l_s_errorlog-MSGTY = 'I'.
        append l_s_errorlog to MONITOR.
        UNIT = COMM_STRUCTURE-UNIT_OF_WT.
        RESULT = COMM_STRUCTURE-/BIC/ZL2_POTMW.
      ELSE.
        UNIT = 'KG'.
      ENDIF.
    I'm loading via PSA, but I have problems to debug the code. If I set a break point in my code (command break-point), I can't stop at it.
    Thanks,
    Gabi

  • How to look up master data in update rule

    Hi Friends,
    I want to Fill a characteristic of an info cube using the attribute value in a master data in Update rule.
    Eg: I want to fill a field in cube 0PM_C01 that is got from Master data 0PM_ORDER. I have to do this in upate rule. Can anyone help me.
    Joe

    Eugene, Atlaj
    Your answers were very useful.
    Eugene as you said,
    I read the link you mentioned and I can use code
    like this
    DATA: mat LIKE /BI0/PMATERIAL-MATERIAL.
    SELECT SINGLE MATERIAL FROM /BI0/PMATERIAL INTO mat
    WHERE EANUPC = COMM_STRUCTURE-EANUPC AND OBJVERS = 'A'.
    IF SY-SUBRC = 0.
    RESULT = mat.
    RETURNCODE = 0.
    ELSE.
    RETURNCODE = 8.
    ENDIF.
    But for each record of comm structure the selection quer y will touch the Data base. As Atlaj said, can I fill the internal table in the start routine and look it up in the update rules. I think the performance willbe increased. Could you give me code sample or link?
    Thanks in ADV
    Joe

  • Extraction time while updating the data from update rule

    Hello Friends,
    Can you please tell me that why it is taking more time while updating the data from update rule to data target.
    I believe that it is taking 40% of total extraction time.
    Is there any specific reason for it?
    Prompt reply will be appreciated.
    Regards,

    hi,
    check if you have complex transformation in that update rules, like calculation, read from other tables, etc.
    take a look 'bw loading performance and analysis' doc
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1955ba90-0201-0010-d3aa-8b2a4ef6bbb2
    and bi performance tuning knowledge center
    Business Intelligence Performance Tuning [original link is broken]
    there e-learning for bw performance
    hope this helps.

  • Information about   Data Transfer in mySAp retrail

    Hello
    I have a quetion  I need to learn about Data Transfer  then I have a guide to Initial Data Transfer in mySAP  retrail  version 1.2  Octuber 2001.
    So, my question is: Are there another guide most recently about this topic? or  these  guide is fine  for starting.
    Thanks  for  your answers
    Danny

    Hello,
    You have posted a question that is related to system transports. Unfortunately this category is not related to these kind of questions. SAP TM deals with logistics in the real world - moving pallets, containers, loading trucks, etc.
    To learn more about SAP TM please visit [http://service.sap.com/scm-tm|http://service.sap.com/scm-tm]
    Therefore I will now move this thread to the category Software Logistics. Thank you for your understanding.
    Kind regards,
    Nico van Os.

  • ABAP objects for transfer/update rules - does this apply to include stateme

    I have a question about the new requirement for the code in the update/transfer rules to be written in ABAP Objects standards.  Does this still apply if in your update rules you using include programs?  Does this mean that when we upgrade we will have to follow the ABAP Objects standards (ie no header lines)?

    Routines will method based.
    In addition to what Chetan has sent, check this how to also.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6090a621-c170-2910-c1ab-d9203321ee19
    Ravi Thothadri

  • IN BW UCCHECK transaction for Unicode does not list Transfer/Update rules

    Hi All,
    We are going to update our BW system to install Enhancement Package 1 SP 7 on our BW 7.0 and we are going also to convert our data base to Unicode.
    We used the UCCKECK Transaction to have a list of the abap programs to be modified before the u201Cconversionu201D procedure.
    But the transaction does not list the abap code included into transfer rules, update rules and start routines.
    Have you an idea to recover them?
    And do you think the conversion procedure will abort if these kinds of routines are not adjusted or they will go in error at runtime?
    Do you have experienced this problem?
    Thanks a lot.
    Antonella

    Hi Nils, sorry for delay in replyu2026
    Unfortunately we started to develop our routines in BW2.0 and checking some of them we receive the error u201CIn Unicode programs, the "-" character cannot appear in names, as it does here in the name "W-DATE" u201Du2026
    And further more in subsequent BW releases the same error is only a u201Cwarningu201D into a NON Unicode system. 
    So I think we should check and correct all our routines before the Unicode conversion.
    My best regards, Antonella

  • R/3 extraction - Missing Messages:No data from Update rules

    Hi SAP Gurus,
                  I'm into the process of R/3 extraction into BW for 0PUR_O01 . The Datasource we r using is 2LIS_02_ITM. The Sceduled infopackage still runs for over 12 hrs. We are getting the typical Missing Messages error. Its in the yellow status with one out of 3 data packets showing Everythin OK.While the other two are "Warning Received".
    PSA and Transfer rules have all the records . But Update rules show 11339 --> 0 records. Please suggest what has to be done to move forward. We have checked and there is no dump in ST22. Also its shows 11339 to 0 in start routine of Update rules. I m giving out all possible hints so that it might help giving in a wide variety of suggestions . Please do suggest a way forward.

    Hi,
    Try if this works for you.
    In this case you can execute the LUWs to get the missing data into BW. Here is the procedure.
    1. Go to manage data target  Monitor OR directly go to Monitor for request that failed
    2. Select: Environment  Transact RFC  In the Data Warehouse
    3. Enter the selection criteria Date and User TCODE and execute
    4. Select EDIT  Execute LUW
    This will restart the loading process only for the data package that failed because of space issues or some server problems thereby avoiding the necessity of reloading the entire request.
    Hope this info helps you.
    Regards,
    Yogesh

  • How-to get transformations from transfer/update rules

    Hi all,
    we did an upgrade to BI 7.0 frm BW 3.5, how shall we get the new things like transformations,DTP for tha already existing cubes/ODS. is there any procedure to convert transfer and update rules to transformation.
    Thanks all,
    Regards

    Migration - Yu may wish to read below steps
    Transformation Rules
    automatic mapping without the use of an Infosource.
    steps are listed below.
    On the InfoSource Tab (Note- Ensure DataSource and Infosource have not been migrated)
    1. Right Click > Additional Functions > Create Transfer Rules
    2. Activate Transfer Rules
    3. Right Click > Additional Functions > Transformation erzeugen
    On the DataSource Tab
    4. Create Transformation (Map to DSO, should map automatically)
    5. Migrate DataSource
    6. Create InfoPackage
    7. Create DTP
    Assessing Migration Scenario's
    Transformation Rules
    Strategy toward new and 3.x datasource / infosource
    Re: Few questions on BC activation..
    Replicate NEW/3.x datasource - Methodology
    Replicate NEW/3.x datasource - Change back to 3.x datasource Methodology
    Re: Datasource Identification
    Hope it Helps
    Chetan
    @CP..

  • Loading time-dependent master data using update rules/transformations

    Hi
    I am trying to load time-dependent master data to an infoobject. It seems that I get an error message on duplicate records if I use a transformation or update rule. Does this only work with direct update ?

    In the DTP you have the option to ignore duplicate records....
    Just select that and then load data...

  • PSA Data in Update Rules

    I want to get at some data in the PSA table from within an update rule.
    Can anybody tell me how I can access the current request that is being loaded?
    The communication structure does not contain the request and it is possible that the data I want was in more than one request.

    hi Stuart,
    it's good you gave us the 'whole picture', now we understand it's dealing with crm complaints data, my suggestion is fill the header status for item data in crm side (see my reply in your previous posting). there i gave you an overview logic, will need go to system for the details - field name of header status data etc, i guess the table is crmd_orderadm_h for header and using header guid (guid) should get it done - meanwhile perhaps somebody with crm system will help.
    hi Stuart, i was late again, after post the above message, i saw your last reply. still i think better you do it in crm side, i believe later your user will ask for new information that not exist in business content, by that time you have to enhance datasource.
    Message was edited by: A.H.P

  • Help about data transfer

    Hi all,
    Can any one briefly explain the data migration in oracle apps. How the data is transfer from interface table to base table. Also Why we do not insert data directly into base table.

    First look if there is a communication port aboard these scoops (usually GPIB). If not, are they sold as an option. Get/buy the com. board for your computer flatform.
    Then try looking for the instrument driver in the language you are using (LabVIEW, ...).
    If not available, you should get hold of the manual describing the commands to talk to the scoop and develop your own by creating your own driver.
    Finally: Not always is the hardware you have available an optimal solution for automating your T&M application. Only details on your application can clarify this...

  • Basic thing to know about data transfer programs

    Hi Friends
    I have one basic question need to be clarified:
    I have one file contains 100 records, I have to upload this file to sap.
    My question is :
    suppose 80th record is the error record, what will happen if I am doing this using session metod?
    suppose 80th record is the error record, what will happen if I am doing this using call transaction metod?
    suppose 80th record is the error record, what will happen if I am doing this using session metod but in background mode?
    Please clarify me with all possible scenorios.
    <b>Points are assured for useful answers.</b>
    Regards,
    Sree

    Hi:
    Qn No: 1) No data will be saved .
    2)            The error record wont be saved. In your case all the records except 80th record will be saved using call transaction ( Foreground) .
    3)  No data will be saved .

  • About data transfer and net use

    how to download from pc to iphone of apple store

    What do you want to copy to your phone ? If you want to sync apps, music etc then connect the phone to your computer and select it on the left-hand sidebar of your computer's iTunes (you can enable the sidebar via control-S on a PC) and then use the tabs on the right-hand side of the iTunes screen to select which of your iTunes content to sync to it and sync/apply those selections.
    Syncing apps : http://support.apple.com/kb/PH12315
    Syncing media : http://support.apple.com/kb/HT1351
    Syncing photos : http://support.apple.com/kb/HT4236
    If you want to copy documents/files to your apps on your phone then how you do so depends upon what the app supports e.g. file sharing, transfer via your wifi network, email, Dropbox etc
    If you haven't synced your phone to that computer before then you may also find this page for syncing to a new computer useful : https://discussions.apple.com/docs/DOC-3141

  • Why data in PSA doesn't  change when update rule routine is modified?

    Hello guys,
    why data in PSA is not changed after I modifiied the update rule routine. I created a infopackage which is only to PSA, but it shows me any change. If I changed this infopackage to the one which is assigned to "PSA firstly, and then to Infoobject", then I saw the changes in infoobject, but in PSA, still nothing changed.
    I can't figure out the reason. Any hint is welcome!
    Thanks in advance.
    Regards,
    Liying

    HI..
    1) PSA data is like of source system data
    2)Update rules are how you update your keyfigures to Data Tragets.
    Since you have put upto PSA that is the first data staging in BW so there wont be any change of the data even if you write routines at update rules.
    Hope it is clear
    Reg
    Ram

Maybe you are looking for

  • Quality issues? Dirt behind the glass

    Hi there, I have just returned yet another 27" Cinema Display to Amazon because of quality control issues at Apple it seems: There was clearly visible *dirt behind the glass screen* (i. e. sitting directly on the LCD panel itself) - this seems to be

  • Champion of Ubuntu?

    Hope this is a good forum to ask this question Who is the South African guy who has championed the cause of Ubuntu? Another question please: Some people have linux and or ubuntu OS in addition in their macs. What´s the point or advantage? Thanks Gord

  • ITunes will not start, already tried to uninstall and reinstall

    I cannot get iTunes to launch. I click on iTunes and it wont come up at all. It doesn't even appear in the task manager. I have tried uninstalling it and reinstalling and it does the same thing. I've looked at things in the apple troubleshooting to f

  • SQL Join in PHP

    Dear all I have two tables in my database like the following Table A Code Narr 1 Code1 2 Code2 3 Code3 4 Code4 Table B Code Data 2 Data1 3 Data2 By joining I want to display the matching records. But I want to display all the Codes from Table A. How

  • Contents Tab Missing

    In Robohelp 8 HTML - I am creating a CHM file but only the search tab comes up.  Contents tab is missing.  Window options are correct because if I use a different TOC, contents tab is there.  I have tried recreatng the TOC but same problem.  All othe