What is multiple intilazation datasources

intilazation datasources

Sometime we do Multiple Infopackage for intilazation,
For Example 0FI_GL_10 Datsource, If "FAGLFLEXA" Table which is source for 0FI_GL_10 contain huge records. Then we are creation Infopackages with intilazation "Yearwise" using restriction in Data Selection for Fiscal Period.
Example
     Init Infopackage for 2010 (001.2010 to 016.2010)
     Init Infopackage for 2011 (001.2011 to 016.2011) 
     And So On
Such way your delta loading performance work perfectly, Risk of delta corrupt error also minimise.
Regards,
Sushant

Similar Messages

  • What is a BW datasource? What is meant by maintaining a datasource?

    What is a BW datasource? What is meant by maintaining a datasource?

    Hi VSU,
    A BW datasource is a structure, which is created in the source system and replicated to the BW system. Maintaining a datasource in a source system is doing any changes related to the datasource. It could be adding/deleting fields or checking the flags in the datasource like the hide and selection flag. Also, if the datasource is provided in the LO Cockpit, changes can be made there too depending on how the extraction of data is made for that datasource. Extraction could be of flat file extraction or of multiple flat structures ie., hierarchies.
    There are four types of DataSource:
    1) DataSource for transaction data
    2) DataSource for master data
          a.  DataSource for attributes
          b.  DataSource for texts
          c.  DataSource for hierarchies
    NetWeaver 7.0, a new object concept is available for DataSources. It is used in conjunction with the changed objects concepts in data flow and process design (transformation, InfoPackage for loading to the PSA, data transfer process for data distribution within BI). The object type for a DataSource in the new concept - called DataSource in the following - is R3TR RSDS.  The new DataSource concept cannot be used for transferring data from external systems (metadata and data transfer using staging BAPIs), for transferring hierarchies, or when using the IDoc transfer method.
    Hope this will be helpful for clearing your doubts.
    Regards,
    Sridhar.

  • HT1206 Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    You need to create a user account for your wife (or yourself depending on who has the current user account). When syncing, each of you should sign in as a separate user, login to iTunes and then sync. I had this problem when my sister got an iPhone. When we did her initial sync, everything on my iPhone showed up on hers. Apple gave me this solution.

  • ORA-01002: fetch out of sequence using multiple XA datasources

    Hi,
    I have a problem accessing multiple XA datasources :
    - launch an sql request on datasource 1
    - rs.next() on the resultset
    - use the data to launch another sql request on datasource 2
    After 10 iterations, the next() method throws an SQLException (ORA-01002: fetch out of sequence).
    After further investigation, I noticed that :
    - the problem doesn't occur if the same datasource is used for the 2 requests
    - if I set the fetch size to 15 for the first request, the exception is thrown after 15 iterations (but I can't use this as a workaround because the number is potentially above the million).
    Anyone experiencing the same problem ?
    Thanks in advance
    Nicolas
    Here's my configuration :
    - Weblogic 8.1 SP4
    - JDK sun 1.4.2_04 (we have the same problem with various JDKs including JRockit)
    - Oracle 10g
    - Oracle thin driver xa 10.1.0.2.0
    A JSP I use to reproduce the problem :
    <pre><%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <%@ page import="java.util.ArrayList,
                        java.sql.Connection,
                        java.sql.PreparedStatement,
                        java.sql.ResultSet,
                        java.sql.SQLException,
                        javax.naming.InitialContext,
                        javax.naming.NamingException,
                        javax.sql.DataSource,
                        javax.transaction.UserTransaction"%>
    <%!
         public void launchTest() throws Exception {
              Connection cnx =null ;
              try {
                   getUserTransaction().begin();
                   // SQL access #1
                   cnx = getConnection("jdbc/xaDatasource1");
                   PreparedStatement stmt = cnx.prepareStatement("SELECT test_col from test_table");
                   ResultSet rs = stmt.executeQuery();
                   // iterate on resulset from SQL 1
                   int i=1;
                   while (rs.next()){ // SQL exception after 10 iterations
                        System.out.println(i + "");
                        i++;
                        // SQL access #2
                        Connection cnx2 = getConnection("jdbc/xaDatasource2");
                        // problem occurs even if we don't request
                        cnx2.close();
                        // end SQL access #2
                   getUserTransaction().commit();
              } catch (Exception e) {
                   e.printStackTrace();
                   try {
                        getUserTransaction().rollback();
                   } catch (Exception e1) {
                        e1.printStackTrace();
                        throw e;
              } finally {
                   try {
                        if (cnx != null && !cnx.isClosed())
                             cnx.close();
                   } catch (Exception e1) {
                        e1.printStackTrace();
         private UserTransaction getUserTransaction() throws NamingException {
              return (UserTransaction) new InitialContext().lookup("java:comp/UserTransaction");
         private Connection getConnection(String jndiName) throws NamingException, SQLException {
              DataSource ds = (DataSource) new InitialContext().lookup(jndiName);
              return ds.getConnection();
    %>
    <%
    launchTest();
         SQL CODE :
         CREATE TABLE TEST_TABLE (     TEST_COL NUMBER(2));
         insert into test_table values(1);
         insert into test_table values(2);
         insert into test_table values(3);
         insert into test_table values(4);
         insert into test_table values(5);
         insert into test_table values(6);
         insert into test_table values(7);
         insert into test_table values(8);
         insert into test_table values(9);
         insert into test_table values(10);
         insert into test_table values(11);
    %>
    </pre>

    Nicolas Mervaillie wrote:
    Hi,
    I have a problem accessing multiple XA datasources :
    - launch an sql request on datasource 1
    - rs.next() on the resultset
    - use the data to launch another sql request on datasource 2
    After 10 iterations, the next() method throws an SQLException (ORA-01002: fetch out of sequence).
    After further investigation, I noticed that :
    - the problem doesn't occur if the same datasource is used for the 2 requests
    - if I set the fetch size to 15 for the first request, the exception is thrown after 15 iterations (but I can't use this as a workaround because the number is potentially above the million).
    Anyone experiencing the same problem ?Hi. This is a known weakness of Oracle. If the XA transactional context of a connection
    changes during a result set processing, even if it is switched back correctly, the result
    set is aborted. If the oracle driver has fetched 10 rows, that's all you get. The next
    call to next() that needs real DBMS communication will fail.
    By spec, an XA connection should be able to be swapped out and enlisted in different
    transactions at a per-call granularity, so our pools allow that by default. Try setting
    the KeepXAConnTillTxCOmplete setting in your pool.
    When a connection is put back in the pool, if it is an XA connection we will suspend
    any user tx, and test it with our own test tx, then re-enlist and re-start the user
    tx in flight. This may be the context switch that kills the oracle result set.
    Joe
    >
    Thanks in advance
    Nicolas
    Here's my configuration :
    - Weblogic 8.1 SP4
    - JDK sun 1.4.2_04 (we have the same problem with various JDKs including JRockit)
    - Oracle 10g
    - Oracle thin driver xa 10.1.0.2.0
    A JSP I use to reproduce the problem :
    <pre><%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <%@ page import="java.util.ArrayList,
                        java.sql.Connection,
                        java.sql.PreparedStatement,
                        java.sql.ResultSet,
                        java.sql.SQLException,
                        javax.naming.InitialContext,
                        javax.naming.NamingException,
                        javax.sql.DataSource,
                        javax.transaction.UserTransaction"%>
    <%!
         public void launchTest() throws Exception {
              Connection cnx =null ;
              try {
                   getUserTransaction().begin();
                   // SQL access #1
                   cnx = getConnection("jdbc/xaDatasource1");
                   PreparedStatement stmt = cnx.prepareStatement("SELECT test_col from test_table");
                   ResultSet rs = stmt.executeQuery();
                   // iterate on resulset from SQL 1
                   int i=1;
                   while (rs.next()){ // SQL exception after 10 iterations
                        System.out.println(i + "");
                        i++;
                        // SQL access #2
                        Connection cnx2 = getConnection("jdbc/xaDatasource2");
                        // problem occurs even if we don't request
                        cnx2.close();
                        // end SQL access #2
                   getUserTransaction().commit();
              } catch (Exception e) {
                   e.printStackTrace();
                   try {
                        getUserTransaction().rollback();
                   } catch (Exception e1) {
                        e1.printStackTrace();
                        throw e;
              } finally {
                   try {
                        if (cnx != null && !cnx.isClosed())
                             cnx.close();
                   } catch (Exception e1) {
                        e1.printStackTrace();
         private UserTransaction getUserTransaction() throws NamingException {
              return (UserTransaction) new InitialContext().lookup("java:comp/UserTransaction");
         private Connection getConnection(String jndiName) throws NamingException, SQLException {
              DataSource ds = (DataSource) new InitialContext().lookup(jndiName);
              return ds.getConnection();
    %>
    <%
    launchTest();
         SQL CODE :
         CREATE TABLE TEST_TABLE (     TEST_COL NUMBER(2));
         insert into test_table values(1);
         insert into test_table values(2);
         insert into test_table values(3);
         insert into test_table values(4);
         insert into test_table values(5);
         insert into test_table values(6);
         insert into test_table values(7);
         insert into test_table values(8);
         insert into test_table values(9);
         insert into test_table values(10);
         insert into test_table values(11);
    %>
    </pre>

  • What is multiple account assignment??

    Hi Experts,
    Kindly clear my doubts.
    1) What is Multiple Account Assignment in PO ?
    2) If i have ordered 100 ea of material, can i split 50 ea for cost center (K) and 50 ea for project (P) with this multiple account assignment in PO?
    Regards,
    Prasath

    Hi,
    I hope multiple account assignment is only possible for different cost centers and not against project.Mostly this will be used for consumable material only.
    When specifying multiple account assignment for an item, you must consider the following points:
    How is the net value of a PO item to be distributed (apportioned) to the individual account assignment items?
    The costs can be allocated on a quantity or percentage basis (for example, 10 pieces or 10% of the order value to cost center 100).
    How are the costs to be apportioned if only a part of the ordered quantity has been delivered and invoiced?
    In this case, the accounts are charged with the invoiced amount of the partial delivery. For each purchase order item with multiple account assignments, you can specify whether the cost allocation is carried out proportionally or on a progressive fill-up basis.
    If you allocate the costs proportionally, the invoiced amount is distributed equally among the accounts.
    If you allocate the costs on a progressive fill-up basis, the invoiced amount is allocated to the individual account assignment items one after the other. In this case, costs are allocated to account assignment item 2, for example, only when item 1 has received its full allotment, and so on. This process continues with each successive partial invoice until the full invoice amount is reached.
    Fo further details you can refer
    http://help.sap.com/saphelp_ides/helpdata/en/fd/45b9c89d6411d189b60000e829fbbd/frameset.htm
    Regards,
    Prabu

  • Configuring Multiple LDAP Datasources in VDS

    Hi,
    I'm trying to configure multiple LDAP Datasources using VDS, one talking to AD and other to Novell eDir from VDS, my LDAP connection strings works well but when I start the service in VDS the service will never startup all I see is Exception null, it does not throw any exception at the same time it doesn't start up the service. I've tried configuring with signle Datasource which works fine. This is failing  when I combine those two datasources into one configuration. Have any configured multiple datasources with in VDS. Not sure if you have encountered any problems.
    Thanks,
    Joe.P

    Are you just trying to bring in two LDAP data sources or do a join between them? 
    Actually both I believe are considered types of joins.
    You cannot just define two datasources and expect them to show up.

  • What causes multiple entries in my calender events in my iPhone 4s?

    What causes multiple entries in my calender events on my iPhone 4s?

    Hi jeffpetit,
    Here is a link that will help you troubleshoot this issue with the camera on your iPhone:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Camera isn't functioning or has undesired image quality
    If the screen shows a closed lens or black image, force quit the Camera app.
    If you do not see the Camera app on the Home screen, try searching for it in Spotlight. If the camera does not show up in the search, check to make sure that Restrictions are not turned on by tappingSettings > General > Restrictions.
    Ensure the camera lens is clean and free from any obstructions. Use a microfiber polishing cloth to clean the lens.
    Cases can interfere with the camera and the flash. Try gently cleaning the lens with a clean dry cloth or removing the case if you see image or color-quality issues with photos.
    Try turning iPhone off and then back on.
    Tap to focus the camera on the subject. The image may pulse or briefly go in and out of focus as it adjusts.
    Try to remain steady while focusing:
    Still images: Remain steady while taking the picture. If you move too far in any direction, the camera automatically refocuses to the center.
    Note: If you take a picture with iPhone turned sideways, it is automatically saved in landscape orientation.
    Video: Adjust focus before you begin recording. You can also tap to readjust focus while recording. Exiting the Camera application while recording will stop recording and will save the video to the Camera Roll.
    Note: Video-recording features are not available on original iPhone or iPhone 3G.
    If your iPhone has a front and rear camera, try switching between them to verify if the issue persists on both.
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • What is the related datasource for VBKD

    Hi,
                what is the related datasource for VBKD( Sales doucmentation business data).table.please give me solution. 
    Thanks,
    chandu

    Hi,
    Also check these DS. In the links check the table Fields of Origin for the Extract Structure
    Extraction SD Sales: Document Schedule Line
    DataSource Transactional Data: 2LIS_11_VASCL
    http://help.sap.com/saphelp_nw70/helpdata/EN/dd/db9e759d4f453a8e081ad7df5f7770/frameset.htm
    Extraction SD Sales: Document Item
    DataSource Transactional Data: 2LIS_11_VAITM
    http://help.sap.com/saphelp_nw70/helpdata/EN/3a/27b6962129448ebe71fd945cfa8823/frameset.htm
    Extraction SD Sales: Document Item Billing
    DataSource Transactional Data: 2LIS_11_V_ITM
    http://help.sap.com/saphelp_nw70/helpdata/EN/94/5780aeec7d43d9be78b05fd4b3212e/frameset.htm
    Extraction SD Sales: Document Schedule Line Billing
    DataSource Transactional Data: 2LIS_11_V_SCL
    http://help.sap.com/saphelp_nw70/helpdata/EN/41/938d9c476c4ed6a9eed87b59ae19ac/frameset.htm
    Hope this helps.
    Thanks,
    JituK

  • Multiple abap datasource?

    hello,
    is it possible to have multiple abap datasource for authentificating users in the portal?
    if so, how to do that?
    best regards

    Hi,
    I would say that this is not possible. You can of course use a CUA in order to "span" multiple ABAP systems and access the CUA, but I don't think that you can modify the dataSourceConfiguration to access multiple ABAP systems (compared with the way you can do it with LDAP Directories)
    Regards,
    Holger.

  • Multiple multi-datasource to failover

    We have a heavy architecture in mind:
    Multiple servers would connect to one Oracle RAC in a datacenter. Another Oracle RAC would be set in Standby in another datacenter for Disaster and Recovery.
    If the first datacenter is down, the idea is to automatically promote the RAC of the other datacenter as the Primary, so that the application can switch to connect to the other Oracle RAC.
    On Weblogic 10.3.2, I know it is possible to failover between nodes of a multi datasource.
    However, is it possible to failover from one multi-datasource (pointing the the first Oracle RAC) to another one (pointing to the second Oracle RAC) when the first multi datasource is down?
    We do not want to open connections on the second multi-datasouce if the first one is active.
    I hope this is clear...
    Thank you

    But what if, instead, we defined the first Datasource to connect to all the nodes of the first RAC:
    jdbc:oracle:thin:@(DESCRIPTION=
    (ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=*host1*)(PORT=1521))
    (ADDRESS=(PROTOCOL=TCP)(HOST=*host2*)(PORT=1521)))
    (LOAD_BALANCE=yes)
    (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=SID)
    (FAILOVER_MODE=(TYPE=select)(METHOD=basic)(RETRIES=5)(DELAY=2))))
    and the other datasource to connect to all the servers of the second RAC?
    jdbc:oracle:thin:@(DESCRIPTION=
    (ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=*host3*)(PORT=1521))
    (ADDRESS=(PROTOCOL=TCP)(HOST=*host4*)(PORT=1521)))
    (LOAD_BALANCE=yes)
    (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=SID)
    (FAILOVER_MODE=(TYPE=select)(METHOD=basic)(RETRIES=5)(DELAY=2))))
    And to have the multi datasource to have the failover protocol managed between the two datasources.
    Would it be possible?
    Is it what you were mentioning, Ravish Mody?
    Thanks,
    Pierre
    Edited by: user3415297 on Apr 8, 2011 8:27 AM
    Edited by: user3415297 on Apr 8, 2011 8:33 AM

  • What is multiple page format?

    hI
    can anybbody tell me what does actually means of script doesn't support multiple page foramt & smart form will  support Multiple page formats.
    Plz tell me in details.
    thanks.

    Hi,
    Scripts also supports multiple page format. You can go to edit and create new page and in layout there is a button for page properties(other attributes). Click it and give next page = page2.
    So this led you to have multi page format script.
    Example: For 1st page you require 6 variable window and 1 main window. From 2nd page onwards you require only 2 variable windows and bigger main window. So for page 2 select only two variable windows and increase the size of main window. And in command line give command
    /: position window.
    Hope this will help you.

  • What is a cloned DataSource and when do we need it?

    Hi,
    Could anybody tell me what a cloned DataSource is and when we need it? How to make a clone from a datasource? Thanks

    When you need to perform more than one thing with a DataSource (like saving to a file and broadcast a webcam stream) you need to clone the WebCam Datasource to create two differents graphs, one for saving to a file, and other for broadcast.
    The cloned DataSource will only repeat the stream that the cloned DataSource is producing.
    Use the methdos im Manager to create a clone.
    RGB

  • What are multiple video cards good for?

    Yeah, I know it is probably a dorky question but I would certainly like to know the answer before I start pricing my future Mac Pro. What I'm thinking about is online gaming stuff (which I'm just getting into so I'm still a little clueless). My question is:
    Are four GeForce 7300 cards better than one X1900 for gaming/graphics?
    It sounds like from the other posts that the X1900 is the superior card. Am I reading things correctly?
    Thanks,
    Toast
    867 MHz G4 Powerbook   Mac OS X (10.4.8)  

    One advantage of multiple video cards is monitor calibration. When running two monitors off of one card, it's simply not possible to (accurately), calibrate both screens. Altering the video LUT of the card to dial in one monitor will affect the calibration of the other.
    On my previous G4 system, I ran two screens from separate cards (two CRTs - different makes and size). With hardware calibration, I was able to get them to match perfectly. On my Mac Pro running the same screens from only one card, I can get them close but not perfect - more importantly, I have to decide which monitor is to be properly calibrated.
    Not particularly important for gaming performance but there you go ...
    -phil

  • Cisco ISE - What does "Multiple Matched Rule Applies" mean?

    Hi,
    In Cisco ISE authroiztion policy configuration, what does the option "multiple matched rule applies" mean? I can understand the "first matched rule", but in "multiple matched rule" how is the "permissions picked if multiple rules match? Or, what is the logic involved in picking up the permissions, if multiple rules are matched in authorization policy.
    No where in cisco document I see any explaination for this.
    Would appreciate if any one can point me to  a document or explain me the login in selecting the persmissions if multiple rules are matched. Also, what would the use-case for this?
    Thanks and Regards,
    Mohan

    I agree with tarik & also this might be helpful for you:
    An authorization policy can  consist of a single rule or a set of rules that are user-defined. These  rules act to create a specific policy. For example, a standard policy  can include the rule name using an If-Then convention that links a value  entered for identity groups with specific condition(s) or attributes to  produce a specific set of permissions that create a unique  authorization profile. There are two authorization policy options you  can set:
    •First Matched Rules Apply
    •Multiple Matched Rule Applies
    These two options direct Cisco ISE  to use either the first matched or the multiple matched rule type  listed in the standard policy table when it matches the user's set of  permissions. These are the two types of authorization policies that you  can configure:
    •Standard
    •Exception
    Standard policies are policies  created to remain in effect for long periods of time, to apply to a  larger group of users or devices or groups, and allow access to specific  or all network endpoints. Standard policies are intended to be stable  and apply to a large groups of users, devices, and groups that share a  common set of privileges.
    Standard policies can be used as  templates in which you modify the original values to serve the needs of a  specific identity group, using specific conditions or permissions to  create another type of standard policy to meet the needs of new  divisions, or groups of users, devices, or groups in your network.
    By contrast, exception policies  are appropriately named because this type of policy acts as an exception  to the standard policies. Exception polices are intended for  authorizing limited access that is based on a variety of factors  (short-term policy duration, specific types of network devices, network  endpoints or groups, or the need to meet special conditions or  permissions or an immediate requirement).
    Exception policies are created to  meet an immediate or short-term need such as authorizing a limited  number of users, devices, or groups to access network resources. An  exception policy lets you create a specific set of customized values for  an identity group, condition, or permission that are tailored for one  user or a subset of users. This allows you to create different or  customized policies to meet your corporate, group, or network needs.
    http://www.cisco.com/en/US/docs/security/ise/1.0/user_guide/ise10_authz_polprfls.html

  • What is GENERATE EXPORT DATASOURCE

    Hello gurus,
    When we right click on Master data infosource we have a option like <u>GENERATE EXPORT DATASOURCE</u>, so what is the significance of that and what actually happens when we press that.
    I ll surely award points.
    Thanks

    Dear Khanna,
    When u click on export data source option, system generates a infosource.
    Actually this is required when u want to send data from one infoprovider to another infoprovider in same system or in external BIW system.
    In practice some times need comes for sending data from one target to another target. In this situation this is required. Many times u first load data in to ODS and then u send it to cube, this is the typical case you need export data source.
    Once you click this, system created infosource from the same. useing this infosource and creating update rule u can load data in to another target.
    Hope this answers your question.
    regards,
    Mahendra Sane

Maybe you are looking for