Differences in Loading data

Hi Experts
I'm loading my cube (0FIGL_C10) for the first time, and I'm having differences in number of records loaded
RSA3 - DS 0FI_GL_10 - 63393 records
In the DSO 0FIGL_O10 - 47226 records transfered, 46920 records added
In the cubo 0FIGL_C10 - 32164 record transferred and added.
The PSA was "clean" before I started.
Can someone help find the reason for this difference
Many Thanks
Joana

Hi all,
So, these are the loadings I have (init)
RSA3 (DS 0FI_GL_10) - 63393 records
PSA u2013 47226 records
In the DSO 0FIGL_O10 - 47226 records transfered, 46920 records added
In the cubo 0FIGL_C10 - 32164 record transferred and added.
So, there is a difference between  RSA3 (R3) and PSA, difference in records transferred and data added in DSO and difference between data from DSO to cube.
Iu2019ve checked my infopackage, its transfer rules and update rules, and I donu2019t seem to have a filter. I do have a routine for one of the fields in the transfer rules u2013 transfer routine: FAGL_FISCPER3. How can I check (transaction) what this routine does? Can it be the reason Why I have less data in PSA?
Also, Iu2019ve checked the DTP, and Delta Intit is extracting from Active table (without archive). Also, transformation rule doesnu2019t seem to have filter. Also, in Transformation Rules I donu2019t see any routine.
Lastly, how can I check if error handling is used while loading the data, and exactly what does error handling does?
Many thanks
Joana

