Init load problem

Hi gurus,
When i was scheduling int load to ODS from the Generic data source, i was getting only 5,26,890 records outof 5,36,250 records.
but when i did full upload, i was getting all the records to bw.
i have taken the 'Calender day' as the delta option.
Can any one clarify me.
thanks in advance.

Hi,
What flow it concerns?
Check what date have you taken for the 'Calender day'? it is 'Last changed on'?
What is your Safety Interval Upper Limit in Delta setting?
And normally, Delta 'Calender day' means the loading will take only the records created or modified at the day before the present day if your saefty interval is 1, for example.
Tell me if it helps.
Regards,
Juan

Similar Messages

  • Application Class Loader problem calling virtual function

    Hello everyone
    I have run in to very strange behavior of JVM
    I have created a class loader which allows my to load classes from
    jar file, regardless that URLClassLoader supplies this functionality.
    I am using this class loader to load some classes and call their virtual functions. The class diagram looks like that:
    public interface I {
       public void init();
    public class AAA implements
       public void init(){
    public class BBB extends AAA{
       public void init(){
          //here comes implementation
    }Interface I and class AAA are loaded with System Class loader and Class BBB is loaded using my class loader from jar file.
    ByteStreamClassLoader  classLoader =  new ByteStreamClassLoader  ();
    Class cl = classLoader. loadClass(�com.product.BBB�,true);
    I myInterface = cl.newInstance();
    myInterface.init();The problem is that from some unknown reason java class AAA.init() instead of BBB.init().
    Can somebody help me what am I doing wrong?
    Class Loader code attached below
      public class ByteStreamClassLoader   extends ClassLoader {
        protected HashMap m_cache = new HashMap();
        public void clearCashe() {
          m_cache = new HashMap();
        private String definePackage(String className) {
          StringBuilder strB = new StringBuilder();
          //Class name must be removed from the URI in order to define a package
          String[] packageArray = className.split("\\.");
          for (int i = 0; i < packageArray.length - 1; i++) {
            strB.append(packageArray).append(".");
    String packageName = strB.toString();
    packageName = packageName.substring(0, packageName.length() - 1);
    if (getPackage(packageName) == null) {
    m_logger.log(Level.FINEST, "Defining package '" + packageName + "'");
    definePackage(packageName, null, null, null, null, null, null, null);
    return packageName;
    public synchronized Class loadClass(String name, boolean resolve) throws
    ClassNotFoundException {
    name = name.replaceAll("/", ".").replaceAll(".class", "");
    //Try to locate the Class in cashe
    Class c = (Class) m_cache.get(name);
    //Try to locate the Class in the System Class Loader
    if (c == null) {
    try {
    c = ClassLoader.getSystemClassLoader().loadClass(name);
    catch (Exception ex) {}
    else {
    m_logger.log(Level.FINEST, "Class '" + name + "' found in cache");
    //Load the class from byte array
    if (c == null) {
    String resourceName = name;
    if (!resourceName.endsWith(".class")) {
    resourceName = resourceName.concat(".class");
    //Retrieve class byte representation
    if (resourceName.indexOf(".") != -1) {
    resourceName =
    resourceName.replaceAll("\\.", "/").replaceAll("/class", ".class");
    //Use the ByteStreamClassLoader to load the class from byte array
    byte[] classByteArray = null;
    try {
    classByteArray = getResourceBytes(resourceName);
    catch (IOException ex1) {
    throw new ClassNotFoundException(
    "Could not load class data." + ex1.getMessage());
    m_logger.log(
    Level.FINEST, "Loading class '" +
    name + "' Byte Length: " + classByteArray.length);
    String p = definePackage(name);
    c = defineClass(
    name,
    classByteArray,
    0,
    classByteArray.length,
    ByteStreamClassLoader.class.getProtectionDomain());
    m_cache.put(name, c);
    if (resolve) {
    resolveClass(c);
    return c;

    Hello everyone
    I have run in to very strange behavior of JVM
    I have created a class loader which allows my to load classes from
    jar file, regardless that URLClassLoader supplies this functionality.
    I am using this class loader to load some classes and call their virtual functions. The class diagram looks like that:
    public interface I {
       public void init();
    public class AAA implements
       public void init(){
    public class BBB extends AAA{
       public void init(){
          //here comes implementation
    }Interface I and class AAA are loaded with System Class loader and Class BBB is loaded using my class loader from jar file.
    ByteStreamClassLoader  classLoader =  new ByteStreamClassLoader  ();
    Class cl = classLoader. loadClass(�com.product.BBB�,true);
    I myInterface = cl.newInstance();
    myInterface.init();The problem is that from some unknown reason java class AAA.init() instead of BBB.init().
    Can somebody help me what am I doing wrong?
    Class Loader code attached below
      public class ByteStreamClassLoader   extends ClassLoader {
        protected HashMap m_cache = new HashMap();
        public void clearCashe() {
          m_cache = new HashMap();
        private String definePackage(String className) {
          StringBuilder strB = new StringBuilder();
          //Class name must be removed from the URI in order to define a package
          String[] packageArray = className.split("\\.");
          for (int i = 0; i < packageArray.length - 1; i++) {
            strB.append(packageArray).append(".");
    String packageName = strB.toString();
    packageName = packageName.substring(0, packageName.length() - 1);
    if (getPackage(packageName) == null) {
    m_logger.log(Level.FINEST, "Defining package '" + packageName + "'");
    definePackage(packageName, null, null, null, null, null, null, null);
    return packageName;
    public synchronized Class loadClass(String name, boolean resolve) throws
    ClassNotFoundException {
    name = name.replaceAll("/", ".").replaceAll(".class", "");
    //Try to locate the Class in cashe
    Class c = (Class) m_cache.get(name);
    //Try to locate the Class in the System Class Loader
    if (c == null) {
    try {
    c = ClassLoader.getSystemClassLoader().loadClass(name);
    catch (Exception ex) {}
    else {
    m_logger.log(Level.FINEST, "Class '" + name + "' found in cache");
    //Load the class from byte array
    if (c == null) {
    String resourceName = name;
    if (!resourceName.endsWith(".class")) {
    resourceName = resourceName.concat(".class");
    //Retrieve class byte representation
    if (resourceName.indexOf(".") != -1) {
    resourceName =
    resourceName.replaceAll("\\.", "/").replaceAll("/class", ".class");
    //Use the ByteStreamClassLoader to load the class from byte array
    byte[] classByteArray = null;
    try {
    classByteArray = getResourceBytes(resourceName);
    catch (IOException ex1) {
    throw new ClassNotFoundException(
    "Could not load class data." + ex1.getMessage());
    m_logger.log(
    Level.FINEST, "Loading class '" +
    name + "' Byte Length: " + classByteArray.length);
    String p = definePackage(name);
    c = defineClass(
    name,
    classByteArray,
    0,
    classByteArray.length,
    ByteStreamClassLoader.class.getProtectionDomain());
    m_cache.put(name, c);
    if (resolve) {
    resolveClass(c);
    return c;

  • Data Loading Problem R/3 To BI

    Hello Gurus.
    I am trying to load the data from R/3 To BI (Init Load) in SM37 Job is showing still "Scheduled" Morning 9.00 AM i start this Job
    Job name Like   ARFC: 8FF254142AB74A63F58003C4 but i have small doubt hear i loaded same data last week all the Job Names are like    BIDTPR_20431_1
    I am loading DTP Up to PSA
    Please explain the problem either R/3 Side or BI Side
    Thanks
    Prakash

    Hi Prakash,
    When you load data from R/3 through any infopackage the Job name is automatically taken starting with "BI". This means this a BI job running in R/3 for the ease of the understanding the processes for ourselves.
    But when the Job which has been in scheduled status, which you have started, it has taken this as per the R/3 job as you have released the Job from R/3.
    This might be the reasons where your Job description or name is different.
    It's not the issue or problem with system. If you are getting a wrong data or not loading the data then you have to check the Job log for that particular job.
    Or the another chance of the wrong job name, may be, you have released another job which is not related to BI.
    Please check whether you have released the Right Job pertaining to BI.
    Regards,
    Ravi Kanth

  • Whats the Actual use of the Setup table apart from the Full/Init  loads

    Hi  guru's
      could u explain  whats the Actual use of the Setup table apart from the Full/Init  loads  in Lo Extraction

    Hello Guru,
    The Setup table is used mainly for storing the Historical data whereas the new and changed records will be maintained in the Update table.
    By storing the Historical data in the setup table you don't need to disturb the Application table anymore.
    Please go through the following blogs
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    /people/sap.user72/blog/2004/12/23/logistic-cockpit-delta-mechanism--episode-two-v3-update-when-some-problems-can-occur
    /people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
    /people/sap.user72/blog/2005/04/19/logistic-cockpit-a-new-deal-overshadowed-by-the-old-fashioned-lis
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    /people/vikash.agrawal/blog/2006/12/18/one-stop-shop-for-all-your-lo-cockpit-needs
    https://websmp201.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002719062002E
    Hope it helps
    Thanks,
    Chandran

  • Init load very long runtime 0CRM_COMPLAINTS SALES Analyses

    Hi,
    We have launched a init load (infopackage 0CRM_COMPLAINTS)(BI 7.0) which extract 180201 claims from our CRM 2007 system.
    The first packet (data package size 5000 records) have been extracted in 5minutes, but when it begins the 10 packets, it last 20min and 30 between each of them.
    This treatment lasted 12 hours (we don't see optimization point at the moment)
    The first thought is to decrease packet size but I don't find specific note about this problem, or any lead.
    Any help will be grateful.
    Chris

    HI
    you check the SAP Note 692195 - Question 1 ( shown below )
    Question 1 : The Extraction from CRM to BW takes a very long time. What can be done? (Performance Issues)
    Suggestion 1: Please implement notes  653645 (Collective note) and 639072(Parallel  Processing).
    The performance could be slow because of the wrong control parameters used for packaging.
    You can change the package size for the data extraction.
    Also note that changing the package size in the transaction SBIW would imply a change for all the extractors. Instead, you could follow the path in the bw system.
    Infopackage (scheduler)    > Menu 'Scheduler'   > 'DataS. default data transfer'   > maintain the value as 1500 or 1000(This value is variable)
    The package size depends on the Resources available at the customer side (The no of parallel processes that could be assigned = 1.5 times the no of CPU's available approx.)
    Regards,
    Sathya

  • 0MAT_Plant load problem

    Hi,
      Iam loading delta loads for LO master data through my process chain .
    But for 0mat_plant the load fails each time . The error message showing is
    Procees chain error occur
    Can any body help me out regarding this issue.
    Thanks ..

    Dear Akash,
    If you init load was successful then its not the problem of Conversion , Check the Error messages in Monitor, I suggest you to execute the same delta pacakge manually with PSA , if the load fails it gives you a detailed information in the details tab, that could help you solve the problem.
    and also check in RSA7 for R/3 Whether the 0MAT_PLANT_ATTR is available with Delta Records,
    Hope it helps.
    Thanks,
    Krish
    *Assigning points is way of sayin Thanks in SDN

  • FI_AR_4 Infosource(standard) Init Load

    Hi Gurus,
    I have an issue regarding INIT load for FI_AR_4 Infosource.It shows yellow status though R/3 has data.I got the records into BW using full upload.
    To enable DELTA upload, I Intialised the DELTA "<b>without data transfer</b>".It gives me an error that I cannot Initialise once again after FULL upload.
    Could you please help me to solve this.
    Regards,
    Venkat

    That is true with the GL if you are using the GL. Once the GL is initialized, AR and AP have to follow that, if GL is not being used, don't worry about it.
    Check you ODS status (change -> ODS...). Look at the settings and make sure the "update status automatically" is set, otherwise the system waits for you to turn it green manually.
    /smw

  • Flat-File Loading problem

    Hi Friends,
    I am struggling with flat-file loading problem. I am trying to load a .csv file into data target. I took all pre-cautions while loading data. I look into preview and simulate the data. Everything is ok, but when i schedule the data, i found 0 records in the monitor. The following is the STATUS message of the above problem:
       No data available
    Diagnosis
    The data request was a full update.
    In this case, the corresponding table in the source system does not
    contain any data.
    System response
    Info IDoc received with status 8.
    Procedure
    Check the data basis in the source system.
             Can anybody help me what is the problem and procdure to resolve it?
    Regards,
    Mahesh

    Hi Eugene,
    Thanks for the quick reply. The following screen-shot tells you the messages of detail tab;
    OVER ALL STATUS MISSING WITH MESSAGES OR WARNINGS
    REQUEST: MISSING MESSAGES
    EXTRACTION
    EVERYTHING IS OK
    DATA REQUEST RECEIVED
    NO DATA AVAILABLE DATA ELECTION ENDED.
    PROCESSING
    NO DATA
               The above message was shown in details tab. Pls guide me to locate the problem.
    Regards,
    Mahesh

  • App keeps loading problem solve

    Anyone with an app still loading problem can get rid of it by going into the app store. tap on "updates"- bottem right corner. tap on purchased where you get a list of your downloads then tap on the cloud with the arrow, enter your pin. hit ok for app over 20mb. go back into the app store and to your purchased list and wait for it to reload. once done come out of the app store and hopefully all the loading apps are gone. hope it works for you.

    I had this same problem when trying to download some training app. I could not delete or get it to upload completely either. Very frustrating. What I did was plug it into my computer, went to Itunes and searched the same app. I was able to download it here and then it starte to sync with my Iphone. You can remove the app after it finishes the download if u want. Hope this works!

  • INIT load to the 0FIAR_C03

    Hi
      I am uploading data to the cube 0FIAR_C03, I am using the standard infosource, I have uploaded data using INIT load it replies that INIT update is not possible to the cube 0FIAR_C03 but the full load is possible.
      What can I do to make it delta and INIT enabled ?

    Hi Sun,
    your datasource have to be replaced (from BW PlugIn 2001.1) by the new extractor 0FI_AP_4, that allows delta management !
    Look at OSS Note 401646 'New DataSources for Line Items from FI-GL, FI-AP..."
    Hope it helps!
    Bye,
    Roberto

  • Init Load showing in yellow state.

    Hi all,
    I am trying to do init for SRM data source to ODS object.
    The init load is showing  yellow state (0-0 records).
    There is no data available in SRM related to this data source.
    Can anyone please tell me why it is in yellow state instead of green.
    Thanks
    S VR.

    Hi S VR,
    In the monitor screen go to the Status Tab > click on the lights next to Total > Make it Red and save > the system will prompt a couple of messages, say Yes to them. Then you can Manual Update. Once all packages are done (green), then again Status tab > click onthe lights next to Total > Delete Statsu; back to request status > Save. The request should now be green.
    else
    try repair full request option it can help you..
    Hope this helps...
    Assign points if helpful...
    Regards,
    NR
    Edited by: N R Pradeep Reddy on Apr 14, 2008 6:14 AM

  • Delta load problem in process chain

    Hi,
    I have ODS givng data to another ODS. The init of this flow was done manually...Now i have created process chain in which further processing has variant as "execute infopackage" as the delta package made .. now when i check this process chain its giving me error ""Delete init. request
    REQU_49LKNGG0SE5966D3S7SQYYDQX before running
    init. again with same selection"" .. Actually this is not the Init req which i ran manually..this is the req which was run when i ran this process chain... what shld i do to add only delta IP in process chain so that i dnt ve to delete init
    Thanks
    Prashant

    hi,
    first load all the init loads from the ods to cube. then u have to create the delta infopack and include that in the chain.
    create the int info pack under the infosource 8<ods name>
    trigger that infopack, create the delta infopack under the 8<odsname> infosource , and you have include that in the PC.
    Please do changes in your process chain.
    Local chain 1 - start -> load to ods -> activation of ods ->further processing(remove the infopack in this process maintain variant).
    Lcoal chain 2 - start -> delete index ->load delta to cube -> create index -> roll up (if needed)
    Main chain -> start -> local chain 1 ->local chain2
    Ramesh

  • No selection in infopackage possible when Init-load

    Hello all,
    I have created a loading proccess from an ODS to an Infocube via delta-load. I want to restrict the data and therefore I want to use the selction tab from the infopackage menu. But this is just possible when I choose full-load. When I choose Init-load or delta-load, there is no restriction possible in the selection screen.
    Ho can I restict data when i load via delta? the release is 3.5.
    Any help would be great.
    Best Regards,
    Stefan from Munich/Germany

    Dear Stefan,
    You can not restrict an init/ delta load from an DSO, because the data loaded will correspond to the change log table of the DSO.
    What you can do is a "fake" delta. You put a "changed date" in you DSO (filled by the sy-datum in the update rule) and then do a full load from your DSO to your cube with the selection you want and changed data = today. But you will have to be careful in case of reload...
    Hope it helps,
    Rodolphe

  • How to see the init load in bi 7.0

    hello frnds,
    In bi 7.0 when v load data it show the full load and delta load option only,,so my question is, if delta load r there then definately init load also avilable,so where is that init load,,plz guys tell me where is that option,,
    2nd question is about compression in bi 3.5,,after loading data into infocube when i do compression it ll not work,,why i dont know ,,plz help me
    Thanks
    Rosy

    Hi Rosy,
    Init with data load is  Full upload + Delta Enables. Once you run this it will fetch entire records from the Source, delta will be automatically enabled and next time onwards only delta will be coming to BW.
    Before you can request a delta update, you must first initialize the delta process.Delta initialization can only be simulated for DataSources from SAP source systems if the DataSource supports this. 
    I hope the below link will be helpful,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0db2280-8242-2e10-b6a5-86a46d0feb25?QuickLink=index&overridelayout=true
    Regarding compression, please check the below link,
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c035d300-b477-2d10-0c92-f858f7f1b575?QuickLink=index&overridelayout=true
    Thanks,
    Vinod

  • Loader-Problem mit I.Explorer / FireFox ist OK

    Die Domain "http://woopi.net"
    enthält eine "site", die nur mit Flash generiert wurde.
    Teste ich diese "Site" mit Firefox, dann gibt es keine Probleme, alles OK.
    Teste ich mit dem Internet-Explorer, dann muß dieser erst lernen mit den LoaderKomponenten umzugehen,
    nach dem 2. oder 3. "rollOver" werden dann diese Elemente richtig angezeigt.
    Ziel-Beschreibung:
    beim Aufruf von "woopi.net"  wird auf dem Bildschirm die Bundesrepublik dargestellt.
    Ein Klick auf die BRD öffnet ein Navigationsfeld mit 7 Button.
    Der Klick auf den Button "Alle Banken in Deutschland" öffnet ein Navigationsfeld, in welchem bei einem RollOver
    unten links auf dem Bildschirm ein Bild angezeigt wird, in einer LoaderKomponente.
    Der InternetExplorer zeigt diese Bilder falsch an, erst nach dem 2., ev. nach dem 3. RollOver wird das Bild richtig angezeigt.
    Unten rechts auf dem Bildschirm gibt es den Zugang zu einem weiteren Navigationsfeld, "WebKatalog 2".
    Die Darstellung in diesem Navigationsfenster ist geradezu scheußlich.
    Hinweis:
    auch die Html-Seiten in denen die Flash-Seiten eingebettet sind,  wurden mit Flash-Cs4 generiert.
    Es wurden keine ProgrammErweiterungen verwendet.
    Wer kennt die Problemlösung?
    mfG, Jochen

    danke für die Information:
    "you have incomplete swf embedding code"
    Die Kompelation der html-Datei erfolgt unter Flash automatisch, ich habe leider
    "fast keine" html-Kenntnisse, kann also nur laborieren. Können Sie mir einen Hinweis geben ?
    cue.fla     "wurde kompelliert". Ergebnis:
    cue.swf
    cue.html
    Hier das, was ich vorfand:
    <body bgcolor="#e7e7e7">
    <!--Im Film verwendete URLs-->
    <a href="./cue/queue2.swf"></a>
    <a href="./cue/queue3.swf"></a>
    <a href="javascript: end("document.cue");"></a>
    <a href="http://www.basiszins.de"></a>
    <a href="http://www.onvista.de"></a>
    <!--Im Film verwendeter Text-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
    Es müßte vielleicht so aussehen:
    <body bgcolor="#e7e7e7">
    <!--Im Film verwendete URLs-->
    <a href="./cue/queue1.swf"></a>     //das Script in  cue.swf:   loadMovieNum("./cue/queue1.swf", 1);
    <a href="./cue/queue2.swf"></a>    //d.Script in queue1.swf:  on (release){loadMovieNum("./cue/queue2.swf",2);}
                                                        //d.Script in queue2.swf:   loadMovieNum("./cue/queue10.swf", 3);
    <a href="./cue/queue3.swf"></a>    //d.Script in queue1.swf:   on (release){loadMovieNum("./cue/queue3.swf",2);}
                                                       //d.Script in queue3.swf:    loadMovieNum("./cue/queue30.swf", 3);
    <a href="javascript: end("document.cue");"></a>
    <a href="http://www.basiszins.de"></a>
    <a href="http://www.onvista.de"></a>
    <!--Im Film verwendeter Text-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
    Das "Loader-Problem" zeigt sich aber schon in der "queue1.swf" Datei, welche nach _level1 geladen wird.
    Es wird hier nur Actionscript 2 eingesetzt. Bemerkenswert ist, daß sich Firefox ohne Probleme sehr stabil verhält.
    Vielleicht können Sie hiermit etwas anfangen. Wenn ein SreenShoot eine bessere Analyse ermöglicht, schiebe ich ein Bild gerne nach.
    mfG. Jochen

Maybe you are looking for

  • Traveling with my Apple TV

    i am traveling and brought my Apple TV. I did not bring the remote, assuming I could use my remote App on either my iPhone or iPad. The Apple TV hooks up fine on the TV but my remote app won't see my Apple TV. Since the app won't see the Apple TV how

  • Cisco desktop administrator error

    hi, when i access the desktop administrator by following the below mentioned proceedure i am getting the error "CDUAI1000 Error while trying to load data. Ensure that the system path inlcudes the location of the WebAdminLib.dll". find also the attach

  • Unable to read beyond end of the stream

    I am coding a Training log for a college project and I am getting this error:  An unhandled exception of type 'System.IO.EndOfStreamException' occurred in Microsoft.VisualBasic.dll Additional information: Unable to read beyond the end of the stream.

  • Whats the easiest way to get data from R/3 from XI

    Hi there I would like to know if there is a way to to access a database table in the R/3 system in a user defined function in Message Mapping? I have to map some fields where I have to get data from a table. What would be the easiest way? Thanks, Jan

  • Using Runtime to call a number of commands in one session

    Hi, I've got a windows BAT file which sets up the Windows environment variables needed to run a command line program. When using this manually I just have a shortcut which calls "cmd /k c:\blah\mybat.bat" and opens a command line windows I can use to