How to implement Inline Views in ODI?

Hi,
How to implement the following query (inline view) in ODI?
Query:
SELECT *
FROM Table_one t1,
(SELECT * FROM Table_two (includes some where conditions) t2
WHERE conditions;
How to set the conditions at the table level (not at the interface level) i.e., How to set the conditions used in Sub Query Table_two in ODI?
Thanks in Advance,
-Vency

there is no native way to use hierarchical queries.
you will have to modify KM
It depends on your exact needs.

Similar Messages

  • How to Implement Hireachical Queries in ODI?

    Hello All,
    Please let me know how to implement Hierarchical Queries in ODI 11.1.1.6.?
    Pls provide any example if possible.
    Thanks
    Ravikiran

    there is no native way to use hierarchical queries.
    you will have to modify KM
    It depends on your exact needs.

  • How to implement the View V_SEPA_CUST in SAP 4.7 ?

    Hi SAP Experts,
    We are going to implement SEPA in our project and currently using SAP 4.7.
    Is there any way to implement the View V_SEPA_CUST in SAP 4.7.
    I came to know that there is an OSS Note available for this implementation but I couldn't find the same.
    Please suggest me how to Implement the View V_SEPA_CUST in our SAP system, since we need this View for SEPA implementation.
    Many Thanks in Advance.
    Yogesh.
    Moderator message: one thread only per issue, please.
    Edited by: Thomas Zloch on Jan 31, 2012

    Dear Yogesh,
    SAP has just recently released a note you might want to consider: 1834272. One of the preliminary notes for this note is 1784060...
    This works for SAP 6.4. I can not help you where it is specifically related to SAP 4.7
    Hoping it is of use.
    Best regards,
    Raymond

  • How to implement this logic in odi

    suposse my table is like this
    a b c
    1234 01-JAN-09 0
    1234 02-JAN-09 1
    1234 05-JAN-09 1
    1244 06-JAN-09 1
    1234 10-JAN-09 0
    1234 13-JAN-09 1
    1234 25-JAN-09 0
    1234 27-JAN-09 1
    1234 30-JAN-09 1
    1235 01-JAN-09 1
    1235 02-JAN-09 0
    1235 05-JAN-09 1
    1245 06-JAN-09 1
    1235 10-JAN-09 1
    1235 13-JAN-09 3
    1235 25-JAN-09 2
    1235 27-JAN-09 0
    1235 30-JAN-09 0
    i want out put like this
    a b c
    1234 01-JAN-09 0
    1234 02-JAN-09 1
    1234 05-JAN-09 2
    1244 06-JAN-09 3
    1234 10-JAN-09 3
    1234 13-JAN-09 4
    1234 25-JAN-09 4
    1234 27-JAN-09 5
    1234 30-JAN-09 6
    1235 01-JAN-09 1
    1235 02-JAN-09 1
    1235 05-JAN-09 2
    1245 06-JAN-09 3
    1235 10-JAN-09 4
    1235 13-JAN-09 7
    1235 25-JAN-09 9
    1235 27-JAN-09 9
    1235 30-JAN-09 9
    to get out put like that iam using this query
    select a,b,sum(c) over(partition by a order by b) from table.
    how to implement "sum(c) over(partition by a order by b)" in odi interface mappings

    Hi
    if you don't want to aggregate try to define a user function
    analytic_sum($(value))
    implémented by
    sum($(value))
    after that
    replace your
    sum(NOTICES) over ( partition by property order by RELAVANTDATE range between interval '30' day preceding and current row)
    by
    analytic_sum(NOTICES) over ( partition by property order by RELAVANTDATE range between interval '30' day preceding and current row)

  • How to implement a view or access implementation file in webDynpro?

    Hello,
    I'm actually working on developping a simple component with webDynpro, enabling user to fill two inputfields and send the answers by clicking on a button. The problem is when i'm trying to open the view with java editor, i get the error:
    "The implementation file for ...View was not found and the implementation editor could not be opened" plus possible explanations for the problem not very helpful. I thought that when i'm adding methods and events, there is a file that is generated. And if not, how will i implement my methods?
    Cheers.

    Hi,
    Assuming your installation of the NWDS was successfull.
    You can right click on your project and select repair class path and project structure.
    If this doesnt help, try to create a new project in different workspace.
    Regards
    Ayyapparaj

  • How to implement Applet Viewer?

    Do you know? Teach me please!

    Implementing in the sense? Working with appletviewer? I am not sure what you need, but let me tell how to work with it.
    Applets created can be viewed in Java enabled Browsers, and also from DOS. If you need to view your applet from DOS, then do this
    1. Create an Applet,compile it e.g MYApplet.java
    2. Create an HTML page and embed the applet(.class) file in the <applet> tags e.g MYApplet.html
    3. from DOS do this, e.g. c:\appletviewer MYApplet.html
    You can see it working.
    Hope it helps
    Uma
    http://www.javagalaxy.com

  • How to implement custom view of certain elements in a JTextPane?

    Hi. I'm writing an application with a JTextPane in which I want to allow a style or attribute to be added to an (arbitrary) span of text, which will then result in a rectangle being drawn around that span of text. But I'm not sure how to do this.
    I figure it will be necessary to extend one of the subclasses of View, but I'm not sure how to work that into my Document. Will I have to create a custom ViewFactory, or a custom EditorKit? Not sure I'd know how to do that.
    Any pointers would be much appreciated.
    Cheers,
    Gregory

    Here's the version I came up with. For some reason the width and height parameter of the two methods have a slightly different meaning which through me off for a while. Seems silly to me. Anyway it appears to work now:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class RectangleHighlighter extends DefaultHighlighter.DefaultHighlightPainter
        public RectangleHighlighter(Color color)
            super( color );
        public Shape paintLayer(Graphics g, int offs0, int offs1,
            Shape bounds, JTextComponent c, View view)
            Color color = getColor();
            if (color == null)
                g.setColor(c.getSelectionColor());
            else
                g.setColor(color);
            if (offs0 == view.getStartOffset() && offs1 == view.getEndOffset())
                // Contained in view, can just use bounds.
                Rectangle alloc;
                if (bounds instanceof Rectangle)
                    alloc = (Rectangle)bounds;
                else
                    alloc = bounds.getBounds();
    //            g.fillRect(alloc.x, alloc.y, alloc.width, alloc.height);
                g.drawRect(alloc.x, alloc.y, alloc.width - 1, alloc.height - 1);
                return alloc;
            else
                // Should only render part of View.
                try
                    // --- determine locations ---
                    Shape shape = view.modelToView(
                        offs0, Position.Bias.Forward, offs1,Position.Bias.Backward, bounds);
                    Rectangle r = (shape instanceof Rectangle)
                        ? (Rectangle)shape : shape.getBounds();
    //                g.fillRect(r.x, r.y, r.width, r.height);
                    g.drawRect(r.x, r.y, r.width - 1, r.height - 1);
                    return r;
                catch (BadLocationException e)
                    // can't render
            // Only if exception
            return null;
        public static void main(String[] args)
            JTextPane textPane = new JTextPane();
            textPane.setText( "one\ntwo\nthree\nfour\nfive\nsix\nseven\neight\n" );
            JScrollPane scrollPane = new JScrollPane( textPane );
            //  Highlight some text
            RectangleHighlighter cyan = new RectangleHighlighter( Color.CYAN );
            RectangleHighlighter red = new RectangleHighlighter( Color.RED );
            try
                textPane.getHighlighter().addHighlight( 8, 14, cyan );
                textPane.getHighlighter().addHighlight( 19, 24, red );
            catch(BadLocationException ble) {}
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            frame.getContentPane().add( scrollPane );
            frame.setSize(300, 200);
            frame.setVisible(true);
    }

  • How to implement Filewatcher process using ODI

    Hi,
    I need to build an ODI package that will check for a specific file in a specific directory after specific time intervals i.e. it will be a filewatcher process.
    My operating system in WINDOWS 7.Could you please let me know how to achieve this.
    Regards,
    Rashmik

    Implement OdiFileWait.
    Refer below link for more details.
    http://gerardnico.com/doc/odi/webhelp/en/ref_tools/snpsfilewait.html
    Bhabani
    http://dwteam.in

  • How to Implement table view if I not know table columns ?

    I need to create table with WebDynPro IView, columns of which is defined by user input.
    I'm nivice.
    Better if you provide sample how to do it.
    Or, any detailed explanation is welcome.
    And, how to create Hierancical table - format of which depends from user input?
    Hierancical table - sectioned table made by 'group by' SQL operation.
    thanks

    thanks Pedro 
    but I did not understand one important thing, to some complete understanding:
    does a way to visualize SQL Select query - to define big? dynamically hand coded program?
    Or -does exist table controls that can show result of SQL query ?
    Does exist class structures that can own abstract Data from query,
    like result set which includes scheme of data, (collection of fields and types) ?
    does exist such a third-party libaries?
    evidently, such dynamic programming is used in almost every task ,
    using same and well known methods in pure programming languages (not WedDynPro)
    so  must they exist methods to automate such a big programming ?
    something useful
    Re: Table binding at runtime
    How to add columns in table at runtime?

  • How to perform loop action in ODI

    hi all,
    i want to implement a function which fetches data from 3 tables and then inserts into one table
    but the problem is there with the loop.
    the function contains a loop and i dont know how to implement a loop in odi.
    anyone can give a solution.
    regards,
    prateek.

    hi guru,
    yes i have fk between the tables but i am not able to understand that how to apply the exit condition and how to tell the interface that if the exit condition is not satisfied then again loop back.
    can you please explain this in detail.
    thanks and regards,
    prateek sharma.
    Edited by: user11116379 on May 21, 2009 5:32 AM

  • Implement a View Object with multiple entity objects

    Hi
    In 'How to' section on the 'otn.oracle.com' (Jdeveloper) web site is tutorial how to implement a View Object with multiple updateable dependent entity objects.
    It allows user to insert an employee and a department at the same time.
    But I would like to change this example to insert a new department only if it does not already exist. How to change this sample?
    Is there any other way to this?
    Thanks
    Regards
    Gorazd

    Once again the structure, sorry.
    ViewObject
    |-ParentEntityObject
    ..|-PId
    ..|-PAttribute
    ..|-CId (FK)
    |-ParentChildAssociation
    |-ChildEntityObject
    ..|-CId
    ..|-CAttribute
    Christian

  • How to implement this aggregate logic at target column in odi inteface mapp

    sum(NOTICES) over ( partition by property order by RELAVANTDATE range between interval '30' day preceding and current row)
    how to implement this aggregate logic at target column in odi inteface mappings

    Hi
    if you don't want to aggregate try to define a user function
    analytic_sum($(value))
    implémented by
    sum($(value))
    after that
    replace your
    sum(NOTICES) over ( partition by property order by RELAVANTDATE range between interval '30' day preceding and current row)
    by
    analytic_sum(NOTICES) over ( partition by property order by RELAVANTDATE range between interval '30' day preceding and current row)

  • How to implement the shared lock in a  table view

    Hi,
    How to implement the shared lock in a  table view.for multiple users to edit on this same table.
    Thanks in advance
    Swathi

    Hi,
    Please refer this link to find solution to your querry.
    Hope it helps.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c322c690-0201-0010-fb86-811c52b0acc2.
    Regards,
    Rahul

  • How to implement maps in obiee11g and configure map viewer

    Dear All,
    Greeting for the day,
    I am trying to explore obiee11g, ,how to implement the maps that is one of the finest features incorporated in obiee11g, and what all configurations(if required) are to be done. or any helpful documentation regarding same.
    Please help!!!!
    Thanks in advance
    Regards

    Hi,
    Check the RittmanMead-blog
    http://www.rittmanmead.com/2010/08/oracle-bi-ee-11g-map-views-integration-with-mapviewer/
    Good Luck,
    Daan Bakboord
    http://obibb.wordpress.com

  • How To Implement CDC in ODI

    Hi Experts,
    Could you please guide me how to implement CDC in ODI.
    I am new to CDC. I have basic knowledge of ODI.
    Please let me know the steps/Process/Document which will be helpful to achieve CDC.
    Cheers,
    Andy

    Hi Andy,
    As per you asked,adding some more link to Rathish's reply,
    You can get some videos which talk about CDC from,
    http://www.oracle.com/technology/products/oracle-data-integrator/webcasts/odi-webcasts/odi-webcast-archives.html
    In the above link there are 2 webcasts which is all about CDC. Have a look and let us know if you need more help.
    PS: I suggest you to bookmark that link, once in a month 2 webcasts will be uploaded.
    Thanks,
    G

