Expanding possible scenarios in a view

Hi,
I'm trying to expand out business rules which use a 'one of this group and one of this group...' type logic e.g.:
there are 3 groups:
in the first group are 2 options
in the second group there are 3 options
in the third group there are 3 options
I need my end result to be a full set of data for every scenario:
Scenario Group Option
1 1 a
1 2 a
1 3 a
2 1 a
2 2 a
2 3 b
3 1 a
3 2 a
3 3 c
4 1 a
4 2 b
4 3 a
currently I have managed to create the correct number of rows for each option for each scenario, but I can not devise a way of ordering them to give the 'Scenario' column in the above example.
Any help would be most appreciated. If more info is needed, please let me know.
Thanks,
Julian

Hi, Julian,
Welcome to the forum!
905015 wrote:
Hi,
I'm trying to expand out business rules which use a 'one of this group and one of this group...' type logic e.g.:
there are 3 groups:
in the first group are 2 optionsIn the output below, it looks like 'a' is the only option when grp=1. (GROUP is not a good column name.)
in the second group there are 3 optionsAgain, it looks like there are only 2 options, 'a' and 'b', for grp=2.
in the third group there are 3 options
I need my end result to be a full set of data for every scenario:
Scenario Group Option
1 1 a
1 2 a
1 3 a
2 1 a
2 2 a
2 3 b
3 1 a
3 2 a
3 3 c
4 1 a
4 2 b
4 3 aWhat is a "scenario" in this problem?
Why do you not want, for example:
Scenario     Grp     Option
5          1     a
5          2     b
5          3     b     ?
currently I have managed to create the correct number of rows for each option for each scenario, but I can not devise a way of ordering them to give the 'Scenario' column in the above example.
Any help would be most appreciated. If more info is needed, please let me know.As Newbie said, post CREATE TABLE and INSERT statements for your sample data, and the results you want from that data (if they are not exactly what you posted already.)
Explain how you get those results from that data.
Always say which version or Oracle you're using.
You can get all combinations (one item from grp=1, one from grp=2 and one from grp=3) like this:
SELECT  ROW_NUMBER () OVER (ORDER BY NULL)     AS scenario
,       SYS_CONNECT_BY_PATH (option, '/')     AS option_list
FROM     table_x
WHERE     CONNECT_BY_ISLEAF     = 1
START WITH     grp     = 1
CONNECT BY     grp     = 1 + PRIOR grp
;This will produce one row per combination (perhaps that's what you mean by "scenario") like this:
SCENARIO     OPTION_LIST
1          /a/a/a
2          /a/a/b
3          /a/a/c
4          /a/b/a
...If you want a separate output row for each combination and grp, then you can split apart the option_list like this:
WITH     got_option_list          AS
     SELECT  ROW_NUMBER () OVER (ORDER BY ROWNUM)     AS scenario
     ,       SYS_CONNECT_BY_PATH (option, '/')     AS option_list
     FROM     table_x
     WHERE     CONNECT_BY_ISLEAF     = 1
     START WITH     grp     = 1
     CONNECT BY     grp     = 1 + PRIOR grp
     ORDER SIBLINGS BY     option
,     all_groups     AS
     SELECT DISTINCT     grp
     FROM          table_x
SELECT       o.scenario
,       g.grp
,       REGEXP_SUBSTR ( option_list
                      , '[^/]+'
                     , 1
                     , g.grp
                     )          AS option
FROM          got_option_list     o
CROSS JOIN     all_groups     g
ORDER BY  o.scenario
,       g.grp
;Of course, since I don't have your table, I can't actually test this.
Notice that this solution does not assume you know how many options are in the different grps. It doesn't even assume you know how many grps there are. It does assume that the groups are numbered with consecutive integers, starting with 1. If that's not the case, use the analytic DENSE_RANK function to map the actual grp values (they don't have to be NUMBERs) to 1, 2, 3, ...

Similar Messages

  • Possible Scenarios

    Hi,
    I got some thing in my mind, when i am reading about XI. What are the possible scenarios will be needed for a given business requirment, i have some business requirment with me(ofcourse its not real, just an idea out from my mind).
    First: Lets assume there is some Truck manufacturing company called <b>XYZ</b>, which spreaded its business all over the world. which has truck making units in Europe, America and Asia. Its using SAP R/3,SAP R/2 systems & Legacy systems
    It has sales locations, dealers (assume they using <b>Web Based</b> and <b>Thirdy Party</b> systems)
    Got some suppliers too, assume they are using standalone (third party) systems and receive & send the data by any other means.
    Now, this <b>XYZ</b> company wants to integrate its R/3, R/2 Legacy, Thirdparty, Standalone, Web Applications using SAP XI.
    What are all the possible scenarios needed to integrate all these things and which funtional areas? For example if we take Main Office of XYZ and one Supplier location, what are scenarios we wiill have.
    Suggest me, The reason why i need like this becuase, want to deal XI in real time way..
    Thanks in advance.
    Jen

    HI,
    If you are talking about Suppliers, vendors etc, then XYZ company can go for mySAP implementation first (SRM etc) then you can communicate with XI , by webservices, proxies, RFCs,Idocs etc. Because for many of the SAP application components, SAP provides predelivered content.
    If your implemenation is global across the geographies, then XI can act here as a centralized integration platform.
    I think, it is better to go with Case studies for a Manufacturing Firms. here you go ~
    http://www.sap.com/usa/platform/netweaver/pdf/CS_2005_CS_Case_Studies.pdf
    http://www.sap.com/usa/platform/netweaver/pdf/CS_NW_Magazine_New_Era_Whirlpool.pdf
    This is just my views
    Regards,
    Moorthy

  • Is it possible the query in view object is dynamic?

    Is it possible the query in view object is dynamic?
    Generally, make the column list dynamic.
    I think this is related to whether view object can be assembled at runtime based on a dynamic cursor in a procedure?
    I ask this because I would like to know how we can use OA framework to simulate crosstab workbook in Discoverer?
    Anybody has some clues, please advise.
    Thanks.

    Hi Shay,
    Let me tell you briefly... I am sending input as customerId,customerNumber,CustomerName to the web service, if the record is available i am getting the response and i am displaying those records on page as a table. Now when i click a row i need to populate another table with all sale orders of that customer. From webservice datacontrol i have only customer object, I dont have Sales Order Object. For this i need master detail relation. In this case how to proceed. Thats why i am thinking to create a vO and EO object for sales orders table and i want to create view link for this sales order and customers. As i don't have customer VO and EO object to create view link.

  • Is it possible to create relational view on Analytic Workspace in Oracle 9i Release1

    Hi All,
    We are in the initial stages of Oracle 9i OLAP prototype. Since the current version of BIBeans 2.5 does not work with Release 2 of Oracle 9i OLAP, we are planning to use Oracle 9i OLAP Release 1. So can you please answer the following questions.
    1. Is it possible to create relational view on Analytic Workspace(like in Release 2) and populate the OLAP catalog, if so can you give me guidance to get the appropriate user guide. The OLAP DML guide in Release 1 talks about creating OLAP catalog metadata for Analytic Workspace using a metadata locator object.
    2, Is it advisable to use Oralce 9i OLAP Release 1? Does the Analytic Workspace and the corresponding BIBeans work in Release 1?
    Thank you,
    Senthil

    Analytic Workspaces (Express/multidimensional data objects and procedures written in
    the OLAP DML) are new to Oracle9i OLAP Release 2, you cannot find them in Release 1.
    BI Beans will soon (within a week) introduce a version on OTN that will work with Oracle9i OLAP Release 2.

  • Is it possible to modify a view at run time?

    Hi,
    I am relatively new to using SQL Server, so sorry if this is impossible or very easy and I missed the solution.
    I am working on an enterprise SQL Server 2008 R2.  Because of the size of the company, we do not want to create new Views as they need to be maintained.  With that said, I need to use Views and not tables because of DB traffic issues.
    HERE IS MY QUESTION:
    Is it possible to Alter a view at run time; in this specific instance I want to change a constraint in the WHERE clause to include one more value in an IN() constraint.  Specifically I want the modified SQL to go from WHERE column IN('A', 'B', 'C')
    to 
    WHERE column IN('A', 'B', 'C', 'L').  I do not want to permanently modify the View, I just want the View to change when it is run for this report.  I need to do this in order to fix a dynamic report.  I am sure that there is another way to
    accomplish this; however, a solution of this manner would also have many other uses, so I am curious if this is possible. 
    Feel free to tell me that it can be done. 
    Thanks for your ideas!!

    Right, I understand those fundamentals.  We outsource a lot of out view creation and do not have permission to create views for Business reasons; these are beyond my control.  However, I can see the source code to many Views.  We have also
    been told that we should not use tables in our queries.  Therefore, I need to use existing Views.  Specifically, I would like to add an additional value to an IN() constraint.  This would change the constraint as showed below: 
    IN('A', 'B', 'C') ---> IN('A',
    'B', 'C', 'L')
    I am wondering if this change can be made when the view runs and only for this one report, with the change being made from the report.  This would be very easy if the constraint was removing a value.  Obviously I could change the constraint from
    IN('A', 'B', 'C') to IN('A','B') very easily with out modifying the View. This would be done by writing a query against the view and in the WHERE clause adding the new IN('A', 'B') statement.  However, I want to do the opposite and add a value...

  • Is it possible to maintain a view vai Batch Input

    Hi guys,
    The user required to develop a BDC program to upload the data source from outside of SAP, and maintain these data into a view via Tcode: SM34. But it seems the view doesn't support Batch input.....
    Can anybody tell me, is it possible to maintain a view via Batch input? Many thanks!
    Brian Liu

    Additional information:
    This requirement is to upload the Overhead Rate data from outside of SAP, and maintained via KZM2 or SM34. But when I tried to record a BDC for KZM2, it seems that the SAP can not support batch input.
    I find a SAP note 208474, it says:
    Symptom
    Overhead rates of the costing sheet of the overhead rates, which have been created, changed or deleted via batch input or Call Transaction, are not saved.
    The same rates are saved if processing is carried out via Transaction KZZ2 or the Implementation Guide IMG.
    Cause and prerequisites
    Processing the Customizing transactions for maintaining the overhead rates of the costing sheet (Transaction KZZ2, KZM2) is
    not supported in the batch input. This corresponds to the SAP standards according to which Customizing transactions in general need not necessarily be capable of batch input.
    The batch input data of the overhead rates are not saved in the standard because processing is terminated by a COMMIT WORK. This statement ensures that the internal tables for the transport of the overhead rates are only deleted if their transfer to the database tables to be transported has been processed successfully.
    Solution
    The subsequent modification allows batch input processing of the overhead rates, by suppressing the COMMIT WORK statement. As a result of the modification, the tables in the transport request of the overhead rates may be incomplete in single cases.
    In cases where the overhead rates have not been transferred completely to the target system after implementation of the modification, include the overhead rates again in a transport request, repeat the transport and, if necessary, subsequent processing.
    Note that the attached modifications are not and will not be included in the R/3 standard system.
    I modified the sap standard program L0COEF04 according to another SAP note 150041, but after the modification, I still couldn't record the BDC.
    Anybody who have ever met the same situation, or can give me some suggestion? With many thanks!
    Brian Liu

  • Is it possible to create a view where table in the From clause changes name

    is it possible to create a view from a from a table like this
    create view my_view as select id, col1, col2, result from <<my_latest_cacahe_table>>;
    the table in the from clause changes the name .
    I have another table which indicates the the latest name of my cache tables. Always there are two records there. The latest one and previous one.
    select * from cache_table_def
    table_name cache_table_name refresh_date
    my_table cache_table245 1/23/2012
    my_table cache_table235 1/22/2012
    create table cache_table_def (table_name varchar2(25), cache_table_name varchar2(25), refresh_date date);
    insert into cache_table_def values( 'my_table','cache_table245','23-jan-2012');
    insert into cache_table_def values ( 'my_table','cache_table546','22-jan-2012');
    create table cache_table245 (id number, col1 varchar2(50), col2 varchar2(20), result number);
    insert into cache_table245 values(1, 'test123', 'test345',12.12);
    insert into cache_table245 values (2, 'test223', 'test245',112.12);
    create table cache_table235 (id number, col1 varchar2(50), col2 varchar2(20), result number);
    insert into cache_table235 values (1, 'test123', 'test345',92.12);
    insert into cache_table235 values (2, 'test223', 'test245',222.12);
    what I need to do is find the latest cache_table name for my_table and use that in my view defintion
    When user select from the the view it always reurns the data from the latest cache_table
    is it possible to do something like this in oracle 11g?
    I have no control on the cache tables names. that is why I need to use the latest name from the table.
    Any ideas really appreciated.

    I've worked up an example that does what you ask. It uses the SCOTT schema EMP table. Make two copies of the EMP table, EMP1 and EMP2. I deleted dept 20 from emp1 and deleted dept 30 from emp2 so I could see that the result set really came from a different table.
    -- create a context to hold an environment variable - this will be the table name we want the view to query from
    create or replace context VIEW_CTX using SET_VIEW_FLAG;
    -- create the procedure specified for the context
    - we will pass in the name of the table to query from
    create or replace procedure SET_VIEW_FLAG ( p_table_name in varchar2 default 'EMP')
      as
      begin
          dbms_session.set_context( 'VIEW_CTX', 'TABLE_NAME', upper(p_table_name));
      end;
    -- these are the three queries - one for each table - none of them will return data until you set the context variable.
    select * from emp where 'EMP' = sys_context( 'VIEW_CTX', 'TABLE_NAME' );
    select * from emp1 where 'EMP1' = sys_context( 'VIEW_CTX', 'TABLE_NAME' );
    select * from emp2 where 'EMP2' =  sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    -- this is how you set the context variable depending on the table you want the view to query
    exec set_view_flag( p_table_name => 'EMP' );
    exec set_view_flag( p_table_name => 'EMP1' );
    exec set_view_flag( p_table_name => 'EMP2');
    -- this will show you the current value of the context variable
    SELECT sys_context( 'VIEW_CTX', 'TABLE_NAME' ) FROM DUAL
    -- this is the view definition - it does a UNION ALL of the three queries but only one will actually return data
    CREATE VIEW THREE_TABLE_EMP_VIEW AS
    select * from emp where 'EMP' = sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    union all
    select * from emp1 where 'EMP1' = sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    union all
    select * from emp2 where 'EMP2' =  sys_context( 'VIEW_CTX', 'TABLE_NAME' )
    -- first time - no data since context variable hasn't been set yet
    SELECT * FROM THREE_TABLE_EMP_VIEW
    -- get data from the EMP table
    exec set_view_flag( p_table_name => 'EMP' );
    SELECT * FROM THREE_TABLE_EMP_VIEW
    -- get data from the EMP2 table
    exec set_view_flag( p_table_name => 'EMP2');
    SELECT * FROM THREE_TABLE_EMP_VIEW
    For your use case you just have to call the context procedure whenever you want to switch tables. You can union all as many queries as you want and can even put WHERE clause conditions based on other filtering criteria if you want. I have used this approach with report views so that one view can be used to roll up report data different ways or for different regions, report periods (weekly, quarterly, etc). I usually use this in a stored procedure that returns a REF CURSOR to the client. The client requests a weekly report and provides a date, the procedure calculates the START/END date based on the one date provided and sets context variables that the view uses in the WHERE clause for filtering.
    For reporting it works great!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Possible Scenarios where we can use OS command of file adapter

    Hi all,
    I would like to know the possible scenarios in which we can use the OS command feature in file adapter,I have tried zipping the file,copying the file,unzipping the file using this option.Any other inputs on this feature are appreciated.
    Thanks,
    Amit

    Hi,
    Executing Unix shell script using Operating System Command in XI                         
    Executing Unix shell script using Operating System Command in XI                              
    Performing FTP Commands From ABAP                              
    Performing FTP Commands From ABAP                              
    Thanks,
    Madhu

  • Is it possible to create materialized view log file for force refresh

    Is it possible to create materialized view log file for force refresh with join condition.
    Say for example:
    CREATE MATERIALIZED VIEW VU1
    REFRESH FORCE
    ON DEMAND
    AS
    SELECT e.employee_id, d.department_id from emp e and departments d
    where e.department_id = d.department_id;
    how can we create log file using 2 tables?
    Also am copying M.View result to new table. Is it possible to have the same values into the new table once the m.view get refreshed?

    You cannot create a record as a materialized view within the Application Designer.
    But there is workaround.
    Create the record as a table within the Application Designer. Don't build it.
    Inside your database, create the materialized with same name and columns as the record created previously.
    After that, you'll be able to work on that record as for all other within the Peoplesoft tools.
    But keep in mind do never build that object, that'll drop your materialized view and create a table instead.
    Same problem exists for partitioned tables, for function based-indexes and some other objects database vendor dependant. Same workaround is used.
    Nicolas.

  • Reg: Provide the best possible Scenarios regarding Planning feature of Analysis office as given below

    Hello Everyone,
    I am able to save the data back to the target from analysis workbooks using the Planning feature of the tool.
    Please, can anyone Provide the best possible Scenarios regarding Planning feature of Analysis office.
    Any answer is appreciable
    Regards,
    Karteek

    Hi
    Thank you for your post.
    The reason why your contacts didn't display is currently the Tamil language is not supported by the Windows 7.5 OS and we do not have any information if this language will be supported in the future or not. The current list of supported languages are:
    Brazilian Portuguese, Chinese (simplified and traditional), Czech, Danish, Dutch, Finnish, Greek, Hungarian, Japanese, Korean, Norwegian (Bokmål), Polish, Portuguese, Russian, and Swedish.
    In regards to being a smart phone, these come from a variety of manufactures using a variety operating systems each having there own unique way of functioning and features and as such it is the responsibility of the consumers to make an informed choice on what device would suit them based on specifications of the device which includes hard ware or software. There is no unified smartphone requirements as each use's different operating systems.
    So when purchasing a new device it is advisable to do some research on what device would suit your needs and if need be to speak to your local authorised mobile phone retailers for there expert advice. If at the point of purchase you were mis-advised and told that the Windows OS did support the Tamil language then this is something you will need to go back to the point of purchase otherwise it is your responsibility to make sure you choose a device that fully suit your needs.
    Regards
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • Is it possible to add and view your key words when creating a web site from Lightroom 4?

    Is it possible to add and view your key words when creating a web site from Lightroom 4?

    Hi,
    I had the same problem with
    "java.lang.NullPointerException at com.sap.tc.webdynpro.clientimpl.html.uielib.standard.uradapter.ViewContainerUIElementAdapter.getContent(ViewContainerUIElementAdapter.java:98)"
    when I included ViewUsages dynamically in an action handler (outside wdDoInit()).
    The code below fixed that problem.
    This code creates a new OutboundPlug for the embedding view with the embedded view as target and fires the plug.
    <i>// Create OutboundPlug
    IWDOutboundPlugInfo outboundPlug = embedderViewInfo.createOutboundPlug();
    //Create navigation link
    rootViewUsage.createNavigationTarget(outboundPlug.getName(), interfaceViewUsage, "Default");
    // fire navigation link
    wdThis.wdGetAPI().firePlug(outboundPlug, Collections.EMPTY_MAP);
    </i>
    I hope I could help you. Probably you don't need the information anymore, but perhaps anybody else has the same problem.
    Regards, Alex

  • Possible scenarios with XI, SAP AutoId, RFID combination.

    Hi All,
    Could you please provide the answers to the below questions
    1. What all possible scenarios we can do with SAP AutoId using RFID datas?
    2. I would like to do scenarios with and without SAP Netweaver XI for the above case. Please provide some scenario examples.
    Regards
    Sara

    Hi Sara,
               The possible scenarios of SAP Auto ID are many. You can have a detailed documentation on th esupported processes by SAP Auto ID on the following link:
    http://help.sap.com/saphelp_autoid70/helpdata/en/5f/064f36300247b686bf0233454dbeb1/frameset.htm
    Without using XI, you will not be able to integrated with SAP ERP.
    So only process thats possible wihtout XI in SAP Auto ID is Slap and Ship Process. The same process has also been explained in the above link.
    I hope this helps. Please revert if you any other doubts.

  • Is it even possible to dynamically apply view criteria in an ADF Web App?

    This is one of those situations where something that should take an hour ends up taking days.
    * I have a view.
    * The view has Bind Variables associated with it.
    * The view has View Criteria associated with it.
    * Each of the View Criteria use different Bind Variables.
    * I have a search criteria input page that receives from the user what will ultimately be used to set the bind variables.
    * I have a search results page that uses the view to display a table.
    * I have the code that dynamically sets view criteria and parameters. It is based on the following:
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvvo.htm#BCGFHAGA
    * This code works great, until the iterator associated with the table binding to the view is initialized. At that time, the view is reset to its defaults, and all of my code's doings are discarded. How do I know this? Because I have gone so far as to run my code that sets view criteria and binding variables dynamically in a phase event handler for the search results page in the render response phase. There is no other point at which to dynamically modify the view.
    This is turning into a situation where it seems I will need 5 different views and 5 different pages in order to show a single set of query results. I cannot get dynamically applied view criteria to work in an ADF web app. Has anyone else done it? Can anyone relate to this? Are there any other suggestions before I conclude that it's not possible for this framework to handle this simple scenario?
    Thanks

    There must be a setting or something that I am still missing here. If I write code just like this and make sure it is executed, I still only see the results of my view executed without the view criteria applied using the default bind variable values that I supplied in the view object.
    It's like the fact that I set the bind variables, the view criteria, and executed the view query programmatically is lost on the iterator -- it's like it never happened. What setting is used to ensure that the iterator uses the outcome of what I executed programmatically? There has to be a critical set or setting that I am missing.
    Here is the iterator and search region definitions defined in the page def "executables" section:
      <executables>
         <iterator Binds="CustomSearchView1" RangeSize="25"
                  DataControl="AppModuleDataControl"
                  id="CustomSearchView1Iterator"/>
        <searchRegion Binds="CustomSearchView1Iterator"
                      Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                      id="CustomSearchView1Query"/>
        </executables>Here's the "tree" binding in the page def file:
      <bindings>
       <tree IterBinding="CustomSearchView1Iterator" id="CustomSearchView1">
          <nodeDefinition DefName="Model.CustomSearchView" Name="CustomSearchView10">
            <AttrNames>
              <Item Value="CustomId"/>
              <Item Value="CustomProjectNumber"/>
              <Item Value="CustomName"/>
              <Item Value="CustomStatus"/>
              <Item Value="CustomStatusDate"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
      </bindings>In an effort to take page flow out of this mess, I had modified this to include the search criteria and search results on a single page. So, I now have a "Search" button. When the "Search" button is clicked, the action method does the following:
        public String searchActionListener ()
              // Get search criteria from select one choice and text input controls.
              AppModule appModule =
                    ( AppModule ) Configuration.createRootApplicationModule (
                        "Model.AppModule",
                        "AppModuleLocal");
              appModule.customSearch( searchCriteria1,
                                                   searchCriteria2,
                                                   searchCriteria3 );
        }In my application module this translates to:
        public void customNoticeSearch ( String searchCriteria1, String searchCriteria2, String searchCriteria3)
           CustomSearchViewImpl searchViewImp =
               ( CustomSearchViewImpl ) this.getCustomSearchView1 ();
           searchViewImp.customExecuteQuery ( searchCriteria1, searchCriteria2, searchCriteria3);
        }Finally, in my custom view object implementation code:
        public void customExecuteQuery ( String searchCriteria1, String searchCriteria2, String searchCriteria3 )
            // Set-up the parameters that are part of the core query.
            this.setp_searchCriteria1( searchCriteria1);
            this.setp_searchCriteria2( searchCriteria2);
            if ( searchCriteria3 != null )
                ViewCriteriaManager vcm = this.getViewCriteriaManager();
                ViewCriteria vc = vcm.getViewCriteria ( "WithLastCriteria" );
                this.setp_searchCriteria3( new Number ( searchCriteria3 ) );
                this.applyViewCriteria( vc );
            System.out.println ("This is fun.");
            this.executeQuery();
        }This code executes, but the results table is empty, and I know that there are results, because I can execute use execute with params to execute the base query and get the correct results back.
    Thanks for taking a look at this.

  • Is it possible to filter list view based on current user logged in

    Hi,
    Is it possible to filter the list view results based on the current user logged in. I have a scenario wherein i want to show only those list items to the user which contains his/her name under the column Approver (a list column).
    So if i login to the page, then only those requests should show up which has my name as the Approver, and so on.
    Is it possible please ?
    Thank you.

    Hi Prajk, you could use audience targeting for this. An alternative would be to create a view and add a filter so that "Approver" is equal to [Me]
    cameron rautmann

  • Possible scenario's and handling in SNC5.1

    We are preparing for Go-Live and want to prepare in advance for Interchangeability scenario
    1. What kind of scenario's we can expect in case of interchangeability?
    Is it possible to list the cases and solutions as per case.
    Regards,
    Vaibhav Virkud

    Ok... the "Operator not drilling to KM steps" thing must have been some funky client tool issue... today it worked fine.
    So.... more details:
    - The job references an object from a model that points to the Logical Schema called ORACLE_BANNER_VIEWS. There is another Logical Schema in the topology called ORACLE_BANNER.
    - I cannot tell which Logical Schema the failing step (create view on source) is using... it just says ORACLE_BANNE... and then gets cut off, because the UI widget isn't wide enough and can't be made wider.
    - The "invalid user" being referenced in the execution log is called ETL_USER. That user is in fact tied to the ORACLE_BANNER schema, but not the ORACLE_BANNER_VIEWS logical schema tied to the failing job.
    It's as if the job is using the wrong Logical Schema.
    I've asked the DBA to try deleting the scenario and re-importing, but meanwhile... thoughts on the above?
    -John

Maybe you are looking for

  • Files from macbook pro to iPad

    what is best way to transfer using Mountain Lion?   thank u   joanlvh

  • Messages - missing 'Start New Conversations From'

    Have an iPhone 4 that I am attempting to use without cellular service. Am able to use Facetime but am having a problem with Messages. In the Settings > Messages > Send & Receive the phone does not display the 'Start New Conversations From' section. I

  • How to get album art to appear on nano

    Well, I have all of my songs in iTunes with album artwork, yet when I sync'd a songlist to the nano and play any song, no album art shows up. None. Zero. This should be as easy as transferring the songs. On the itunes window, it lists that 0 photos a

  • How is iOS 7.1 on iPhone 4S?

    Hello. Is it safe to download and install 7.1 over 7.0.6 on an iPhone 4S? I read that 4 has speed improvements, but nothing about 4S. Any issues yet? Thank you in advance.

  • Import from iPad 2

    Can someone kindly advise me if I can import video shots from a iPad 2 onto my Mac computer throu iMovies09. What file format does iPads save to. It is HD or SD?