Similar Messages

  • Any diff. in loading data from (SD, MM , PP ) and from (SCM, CRM)

    Guyz-
      Can some one tell me, whether there will be any difference between loading data in BW from modules like SD-MM-PP and loading data from SCM,CRM.
      Any source of material/docs for loading data from SCM and CRM.
    Thanks in advance

    Hi Punzu,
    Check these:
    http://help.sap.com/bp_biv235/BI_EN/html/bw.htm
    CRM Business Content:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/af/ed833b2ab3ae0ee10000000a11402f/frameset.htm
    extract data from bw to crm, using APD-analyis process designer
    http://help.sap.com/saphelp_nw2004s/helpdata/en/6d/40a2bb63ac744a80eb288830e01f7c/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/49/7e960481916448b20134d471d36a6b/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a5/9b1b40fcdd8f5ce10000000a155106/frameset.htm
    Also check this:
    Re: CRM to BW loads
    Bye
    Dinesh

  • SQL Loader: handling difference datatypes in data file and table column

    Hi,
    I am not sure if my question is valid but I am having this doubt.
    I am trying to load data from my data file into a table with just a single column of FLOAT datatype using SQL Loader. But very few insertions take place, leaving a large number of record rejected for the same reason-
    Record 7: Rejected - Error on table T1, column MSISDN.
    ORA-01722: invalid number
    The data in my datafile goes like this: (with a single space before every field)
       233207332711<EOFD><EORD>    233208660745<EOFD><EORD>    233200767380<EOFD><EORD>
    Here I want to know if there is any way to type cast the data read from the data file to suit my table column's datatype.
    How do I handle this? I want to load all the data from my datafile into my table.

    Pl continue the discussion in your original post - Pls help: SQL Loader loads only one record

  • How to load data from PSA to CUBE & DSO at a time using DTP in BI 7 ?

    HI all,
    I am new to BI 7 . How to load the data at same time to DSO & INFO CUBE using DTP.
    Please provide me steps to load & plz specify which update mode I have to use ( FULL OR DELTA ) which one is best.
    Plz Suggest me.
    Thanks & Regards,
    Kiran m.
    Message was edited by:
            kiran manyam

    Below are the basic steps which we follow in any BI 2004S system:
    1)Create datasource. Here u can set/check the Soucre System fields.
    2)Create Transformation for that datasource. (no more update rules/transfer rules)
    2.1) While creating transformation for DS it will ask you for data target name, so just assign where u want to update ur data.
    DataSource -> Transformation -> Data Target
    Now if you want to load data into data target from Source System Datasource:
    1) Create infopackage for that data source. If you are creating infopackage for new datasources, it will only allow you update upto PSA, all other options u can see as disabled.
    2)Now Create DTP (Data Transfer Process) for that data source.
    3) NOw schdule the Infopackage, once the data is loaded to PSA, you can execute your DTP which will load data to data target.
    If you are loading data from one one data target to other, no need to use PSA, you can directly execute DTP in that case.
    Data Source -> Transformation (IP/DTP) -> Data Target1 -> DTP ->Data Target 2
    Use the below link for detailed example:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/fc61e12d-0a01-0010-2883-e2fc63ef729b
    Infosources are no more mandatory with BI 7.0, below is the link to scenarios where we use infosources:
    http://help.sap.com/saphelp_nw04s/helpdata/en/44/0243dd8ae1603ae10000000a1553f6/content.htm
    Full or delta depends on your requirement...
    chk the below thread to know better
    difference between the various loads
    hope it helps
    Message was edited by:
            sriram viswanathan

  • Loading Data Error while using SQL Loader

    Hi All,
    I am facing another issue while loading the data from text file to oracle db.
    I have a table in which data is loaded from multiple files. What i want the when i load the data i want to load the filename as well in the table in front of the record. the script which works fine when i load data in windows OS but i am getting error in Unix OS. My sql loader script is as follows.
    source $HOME/. .bash_profile
    export LOGFILE=/NSN/rawfiles/scripts/PAYMOBILE_LOAD/load.log
    ORACLE_ACCESS=cdr/cdr123_awcc@$ORACLE_SID
    FILES=`ls /NSN/rawfiles/bkp/PAYMOBILE/JAN2013/*.txt`;
    for file in ${FILES[@]}
    do
    filename=`expr substr "$file" 43 50`
    echo $filename
    sqlldr $ORACLE_ACCESS control=/NSN/rawfiles/scripts/PAYMOBILE/CAT.ctl log=$LOGFILE data=/NSN/rawfiles/bkp/PAYMOBILE/JAN2013/$filename skip=0 direct=true
    cd
    mv /NSN/rawfiles/bkp/PAYMOBILE/JAN2013/$filename /NSN/backup/PAYMOBILE/JAN2013/
    done
    Control File for the same which i run on unix is :
    Load data
    INFILE "AR_101_1011_01-01-2013-01-32.txt"
    Append
    into table CDR.PAY_MOBILE_012013
    fields terminated by "|" optionally enclosed by " "
    trailing nullcols
    VERSION, TICKETTYPE, GMT_TIME Date 'YYYY-MM-DD HH24:MI:SS' , LOCAL_TIME Date 'YYYY-MM-DD HH24:MI:SS', TRANSACID, EXTERNAL_TRANSACTION_ID, MEDIUM, ALIASCATEGORY, SERVICE, OPERATION, ACTORID,
    ALIASNAME, SENDERACTORID, SENDERALIASNAME, RECIPIENTACTORID, RECIPIENTALIASNAME, THIRDACTORID, THIRDALIASNAME, ERRORHRN, CLASS, SNE,
    MASTERSNE, VOUCHERCATEGORYID, VOUCHERSCENARIOID, EXPIRYDATE Date 'YYYY-MM-DD HH24:MI:SS', UNITVALUEID, CREDIT, VAT, IERROR, OPERSTATE, OPERERROR, CREATION_DATE Date 'YYYY-MM-DD HH24:MI:SS',
    LAST_UPDATE Date 'YYYY-MM-DD HH24:MI:SS', BRANDID, CREDIT_PERIOD, CREDIT_EXPIRY_DATE Date 'YYYY-MM-DD HH24:MI:SS', SENDER_ACCOUNT, SENDER_TRANSAC, SENDER_ACCOUNT_TYPE, RECIPIENT_ACCOUNT,
    RECIPIENT_TRANSAC, RECIPIENT_ACCOUNT_TYPE, RECIPIENT_MEDIUM, TIMESTAMP Date 'YYYY-MM-DD HH24:MI:SS', SENDERBILLINGTYPE, RECIPIENTBILLINGTYPE
    Control file which works fine in windows is as follows:
    Load data
         Append
         into table CDR.PAY_MOBILE_012013
         fields terminated by "|" optionally enclosed by " "
         trailing nullcols
    VERSION, TICKETTYPE, GMT_TIME Date 'YYYY-MM-DD HH24:MI:SS' , LOCAL_TIME Date 'YYYY-MM-DD HH24:MI:SS', TRANSACID, EXTERNAL_TRANSACTION_ID, MEDIUM, ALIASCATEGORY, SERVICE, OPERATION, ACTORID,
    ALIASNAME, SENDERACTORID, SENDERALIASNAME, RECIPIENTACTORID, RECIPIENTALIASNAME, THIRDACTORID, THIRDALIASNAME, ERRORHRN, CLASS, SNE,
    MASTERSNE, VOUCHERCATEGORYID, VOUCHERSCENARIOID, EXPIRYDATE Date 'YYYY-MM-DD HH24:MI:SS', UNITVALUEID, CREDIT, VAT, IERROR, OPERSTATE, OPERERROR, CREATION_DATE Date 'YYYY-MM-DD HH24:MI:SS',
    LAST_UPDATE Date 'YYYY-MM-DD HH24:MI:SS', BRANDID, CREDIT_PERIOD, CREDIT_EXPIRY_DATE Date 'YYYY-MM-DD HH24:MI:SS', SENDER_ACCOUNT, SENDER_TRANSAC, SENDER_ACCOUNT_TYPE, RECIPIENT_ACCOUNT,
    RECIPIENT_TRANSAC, RECIPIENT_ACCOUNT_TYPE, RECIPIENT_MEDIUM, TIMESTAMP Date 'YYYY-MM-DD HH24:MI:SS', SENDERBILLINGTYPE, RECIPIENTBILLINGTYPE, FILENAME CONSTANT "AR_101_1011_01-12-2012-23-32.txt"
    and the sql loader script which works fine in windows is as follows:
    cd K:\paymobilefiles\DEC2012\1
    for %%f in (*.txt) do (K:\paymobilefiles\DEC2012\1\LOAD\REPTEXT K:\paymobilefiles\DEC2012\1\LOAD\TEST.ctl "%%f">K:\paymobilefiles\DEC2012\1\LOAD\MYMOBILE.ctl
    sqlldr userid=cdr/cdr123_awcc@tsiindia control=K:\paymobilefiles\DEC2012\1\LOAD\MYMOBILE.ctl rows=50000 bindsize=20000000 readsize=20000000 data=%%f log=K:\paymobilefiles\DEC2012\1\LOAD\MYMOBILE.log
    move %%f K:\paymobilefiles\DEC2012\backup\1
    when using windows based scripts i am getting filename in the filename column but when running the above mentioned scripts i am not able to get the filenames in the filename column.
    Can anyone help over the same please

    HI,
    There is Difference in Control files , no INFILE & FILENAME CONSTANT values
    Load data
    Append
    into table CDR.PAY_MOBILE_012013
    fields terminated by "|" optionally enclosed by " "
    trailing nullcols
    VERSION, TICKETTYPE, GMT_TIME Date 'YYYY-MM-DD HH24:MI:SS' , LOCAL_TIME Date 'YYYY-MM-DD HH24:MI:SS', TRANSACID, EXTERNAL_TRANSACTION_ID, MEDIUM, ALIASCATEGORY, SERVICE, OPERATION, ACTORID,
    ALIASNAME, SENDERACTORID, SENDERALIASNAME, RECIPIENTACTORID, RECIPIENTALIASNAME, THIRDACTORID, THIRDALIASNAME, ERRORHRN, CLASS, SNE,
    MASTERSNE, VOUCHERCATEGORYID, VOUCHERSCENARIOID, EXPIRYDATE Date 'YYYY-MM-DD HH24:MI:SS', UNITVALUEID, CREDIT, VAT, IERROR, OPERSTATE, OPERERROR, CREATION_DATE Date 'YYYY-MM-DD HH24:MI:SS',
    LAST_UPDATE Date 'YYYY-MM-DD HH24:MI:SS', BRANDID, CREDIT_PERIOD, CREDIT_EXPIRY_DATE Date 'YYYY-MM-DD HH24:MI:SS', SENDER_ACCOUNT, SENDER_TRANSAC, SENDER_ACCOUNT_TYPE, RECIPIENT_ACCOUNT,
    RECIPIENT_TRANSAC, RECIPIENT_ACCOUNT_TYPE, RECIPIENT_MEDIUM, TIMESTAMP Date 'YYYY-MM-DD HH24:MI:SS', SENDERBILLINGTYPE, RECIPIENTBILLINGTYPE, FILENAME CONSTANT "AR_101_1011_01-12-2012-23-32.txt"
    )Thanks,
    Ajay More
    http://moreajays.blogspot.com

  • 0FI_AR_4 extractor loaded data doesn't match ECC

    Hi all.
    I load data through 0FI_AR_4 into 0FIAR_O03 DSO and 0FIAR_C03 by several FULL loads (closed fiscal periods) and Initial Delta. When I check amounts in BI and ECC using fbl5n I get these figures:
    2 542 230 491,77 in BI
    2 542 229 491,77 in ECC
    As you can see data almost the same except the fact what in BI it is 1000 more.
    I got more amount differences by Dunning Level.
    I have no idea why. Any ideas?

    If you did the history loads then a init no data txf when the users where still posting data then yes you will get balance differences at a dunnign level
    This is because the concept of closed fiscal periods as I explained in another of your posts has absolutely no concept within AR (yes you can close periods for NEW Postings) - when you dunn a customer you will dunn outstanding requestys in a prior period - thus the full loads didnt pick this up
    Of course you could have thought all this through and arranged downtime when you did you history loads and then tht init
    Normally for a AR4 take on after productive start you do a init no data txf - then history repair loads not the other ay around - because the change documents for prioe periods will never come through

  • Re: BI Load Data

    Hi Guys,
    Is ther anyother way to get data into BI other than table maintenance view.
    Currently the user enters data in table maintenance view in ECC and then we load data into BI.
    Apart from this anyother way to do it?
    Regards,
    Anand

    Thanks a lot.
    Gr8 i got more options.
    One final question, Is it possible to develop the table maintenace view in BW and make the user do the entry in BW.
    Create a datasource in BW and pick the data from BW table and load it to BW targets.
    Whats the difference in creating the view in ECC and BI.
    Which one is recommended?
    Regards,
    Anand.
    Edited by: araj123 on Aug 29, 2010 6:02 AM

  • Loaded data amount into cube and data monitor amount

    Hi,
    when I load data into the cube the inserted data amount in the administrator section shows 650000 data sets. The monitor of that request shows a lot of data packages. When I sum the data packages, the sum is about 700000 data sets.
    Where is the difference coming from?
    Thanks!

    Hi ,
       If it is a full load to the cube , all the records are updated in it since in a cube data can be overwritten.
       If it is a delta load and u want to see why the difference occurs between the records transferred and added in cube ,
       u can go to the manage tab in dso , go to the contents tab ,there click change log button at the below , check the number of entries in that table , the number of entries are the added records in cube since only these records are the new records other records with the same key are already present in the cube.

  • Data missing while loading data for 2lis_06_inv

    Hi,
    We are loading data  in data-source 2LIS_06_inv from R3 system. While checking data, it was found that there is data difference between RSA7 and PSA level of data-source.
    Ex: I am getting 498 data-records in RSA7 for 2lis_06_inv , but I am getting 495 data-records at PSA level of data-source in BW level.
    That means 3 records are missing. Also run-time exceed error is showing but data is loaded successfully in system.
    Could you please help ?
    Thanks in advance
    Devesh Varshney

    Hi Suchitra,
    I have checked data-source:
    1) There is no selection is given in init selection.
    2) Last changed is done on 10 jan
    3) no user exit is return for data-source
    How can we check issue with function module which is used in data-source since it is standard data-source.
    Please help.
    Thanks in advance
    Devesh Babu

  • Change "Loading Data" font in Search function

    Hello RH fans,
    (Using RH7) Can I change the font of the "Loading Data..."
    message that comes up when I initiate a Search?
    Thanks

    So...
    I backed up my phone on two pc's. I did soft/hard boot and fiddled with wi-fi and data settings but nothing else worked.
    What DID work however was... Simply clearing space... O_o o_O
    I didn't record capacity because I believed it was unrelated, and I know for a fact I wasnt at Full capacity as I do video blogs and must always have space to reocrd... I also do not use iCloud for that reason.
    But so far, the only difference I have seen, and the only reoslution to the issue was clearing space by deleting photos and video... O_o
    Maybe the local cache or something can't allow for data pulls if there's not enough room?
    Or possibly the iTunes Gods just smiled on me today, and the tiny tiny evil Loading Wheel Minions were banished.
    Steak for everyone!

  • Error while loading data from cube

    while ia m trying to load into the infocube i am unable to load data into the infocube. it is getting an error as raise_exception in the short dump analysis.  how to solve the problem if u know give me clear clarification.

    Hi,
    Can you check what is the difference in the PSA Data in the previous load and the latest load.
    May be by that way you can find what is wrong in any fields if any chance. It may be the case that it would be giving you that error because of some data mismatch in the fields. And in the Short Dump analyse it completely there would be definitely something which will be evident of the error.
    It may also very well be a data base table space issue as well.
    Hope this helps,
    Pradip Parmar

  • Quetsion about loading data from transactional infocube

    Hi,
    We have 4 transaction infocubes where the users data will be saved from their layouts and we have one more transaction infocube(A) where all these 4 transactionl data will saved to onecube say(A)
    We also load from A- to other basic cube(B).
    My questions are when
    1.I load from All these 4 trnsactional cube to A - Do I need to say transactional can be planned not loading allowed.
    2.When I load from A to b(basic cuvbe do I need to say - Planning cannot be allowed only laoding)
    Let me know
    Thanks

    If you want to load data from planning cubes to further data target using update rules or transformation, their requests need to be green (yellow request would not load further). In this case the target transactional cube should be in loading mode. If you do not want to do these things, you can look at using a copy planning function (but remember that planning function takes more time than BW loading - this difference would be really noticeable if the data volume is large).
    There are many threads on this topic - if you search, you can get more info.

  • Difference between Load - of - program & Initialization ?

    Hi Friends,
    What is the "Difference between Load - of - program & Initialization "
    Cheers
    R.Kripa.

    The corresponding event is triggered in an internal session immediately after a program with type 1, M, F, or S is loaded. The corresponding processing block is processed once per program and internal session.
    The processing block LOAD-OF-PROGRAM has approximately the same function in an ABAP program with type 1, M, F, or S as the constructor method of a class in ABAP Objects.
    Programs wiht type 1, M, F, or S can be loaded into an internal session in two ways:
    Program calls
    Whenever you call a program using SUBMIT or a transaction code, a new internal session is opened. The LOAD-OF-PROGRAM event is therefore called in each program call.
    External procedure calls
    The first time you call an external procedure (subroutine or function module), the main program of the procedure that you called is loaded into the internal session of the calling program. The eventLOAD-OF-PROGRAM is triggered and the corresponding processing block is executed before the procedure that you called. However, subsequent calls from the same calling program to a procedure in the same subroutine pool or function group do not trigger the LOAD-OF-PROGRAM event.
    so it's before the program is loaded in the memory for execution.
    Initialization:
    (For executable programs of type 1), the associated event is executed before the selection screen is displayed.
    The parameters (PARAMETERS) and selection criteria (SELECT-OPTIONS) defined in the program already contain default values (if specified). You can assign different values here and also change the database-specific selections.
    Example
    Define the last day of the previous month as the key date:
    PARAMETERS QUAL_DAY TYPE D DEFAULT SY-DATUM.
    INITIALIZATION.
      QUAL_DAY+6(2) = '01'.
      QUAL_DAY      = QUAL_DAY - 1.
    Here, the default value of QUAL_DAY is the current date, e.g. 05.04.88 (QUAL_DAY = '19880405'). Two subseqent statements set the date first to the beginning of the month, e.g. 01.04.88 (QUAL_DAY = '19880401') and then, by subtracting one day, to the last day of the previous month, e.g. 31.03.88 (QUAL_DAY = '19880331').
    so load-of-program before program is loaded in the main memory is excuted and initialization is done before selection screen of the program is displayed..
    reward points if it helps
    regds
    gunjan

  • Receiveing "Unable to load data from Sync Services" message following iOS 5 Upgrade on iPhone 4 w/ Windows Vista, iTunes 10.5.1.  How do I repair?

    I upgraded my phone to iOS 5 yesterday.  Lost several apps which I restored through my Purchased list in the iStore.  Now when I try to sync the phone using iTunes, I receive an error message advising iTunes is unable to load data from Sync Services, and to disconnect and try again later.  Have tried again later...no difference.  After I acknowledge the error, iTunes continues to say it is Syncing the phone, but it continues to idle.
    I have an iPhone 4.  I am running iTunes 10.5.1.42 on a Windows Vista system.
    What do I need to do to clear this up?

    http://support.apple.com/kb/TS2690

  • Loading data into TimesTen

    Hi,
    We are looking into options that we have to load data into TimesTen. The data would be in data files.
    We are looking at three options -- Custom jdbc program, Custom PL/SQL procedure or ttBulkCp.
    Which would be a better option in terms of performance ? If we consider a data size of 100 million records, which one would perform better ?
    Does anybody have any performance benchmarks for any of the same ?
    Thanks and Regards,
    Pritom

    ttBulkCp is usually pretty fast (especially in direct mode). However, it is a generc program so it does have to parse each input line. Depending on the im0plementation and file format, custom code might have to do less parsing and so might be a little faster. However, Java/JDBC is significantly slower thsan C/ODBC so YMMV. Custom C/ODBC code would likely be somewhat faster than ttBulkCp but whether the difference is worth the effort is hard to say. Custom PL/SQL is unlikely to be faster than direct mode ttBulkCp but I have never compared them.
    I don't personally know of any benchmark numbers that compares these three methods (or any subset of them).
    Note that as long as the loading mechanism is reasonably efficient then the hardware spec and TimesTen configuration will also be very important in obtaining optimal load performance.
    Chris

