Conditional query

Dear all,

I need to show a conditional query in my form. I explain more...

I want to use the following query-

Select UCID, PROPOSED_USERID, FULL_NAME
of USERCREATION
where USERCREATION. REC_STATUS = 0;

There are also a few zero no rec_status in this column. I just want to show the rec_status of zero (0) hairy.

Help me please if someone here.

Arif

Arif,

You want to set the condition DEFAULT_WHERE of the block? Can you explain what are your real needs.

Kind regards

Manu.

Tags: Oracle Development

Similar Questions

  • need help for a conditional query

    guys this is just. as an extension of this post that Frank was helping me. IM reposting because my needs change slightly and im having a hell of a time trying to change the query.
    Here are the previous post.
    need help with query can find data back please help.
    CREATE TABLE "FGL"
      (
        "FGL_GRNT_CODE" VARCHAR2(60),
        "FGL_FUND_CODE" VARCHAR2(60),
        "FGL_ACCT_CODE" VARCHAR2(60),
        "FGL_ORGN_CODE" VARCHAR2(60),
        "FGL_PROG_CODE" VARCHAR2(60),
        "FGL_GRNT_YEAR" VARCHAR2(60),
        "FGL_PERIOD"    VARCHAR2(60),
        "FGL_BUDGET"    VARCHAR2(60)
      )
    data
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7600','4730','02','11','00','400');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7240','4730','02','10','1','100');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7240','4730','02','10','1','0');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7600','4730','02','11','1','400');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('360055','360055','7200','4730','02','10','1','400');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('360055','360055','7600','4730','02','10','1','400');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7240','4730','02','10','14','200');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7600','4730','02','10','14','100');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7240','4730','02','10','14','200');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7240','4730','02','10','2','100');
    Insert into FGL (FGL_GRNT_CODE,FGL_FUND_CODE,FGL_ACCT_CODE,FGL_ORGN_CODE,FGL_PROG_CODE,FGL_GRNT_YEAR,FGL_PERIOD,FGL_BUDGET) values ('240055','240055','7240','4730','02','11','2','600');
     
     
    I need to find the year of greater subsidy for the granting by a period setting.
    Once I found the great year, I need to check the value of the period 14 this grant for the previous year and add it to the amount of the budget for this grant. However if there is an entry in the biggest year for period 00 so I need to ignore the period 14 of the previous year and the current calculation period + (current period - more great year 00)

    hope that makes sense, so in other words, with the new data above. If I asking me a second period of the grant year 11. I'd end up with $800

    because the greatest year is 11 it contains one point 0 with $ 400, so my total should be
    amount of period $2,600
    period $0 400 - period $2 600 = $200

    600 + 200 = $800

    If I have question period 1 grant 360055 I'd end up just with 800 grnt year 10.

    I tried to edit this query you have provided me with no luck. I tried for several embarrassed day but I'm saying I can just do what im trying to do.
    can you please help me.


    Here's the query provided by frank kulash who graciously put it together for me.
    WITH     got_greatest_year     AS
    (
         SELECT     fgl.*     -- or whatever columns are needed
         ,     MAX ( CASE 
                     WHEN  fgl_period = :given_period 
                     THEN  fgl_grnt_year
                    END
                  ) OVER ()     AS greatest_year
         FROM     fgl
    )
    SELECT     SUM (fgl_budget)     AS total_budget     -- or SELECT *
    FROM     got_greatest_year
    WHERE     (     fgl_grnt_year     = greatest_year
         AND     fgl_period     = :given_period
         )
    OR     (     fgl_grnt_year     = greatest_year - 1
         AND     fgl_period     = 14
         )
    ;
    Miguel

    Hi, Miguel.

    You are waying that when larger year who has: given_period also a period = '00' (or '0', or whatever it is you want to use), then you want to double the budget of the given_period (subtract the '00' budget and do not count '14' year pevious)? If so, add another condition to the CASE statement that decides what you've summarized:

    WITH     got_greatest_year     AS
    (
         SELECT       TO_NUMBER (fgl_grnt_year)     AS grnt_year
         ,       fgl_period
         ,       TO_NUMBER (fgl_budget)     AS budget
         ,       MAX ( CASE
                       WHEN  fgl_period = :given_period
                       THEN  TO_NUMBER (fgl_grnt_year)
                      END
                    ) OVER ()     AS greatest_year
         FROM       fgl
    )
    ,     got_cnt_00     AS
    (
         SELECT     grnt_year
         ,     fgl_period
         ,     budget
         ,     greatest_year
         ,     COUNT ( CASE
                       WHEN  grnt_year     = greatest_year
                       AND       fgl_period     = '00'
                       THEN  1
                         END
                    ) OVER ()          AS cnt_00
         FROM    got_greatest_year
    )
    SELECT       SUM ( CASE
                        WHEN  grnt_year     = greatest_year                    -- New
                  AND       fgl_period     = :given_period                    -- New
                  AND       cnt_00     > 0            THEN  budget * 2     -- New
                        WHEN  grnt_year     = greatest_year
                  AND       fgl_period     = :given_period       THEN  budget
                        WHEN  grnt_year     = greatest_year
                  AND       fgl_period     = '00'            THEN -budget
                        WHEN  grnt_year     = greatest_year - 1
                  AND       fgl_period     = '14'
                  AND       cnt_00     = 0            THEN  budget
                    END
               )          AS total_budget
    FROM       got_cnt_00
    ;
    

    You will notice it is the same as the previous query, I posted, with the exception of 3 lines marked 'new '.

  • How to write conditional query?

    I have a use case-

    on the basis of the value of the entry, I need to run the query.

    for example

    Select * from employees where em em. empId =? and em.firstname =? and em.jobid =?
    Select * from employees where em em. empId =? and em.firstname =?

    I need to write a query that is used internally this time condition and return records

    Select * from employees where em
    If (EM.) JobID is nothing)
    {
    Select * from employees where em em. empId =? and em.firstname =?
    }
    on the other
    {
    Select * from employees where em em. empId =? and em.firstname =? and em.jobid =?
    }


    How could I write this problem in sql?

    Hello

    You can try the following:
    Select * from employees where em em. empId =? and em.firstname =? and (em.jobid =? or em.jobid is null).

    Kind regards
    Rommel Pino
    http://soadev.blogspot.com

  • Is this a bug? Conditional query

    {color: #000000} Hello

    I have a button of the region which submits the application {color: #993366} APPLY_CHANGES {color}
    On this page I have a {color: #993366} pl/sql {color} page process with a condition that {color: #993366} application is contained in the Expression 1 {color}
    Expression 1 contains the following string: {color: #993366} APPLY_CHANGES_DSG, APPLY_CHANGES_DEF {color}
    To my amazement the page process runs when the page is submitted to a request of the {color: #993366} APPLY_CHANGES {color}
    {Obviously instead of checking the list of values in the Expression 1 against this query, the condition is simply a color: #993366} instr (EXPRESSION1, REQUEST) {{color}

    Aid reads:
    >
    The APPLICATION is an internal attribute this
    titles of the way a page is sent. By default, when a page is
    submitted, the REQUEST value is set according to the
    event that caused the page to be submitted. For example, the event
    could be when a user clicks a button or selects a dependent tab
    the event, you can perform different operations by referring to the
    the value of the attribute request.
    This condition allows to specify {color: #ff0000} * allowed a query list * {color} (such as
    SAVE or update) in the Expression 1. The condition is true if the
    DEMAND value is contained in the list.
    {color}
    Especially this {color: #ff0000} list of authorized requests {color} brought me to wait he would check: separation by a comma rather than simply do an Instr. could someone please explain to me what is the behavior that I should wait. Is this a bug or is it not?


    Thank you


    Geert




    Geert - it works as expected. The condition for your situation is:

    Value of the element in the Expression 1 is contained in the list delimited by a colon in the Expression 2

    Equip & REQUEST. Expression 1.

    Put APPLY_CHANGES_DSG:APPLY_CHANGES_DEF in the Expression 2.

    Scott

  • need help to write a conditional query recordset

    I have two fields or not in the database. VeteranMarker and VeteranNoMarker. Answering one can be Y or N.
    I want to write a statement for my detail page where there is a label "veteran? If VeteranMarker or VeteranNoMarker has a Y in the database, then I want to display "YES" next to the label of "veteran? If neither has a Y, then I want to say 'NO '.

    The recordset is called DetailRS1, the fields would be so (I think) DetailRS1.VeteranMarker and DetailRS1.VeteranNoMarker.

    I have no idea how to write a conditional statement to achieve this.

    Thanks in advance,
    Miriam

    I think I have it solved. Here is the code, and it seems to work. If this is correct, I hope it can help someone else too.

  • Is it possible to have a conditional IF query in an interactive relationship with Apex?

    I wonder if it is possible to have a conditional query in an interactive report (Apex 4.2). I sometimes find myself in situations where it would be nice to return different queries. For example:

    Let's say I have a table of users as follows: usersTable

    User_id NAME Username AUTHORIZATION
    1Joe SmithJS102Admin
    2Tom JonesTJ815General

    There are two types of permissions: Admin and general.

    What I would do is to check the authorization of the user. If the user Admin back query1, type if the user of the general type, return query2. Sketch of would be (still not sure is possible) the code is as follows:

    declare

    vAuth varchar2 (20);

    Start

    Select the authorization in vAuth

    of usersTable

    where username = (select v ('APP_USER') of double);

    If vAuth = "Admin" then

    Query1;

    elsif vAuth = "Général" then

    query2;

    end if;

    end;

    Conclusion: There's something like this using an interactive report? Or a classic report also. If so, what would you do? If this is not the case, what do you recommend?

    The query is of type VARCHAR2, so your code should be something like this:

    DECLARE

    v_query1 VARCHAR2 (4000);

    BEGIN

    v_query1: = ' SELECT * FROM EMPLOYEES ";

    RETURN v_query1;

    END;

  • Table - Conditional SQL possible?

    Request Express 4.1.1.00.23

    I was wondering if the following is possible.
    I created users and groups.
    for example;

    User1
    User2
    util_3

    Group1
    group2

    I have assigned users to groups as follows:

    Members of Group 1
    User1
    User2

    Members of the Group 2
    util_3

    In my table, I have a column called visibility values will be either 'Internal only' and 'Public '.
    Is there a way I can use a conditional query that will do the following:

    If apex_util.current_user_in_group ('Group1') then
    Select * from customer where visibility = Public

    and

    If apex_util.current_user_in_group ('Group2') then
    Select * from customer where visibility = internal only

    I've been Googling the hell out of it, I generally use PHP and create the page from scratch, but I think that Apex will be useful if I can learn how to use it!
    Thank you for your time :D

    Create a hidden page item - call him

    P1_VISIBILITY
    

    Create a page of calculation for this element of type PL/SQL function and put the following code:

    BEGIN
       IF apex_util.current_user_in_group ('Group1')
       THEN
          RETURN 'Public';
       ELSIF apex_util.current_user_in_group ('Group1')
       THEN
          RETURN 'Internal Only';
       END IF;
    END;
    

    Your query:

    SELECT *
      FROM customer
     WHERE visibility = :p1_visibility
    

    should now work as expected. There are several ways to do so in the APEX. It's just one of them and easy to understand.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Apress.com/9781430235125
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • 5.8.1 infrastructure cartridge - create rule for 'availablePagingSpace '?

    I have a number of AIX systems monitored by using the cartridge of the Infrastructure.  I copied and modified the rules for the CPU, the ability to file systems and memory.

    I need to create a rule to alert on 'availablePagingSpace' that appears on the chart "Memory usage" when I click on the "Paging Space" graph via the Host Monitor dashboard.

    I'm assuming that I could copy the rule "Utilziation memory" and likely the condition to test insteead 'availablePagingSpace' of the 'use '.   This seems to be a false assumption.  When you use the rule condition query interface, these are the errors I get.

    com.quest.nitro.service.sl.interfaces.scripting.ScriptingException: com.quest.nitro.service.sl.interfaces.scripting.ScriptMalformedQueryException: bad request: java.lang.IllegalArgumentException: Type ' foglight - 5:Memory:8' doesn't have a property with the name "availablePagingSpace" - start of the script - #availablePagingSpace #.< 100="" ----="" script="" end="">

    I tried to change the rule definition to use different topologies, such as "ICAGENT", but I can't seem to find this property available anywhere.

    I'm still a bit of a newbie to the rule editing Foglight, so bear with me.  If someone has a pointer in the right direction for me on how to access the "availablePagingSpace" metric, so I can use in my terms of rule, I would be very grateful.

    Thank you!

    GWL-

    Hello

    Please try this on a local Foglight Server first.

    When you look at the gauge for swap space available in the dashboard you can see that it is actually taken from the host itself

    If the scope of the rule should be the host itself, not memory.

    The easiest way is to seek a similar rule with the host as the scope.

    If you copy the rule run the length of queue for example, you can see that the scope of the rule is host.
    You can then change the rule condition to and when you use the condition Editor, you can see the metric of availablepagingspace as part of the host

    I hope this helps...

    Golan

  • Copy the 35 million lines of table line 186 million

    OK, I tried to accomplish this feat for the last 4 nights. There is some limitation of I/O with this storage. Basically, my boss want a subset of an array of rank 186 million recorded in another table (without causing performance degradation... so we have a window of 10 hours to do it in). Let me throw you in the fact that it's a primary on a standby dataguard... so all newspapers are shipped to the standby site. What I tried was:

    (a) create table TableA_subset in select * from TableA where conditon < = 10000 [returns 30 million lines] - it took more than 10 hours... was to kill him
    (b) export using datapump with a query condition [query = "where conditon < = 10000"] the lines I wanted to keep - he ran for more than 10 hours... was to kill him

    given the backup site turns impossible disconnection (since rebuiliding that Eve will take much too long)... Really, I have only 10 hours to get there... and I could not... AND the table continues to grow... Suggestions as to how I can get these data, truncate the existing table and return the table to the table of origin would be greatly appreciated. I tried loading direct path (despite sleep)... Help, please

    JG, in my view, that there is a value of the consideration. This approach would reduce the load on the existing production server I/o. This should be feasible, as long as the test system is the same version and running on hardware of compatiable.

    HTH - Mark D Powell.

  • OBIEE reporting to users not OBIEE that are external to the SMTP server

    Hi all

    Nazza salvation,

    Would you please help me how send you ISID signals to users not OBIEE (external mails)?
    I configured the mail server and able to send reports for internal mail.

    I followed the following steps as mensioned in all blogs:
    1. I created a table with default column d called SA_SYSTEM_USER mensioned.
    2. any in the physical layer
    3 creates a view for model (Dual) table with column "DUMMY".
    4 joined these tables of towing made MODEL and SA_SYSTEM_USER as a Dimension about join a MODEL Email.
    5 renamed columnsfor as mensioned in Bolgs presentation table.
    6 restart the servers.
    7. I noticed the mail of the system and the system delivery profile created with a single email id (where are the other my table SA_SYSTEM_USER email ID?)
    8. but as written in Articles he never sends emails to external e-mails for example [email protected] (this is the email from existng in SA_SYSTEM_USER)

    I need an urgent solution please help me...

    Thank you very much...

    No, no, nothing is more required SMTP side if his performance of the iBots for IDS in-house.

    If you set up SA_SYSTEM correctly, you can send reports to users non-obiee as account gmail etc.

    Try steps below...

    1. create and save a report using your logon fields and the SA_SYSTEM EMAIL that contains the people you want to send the report. Or by email or logon information must be an OBIEE user that exists in the RPD.
    2. create an iBot and under the general tab, the visibility of the non custom data value and run as an administrator account.
    3. set the conditional query on the report you made in step 1.
    4. for recipients, check the box, "to determine the recipients of conditional query. The "column that contains recipients' must be set to 'connection '.
    5. If you want to save the ibot to a shared folder, and then check the box 'Release for subscription' no otherwise.
    6. choose your content delivery and all other options and ensure that planning is set on immediately if you want to get out immediately.
    7. Save and send to any email address that was on the parole request.

    ======================

  • Create the search function of price in php recordset object range

    Hello

    On a continuation of a previous thread, I find that the expertise of web designers on these forums turns much more educational and beneficial than the large number of books that I bought to set up a Web site for my real estate business. (Without seeming too subservient!).

    I managed to create a working site where properties in my database and their related images are drawn in a recordset on the live Web page and everything works perfectly. However, I would like to add some simple filters on the search page to refine the results of the database.

    I find that given a push or piece of coding I can work out the rest myself. Therefore, I would like to do is create a price range drop down, where customers can select the database properties in one of 3 categories: under £1 m, 1 m £-£2 m and more than 2 million pounds.

    If I understand correctly, I need two pages to do this, a page of html form where customers will enter their search criteria with similar coding to:

    < do action = "search_results.php' method ="post"name = 'Search' id ="Search">"

    Price range:

    < select name = "prop_price" id = "select8" >

    < option value = "< 1000000" > > £ 1 000 000 < / option >

    < option value = "1000000-2000000" > £ 1 000 000 - £2 000 000 < / option >

    < option value = "> 2000000" > > £ 2 000 000 < / option >

    < / select >

    < input name = "Search" type = "submit" id = "Search" value = "Search" >

    < / make >

    (my apologies for my messy coding - I'm still new and do not know if some of the fields are not yet mandatory!).

    Then, I would need to create the search_results.php page which would give the results of properties in the database according to the submitted price range. I tried several different methods available online through the forums, but can't seem to get anything after 2006, or everything that actually worked. I use Dreamweaver CS5 and MySQL to my db.

    How to integrate the above search criteria in a dynamic php doc? The only way I managed to get something working is to create a new page for each of the variables price - something that is incredibly inefficient, and hardly something that can be developed easily move forward.

    Here is the php code, I currently have which retrieves all the properties of my database (connection name is test, the name of the recordset object is getDetails):

    <? php require_once('Connections/test.php');? >

    <? PHP

    If (! function_exists ("GetSQLValueString")) {}

    function GetSQLValueString ($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")

    {

    $theValue = function_exists ("mysql_real_escape_string")? mysql_real_escape_string ($TheValue): mysql_escape_string ($theValue);

    Switch ($theType) {}

    case 'text ':

    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";

    break;

    case "long":

    case "int":

    $theValue = ($theValue! = "")? intval ($TheValue): 'NULL ';

    break;

    case "double":

    $theValue = ($theValue! = "")? doubleVal ($TheValue): 'NULL ';

    break;

    case "date":

    $theValue = ($theValue! = "")? « " ». $theValue. "" "": "NULL";

    break;

    case "set":

    $theValue = ($theValue! = "")? $theDefinedValue: $theNotDefinedValue;

    break;

    }

    Return $theValue;

    }

    }

    $maxRows_getDetails = 20;

    $pageNum_getDetails = 0;

    If (isset($_GET['pageNum_getDetails'])) {}

    $pageNum_getDetails = $_GET ['pageNum_getDetails'];

    }

    $startRow_getDetails = $pageNum_getDetails * $maxRows_getDetails;

    @mysql_select_db ($database_test, $test);

    $query_getDetails = "SELECT id, prop_name, prop_price, country, post_code, short_desc, picture images FROM order by prop_price DESC";

    $query_limit_getDetails = sprintf ("%s LIMIT %d, %d", $query_getDetails, $startRow_getDetails, $maxRows_getDetails);

    $getDetails = mysql_query ($query_limit_getDetails, $test) or die (mysql_error ());

    $row_getDetails = mysql_fetch_assoc ($getDetails);

    If (isset($_GET['totalRows_getDetails'])) {}

    $totalRows_getDetails = $_GET ['totalRows_getDetails'];

    } else {}

    $all_getDetails = mysql_query ($query_getDetails);

    $totalRows_getDetails = mysql_num_rows ($all_getDetails);

    }

    $totalPages_getDetails = ceil($totalRows_getDetails/$maxRows_getDetails)-1;

    ? >

    < table width = "990" border = "0" align = "center" cellpadding = "0" cellspacing = "0" >

    < b >

    < /tr >

    <? PHP {? >}

    < b >

    < td > < img src = "show_image.php? id = <?" PHP echo $row_getDetails ['id'];? > ' > < table >.

    < td > <? PHP echo $row_getDetails ["prop_name'];? > < table >

    < td > <? PHP echo $row_getDetails ["prop_price"];? > < table >

    < td > <? PHP echo $row_getDetails ["short_desc"];? > < table >

    < /tr >

    <? PHP} while ($row_getDetails = mysql_fetch_assoc ($getDetails));? >

    < /table >

    <? PHP

    mysql_free_result ($getDetails);

    ? >

    Essentially, I need to integrate the function WHERE my request sql, but how do I do so that it is dependent on the demand of customers on the search page...?

    Sorry if this is incredibly easy, but I am at a complete loss now and can't try all the techniques of the various forums out there! I even downloaded the framework of Zen cart just to see if I could find something in the large number of php pages that goes with it!

    I hope someone can help-

    Thank you

    Jack

    Noba_arsene wrote:

    OK, have updated

    If the current Recordset does not work or not?

    Please correct the elements of form, thus:

    Price min

    Price Max

    can´t you use the same value of id/name with several elements of shape, because the motion of the recordset must unique variable names $_POST. Please rename the values of name/id like this:

    Price min

    1. When you set a property of "Studio", you actually store room 0 value in the database? If so, it s very well, but if it s a different value (or even no value at all, aka NULL) please let me know.

    2. as mentioned in a previous post, you shouldn´t use the comparison operators in conjunction with the entire option values. Change the value to '> 4' with '5', which will be all you need to get this segment of our conditional query defined properly.

  • iBots does not run due to invalid subscribers

    Hello

    I use OBIEE 10 g. Have tried to create a simple answer and set to the content of the iBot.
    From the ibot, but does not receive the alerts.

    ===================================
    The journal says:
    ... Ignored invalid subscribers: yeowh
    ... No subscribers. Do not run.

    ===================================
    Here are the settings in the ibot:

    General
    -> Normal priority
    -> Custom (visibility of data of the recipient)
    Conditional query
    -> Always true (no specified condition)
    Beneficiaries
    -> Me
    Scope of delivery
    --> Title: "ibotTest".
    -> test (that's my simple answer)
    Destinations
    -> Devices in Active delivery profile
    -> Digital dashboard

    ===================================
    Thanks a lot for your help.

    Kind regards
    Kelvin

    Simply check whether or not users have their correct time zone settings. If the user don't have time zone defined in the profile, ibot treat it as a Subscriber is not valid. so check if they have no time zone, then configure the time zone, and try again.

  • Ibots does not run

    Hi all

    I have eight Ibots which are provided for each group as the destination, but the Ibots are not executed as expected.

    We use LDAP authentication and user DB table. I have THE system configured to user delivery profiles.

    IBot parameters:

    Priority: normal
    Visibility of data: custom
    Beneficiaries: A particular group
    Destinations of the user: interactive dashboards (verified)
    Active delivery profiles (ticked)
    Of specific features: Email (checked)

    IBot LOG:

    +++ ThreadID: 6 b 0: 07:24:35.944 2010-09-11
    ------------------------------------------------------------------------------
    iBot chain began.
    Planner iBot Version: 201
    Job ID: 22
    Instance ID: 855.000000
    User ID: admin
    Parameters:
    Version of employment: 2
    IBot ID root: / shared/_ibots/By Geo up to date
    Oracle BI Presentation Server: localhost:9710
    Debug: true
    iBot active Load Balancing.


    +++ ThreadID: 6 b 0: 07:24:35.991 2010-09-11
    Using Presentation Server: localhost:9710


    +++ ThreadID: 6 b 0: 07:24:36.069 2010-09-11
    ----------------------------------------
    iBot Started:
    iBotID: / shared/_ibots/By Geo up to date
    Priority: normal
    Custom: true


    +++ ThreadID: 6 b 0: 07:24:36.069 2010-09-11
    Subscribers: 0

    +++ ThreadID: 6 b 0: 07:24:36.069 2010-09-11
    iBotID: / shared/_ibots/By Geo up to date
    No subscribers. Do not run.

    +++ ThreadID: 6 b 0: 07:24:36.069 2010-09-11
    iBot finished string.
    ------------------------------------------------------------------------------

    The main problem is when I'm planning an ibot to a particular user or usergroup ibot is executed and email sent successfully, but when I choose a 'group' (web groups) in recipient ibot is not executed.

    Please help me gurus...!

    Thanks in advance... !!

    Kanna

    It is an old thing that no longer works since the 10.1.3.3 release. Check the link I give you again and see how it send email using the feature to "determine the recipients of conditional query.

    In two seconds, you must create a system of SA with a single user in the table and add a group table in your design to be able to do all the possibilities. Create a report with the Group and email to set the recipients and use the feature to "determine the recipients of conditional query.

    Success
    Nico

  • iBot scheduling after load ETL

    Hello
    We have a requirement where you want to run the iBots after completion of ETL daily. I'm new to working with iBots.

    Some Martin suggested a use conditional query based on the last ETL run date. Can somone help me to implement this

    If no other possible solution please advice.



    Concerning

    Sandeep

    Hello
    If I understand correctly, "Start immediately" is simply the starting point, you set options 'Récurrence', ' repeat every ' etc to repeat.»
    Hope this helps, so useful please assign some points!
    See you soon
    Alastair

  • IBot success/Error Log in E-mail

    Hey everybody

    I am running IBot based on a conditional prompts the user and its works perfectly and I want to monitor the emails of the IBot, I am a developer and I don't have access to Job Manager is it sort I can create a JavaScript customized to capture the information of the IBot log IE when fact executed IBot and information success Code and timestamps Here I'm IBot linking an LDAP account

    Any help appreciated

    ~ Srix

    Uh, it's an interesting idea. This will help you:

    http://oraclebizint.WordPress.com/2007/12/17/Oracle-BI-EE-101332-calling-Java-scripts-and-Java-classes-from-ibots/

    But I don't think that you can have access to the status of the iBot i.e. trigger an e-mail with the log file if the iBot fails. The iBot chaining does not help either that you have two conditions for the chain, when the conditional query return lines, or it doesn't, nothing to cover the iBot failures. Also your solution requires manual configuration on each iBot and it's a pain to keep his new new iBots to change to get the chained iBot. Perhaps a better solution would be to expose the table of Planner performance offer (S_NQ_INSTANCE) and then have an iBot that runs every hour and controls for iBots where execution STATUS <> 0 and warns you.

Maybe you are looking for

  • Connectivity Bluetooth iPhone 7 with Ford SYNC fails

    I use my iPhone 7 with my 2016 Ford Fusion with SYNC. The Bluetooth connection worked perfectly with my iPhone 6. Today, experienced significant connectivity issues 7 iPhone, including regular dropouts, abandon a connection completely and music just

  • iPhone 5 s and ios10, no keyboard in landscape

    Yesterday we updated our iphones iOS 10 My wife has an iPhone 5 s. When to send SMS in landscape mode, it cannot get the keyboard, all she has are the new figures "hand-written". ideas?

  • Satellite C850-19Z - internet connectivity problem

    Hello I bought this laptop about 14 months ago and have had fairly consistent problems with internet connectivity. Initially, the problem occurred when the prompt "Choose your browser" would appear. After selecting IE or chrome, in a day or two, we w

  • OfficeJet 5745: cannot install drivers

    I can't install the printer drivers for my 5745 Officejet on my laptop Dell XPS 13 running 64-bit Windows 10.  I tried the following: -Downloaded driver installation package later. -Wireless connection, I see my printer, but always, the installation

  • Windows could not start after activating the boot.

    Hi all I have a very serious problem. A few lost technology from Microsoft asked that I have to do the following: http://support.Microsoft.com/kb/929135. Immediately after the restart, I was confronted with the following message: Windows could not st