Doubt in loading 0ic_c03

hi,
i am loading an inventory cube from data source 2lis_03_bf
for initial load i filled the set up tables the last date in set up tables is 01.01.2007
correct me i am wrong
for init load up to 01.01.2007 i will set 'no marker update'
for deltas from 02.01.2007 i will not set 'no marker update' correct?
is this init load referring in loading of opening balance to the cube or it is loaded differently
please suggest me,i am confused
Message was edited by:
        venkat s

hi,
when ur doing setup tables u need give furture date
and run init to date selection 01.01.2007 and set 'no marker update
for delta take selections as 02.01.2007 and set 'marker update
thanks

Similar Messages

  • Doubt in loading Driver

    I am connecting to Oracle Database.
    I have written the following code to connect to a database
    1 Class.forName("oracle.jdbc.driver.OracleDriver");
    2 con = DriverManager.getConnection
    ("jdbc:oracle:thin:URL","USERNAME","PASSWORD");
    3 st = con.createStatement();
    Is it possible to connect to data base by Commenting the First line(Class.forName) and Provide the OracleDriver class in the class path.
    here i have tried that but i am getting No Suitable Driver.
    If possible please give me the syntax, how i can do this.

    If you are asking the driver directly for a connection you don't need to register the driver with the DriverManager.
    Which when beeing asked for a connection iterates over all registered drivers and asks each driver through acceptsUrl() if it can provide a connection for the given URL. AFAIK the DriverManager then calls connect() on the driver instance, just like I did in my example

  • Inventory - Historical load from BF to 0IC_C03 changes current stock qty

    Loaded 0IC_C03 from 2LIS_03_BX to create opening balance.
    Compressed with "Marker Update" (Unchecked). Ran a report to display opening stock (0TOTALSTOCK).
    Report matches perfectly with MMBE in source system.
    Next, I loaded historical movements from 2LIS_03_BF. Compressed without "Marker Update" (Checked).
    Ran the stock overview report. The stock balances are now changed. Historical movements
    should not change current stock positions.
    Steps leading upto this issue (ECC/BI 7.0):
    1. Loaded data from BX setup to PSA and then to cube using a DTP with the "Initial Non-cumm for Non-cumm" option. Compressed with "Marker Update".
    2. Init BF without "Data Transfer" to create my delta pointer and then loaded BF setup table data to the PSA using "Full Repair request". Created 1 request per year based on posting date year.
    3. Then pushed data from PSA to cube using "Delta" DTP. Compressed all historical requests WITHOUT "Marker Update" (checkbox ticked).
    Any suggestions ? I have some sort of a workaround for now - the BX records in the cube do not contain values for the Material Document Number (MBLNR). I can put a charateristic filter in the query to display only records that have a null value for Mat Doc Number. In that case the report seems to be correct as I am eliminating the records from BF.
    Regards,
    Ash

    HI,
    Are you trying to install something which does not have their corresponding Infoarea, Infoproviders etc..? This might be the reason for those errors.
    Also You should use Collect objects automatically.
    Regards,
    Rahul S

  • DS to BW load balancing

    Dear all,
    I have a doubt regarding load balancing in PRD. Our team is loading data through DS 12.2.2.3 to SAP BW Master / transaction Infosources.
    SAP BW system has five Application Servers / instances to balance the load. BW target data store is configured to connect to the Central Instance of SAP BW.
    Since we are connected to the Central instance / application server of BW system from DS, will BW system be able to balance the load across multiple instances?
    Since BW Server has multiple instances to balance the load, is there any way we can utilise these BW multiple instances from Data Services?
    Can you share your thoughts on this? Appreciate your responses.
    Regards,
    Suneer.

    Hi Suneer,
    There are several ways how DS and BW can interact, so it might depend on what scenario you are using.
    I can think of the following scenario's:
    1. A DS job is executed from admin console and loads into a BW target datasource.
    This should use any available server, according to load balancing settings. It is not possible to force the process to use a specific server.
    2. A process chain starts an infopackage, which in turn starts a DS job
    BW will use the server chosen at the time of scheduling, if everything is configured correctly and scheduled correctly it will use any avaialble server conform load balancing settings. You can set this to run on a specific server (but I would only recommend this in very special circumstances).
    3. DS triggers a process chain
    Again, BW will use the settings on the process chain.
    4. BW runs an execution command, which starts a DS job
    Well, this is not a relevant scenario as it does not update anything on BW - unless the execution command then runs a job which loads data into BW, which is described in scenario 1.
    I hope this makes sense. Let me know if you have any other scenario's or concerns.
    Can I just ask why you are concerned about this load balancing? I have not have load balancing problems with DS/BW but I have had plenty of problems around concurrent use of the RFC connection between DS/BW. 'Multithreading' was not supported until 12.2.3.2 and you mentioned you run on 12.2.2.3, so potentially this is a problem for you.
    Jan.

  • Loading data from infopackage via application server

    Hi Gurus,
    I have a requirement where i need to load data present in the internal table to a CSV file in the application server (AL11) via open data set, and then read the file from the aplication server, via infopackage ( routine ) then load it to the PSA.
    Now i have created a custom program to load data to AL11 application server and i have used the below code.
    DATA : BEGIN OF XX,
      NODE_ID     TYPE N LENGTH 8,
      INFOOBJECT  TYPE C LENGTH 30,
      NODENAME  TYPE C LENGTH 60,
      PARENT_ID  TYPE N LENGTH 8,
      END OF XX.
    DATA : I_TAB LIKE STANDARD TABLE OF XX.
    DATA: FILE_NAME TYPE RLGRAP-FILENAME.
    FILE_NAME = './SIMMA2.CSV'.
    OPEN DATASET FILE_NAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    XX-NODE_ID = '5'.
    XX-INFOOBJECT = 'ZEMP_H'.
    XX-NODENAME = '5'.
    XX-PARENT_ID  = '1'.
    APPEND XX TO I_TAB.
    XX-NODE_ID = '6'.
    XX-INFOOBJECT = 'ZEMP_H'.
    XX-NODENAME = '6'.
    XX-PARENT_ID  = '1'.
    APPEND XX TO I_TAB.
    LOOP AT I_TAB INTO XX.
      TRANSFER XX TO FILE_NAME.
    ENDLOOP.
    now i can see the data in the application server AL11.
    Then in my infopackage i have the following code,
    form compute_flat_file_filename
         using p_infopackage type rslogdpid
      changing p_filename    like rsldpsel-filename
               p_subrc       like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
      P_FILENAME = './SIMMA2.CSV'.
      DATA : BEGIN OF XX,
      NODE_ID     TYPE N LENGTH 8,
    INFOOBJECT  TYPE C LENGTH 30,
      NODENAME  TYPE C LENGTH 60,
      PARENT_ID  TYPE N LENGTH 8,
      END OF XX.
      DATA : I_TAB LIKE STANDARD TABLE OF XX.
      OPEN DATASET P_FILENAME FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF SY-SUBRC = 0.
        DO.
          READ DATASET P_FILENAME INTO XX.
          IF SY-SUBRC <> 0.
            EXIT.
          ELSE.
            APPEND XX TO I_TAB.
          ENDIF.
        ENDDO.
      ENDIF.
    CLOSE DATASET P_FILENAME.
      P_SUBRC = 0.
    i have the following doubt,
    while loading the data from internal table to application server, do i need to add any "data seperator" character and "escape sign" character?
    Also in the infopackage level i will select the "file type" as "CSV file", what characters do i need to give in the "data seperator" and "escape sign" boxes?  Please provide if there is any clear tutorial for the same and can we use process chain to load data for infopackage using file from application server and this is a 3.x datasource where we are loading hierarchy via flat file in the application server.
    Edited by: Raghavendraprasad.N on Sep 6, 2011 4:24 PM

    Hi,
    Correct me if my understanding is wrong.. I think u are trying to load data to the initial ODS and from that ODS the data is going to t2 targets thru PSA(Cube and ODS)....
    I think u are working on 3.x version right now.. make sure the following process in ur PC.
    Start process
    Load to Initia ODS
    Activation of the Initial ODS
    Further Update thru the PSA(which will update both ODS and Cube).
    make sure that u have proper Update rules and Init for both the targets from the Lower ODS and then load the data.
    Thanks

  • Loading issue

    Hi gurus,
    I have some doubts on loading of data from R/3 datasource.I made some changes for ODS structure by adding field which is in already in DataSource.
    I tried to load the data from Infopackage with Initialization option up to PSA.It picks only 4records.We loaded before with init it took all the data from R/3.Later we did loaded deltas also for Test.
    Now I kick the InfoPackage with initialization option(not delta Infopak) it bring only 4 records.I thought it bring all the records form R3 dataSource.
    If I want all the records what do I need to do?I don't think I need to run setuptables in R/3 side to bring all the data to BW becuase we ran it already.
    2.If business users changes docs delta should pick them after fulll load/intialization load.
    Please share your ideas ans I will rewarded for your inputs.
    Thanks,
    vamsi.

    Hi,
    First you need to find out the number of records in datasource from R3 side.
       for this go to transaction RSA3 and see the number of records.
    If the number of records are more than 4 then go to the PSA and delete the previous requests in PSA
    and ODs.Also delete the previous init from the infopackage.
    Now do the init delta.

  • Loading xml data into the datagrid

    Hi all,
    I'm trying to learn Flex. I have a small doubt in loading the datagrid from the xml response (from php script)
    mxml code:
    <mx:DataGrid id="dataGrid" x="69" y="250">
    <mx:columns>
    <mx:DataGridColumn headerText="Name" dataField="name"/>
    <mx:DataGridColumn headerText="Age" dataField="age"/>
    <mx:DataGridColumn headerText="Location" dataField="location"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:HTTPService resultFormat="e4x" result="getDataCallback(event)" id="getDataHttp" url="http://localhost/test/getData.php" method="POST"></mx:HTTPService>
    <mx:Button click="getDataHttp.send();" label="Load Data" x="379" y="268"></mx:Button>
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.rpc.events.ResultEvent;
    import mx.controls.Alert;
    [Bindable] public var mydata:XMLList = new XMLList();
    function getDataCallback(event:ResultEvent):void{
    trace(event.result.data.info);
    mydata = event.result.data.info;
    dataGrid.dataProvider = mydata;
    ]]>
    </mx:Script>
    PHP Script
    <?php
    $xml = "<?xml version=\"1.0\" ?><data>";
    $xml .= "<info><name>name1</name><age>26</age><location>location1</location></info>";
    $xml .= "<info><name>name2</name><age>27</age><location>location2</location></info>";
    $xml .= "</data>";
    header("content-type:text/xml");
    echo $xml;
    But the data is not being loaded into the datagrid. Please anyone help me out ..
    Thanks in advance
    -Pavan

    ... and I doubt you are using the word "doubt" in its correct sense.

  • 0IC_C03 material stock and movement

    Hi Experts,
    I posted this issue before.  I did not get any response.  My co-worker and I opened several messages with SAP, we could not get any meaningful answer either.  Now, I'd like to give it one more try.  I truely believe that with all the experts we have out there, there must be one can give some advises on this issue.
    I loaded 0IC_C03 cube strictly according "How to handle inventory ..." regarding compression and marker update.  This is a QA system.  So, I don't have delta.
    I created a query to display stock quantity and value for unrestricted stock (stock type A) and quality inspection stock (stock type B).  I restricted stock type in key figures.  The openning stocks look perfectly fine.  However, when I try to view historical data, it is really messy.  Some materials show negative values before the material was created.  Some materials show 0 quantity with a positive values.  Of course, some materials show perfect correct figures.
    I am using 7.0 datasource and transformation. 
    Is there anybody out there has any experience with this kind of situation?
    Any response will be greatly appreciated!

    Hi,
    Refer the below link.
    http://help.sap.com/saphelp_nw04/helpdata/EN/5b/8dc73cee4fb55be10000000a114084/content.htm
    Hope it helps you.
    Regards,
    Ravindra.

  • 0IC_C03  -- not updating 0MATERIAL

    Hi there,
    just followed instructions on loading 0IC_C03 from:
    - blog "Loading to the Inventory Cube 0IC_C03" [/people/akshay.chonkar2/blog/2010/05/19/loading-to-the-inventory-cube-0icc03|/people/akshay.chonkar2/blog/2010/05/19/loading-to-the-inventory-cube-0icc03]
    - also, quite useful info from http://help.sap.com/bp_bw370/BBLibrary/documentation/B82_BB_ConfigGuide_EN_DE.doc
    but have a confusion as my reports are not showing 0MATERIAL (!!)
    Requests have been compressed as instructions proposed.
    Looked for related posts but without luck...
    any insight on this pls ?
    thank you in advance !

    Hi Srinivas,
    thks for the feedback.
    Ok. I got MATERIAL in cube.
    But after digging a bit more found out 2LIS_02_BX was not bringing 0MATERIAL (!!!) therefore all were "# not assigned"
    As this was a brand new set up for 0IC_C03 that thought all was 100% fine specially considering was just activating BI_CONT
    Nevertheless, found out (by comparing with other system) 2LIS_03_BX (in DEV) was missing the mapping for 0MATERIAL.
    Data Source was bringing the field but Transformation had not mapping for 0MATERIAL.
    Solution was just to map such field to InfoObject
    thks,
    Alex

  • 0IC_C03 - Reason behind taking ECC down

    Hello all.
    I am in the process of loading 0IC_C03 following steps recommended on How to: Inventory Management - Data Loading and also on SAP Help Material Movements].
    Though there is a step I am wondering why is it needed:
    - Shut down ECC
    think in other How to´s is also mentioned that step and added something like "depends on how size of data in ECC".
    - Is it really needed to shut down ECC when loading 0IC_C03 ?
    - Is it also necessary for LO cubes/ extractions ?
    - Is because of users not posting ?
    Thank you,
    Alex
    Edited by: Alex M on Aug 9, 2010 8:00 AM

    hi suman,
    thanks for the response, and i did repair full load, but still there are some issues that some MATERIAL DOCUMENTS are not coming to BW.
    what is the best practice to extract all the material documents into BW.
    though the deltas are happening to BW system daily, in SMQ1 it shows.
    BW1002LIS_03_BF          CEP900                                   3
    MCEX03                             NONE                                   103
    regards
    venuscm
    Edited by: venu WAD on Sep 16, 2011 7:13 AM

  • Hierarchy creation and loading

    Hi all,
    I am new to BW and trying to learn Hierarchies.
    for example i have created
    ZREGION
    ZZONE1,ZZONE2,ZZONE3
    ZAREA1
    So i want all these infoobjects to be under an order like zregion will be having zzone1, zzone2, zzone3 and again these will have zzarea1 under zzone1
    so i have created all these infoobjects in BW then how to get them in the order i have mentioned above.
    and also when doing reporting can i just drag characterstic ZRegion into the rows and all the structure should be displayed.
    plz letme know how to create the heirarchy.
    and also i have a doubt of loading them.
    thanks
    Prasad

    Hi Aby,
    i have went into change mode of my infoobject zregions
    and in that i have selected with hierarchies
    so do i first need to add my other infoobjects in the external heirarchies and then go to the maintain heirarchies tab and make changes...like when i get into the maintain hierarchies tab without adding the external hierarchies i am not able to insert any characterstics, after inserting the infoobjects in the external hierarchies then only i could use the push button insert characterstic as a node....
    what is the difference of external hierarchies and this maintain heirarchies.
    thanks
    Prasad
    Message was edited by: Prasad M

  • RE : Data load

    Hi All ,
    We have lot of fragmentation in the Essbase cube , so we are thinking to export the data of all the level 0 members and delete the data completely and load it again , because its the planning application using for Planning and budgeting simentaneously maintaining Actuals data .
    As our cube size is 110gb when we export the level 0 members if it will create around 5 text files of 2 gb and my concern is while loading the data how i proceed to load ie; load each file one by one are any other option is there loading all the files at time . Because i want export if we adda a new member on dense dimension it taking 72 hrs to refresh the database . And another problem is after refreshing 24 page files automatically is pausing . Please any body could explain i am in confusion.
    Thanks In Advance.

    Hi John ,
    Actually my doubt was loading back the Exported text files one by one or all the files at once . Now i got the answer as you said select all the files .
    Thanks John

  • Load the setup table.

    hi experts,
                     i have doubt on loading the set up table.  what are the transaction codes for the filling the set up(LO) ex like sales,quality,purchase. olis7bw for sales. but it is not working in my system. other wise can any one provide the navigation steps from the sbiw also. it would be great.
    i am using BI7.0.
    Thanks in advance
    regards
    amith

    Hi,
    first remember to do that in your source system (R/3 or ECC)...
    otherwise the cusomizing path is as follows...
    SBIW
    Settings for Application-Specific DataSources
    Logistics
    Managing Extract Structures
    Initialization
    Filling in the Setup Table
    Application-Specific Setup of Statistical Data
    hope this helps...
    Olivier.

  • Load Master Data in BW

    Hi all,
    I am having one doubt while loading Master Data In BW.
    Let's say , i am loading 0Customer in BW.
    It is having Customer Attribute and Customer Text.
    Now i am having question is. Which data we have to load first? Do we need to load Attribute first and then Text or vice versa.
    Please specify the reason.
    Please suggest.
    Regards,
    Macwan James.

    Hi,
    As per my understanding,u can do it in any order since u they are going to get loaded to different tables, usually attribute is given preference over text.But master data is loaded before transaction data since it improves performance as SID's will get generated during master data load.
    Hope it helps.
    Regards,
    Rathy

  • Heirarchies loading thru Idoc

    Hi Guys
    I have a doubt, While loading hierarchies it defaultly select to the IDOCs, Why not PSA.
    I need the exact defference b/w Idoc and PSA loading.Technically.
    Thanks in ADvance
    Regards
    KA

    Hi AK,
    <b>Transfer into PSA</b>
    The data is sent directly from the source system to the Business Information Warehouse and is stored in the PSA (Persistent Staging Area)
    From there, you can either update the data automatically or manually in the corresponding data targets.
    The transfer type here is called the TRF (Transactional Remote Function).
    <b>Data transfer with IDoc</b>The data is packed into IDocs by the source system and sent to the Business Information Warehouse. In BW your data is saved persistently and intransparently in the IDoc store. From there the IDocs can be updated in the IDocs manually or automatically.
    Requirements
    Your transfer structure must not have more than 1000 Bytes in the character format.
    Regards,
    Prakash B

