What are the possibilities in OWB?

I am using OWB 10g R1.
I am taking the flat files and passed them in to External Tables.
Suppose if my flat file comes with Extra cloumns,then how to proceed with that one from flat files to Fact population?
And if a new source file comes,based on the file busininess rules changes.In that case what would be the effect on mappings from Flat file to Fact population ?
Any one can give suggestions...
Regards,
SVS

Thanks
If Extra fileds added,then we include nulls.but if the same field is used for comparison with already existing field.In that case what I have to do?
If one more file comes and we have to include some logic on the file.In that case what are the necessary steps I have to take?
Wating for your valueble replies..
Thank you,
SVS

Similar Messages

  • I want to airplay from macbook pro to apple tv. What are the possibilities? Does it allow me to play movies or videos I access through the browser as well?

    I want to airplay from macbook pro to apple tv. What are the possibilities? Does it allow me to play movies or videos I access through the browser as well?

    Welcome to the Apple Community.
    Only content in your iTunes library can currently be sent via AirPlay from your mac.

  • What are the possibilities sending notifications using TTY

    What are the possibilities sending notifications using TTY? And how to integrate TTY with Siebel

    Here are the possibilities of Content search webparts
    http://office.microsoft.com/en-in/office365-sharepoint-online-enterprise-help/configure-a-content-search-web-part-in-sharepoint-HA104119042.aspx
    http://office.microsoft.com/en-in/office365-sharepoint-online-enterprise-help/when-to-use-the-content-query-web-part-or-the-content-search-web-part-in-sharepoint-HA104206662.aspx
    Compare the strengths and limitations of the Web Parts
    It’s important that you understand the strengths and limitations of the two Web Parts because if you choose the wrong one, your site could run into performance problems. You can use both Web Parts to show content that is based on a query. In a simplified
    world, here’s how you can decide between the two:
    Use the CQWP when you have a limited amount of content, your query is simple, and you don’t expect your content to grow much in the future.
    Use the CSWP in all other scenarios when you want to show content that is based on a query.
    The table below gives a comparison of the two Web Parts:
    Web Part behavior
    Content Query Web Part
    Content Search Web Part
    Query configuration
    Easy
    You’ll need to know about certain search features such as
    managed properties.
    Query across large amounts of content
    Limited
    Yes
    Handle complex queries
    Limited
    Yes
    Scale to handle future content growth
    Limited
    Yes
    Display content from other site collections
    No
    Yes (see
    section below)
    Design of query results can be customized
    Yes, by using XSLT.
    Yes, by using HTML.
    Maintenance cost in a complex site architecture
    High
    Small (see
    section below)
    Narrow down the query results that are displayed in the Web Part
    No
    Yes, in combination with the
    Refinement Web Part.
    It was not there previously but then it was added to Office 365
    http://blogs.office.com/2013/10/29/search-innovations-for-site-and-portal-design-in-sharepoint-online/
    If this helped you resolve your issue, please mark it Answered

  • What are the possibilities and limitation of using Out of the box content search webpart on SharePoint Online 2013/O365 ?

    Hi All,
    We are migrating from on-premise SharPoint 2010 to SharePoint online 2013.
    I have few questions below: 
    What are the possibilities and limitations of using Out of the box content search webpart?
    Also, how the cross site publishing will work in SharePoint online something with managed navigations and product catalog apporach? if it is not supported, then what are the alternatives to acheive the same?
    Appriciate any commnets/clarifications.Thanks in advance.
    Thanks,
    Dhananjay.

    Here are the possibilities of Content search webparts
    http://office.microsoft.com/en-in/office365-sharepoint-online-enterprise-help/configure-a-content-search-web-part-in-sharepoint-HA104119042.aspx
    http://office.microsoft.com/en-in/office365-sharepoint-online-enterprise-help/when-to-use-the-content-query-web-part-or-the-content-search-web-part-in-sharepoint-HA104206662.aspx
    Compare the strengths and limitations of the Web Parts
    It’s important that you understand the strengths and limitations of the two Web Parts because if you choose the wrong one, your site could run into performance problems. You can use both Web Parts to show content that is based on a query. In a simplified
    world, here’s how you can decide between the two:
    Use the CQWP when you have a limited amount of content, your query is simple, and you don’t expect your content to grow much in the future.
    Use the CSWP in all other scenarios when you want to show content that is based on a query.
    The table below gives a comparison of the two Web Parts:
    Web Part behavior
    Content Query Web Part
    Content Search Web Part
    Query configuration
    Easy
    You’ll need to know about certain search features such as
    managed properties.
    Query across large amounts of content
    Limited
    Yes
    Handle complex queries
    Limited
    Yes
    Scale to handle future content growth
    Limited
    Yes
    Display content from other site collections
    No
    Yes (see
    section below)
    Design of query results can be customized
    Yes, by using XSLT.
    Yes, by using HTML.
    Maintenance cost in a complex site architecture
    High
    Small (see
    section below)
    Narrow down the query results that are displayed in the Web Part
    No
    Yes, in combination with the
    Refinement Web Part.
    It was not there previously but then it was added to Office 365
    http://blogs.office.com/2013/10/29/search-innovations-for-site-and-portal-design-in-sharepoint-online/
    If this helped you resolve your issue, please mark it Answered

  • What are the possibilities

    of using an older Airport Extreme as a router but without an internet connection. I want to use it as basically a LAN within the house. Is this possible?

    Gary,
    If Duane's advice resolved your problem, please check the "question answered" radio button at the top so it can be noted the issue is resolved. It's always good to give people like Duane credit if they help you.

  • A JTree... What are the possibilities for...

    removing the actual navigation icons, lines etc., but keeping the actual form of a tree? This might sound a little silly since it only will show as normal text formatted as a tree structure, but I could use this functionality nevertheless.
    Looking forward to hearing some helpful replies (hopefully ;-)
    TIA.
    /Kasper

    Here's a start. If you find a better way to remove the lines be sure to post it.import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.tree.*;
    import javax.swing.plaf.basic.BasicTreeUI;
    import java.util.Enumeration;
    public class Test2 extends JFrame {
      public Test2() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        Container content = getContentPane();
        UIManager.put("Tree.hash",Color.white);  // Invisible lines - I hate this
        JTree jt = new JTree();
        content.add(new JScrollPane(jt), BorderLayout.CENTER);
        ((BasicTreeUI)jt.getUI()).setExpandedIcon(null);   
        ((BasicTreeUI)jt.getUI()).setCollapsedIcon(null);
        DefaultTreeCellRenderer renderer = (DefaultTreeCellRenderer)jt.getCellRenderer();
        renderer.setLeafIcon(null);
        renderer.setClosedIcon(null);
        renderer.setOpenIcon(null);
        expandAll(jt, new TreePath(jt.getModel().getRoot()), true);
        jt.addTreeWillExpandListener(new TreeWillExpandListener() {
          public void treeWillCollapse(TreeExpansionEvent tse) throws ExpandVetoException {
            throw new ExpandVetoException(tse);
          public void treeWillExpand(TreeExpansionEvent tse) throws ExpandVetoException {
            throw new ExpandVetoException(tse);
        setSize(300,300);
      private void expandAll(JTree tree, TreePath parent, boolean expand) {
        TreeNode node = (TreeNode)parent.getLastPathComponent();
        if (node.getChildCount() >= 0) {
          for (Enumeration e=node.children(); e.hasMoreElements(); ) {
            TreeNode n = (TreeNode)e.nextElement();
            TreePath path = parent.pathByAddingChild(n);
            expandAll(tree, path, expand);
        if (expand) { // Expansion or collapse must be done bottom-up
          tree.expandPath(parent);
        } else {
          tree.collapsePath(parent);
      public static void main(String[] args) { new Test2().setVisible(true); }
    }

  • What are the best approaches for mapping re-start in OWB?

    What are the best approaches for mapping re-start in OWB?
    We are using OWB repository 10.2.0.1.0 and OWB client 10.2.0.1.31. The Oracle version is 10 G (10.2.0.3.0). OWB is installed on Linux.
    We have number of mappings. We built process flows for mappings as well.
    I like to know, what are the best approches to incorportate re-start options in our process. ie a failure of mapping in process flow.
    How do we re-cycle failed rows?
    Are there any builtin features/best approaches in OWB to implement the above?
    Does runtime audit tables help us to build re-start process?
    If not, do we need to maintain our own tables (custom) to maintain such data?
    How did our forum members handled above situations?
    Any idea ?
    Thanks in advance.
    RI

    Hi RI,
    How many mappings (range) do you have in a process flows?Several hundreds (100-300 mappings).
    If we have three mappings (eg m1, m2, m3) in process flow. What will happen if m2 fails?Suppose mappings connected sequentially (m1 -> m2 -> m3). When m2 fails then processflow is suspended (transition to m3 will not be performed). You should obviate cause of error (modify mapping and redeploy, correct data, etc) and then repeat m2 mapping execution from Workflow monitor - open diagram with processflow, select mapping m2 and click button Expedite, choose option Repeat.
    In re-start, will it run m1 again and m2 son on, or will it re-start at row1 of m2?You can specify restart point. "at row1 of m2" - I don't understand what you mean (all mappings run in Set based mode, so in case of error all table updates will rollback,
    but there are several exception - for example multiple target tables in mapping without corelated commit, or error in post-mapping - you must carefully analyze results of error).
    What will happen if m3 fails?Process is suspended and you can restart execution from m3.
    By having without failover and with max.number of errors=0, you achieve re-cycle failed rows to zero (0).This settings guarantee existence only two return result of mapping - SUCCSES or ERROR.
    What is the impact, if we have large volume of data?In my opinion for large volume Set based mode is the prefered processing mode of data processing.
    With this mode you have full range enterprise features of Oracle database - parallel query, parallel DML, nologging, etc.
    Oleg

  • What are the Different Reporting Types Offer By SAP Package

    Hello everyone...
    Been on SAP almost a year and finding there is alot to learn.
    Question: What are the different ways to generate reports and to link reports\programs across the SAP system. I know about BW, RRI, ABAP language, CRYSTAL.
    Are there any more ?
    Thank you in advance....
    Jim

    there are four reporting possibilities using business explorer in bw:
    bex analyser:
    (reports displayed in normal excell)
    web application:
    (publishing above reports in web)
    formated reporting:
    (crystal reports)
    mobile intelligence:
    (view reports in mobiles)
    hope it helps

  • What are the "Shared Cursor (KKS) errors" = ORA-44201 - 44300

    Hi,
    Does anybody know what are the "Shared Cursor (KKS) errors" supposed to raise Oracle errors ORA-44201 till 44300?
    I am currently facing an 'ORA-44201: cursor needs to be reparsed' using Oracle DB EE 10.2.0.3!
    The 11g documentation is mentioning: "Action: Investigate possible causes of resource contention."
    Many Thanks in advance,
    Sébastien
    Brussels, Belgium

    Hi Rob,
    For sure, the error message generated by our 10.2.0.3 db is ORA-44201: cursor needs to be reparsed.
    I have posted a thread in Database - General:
    The environment: OS: Solaris 10 / DB: 10.2.0.3 / OWB: 10.2.0.2 / Workflow: 2.6.4
    I am facing this ORA-44201 when calling a function developed to create a materialized view on a prebuilt table:
    FUNCTION mv_create (p_mv_name IN VARCHAR2)
    RETURN NUMBER
    IS
    v_query VARCHAR2 (4000);
    v_active NUMBER;
    BEGIN
    SELECT mv_query, mv_active
    INTO v_query, v_active
    FROM mtd_materialized_view
    WHERE mv_name = p_mv_name;
    IF (v_active = 1)
    THEN
    EXECUTE IMMEDIATE 'CREATE MATERIALIZED VIEW '
    || p_mv_name
    || ' '
    || 'ON PREBUILT TABLE '
    || 'WITH REDUCED PRECISION '
    || 'ENABLE QUERY REWRITE AS '
    || v_query;
    END IF;
    RETURN 1;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    raise_application_error (-20250,
    'Create materialized view '
    || p_mv_name
    || ' failed: not found in metadata'
    RETURN 3;
    WHEN OTHERS
    THEN
    raise_application_error (-20251,
    'Create materialized view '
    || p_mv_name
    || ' failed unexpectedly: '
    || SQLERRM
    RETURN 3;
    END mv_create;
    -- End of mv_create function
    The error message:
    ORA-20251: Create materialized view MV_IA_COMN_MTLY failed unexpectedly:
    ORA-44201: cursor needs to be reparsed
    ORA-06512: at "CIS_DWH_FCT.CIS_L_FCT_XCH", line 507
    ORA-06512: at line 1
    I am totally blocked and need your help!!!
    Many Thanks in advance,
    Sébastien
    Brussels, Belgium

  • What are the business drivers for doing SAP BW Modeling

    What are the business drivers for doing SAP BW Modeling
    a.     Simplicity
    b.     Flexibility
    c.     Performance
    d.     Cost
    e.     Administrative Overhead

    Hi  Kumar,
    I will give just hints rest you have to think and act not about Interview quotations but SAP MM career.
    There are  couple of  guys and all of them has got job, first as a SAP testing, as SAP freshers in HCL/HP India etc.
    Later on  they have learnt all the business process in project and all the E2E cycles in  MM/SD/FICO etc.
    Now they are working on support projects and roll out projects.
    I think there are ways and we need to understand how to explore all the job possibilities.
    Please have good knowledge and definitely you will succeed. Short cuts are not always the way to success.
    Hope all my fresher friends will find some clue here....
    Regards,
    D Singh

  • What are the down sides with very big SGA?

    Hi
    I have a heavy 9.2.0.8 64-bit database with very high dataloading and reporting having 24G SGA, 80 dual core CPU solaris 9. I would like to figure out what are the down sides of very big SGAs, and/or if increases the SGA.
    Thanks

    user5797895 wrote:
    My question was not for a particular performance issue. I am thinking in different possibilities to improve to the best performance. I have statspack configured and we do tuning according to the stats.
    Are you able to anlyze few spreport and give me your comments?Usually you have one or more particular issues that are worth to look into, e.g. particular standard reports that take longer than expected, batch runs that don't complete within the given timeframe, end-users complaining about ad-hocs reports taking too long, transactions that start to time out during peak workloads etc. etc.
    If you're just interested in someone checking the current state/health of your system it's probably worth a try to post the most important parts of some statspack reports that you determine to be most representative for your system load. There are definitely some contributers here participating that should be able to provide some valuable insights.
    I think it's always good to remember that the most significant performance improvement of a system is achieved by letting it do less work resp. avoid unnecessary work. So if you're e.g. able to reduce the logical I/O performed by the top n SQLs that put the most workload on your system significantly you usually gain much more than by just adding more and more memory/CPU to your system. Of course this is not the case if this kind of tuning has already been performed thoroughly but there is usually much room for improvement in this field.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • What are the mandatory fields while creation of material master in differen

    what are the mandatory fields while creation of material master in different views?

    Hi Gopi,
      This is purely depends on the function configuration, which would be done MM consultants.  Kindly check with them.
    thanks & regards
    Kishore Kumar Maram

  • What are the pro alternatives to Compressor?

    I've been compressing a lot of material recently, mostly shot on DVCPRO HD and edited on FCP. What's been happening is that some - but surprisingly not all dissolves - are breaking up into pixels or rather blocks of pixels. The problem, as I've recently found out, has been documented here so I won't waste anyone's time agonizing over it. I'll just say that using Compression Master, Sorenson Squeeze and bitVice produced artifacts free files right off the bat.
    What's infuriating about the Compressor is that every time I try to test a short piece from the middle of the sequence, it compresses fine but then when the whole 20 min sequence is compressed the problem comes back.
    I've tried CBR, closed GOP, IP structure etc as suggested in one of the posts and it did get rid of the pixelation but I'm still not happy with the results. The picture looks a bit soft and washed out. Shockingly comparable to a well compressed random, internet downloaded DivX file that I can play on the same player. Is it the Compressor, DVDSP or the true nature of the DVCPRO HD format showing its ugly face?
    What are the professional MPEG encoders that could save me all that headache? I'd rather pay good money and finally get it done right than spend my time beta testing software that is clearly not ready for the prime time.

    Never had problems whit Apple Mail. Till I updated to Maverick.
    First problam was Gmail after updating to Mavericks, Apple mail went to download all my old mail's over 6800. Just delleted my Gmail account form the list to stop it.
    Second issuu memory.
    First dit not now what was te problem till I found out that Apple Maill took over al my memory. Try differened tip and trick of the Apple Forums. This one works the best. Other users had the same problem after Mavericks.
    I restore my Accounts.plist form before the Maverick update.
    Looked whit TextWrangler but what am i lookong for? Do not know how is supposed to look.
    Size of Accounts.plist on 11/18 1.7MB
    Size of Accounts.plist on 23/18 3.0MB
    Hoping for the best ....

  • What are the different values available for type attribute

    Hi,
        I am working with IDOC to Stored Procedure. For each field we need to give the values for 'isInput' and 'type' attributes. I need to pass values for 'datetime' and 'numeric' fields. What are the list of values availabIe for 'type' attribute. I know only about 'CHAR' attribute.
         Can anybody please tell me what all the values availabe for attribute 'type'. I am facing this problem while giving the value for type attribute.
    Thanks in Advance,
    Murthy.

    Does this help
    tring
        Data that contains a combination of letters, numbers, and special characters. String data types are listed below:
    CHARACTER: Fixed-length character strings. The common short name for this data type is CHAR.
    VARCHAR: Varying-length character strings.
    CLOB: Varying-length character large object strings, typically used when a character string might exceed the limits of the VARCHAR data type.
    GRAPHIC: Fixed-length graphic strings that contain double-byte characters.
    VARGRAPHIC: Varying-length graphic strings that contain double-byte characters.
    DBCLOB: Varying-length strings of double-byte characters in a large object.
    |BINARY: A sequence of bytes that is not associated with a |code page.
    |VARBINARY: Varying-length binary strings.
    BLOB: Varying-length binary strings in a large object.
    |XML: Varying-length string that is an internal representation |of XML.
    Numeric
        Data that contains digits. Numeric data types are listed below:
    SMALLINT: for small integers.
    |INTEGER: for large integers.
    |BIGINT: for bigger values.
    DECIMAL(p,s) or NUMERIC(p,s), where p is precision and s is scale: for packed decimal numbers with precision p and scale s. Precision is the total number of digits, and scale is the number of digits to the right of the decimal point.
    |DECFLOAT: for decimal floating-point numbers.
    REAL: for single-precision floating-point numbers.
    DOUBLE: for double-precision floating-point numbers.
    Datetime
        Data values that represent dates, times, or timestamps. Datetime data types are listed below:
    DATE: Dates with a three-part value that represents a year, month, and day.
    TIME: Times with a three-part value that represents a time of day in hours, minutes, and seconds.
    TIMESTAMP: Timestamps with a seven-part value that represents a date and time by year, month, day, hour, minute, second, and microsecond.
    Regards
    Ravi

  • What are the field names for below mentioned

    Hello Friends
    What are the fields names for below tables
    in EKKO
    Purchase Document Date
    Net Value of the purchase document.
    In EKPO
    Item Description
    From which place We bought it. (It means in Sales Items there we can know from which plant we sold the goods, like in EKPO, there is any field like this)
    Please let we are defining the report to find out the stock availability for perticular storage location using select Options plant, company code, material no.
    How many tables involve her to build this report. and also field names, they come under which table.
    Please send me this information ASAP. PLz Plz Plz..........
    Regards
    Praveen

    You can check the fields of these tables via SE11
    Purchase Document Date  -  EKKO-BEDAT
    Item Description  -  EKPO-TXZ01
    Net price per item - EKPO-NETPR.
    Regards,
    Rich Heilman

Maybe you are looking for