Maybe you are looking for

  • How can I get rollover text to show pictures?

    The original flash has a publish setting to Flash Player 5, and I have to have the publish setting set to Flash Player 8 (actionscript 2). The original flash works with the Flash Player 5 setting however when I change it the rollover text to picture

  • OEM is not getting started after changing the Server name

    Hello DBAs Recently I installed Oracle database 10g on my a windows machine. It was working fine. Integrated OEM was also working fine. But now I have changed the machine name. Now Oracle Database has come up after updating the listener.ora & tnsname

  • Error launching Premier Pro after update

    I am unable to launch PP.  When it lauches I get an immediate error: Premiere Pro has encountered an error. [/sirreel64/releases/2013.02/shared/adobe/MediaCore/ASL/Foundation/Make/Mac/../../Src/Dire ctoryRegistry.cpp-283] On brand new imac-27, latest

  • No picture on iTunes for my Podcast

    I made a podcast using garage band and then published it to my .mac account using iWeb. It has recently been accepted by iTunes and posted. I have pictures showing in my podcast when you go to the site but it did not transfer over to the iTunes site.

  • How best to transfer data from MacPro to new iPad? very new to using Apple products

    How do I transfer or sync data from my MacPro to a new iPadAir? Do I use iTunes/Airdrop/instashare ??? Fairly new to using Apple products.