How to do reconcilization of ODS data and CUBE data

Hi All,
How to do reconciliation of ODS data and CUBE data,I know how to do reconciliation of R/3  data and BW data.
Regards.
hari

Hi,
create a multicube based on your ODS and cube, identify commen characteristics and perform the key figure selections; create then a query showing both information from the cube and ODS with perhaps some formula showing differences between key figures.
hope this helps...
Olivier.

Similar Messages

  • How to change column names in dimension and cube views?

    whenever AWM creates a view on a dimension or cube, it creates columns for long and short description with full name
    forexanmpel, it creates like
    CREATE OR REPLACE VIEW OLAPTRAIN.CHANNEL_VIEW
    AS
    SELECT
    "DIM_KEY",
    "LEVEL_NAME",
    "MEMBER_TYPE",
    "DIM_ORDER",
    "LONG_DESCRIPTION",
    "SHORT_DESCRIPTION",
    "ALL_CHANNELS_LONG_DESCRI",
    "ALL_CHANNELS_SHORT_DESCR",
    "CLASS_LONG_DESCRIPTION",
    "CLASS_SHORT_DESCRIPTION",
    "CHANNEL_LONG_DESCRIPTION",
    "CHANNEL_SHORT_DESCRIPTIO",
    "CHANNEL_TYPE",
    "CHANNEL_CHANNEL_TYPE",
    "CHANNEL_ALL_CHANNELS_ID",
    "CHANNEL_CLASS_ID",
    "CHANNEL_CHANNEL_ID"
    FROM TABLE(CUBE_TABLE('"OLAPTRAIN"."CHANNEL"') );
    what is the way to customize the column name? for example for class level, how can we say insterad of long_description and short_description, use LONG and SHORT simply?
    i also see the size of long and short descriptions are set to varchar2(60) and varchar2(20), is there a way to change that for each level in AWM?
    Thanks

    Hi there,
    I don't think there is a way to control the column names within the OLAP product itself, but if this is something you really want to do, have you tried creating your own views?
    As you can see, the syntax is pretty simple
    Thanks,
    Stuart Bunby
    OLAP Blog: http://oracleOLAP.blogspot.com
    OLAP Wiki: http://wiki.oracle.com/page/Oracle+OLAP+Option
    OLAP on OTN: http://www.oracle.com/technology/products/bi/olap/index.html
    DW on OTN : http://www.oracle.com/technology/products/bi/db/11g/index.html

  • How to change it if some data is wrong in ODS and infocube

    hi all:
        could you please tell me how to change it if some data is wrong in ODS and infocube ?
    Best regards

    You receive information on all requests that have run in the InfoCube and you can delete requests if required.
    http://help.sap.com/saphelp_nw04s/helpdata/en/d4/aa6437469e4f0ae10000009b38f8cf/frameset.htm
    Request ID you can find in administration of the InfoCube. If a cubes is compressed you can't delete requestwise...
    Regards
    Andreas

  • How Bex Flag effects SID, MAster Data and ODS data tables?

    Hi every one,
    I do understand how the Bex flag setting works in relation to reporting like y we set the flag or y we dont set the flag when we do reporting or not on ODS.. My question here is, i dont understand, how the SID tables or the master data tables or ODS tables get effected with this flag. Can some one explain me what kind of changes in the tables takes place with this flag setting and how it is used in the reporting.. How this thing is different with respect to Cube reporting process.. I do understand that ODS doesnt have Dimensions.. so i am just looking for conceptual clarification and any forum links related to clarifying this process at table level which i am looking for... ANy help will be highly appreciated in SDN way..
    regards,
    kishore

    A typical dimension table looks like this
    DIMID
    SID_0COUNTRY
    SID_0EMPLGROUP
    SID_0EMPLOYEE
    SID_0EMPLSGROUP
    SID_0JOB
    SID_0PAYRL_AREA
    SID_0HRPOSITION
    SID_ZWKCONT
    SID_0COUNTRY_ID
    The Fact tables contain a Dim ID (excpet for line item dims), which is used to join to the Dim table.  The Dim table contains SIDs for the chars values in that Dim.  The Dim table is then joined to the SID table, which is then joined to the attribute table.
    For ODS - the /BI0/S***** SID tables have indexes on both the SID and the chars actual value.  ODS queries will join to the SID table using the actual char value.
    Here's the SQL for a typical <b>ODS</b> query that you can see how the ODS table joins to the SID tables:
    <b>SELECT</b>
       T_01 . "SID" "S____206" , T_02 . "SID" "S____066" ,                          
       SUM( T_00 . "FM_AMOUNT2" ) "0FM_AMOUNT2" , COUNT(*) "1ROWCOUNT"              
    <b>FROM</b>
       "/BIC/AZPU_O5200" T_00 , "/BI0/SCURRENCY" T_01 , "/BI0/SVENDOR" T_02 ,       
       "/BI0/SBUS_AREA" T_03 , "/BI0/SCMMT_ITEM" T_04 , "/BI0/SCOSTCENTER" T_05 ,   
       "/BI0/SFISCPER3" T_06 , "/BI0/SFISCYEAR" T_07 , "/BI0/XFUND" T_08 ,          
       "/BI0/SGL_ACCOUNT" T_09 , "/BIC/SZCI_AVCON" T_10                             
    <b>WHERE</b>
    ( T_00 . "CURKEY_TC" = T_01 . "CURRENCY" ) AND
    ( T_00 . "CREDITOR" = T_02 . "VENDOR" ) AND
    ( T_00 . "BUS_AREA" = T_03 . "BUS_AREA" ) AND
    ( T_00 . "CMMT_ITEM" = T_04 . "CMMT_ITEM" AND
      T_00 . "FM_AREA" = T_04 . "FM_AREA" ) AND
    ( T_00 . "COSTCENTER" = T_05 . "COSTCENTER" AND
      T_00 . "CO_AREA" = T_05 . "CO_AREA" ) AND
    ( T_00 . "FISCPER3" = T_06 . "FISCPER3" ) AND
    ( T_00 . "FISCYEAR" = T_07 . "FISCYEAR" AND
      T_00 . "FISCVARNT" = T_07 . "FISCVARNT" ) AND
    ( T_00 . "FUND" = T_08 . "FUND" AND
      T_00 . "FM_AREA" = T_08 . "FM_AREA" ) AND
    ( T_00 . "GL_ACCOUNT" = T_09 . "GL_ACCOUNT" AND
      T_00 . "CHRT_ACCTS" = T_09 . "CHRT_ACCTS" ) AND
    ( T_00 . "/BIC/ZCI_AVCON" = T_10 . "/BIC/ZCI_AVCON" ) AND
      T_08 . "OBJVERS" = 'A' AND
      T_03 . "SID" = 12 AND
      T_00 . "CHRT_ACCTS" = 'COPA' AND
      T_04 . "SID" = 1260 AND
      T_00 . "COMP_CODE" = 'COPA' AND
      T_05 . "SID" = 25093 AND
      T_00 . "CO_AREA" = 'COPA' AND
      T_00 . "FISCPER" <= '2005013' AND
      T_06 . "SID" <= 13 AND
      T_00 . "FISCVARNT" = 'V6' AND
      T_07 . "SID" = 100002005 AND
    ( T_00 . "FM_ACTDETL" = '010' OR T_00 . "FM_ACTDETL" = '110' OR
      T_00 . "FM_ACTDETL" = '160' OR T_00 . "FM_ACTDETL" = '170' ) AND
      T_00 . "FM_AREA" = 'COPA' AND
      T_00 . "FM_STATS" = ' ' AND
      T_00 . "FM_VTYPE" = '70' AND
      T_00 . "FUND" = '1026105000' AND
      T_08 . "S__0FUNDTYPE" = 1 AND
      T_09 . "SID" = 13695 AND
      T_10 . "SID" = 8
    <b>GROUP BY</b>
    T_01 . "SID" ,
    T_02. "SID"#

  • How  to  Match / Lookup  in  ODS and Cube

    Hi  Friends
    I need to Match a field " Status "  in   an "ODS"  and  " Infocube "  ,
    If this match found ( from ODS and Infocube )  I need to Create a New Cube with the matched data.
    Pls give me some idea how to do this Match /lookup to get  Matched Status field Values to New Cube
    Thanks
    Sree

    Hi Sree,
    You can do this.
    Create a transformation from ODS to new cube.
    In the transformation write a start routine.
    Here read data from the cube by using function module "RSDRI_INFOCUBE_READ" into internal table.
    You can pass the filter and fields which you want to read from the cube to this function module.
    By looping on the soruce package and the internal table which contains the cube data, check if the data is matching or not. If a record is not matching then delete it from the source package.
    This way, after the start routine source_package will have only those records where status is matching.if status is not matching for any record , then 0 records will be loaded to new cube.
    THis will surely help.
    - JAimin

  • How to update DSO data in Data targets (ODS data into Data Targets)

    Hi,
    In 3.5 version we have a option <b>Update ODS data in Data Targets</b>
    to Transfer Data From ODS to Info cube.
    In 7.0 How to transfer DataStore Object data to Info Cube, I can't find
    Update DSO data in Data Target option.
    can any body Help me to solve this problem.
    Thanks
    prasanna

    Hi prassna,
    0RECORDMODE are auto generated infoobjects which are requried to be mapped if you are going for a delta update  from your DSO otherwise you can proceed further without mapping the 0RECORDMODE and neglect the system generated warning
    check this for the <b>Creation of data targets</b>
    •     In left panel select info provider
    •     Select created info area and right click to create ODS( Data store object ) or Cube.
    •     Specify name fro the ODS or cube and click create
    •     From the template window select the required characteristics and key figures and drag and drop it into the DATA FIELD and KEY FIELDS
    •     Click Activate.
    •     Right click on ODS or Cube and select create transformation.
    •     In source of transformation , select object type( data  source) and specify its name and source system Note: Source system will be a temporary folder or package into which data is getting stored
    •     Activate created transformation
    •     Create Data transfer process (DTP) by right clicking the master data attributes
    •     In extraction tab specify extraction mode ( full)
    •     In update tab specify error handling ( request green)
    •     Activate DTP and in execute tab click execute button to load data in data targets.
    cheers
    Sunil

  • TS3999 How do I get my Macbook Pro and iphone 5 to sync calendars in 2014? It worked fine in 2013, but the 2014 dates are blank on my Macbook.

    How do I get my Macbook Pro and iphone 5 to sync calendars in 2014? It worked fine in 2013, but the 2014 dates are blank on my Macbook. The all icloud is checked on my phone and the enable icloud account and push are selected on the Macbook.
    Thanks

    Do the events from your iPhone calendar appear on icloud.com?  If not, go to Settings>Mail,Contacts,Calendars>Default Calendar (in the Calendars section) and make sure you have selected an iCloud calendar as your default.  If you haven't, make this change, then add a new event on your iPhone calendar and see if appears on icloud.com and your Mac now.

  • I have forgotten my password for icloud, have an invalid email address and do not know my security answers. How can I transfer all my data from my old iphone to the new one?

    I have forgotten my password for icloud, have an invalid email address and do not know my security answers. How can I transfer all my data from my old iphone to the new one?

    In this case you won't be able to do that?

  • How do you remove back up data from the memory storage? my storage data states that i have over 80gb of data used for back ups and i dont know why as i use a external hard drive as a time machine .now my 250gb flash storage is nearly full

    how do you remove back up data from the memory storage? my storage data states that i have over 80gb of data used for back ups and i dont know why as i use a external hard drive as a time machine .now my 250gb flash storage is nearly full.. HELP!

    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.

  • How do I add to my data plan on the iPad once I have run out of time and no longer have an internet connection?

    How do I add to my data plan on the iPad once I have run out  and no longer have an internet connection? I am working out of the country and got a message that I was running low,followed immediatly by a you're out message.

    Should you not be asking your carrier? They are the people supplying your data plan.

  • Hi...i bought the new iphone 4 and would like to ask how can i transfer all my data from my old iphone to the new one?  If I will do "synchronization" through itunes with the old phone and the plug in the new one will that be the case?

    Hi...i bought the new iphone 4 and would like to ask how can i transfer all my data from my old iphone to the new one?  If I will do "synchronization" through itunes with the old phone and the plug in the new one will that be the case?

    Follow the instructions in this article to transfer your info: iPhone: Transferring information from your current iPhone to a new iPhone

  • I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date is created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date  created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    The Finder reports File information. The date and time of the photo are in the Photo's Exif metadata. The Finder has no awareness of this. All photos apps on any system do.
    Regards
    TD

  • How can i update data of DSO and Cube using ABAP??

    Hello Experts
    I have a requrement in which i need to update/ delete data from DSO and cube based on certain keys using ABAP.
    Please let me know how can i modify contets of cube or active table of DSO.
    Thanks
    Sudeep

    Hi
    I have requirement such that i need to update certain key figures in DSO after certain time.
    for eg. say record with key a is loaded to DSO and currospoding key figure was loaded with value 10
    after few days because of certain parameters changing in system i need to modify key figure value.
    currently i am doing same using 1 self transformation i.e. by loading same data again in same DSO.
    Amount of data is very huge and causing performance issues in system.
    now A is not key but i need to modify record for few combinations which apperar multiple times in DSO.
    Same DSO data is loaded into Cube regularly.
    I may need to update data after gap of few weeks as well.
    This design will be used as template and needto keep whole logic generic.
    So wring Function module can make it generic.
    Thanks
    Sudeep

  • How do you edit out the date and time stamp from a photo

    How do you edit out the date and time stamp from a photo

    You can blur it out with retouch
    The built-in "Retouch" brush in "Edit" mode should suffice, if the background is mostly uniform, and if you set the size of the brush to slightly wider than the bar width of the letters. For example, in this picture I removed the year from the date (in the lower right corner) by using the "retouch" brush and following the contours of the letters. (the screen shot is from iPhoto '11, but iPhoto 9 should give similar results).
    Regards
    Léonie

  • How can i view my iphone contents on PC. How can i view my backup data in itunes. How can i see my SMS and contact on PC

    Hi,
    Can anybody help me out on the follwoing questions
    how can i view my iphone contents on PC. How can i view my backup data in itunes. How can i see my SMS and contact on PC

    The data isn't actually stored in iTunes.  iTunes is like a card catalog that allows you to access information from the various places that it's stored on the computer.  SMS and contact info will be viewable in whatever program you sync contact information.  The backup actually keeps the files, but doesn't make them viewable, I'm pretty sure.  You can only see the info you've actually synced.

Maybe you are looking for

  • 9.2.2 install/move problem with G4 QS 2002

    I have a G4 QS 2002 with two 500GB HD's. One is partitioned into six unequal partitions, Leopard, Tiger, Panther, System 8.6 - 9.2.2, Yellow Dog, and Scratch. The Leopard has a bootable System 9.2.2 and as soon I have 10.5 in my hands AND my problem

  • EPM SharedServices 11.1.1.1 with Weblogic 9.2

    Guys, I am getting following error in sharedservices 11.1.1.1 deployment. ####<Dec 30, 2008 3:08:23 AM EST> <Error> <HTTP> <ushbk1ml0a66447> <SharedServices9> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kern

  • Unknown user on network

    Hi all, I have WRT54G router and last week I noticed an unknown user in the DHCP table.  The network is using WPA w/TKIP.  I have changed the passphrase and today I see the same user is in the table again.  The username in the table was ET00200027C2F

  • Using adjustment layers to only one layer

    I know how to use an adjustment layer - it goes directly over the layer I'm editing and I'm able to edit the colour (such as hue etc). The trouble is, anything below that adjustment layer then gets affected. Is there any way I am able to make this ad

  • Hr report category custom with from, to date and current period

    I have created custom hr report category of type 'Payroll report category'. But it showing from and to date like it showing in 'master data infotype'. How to add that functionality to 'Payroll report category' custom report. thank you