WHERE condition has decoded the statement

Hi all

I have a requirement to have two or three conditions based on a condition in the WHERE clause. Please do the needful. Thank you.

If the context value is PROJECTS BILLS, then must have conditons

(due_date-nvl(rt.printing_lead_days,31)) < sysdate
and aps.customer_trx_id = rct.customer_trx_id
and rt.term_id (+) = rct.term_id
and aps.customer_trx_id = (select customer_trx_id
of ra_customer_trx_all
where trx_number =
(: $FLEX$ .AR_RAXINV_TRX_NUMBER)

If the context value is other than the PROJECT INVOICES, the

(aps.customer_trx_id = rct.customer_trx_id
and rt.term_id (+) = rct.term_id
and aps.customer_trx_id = (select customer_trx_id
of ra_customer_trx_all
where trx_number =
(: $FLEX$ .AR_RAXINV_TRX_NUMBER)


Ex:

I tried, but received the error.

Select terms_sequence_number
ar_payment_schedules_all aps, RA_CUSTOMER_TRX_ALL CTN, ra_terms rt
where
DECODE (rct.interface_header_context,'PROJECTS BILLS, (aps.customer_trx_id = rct.customer_trx_id)
and rt.term_id (+) = rct.term_id
and aps.customer_trx_id = (select customer_trx_id
of ra_customer_trx_all
where trx_number = '80000062')),
((due_date-nvl(rt.printing_lead_days,31)) < sysdate and)
APS.customer_trx_id = rct.customer_trx_id
and rt.term_id (+) = rct.term_id
and aps.customer_trx_id = (select customer_trx_id
of ra_customer_trx_all
where trx_number = '80000062')))

Thank you
Abdul

Select...
Of...
where (rct.interface_header_context = 'INVOICES of PROJECTS'
OR (rct.interface_header_context! = "PROJECTS BILLS" and (due_date-nvl(rt.printing_lead_days,31))
)< sysdate="">
and aps.customer_trx_id = rct.customer_trx_id
and rt.term_id = rct.term_id
and aps.customer_trx_id = (select customer_trx_id from the ra_customer_trx_all where trx_number = '80000062')

Tags: Database

Similar Questions

  • Hello world? I wonder where we can see the State repaired our phone, after that send it for warranty repair?

    I sent my iphone to warranty service for more than 20 days and still not recover.

    I wonder where we can see the State repaired our phone, after that send it for warranty repair?

    Thank you and best regards!

    You will receive emails with updates from Apple. Have you received one indicating that they have received your iPhone?

  • WHERE condition in a sql statement

    Hello people,

    I have a screen with data grid where one of the columns is STATES_CODES and other VOLUMES one. Grid consists of several lines. I need to create a CUSTOM SEARCH field that will be filtering on this database.

    Unfortunately a customer wants to enter a search string with custom functions: '+' (plus) to include in the selection of the result and "-" (less) to exclude from the selection of the results. For example: "+ IT + -100". Based on this string, I need to return only the States HE and and exclude volumes with a value of 100.

    A tip how to build a query where condition, so it will be more effective as possible?

    Simple example:

    test data:

    with t (select 'IT' State, volume 90 of any union double

    Select 'IT' State, 100 volumes of all the double union

    Select 'IT' State, 100 volumes of all the double union

    Select 'OF' State, 90 volume of all the double union

    Select 'OF' State, in 100 volumes of all the double union

    Select 'OF' State, in 100 volumes of all the double union

    Select 'NL' State, 90 volume of all the double union

    Select 'NL' State, 100 volumes of all the double union

    Select 'NL' State, 100 volumes of all the double union

    Select 'FR' State, 90 volume of all the double union

    Select 'FR' State, in 100 volumes of all the double union

    Select 'FR' State, in 100 volumes of all the double union

    Select 'ARE' State, 90 volume of all the double union

    Select 'ARE' State, in 100 volumes of all the double union

    Select 'ARE' State, 100 volumes of double

    )

    Select * from t

    Search string: "+ IT + - 100".

    I thought to somehow using regular expressions REGEXP_LIKE condition, but do not know how to change the entered search string in above format as long as the regular expression.

    And if you want to be specific about the characters representing the State and the numbers represent the amount then you will need to divide them into more...

    SQL > with t (select 'IT' State, 90 volume of all the double union)
    2 Select 'IT' State, 100 volumes of all the double union
    3 select 'IT' State, 100 volumes of all the double union
    4. Select 'FROM' State, 90 volume of all the double union


    5. Select 'FROM' State, in 100 volumes of all the double union
    6. Select 'FROM' State, in 100 volumes of all the double union
    7 select 'NL' State, 90 volume of all the double union
    8 select 'NL' State, 100 volumes of all the double union
    9 select 'NL' State, 100 volumes of all the double union
    10. Select 'FR' State, 90 volume of all the double union
    11. Select 'FR' State, in 100 volumes of all the double union
    12. Select 'FR' State, in 100 volumes of all the double union
    13. Select 'ARE' State, 90 volume of all the double union
    14 select 'ARE' State, in 100 volumes of all the double union
    15 select 'ARE' State, in 100 volumes of double
    16              )
    17, ch. as (select "+ IT + -100"as the double criterion)
    18, split as (select regexp_substr (trim (', ' regexp_replace (criteria,'([+ -]) ', ', \1')), "[^,] +', 1, level") as a criterion of)
    19 c
    20 connect the regexp_substr (trim (', ' regexp_replace (criteria,'([+ -]) ', ', \1')), "[^,] +', 1, level") is not null
    21                 )
    22, inc_state as (select substr(criteria,2) as a criterion
    23 split
    where the 24 regexp_like(criteria,'^\+[A-Z]+')
    25                     )
    26, inc_vol as (select substr(criteria,2) as a criterion
    27 split
    where the 28 regexp_like(criteria,'^\+[0-9]+')
    29                    )
    30, exc_state as (select substr(criteria,2) as a criterion
    31 split
    where the 32 regexp_like(criteria,'^\-[A-Z]+')
    33                     )
    34, exc_vol as (select substr(criteria,2) as a criterion
    35 split
    where the 36 regexp_like(criteria,'^\-[0-9]+')
    37                    )
    38-
    39 select *.
    40 t
    where the 41 (exists (select 1
    inc_state 42
    43 where inc_state.criteria = t.state
    ((44) or (select count (*) in inc_state) = 0)
    45 and (exists (select 1
    46 by inc_vol
    where the 47 inc_vol.criteria = t.volume
    ((48) or (select count (*) in inc_vol) = 0)
    49 and (not exists (select 1
    50 to exc_state
    where the 51 exc_state.criteria = t.state
    ((52) or (select count (*) in exc_state) = 0)
    53 and (not exists (select 1
    exc_vol 54
    where the 55 exc_vol.criteria = t.volume
    ((56) or (select count (*) in exc_vol) = 0)
    57.

    ST VOLUME
    -- ----------
    HE 90
    90

  • Race conditions manifested in the state machine in queue

    Hello

    I ' am developing a vi in which I use a design of producer-consumer model.
    the producer s enqueue States for the consumer. but at a certain point in execution of I want to enqueue the next state of the statemachine consumer, within the State of the consumer himself. This causes a problem?
    in other words I have given queue in the loop of consumer can also. so the man the next state of consumers will depend on the data in queue

    Thank you

    I make extensive use of Handleres of Message queue where the "producer" and the consumer enqueue for the same queue.

    A "Firinstance" of work today: here are two screenshots of a part of the same code

    The top loop controls the State of a semi autonomous process where data is collected.

    1. an event is detected, triggering the start of the measuring cycle
    2. Data are being gathered
    3. Another event tells the top loop that it's time to stop collecting data and "Analize" is sent to the end opposite to the consumer
    4. The buffer empty analize, formats the data and continues to the State of "Log".

    The thing to remember is to use a priority queue.  Enqueue to place free and flush properly, in front of end control.  See also 'A trip to Grandma's House'.

    It is a very powerful technique for applications where you want abstract on the 'what' and 'When' the how and just leave a "do".

    And Yes, if I had chosen a unrestricted data (string, var) rather than an enum type and built the lower loop as a child class, you have a "player".

  • Decode the statement inside the box

    Can we use Decode statement inside a CASE statement as below - show

    It gives an error - the better to write with any error

    create or replace
    test run (a varchar2) RETURN VARCHAR2
    is
    m varchar2 (20);
    Start
    m : =
    CASE
    WHEN a (IN)
    '1009 '-(soon obsolete)
    "1010"
    , ' 1019 "
    '1051'
    , "XGP.
    "XSC")
    (SELECT DECODE(v_lef_cd,'NAM','71','GLB','99','01') in the of THE DOUBLE m)
    (-) THEN '01' - UNITED STATES
    WHEN a (IN)
    ' 1069' - South Africa
    , "SAO" - South Africa
    , 'HIS' - South Africa
    ) THEN '26' - South Africa

    ANOTHER NULL
    END;
    return m;
    end;

    Hello

    user575932 wrote:
    Thanks for your reply... I would be happy if my problem is completely resolved

    In the code below in the ELSE part... (When the value NULL is written) I have check for more condition using IF/ELSE or DECODE...

    SQL > l
    1 DECLARE
    v_var1 2 VARCHAR2 (20);
    3 model VARCHAR2 (20): = 'X '.
    4 BEGIN
    v_var1 5: = dummy BOX WHEN ('X', 'y')
    6 THEN CASE model WHEN = 'X' THEN 'HELLO WORLD '.
    7. OTHER SIDE (_ NULL);
    8 DBMS_OUTPUT. Put_line (v_var1);
    9 END;
    10.

    Sorry, it's impossible. You cannot place the executable statements in PL/SQL (as IF...) ELSE or SELECT... INTO) in the middle of the CASE expression.

    You can get some desired using the results
    (1) IF... Else constantly, instead of CASE (this would allow you to do a SELECT... If you really want to use DECODE INTO), or
    (2) nested CASE expressions, as I showed above, or by
    (3) reformulating the expression BOX so it shouldn't be a nested DECODE or CASE, as I showed earlier

  • Decode the statement


    Hello

    The following data are in table

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    [email protected]

    I am writing the script to retrieve the data above with the name starts with 'nn' %et n@nhellas email ID but the data recover some of them affter execution. Kindly help me how to change the script based on the above

    SELECT DISTINCT P_EMAIL, A.FLAG, A.POL_AGENT_CODE, A.YPOKATASTHMA

    OF TMP_AIGGRIT_DC024 A, PM_CODES

    WHERE PC_CODE = A.YPOKATASTHMA (+)

    - AND A.P_EMAIL = PC_LONG_DESC

    - AND A.SESSION_ID =: HEADER. SESSION_ID

    AND A.FLAG! = 0

    AND P_EMAIL! = "¿¿¿Email".

    AND A.POL_AGENT_CODE BETWEEN: P_FM_AGNT AND: P_TO_AGNT

    AND A.YPOKATASTHMA BETWEEN: P_YPOKATASTHMA_FM AND: P_YPOKATASTHMA_TO

    AND DECODE (A.POL_AGENT_CODE, 'B0000610',

    DECODE (P_EMAIL,' [email protected]', SUBSTR(P_EMAIL,3,3), YPOKATASTHMA),

    SUBSTR (P_EMAIL, 3, 3)) = SUBSTR (P_EMAIL, 3, 3);

    You mean

    ....

    and ((a.pol_agent_code = «B0000610» et (p_email comme ' %@nnadvisors.gr' ou p_email comme ' %@nnhellas.gr')))

    or (a.pol_agent_code! = 'B0000610' and p_email not as ' %@nnadvisors.gr' and p_email not as ' %@nnhellas.gr')

    )

  • WHERE conditional clause with CASE statement

    Hi experts,

    I have a table:

    CREATE THE TABLE HR. TABLE_Y

    (

    NUMBER (2),

    ID NUMBER (2),

    NUMBER (5) CALC

    )

    Insert into human resources. TABLE_Y

    (TYPE, ID, CALC)

    Values

    (1, 1, 10);

    Insert into human resources. TABLE_Y

    (TYPE, ID, CALC)

    Values

    (1, 2, 15);

    Insert into human resources. TABLE_Y

    (TYPE, ID, CALC)

    Values

    (1, 3, 17);

    Insert into human resources. TABLE_Y

    (TYPE, ID, CALC)

    Values

    (1, 4, 20);

    Insert into human resources. TABLE_Y

    (TYPE, ID, CALC)

    Values

    (2, 2, 11);

    Insert into human resources. TABLE_Y

    (TYPE, ID, CALC)

    Values

    (1, 2, 14);

    Insert into human resources. TABLE_Y

    (TYPE, ID, CALC)

    Values

    (2, 3, 18);

    Insert into human resources. TABLE_Y

    (TYPE, ID, CALC)

    Values

    (3, 1, 30);

    COMMIT;

    SQL > SELECT * FROM TABLE_Y ORDER BY 1.2;

    TYPE ID CALC

    ---------- ---------- ----------

    1          1         10

    1          2         15

    1          3         17

    1          4         20

    2          1         14

    2          2         11

    2          3         18

    3          1         30

    I have the query as below,

    I pass a TYPE and an IDENTITY value as a condition for a query.

    SELECT THE TYPE, ID, CALC

    OF TABLE_Y

    WHERE TYPE =: TYPE

    AND IN THE CASE OF IDENTITY

    WHEN: TYPE = 1

    THEN 2

    WHEN: TYPE = 2

    THEN 1

    End

    ;

    When passing a TYPE = 1

    Output

    ID of TYPE CALC

    ----------     ----------   ----------

    1                2           15

    When passing a TYPE = 2

    Output

    ID of TYPE CALC

    ----------    ----------      ----------

    2               1               14

    I want to move a TYPE and ID more values as a condition for a query.

    I'm trying

    SELECT THE VALUE TYPE, ID,

    OF TABLE_Y

    WHERE TYPE =: TYPE

    AND IN THE CASE OF IDENTITY

    WHEN: TYPE = 1

    THEN (1,3)

    WHEN: TYPE = 2

    THEN (1,2)

    End

    ;

    But gives me error:

    ORA-00907: lack of right parenthesis

    During the passage of a desired output TYPE, = 1

    TYPE ID CALC

    ----------  ----------    ----------

    1            1            10

    1            3            17

    During the passage of a desired output TYPE, = 2

    TYPE ID CALC

    ---------- ----------      ----------

    2           1              14

    2           2              11

    Thanks in advance

    BANNER

    ----------------------------------------------------------------

    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - production

    PL/SQL Release 10.2.0.4.0 - Production

    CORE 10.2.0.4.0;     Production

    AMT for Solaris: release 10.2.0.4.0 - Production

    NLSRTL Version 10.2.0.4.0 - Production

    Hello

    Here's one way:

    SELECT the type, id, value

    OF table_Y

    WHERE type =: type

    AND ((: type = 1))

    AND id IN (1, 3)

    )

    OR (: type = 2)

    AND id IN (1, 2)

    )

    )

    ;

  • Decode the statement using the nvl function

    I inherited the code uses a decode and nvl. I'm not sure the purpose of him and wants confirmation that it is logical and an error. The situation can be re-created by implementing the following.

    CREATE TABLE XX_TEST
    (IDENTIFICATION NUMBER,
    DOMAIN VARCHAR2 (255)
    )

    INSERT INTO XX_TEST (ID, FIELD) VALUES (1, 'Yes')
    INSERT INTO XX_TEST (ID, FIELD) VALUES (2, 'No')
    INSERT INTO XX_TEST (ID, FIELD) VALUES (3, NULL)

    Commit

    SELECT ID,
    FIELD,
    DECODE (on the GROUND, the 'yes', ' Yes result this ", NVL (FIELD, 'No'),"no results don't do this","catch all result do this")
    OF XX_TEST

    I'm not sure of the NVL (FIELD, 'No') I think that the creator may have thought this would draw the NULL values, but it is not.
    Null is not converted into no. and plunges into the place the Tote. Can anyone help with an explanation of how oracle is interpretting the select statement. Any ideas on why NVL would be used like that? Seems a mistake?

    decode compares them the first FIELD against NVL (FIELD, 'No').
    If the FIELD is null estimated them VSN none which is not null, then...
    just to make an entry for the null value and one for the 'no' with the same result.
    However, I prefer case statement in this case.

    SELECT ID,
    FIELD,
    case
    when FIELD ='Yes' then 'Yes Result do this'
    when FIELD is null or FIELD = 'No' THen 'No result do this'
    else 'catch all result do this'
    end
    FROM XX_TEST
    

    As more readable.
    concerning

  • decode the statement with. «, » ||

    Hello
    I have the requriement next where I need to join the 2 numbers with comma inside the decode stmt
    create table  A_STY_VON ( C_1_ID number ,C_2_ID number ,C_3_ID number)
    
    Insert into A_STY_VON
       (C_1_ID, C_2_ID, C_3_ID)
     Values
       (1, 2, 3);
    Insert into A_STY_VON
       (C_1_ID, C_3_ID)
     Values
       (1, 3);
    Insert into A_STY_VON
       (C_1_ID, C_2_ID)
     Values
       (1, 2);
    Insert into A_STY_VON
       (C_2_ID, C_3_ID)
     Values
       (2, 3);
    And the following select stmt does not work
    SELECT   DECODE (
              A.C_3_ID,
              NULL, DECODE (A.C_2_ID,
                            NULL, A.C_1_ID,
                            A.C_1_ID || A.C_2_ID) ,
                 A.C_1_ID
             || A.C_2_ID
             || A.C_3_Id) dcd
      FROM A_STY_VON A 
    But I want the comma between the numbers so I tried the following (with separate)
    where I get the error invalid number
    SELECT  distinct DECODE (
              A.C_3_ID,
              NULL, DECODE (A.C_2_ID,
                            NULL, A.C_1_ID,
                            A.C_1_ID ||','|| A.C_2_ID) ,
                 A.C_1_ID
              ||','|| A.C_2_ID
              ||','|| A.C_3_Id) dcd
      FROM A_STY_VON A 
    Could you please help me to achieve this

    Thank you

    Published by: Smile on April 26, 2012 03:50

    A rough solution will add to_char everywhere.

    SELECT  distinct DECODE (
              to_char(A.C_3_ID),
              NULL, DECODE (to_char(A.C_2_ID),
                            NULL, to_char(A.C_1_ID),
                            to_char(A.C_1_ID) ||','|| to_char(A.C_2_ID)) ,
                 to_char(A.C_1_ID)
              ||','|| to_char(A.C_2_ID)
              ||','|| to_char(A.C_3_Id)) dcd
      FROM A_STY_VON A
    
  • Is there a thread where everyone has listed the differences in version final vs LR 3beta?

    I'm curious to know if there is any information on what has been implemented after the last beta?

    When does the beta expire?

    I've noticed some problems to those who have had problems with upgrading their catalogs to LR3 of LR2.x but there are known problems with the upgrade to LR3 beta final LR3?

    DVDmike wrote:

    I'm curious to know if there is any information on what has been implemented after the last beta?

    When does the beta expire?

    This guy has the new since Beta 2 on its website (symbolized by the word "NEW" in a yellow star)

    http://www.computer-darkroom.com/lr3_review/LR3-1.htm

    I'e read in another post, in the Beta Forum I think, that the beta version will expire on 30 June.

  • How to use where condition in an update statement

    Oracle forms 6i
    Hai All

    I generate table of attendance. My name of the table is daily_attend and fields

    name varchar

    empcode number

    Date of the respondent

    Outtime date

    number of working_hrs

    Date of Attend_date

    Attend_status varchar

    So here, I calculate the hours of work of an employee by

    Update dail_att set wtime = lpad (((outtime-intime) * 24 * 60), 4, 0);

    It works great for example for one day

    When I want to do on a daily basis, I have to give in the where Clause and how I can give attend_date in where Clause

    Thank you in advance

    Srikkanth.M

    change this to more well-intentioned and reusable procedure... Remove commit inside of the procedure

    PROCEDURE W_TIME(p_date date)
    
    IS
    BEGIN
    update dail_att set wtime= lpad(((outtime-intime)*24*60),4,0)
    where trunc(attend_date) = trunc(p_date);
    
    END;
    

    and whenever you want to call it simply call

    begin
     ......
     w_time('12-APR-2010');
     commit;
    ....
    
  • Decode the values without ETL (Group Dimension values)

    Hello guys, I have a question that is partly triggered by me not wanting to change the default ETLs.

    I have values in a dimension to come as table:

    Area A
    Region B
    Region C
    Region D
    Region E

    However, I'm hoping to re - org the hierarchy as below:

    A new region
    D new region

    Essentially, there is a new org structure where we Group (consolidation) old parts in new and rename values.

    I know it can be done in ETL but y at - it everywhere else where this is possible? Perhaps in the business layer? Is there a place in the business layer where we can decode the values and combine them?

    Regards and thanks in advance for your help,.

    Hello

    You can do to the RPD layer with an instruction box on a column of logic. However I really wouldn't say that because it means that if the group never changes you need to release a new RPD to get change.

    Why not build a task custom ETL that you can set to run after the vanilla who takes just these values, consolidates necessary (perhaps using a lookup table to find the old-> new maps) and then load it the new value in a column of extension on the dimension or the extension of related dimension, i.e. W_ORG_DX. Then, you can simply display this column in the presentation layer for users. Unless the table in question has millions of people off the coast of columns, just let him do this mapping for each row in the table for each ETL.

    I think it would be a very simple task and would mean that you can change the mappings easily through the table if necessary. This also means that you don't need to touch the vanilla ETL mappings and are not changing the values in the columns of vanilla, as you mentioned that you didn't want to do.

    Kind regards

    Matt

  • SQL only: WHERE Condition pulled the correct runtime of the Central "SQL" tab

    I have a requirement that seems like it should be easy to solve in SQL, but me seems to be stuck with blinders and can't see the solution.

    The 'problem' that I'm trying to solve is to get several reporting units to any use of the SQL even in their where clause for certain types of metrics reports. So this is the solution I am proposing that we store the sql in a central table, which, in a simplified form, would have two columns as:

    GroupName Varchar2 (2000)
    SQL_Filter Varchar2 (5000)


    What I want to do conceptual, it's allow the user (even if they're using MS - SQL) to


    WHERE FunctionName (GetSQL_ForGroupName)

    But first of all, I would tell them that this can be done in Oracle sql. However, I can't understand how to achieve this end. From what I've read so far that oracle will not do:

    WHERE (subquery that returns SQL)

    or (in SQL)

    WHERE VariableSubstition

    or

    WHERE FunctionName (GetSQL_ForGroupName)

    It seems that these things in the WHERE clause allows Oracle after only

    FieldName [operator]

    as in

    WHERE price > (subquery)

    or

    WHERE ID IN (Value) Function

    Is it possible to do a subquery (or anything else) that allows me to draw the where clause running SQL - using only SQL? I can do this with a stored procedure, but it is to say it seems to me I had start coding select specific instructions for them or code so that they could enter select statements (or joins etc.). I don't want to write a complete dynamic reporting engine. I want to do is be able to pull the sql running. This ensures that everyone is 1) with the good sql for metrics 2) by using the same sql and 3) the core sql parameters can be stored in one place instead of 3000 definitions of the various reports.

    I must be looking at this the wrong way, I think. The solution does NOT seem to do WHERE (pull in the SQL running)... but I was not able to find a different way of thinking. For example, WITH does not resolve as you immediately the requirement WHERE fieldname [operator] [subquery | function]. I was browsing the internet and looking through all the books SQL on Safari of O'reilly but I have not met a solution. However, I think, this issue of 'centralization of base SQL' must have been resolved several, several times previously. Why can't I find anything on it then?

    Brad

    You might use a pipeline function to return a TABLE object. This function accepts a parameter that contains the name of the Group (although "GetSQL_ForGroupName" is supposed to represent). The query that they deliver will then look something like this:

    SELECT column_list
    FROM   TABLE(table_function('GroupName'))
    WHERE  additional_conditions
    

    In the function, you can create the SELECT statement that channels the rows in the table with WHERE conditions pulled a table for the provided group name.

  • ADF: Re-apply the where condition of a view object and updating table

    Hello

    I have a table for documents, with columns for the title of document, document type and so on. There is also a column called "receiver".
    In the viewobject based on the table, I have a condition that only the lines where the receiver is null should be included. In other words: only documents unassigned should be indicated in the table.

    The purpose of the page that contains the table is to assign documents to the receivers. The idea is that the user enters a name in the column of a receiver or several lines and then press a button of validation.
    When a line - a document - has been assigned to a receiver and the change is committed, this line is more fills the where of the viewobject condition and I would like my page to reflect the fact that. In other words: as soon as one or more lines have been assigned to a receiver and the changes are committed, the lines should disappear from the table and the page.

    What is the best way to achieve this?

    Kind regards
    Andreas

    To do this is to add a navigation case to the same page and use this case to navigation after validation. Should run the query again, it costs you a full page sent.

    Another way to do the validation and the use of a managed method bean to re run the iterator.

    Timo

  • WHEREs how do we need in minimum when we have 4 FROMs in the statement

    WHEREs how do we need in minimum when we have 4 FROMs < table > in the statement?

    To avoid the Cartesian product, you need n-1 join minimum conditions for joining tables n.

    Published by: SKU on February 25, 2009 05:48

Maybe you are looking for

  • When I get a bookmark and you think how can I find the folder it is in?

    I click Favorites, and then click Show all bookmarks and use the favorite search box at the top right. I type in the name of theI'm looking for bookmark and considers appropriate. How can I find the folder it is in?

  • Satellite M70 - screen flickers and goes black, white or other

    I have a portable Satellite M70 and lately the screen becomes either black, white and a few other colors (no ghost image). The laptop seems good but I can t see anything so the only solution is to turn on and off. He didn't used to do this.I have upd

  • Deploy the web service on ARM processor

    Is it possible to deploy a web service on an ARM processor with LabVIEW ARM module?  If this is not the case, a web server for an ARM processor has been done in before LabVIEW?  Is there an example of code out there?  Thank you.

  • Cannot access the System Recovery Console invalid password

    System Recovery Console insists that I use a "invalid password". I installed Win7. I make a written record of all used passwords so I'm sure I know the password I put in the first place; It is a simple word, that I always use for low security situati

  • OfficeJet 4500 G510g-m it not install correctly

    I have a printer all-in-one Officejet 4500 G510g-m. I tried to install & uninstall several times on A Dell 2.80 core dual processor with 2.50 GB of memory. With Windows Vista Home Premium 32 bit. Every time he tells me that I can't open the cause of