Maybe you are looking for

  • Dark prints in PSE 10

    When printing with a Cannon Pixma MG 8250 I have to increase the brightness by 50-60 to come anywhere near the colours on the screen, Using Elements 10. (thread title edited by forum host)

  • Iweb google map link

    I am using iweb (novice) to build my fishing club website, I want to insert a google map to show fishing locations. When I attempt this by following the guide int he help section I get the message that Mobileme is closed..... Cn anyone out there advi

  • Help! illustrator CS6 crashes after installing Apple Maverick

    Today, I installed Apple OS X Maverick. everything works just fine except Illustrator CS6 crashes everytime I opned it. It worked perfectly well before the install. I'vee downloaded the latest versions of Flash and Air. Can anyone help?

  • 1.1.3 STILL leaves problem unfixed?

    I thought that any new firmware for the touch would fix the bug that SO many people have reported so many times before. When looking at the albums in cover flow view, the album art is there. When you turn it back to vertical view, the album cover doe

  • Restricting to 2 decimals from 3 decimals

    Hi, i declared one variable FKLMG TYPE VBRP-FKLMG in an internal table.im geting 3 decimals for this value(ex:12.123).i want to restict it to two decimals(Ex:12.12).i wrote my code as itab-fklmg = itab-fklmg+0(12).but im getting error as Field type "