Maybe you are looking for

  • Lion Server - Can access web server, not VPN.

    Hello! I have a 10.7 Server serving both VPN and a website. It has an external IP via NAT in the firewall, and I can access the website perfectly fine via the external IP, however I cannot connect to VPN externally. I have been able to connect within

  • Problem with java packages

    i have defined a package that contains numerous files. the package is com.assignment. now there are two files inside the package namely member and friends. when i try to call the member class in the friends class suppose member newmember; it gives me

  • AppleTV MLB.TV Invalid User Credentials Question

    I am trying to log in to my mlb.tv account on appleTV and I'm getting an Invalid User Credentials message with a "identification error on identity point of type fingerprint" submessage. I went to the support forums on mlb.com and the moderator there

  • ID Server and Policy Agent for AS .. is secure?

    Hello there, I have a question. Quite critical question, concerning iPlanetDirectoryPro cookie. If I've got it right, this cookie contains SSO Token. And the SSO token can be used with identity server to obtain any SSO assetion. I've experimentaly co

  • I "upgraded to Firefox 4 and suddenly Yahoo is my toolbar. How do I get rid of Yahoo??

    The Yahoo toolbar appeared simultaneously with my upgrade to Firefox 4. I remember seeing a question, "Do I want the Yahoo toolbar." My intent was to say no...It might have been one of those tricky questions. Anyway..how do I eliminate this Yahoo too