2 Conditions on the same keyfigure

HI all,
can we create two conditions Top N and Bottom N on the same keyfigure but in the output the same keyfigure will show in two different columns like Top N wise & Bottom N wise.
please give  the solution.
Thnaks
pinkyreddy
Edited by: pinky reddy on Mar 3, 2009 12:55 PM

Hi Pinky.,
u can't achieve 2 conditions with the same keyfigure..
if u put then it won't workout..
for eg., if u put top 10 & bottom 10 in the same key figure either it will pick top10 or bottom 10 but not both...
generally it will do with or condition at there not with and condition
Hope it helps
Regards,
Vijay.

Similar Messages

  • Can we use exceptions and conditions at the same time?

    can we use exceptions and conditions at the same time? Are there any dependencies between exceptions an conditions?

    Exceptions are used when there are some mistakes , or exceeds the supposed values, we can highligt that in different colours for enabling the validator to notice easily. In this we are giving conditions for considering the value as exceptions. suppose, if the values is out of the range -1 to +1 then exception.
    But conditions can be considered as the restrictions given in measure level also. So please elaborate what you meant by conditions

  • Multiple conditions for the same button.

    Is there any way you can have multiple condition (same type of the condition).
    I have button that I would like to hide it at different stages.
    For example I would like to have a button (Submit) which will be visible when
    Status = Draft
    Condition Type Value of Item in Expression 1 = Expression 2
    P9_X_STATUS
    Draft
    and when also when userRole = author
    Condition Type Value of Item in Expression 1 = Expression 2
    P9_X_USER_ROLE
    Author
    Robert

    Hi,
    It would depend on when the fields get their values into the session. They may be below the button on the page but if they have a value in the session then the button's condition will see this.
    If, however, you have only used a Default Value setting for the item, the value may not be in the session (even though it may be displayed on the page), so the button will not know about this value. In these cases, I set the default value using a page computation for that item that runs "On Load Before Header" and is conditional on the item being null. That puts the value into the session for other items to use if required.
    Andy

  • RERAPP on Debit and Credit condition of the same contract in the same perio

    Hello Gurus
    I have a scenario here. My client wants a contract that specifies the tenant as a customer , and also as a vendor.When i try to make a periodic posting run i am getting the following error:
    Sales tax data do not define output tax.
    Actually i have a debit condition and a credit condition assigned to the same contract, when i probe the error message by double clicking on it , this is the full error text:
    Sales tax data do not define output tax
    Message no. RECD078
    Diagnosis
    In Customizing of the contract type, the setting in the user/offerer field specifies whether this is a customer contract (company code is the offerer) or a vendor contract (company code is the user). Depending on this setting, the posting term expects output tax (customer contract) or input tax (vendor contract) as sales-tax data.
    Procedure
    Switch to maintenance of posting terms, and correct this error there.
    how can i assign 2 different tax types one input and one output to the same customer contract.
    Very much await your response
    David

    Hello Gurus
    I have tried the option suggested by Rajnikant, but it is still giving the same error message. The issue actually lies on the definition  of the contract. This is a commercial lease out in the Offerer User Field on the "contract -change view type details" where you set the contract as either user or offerer. In this case this is a customer contract that should be indicated Offerer " in this field. This automatically detects the tax type to be used as either input or out put tax.
    It rather sounds then impossible to assign another tax type to this contracf , ie the input tax.
    what can i do to use this other credit condition for the customer in the same contract, or i have to create another vendor contract for the customer.
    Much awaiting for your response , thank you so much for your cooperation.
    Regards
    David

  • If condition for the same output

    hi all.
    i have issuelike this.
    i have 2 selection s_indate and s_chdate for dates coming from the same table vbrk-fkdat.
    now the filtering shud be based on firsts_chdate.
    if the date comes in the range of s_chdate but not in s_indate,it should be dleted n not be displayed.
    while,if it falls in both the rnges,then i shud b displayed.
    while user can enter one at a time whether in s_indate or s_chdate,then it shud ouput accordinlgy,
    plz suggest.

    Hi Tanisha,
    If I am correct you have to pick data from one table considering filtering oo one field only.
    so you can put both select options in one range table and fetch data from vbrk.
    populate final range table on the the values entered in the selection screen,populate for the existing select option only.
    Now you have all the value on the basis of both selection (select options).
    you have to put the condition according to the requirement.
    1. if the date comes in the range of s_chdate but not in s_indate,it should be dleted n not be displayed.
    Means only the value in s_indate should be displayed, it should not consider value in s_chdate as all the values in s_chdate which are not a part of s_indate will be deleted.
    if s_indate is not initial.
          loop at t_vbrk to w_vbrk where firsts_chdate in s_indate.
          *populate iniernal table.
          endloop.
    else.
       if s_chdate is not initial.
           loop at t_vbrk to w_vbrk where firsts_chdate in s_chdate.
           *populate iniernal table.
           endloop.
       endif.
    endif.
    2. Same as above.
    Regards,

  • Multiple and conditions in the same table

    Ok I am going to kick myself for this, but I can't figure it out. I am trying to figure out how to find employees which match multiple criteria in the same table.
    create table emp
    (empno number,
    name  varchar2(10))
    create table skills
    (skill_id   number,
    skill_code varchar2(20))
    create table emp_skills
    (empno    number,
    skill_id number,
    rating   number)
    insert into emp values(1, 'SMITH');
    insert into emp values(2, 'JONES');
    insert into skills values (1, 'SQL');
    insert into skills values (2, 'PLSQL');
    insert into skills values (3, 'JAVA');
    insert into emp_skills values(1,1, 8);
    insert into emp_skills values(1,2, 9);
    insert into emp_skills values(1,3, 10);
    insert into emp_skills values(2,1,9);
    insert into emp_skills values(2,2,2);
    insert into emp_skills values(2,3,7);Now I need to come up with a query finding all employees who match all 3 of the following criteria:
    1) Have at least a 5 rating in SQL
    2) Have at least a 6 rating in PLSQL
    3) Have at least a 7 rating in JAVA
    So using this I would expect to return only SMITH since his/her skills meet all 3 criteria. I dont want to use OR in my query since I want all 3 to match not just one of them.
    I have a feeling I will need to self join the table - but this is going to be part of a dynamic query for APEX where the users can choose the skills and ratings they want employees to adhere to, so I dont know the number of criteria or the exact criteria in advance. But I figure if I can get a proof of concept SQL I can make it work dynamically.
    Any ideas are appreciated - sorry for the long post but I figure more detail is better

    with es1 as(
    select s.skill_code, es.empno, es.rating
    from skills s, emp_skills es
    where s.skill_id = es.skill_id
    /* main */
    select e.*
    from emp e
    where
    exists
    (select 'x' from es1
    where es1.rating >= 5
    and es1.skill_code = 'SQL'
    and es1.empno = e.empno)
    and
    exists
    (select 'x' from es1
    where es1.rating >= 6
    and es1.skill_code = 'PLSQL'
    and es1.empno = e.empno)
    and
    exists
    (select 'x' from es1
    where es1.rating >= 7
    and es1.skill_code = 'JAVA'
    and es1.empno = e.empno)
    -- Addition (Another example)
    with es1 as(
    select s.skill_code, es.empno, es.rating
    from skills s, emp_skills es
    where s.skill_id = es.skill_id
    /* main */
    select e.*
    from emp e
    where
    (select count(distinct es1.skill_code) from es1
    where
    ((es1.rating >= 5 and es1.skill_code = 'SQL')
    or
    (es1.rating >= 6 and es1.skill_code = 'PLSQL')
    or
    (es1.rating >= 7 and es1.skill_code = 'JAVA')
    and es1.empno = e.empno)
    =3;

  • My fone is not responding​. im trying to unlock it and nothing is happening.​. i tried o update it n every thing else .. but the condition is the same

    hey i got up in the morning only to find my fone not respnding to nything..  plz help .. i cant unlock it .its being connected to the computer though.. the desktop device manager cant connect..  though it says programme not responding ..please help ...  i have also tried taking out the battery n all ...but then i is still the same...  the fone is getting charged though .. idk what might be the problem??

    Hi and Welcome to the Community!
    Please try this sequence...note that, throughout the entire 4h15m process, your BB must remain directly connected to a known-good wall charger (not PC USB, not a cradle):
    With the battery inside, connect your BB to the wall charger
    Leave it alone for 2 hours, no matter what the LED or the display does
    Remove the battery
    Wait 15 minutes
    Insert the battery
    Wait another 2 hours, no matter what the LED or the display does
    This has been known to "kick start" some BBs.
    It is also possible that your battery or BB has experienced a problem...to test, this sequence is needed:
    Obtain an known good and already fully charged additional battery...use it in your BB and see what happens
    Obtain access to a known good and identical BB...use your battery in it and see what happens
    The results of this will indicate if it's your BB or your battery that has the problem. Note carefully please that "new" and "know good" are not necessarily the same things. While rare, a "new" battery certainly could be defective. Rather, the simplest (and least costly, btw) method to conduct this test is to find someone with an identical BB who has no issues...trade batteries and see what happens.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • And condition within the same table

    Hello all,
    Was wondering if anyone knows what's the best and most efficient way to query for something similar to the example below.
    Table1
    ID CID VALUE
    1 1 a
    2 2 b
    3 3 c
    4 1 c
    Find me all customer id where value is a and c
    This should only bring back cid = 1.
    Thanks in advance

    select cid from table1 t1 where value='a'
    and exists (select 1 from table1 t2 where t2.cid = t1.cid and t2.value='b');note: untested

  • Same fault closed and reopened the same day, I won...

    I reported fault VOL012-********* on Friday 31 May 2013. It was closed on Saturday 1 June 2013, and a new fault reference number VOL012-********** opened. The customer is the same, the line is the same, the fault condition is the same and has remained unrepaired since being first reported on Friday. I have no idea why this has happened. Does it happen often?
    I guess the metrics will show a Friday fault promply resolved on Friday and a Saturday fault that carried onto Monday and is still open as I write... .
    A BT manager reviewing KPIs might say: "good job".
    A BT customer (me) might say: "BT are only kidding themselves, this a jolly poor show". 

    Hi Summertown_Oxford,
    This is a BT Retail Customer to Customer Help forum. So the majority of the community members on here that are trying to help you are just BT Retail customers like your neighbour.
    From the fault diagram you have posted, it shows the fault maybe on the Openreach external network that connects to the property (eg the phone line from the DP). This requires an Openreach engineer to look at the external infrastructure to see if there is a problem there. 
    If the problem is not found there, then they may request an Openreach engineer visit to the property. Which is where the £99 to £130 comes from if the fault is found to be within the customers property or the customer equipment.
    It may be the case of waiting till the 6th June. The openreach engineer will not visit the property unless they can't find the fault on the external network.
    If there is still a problem by the end of 6th June then the BT Care team will be able to help.
    Please remember that this is a BT Retail customer to customer help forum. The BT Care Team are the forum moderators however not every post is read by them.
    Cheers
    jac_95 | BT.com Help Site | BT Service Status
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Try a Search
    See if someone in the community had the same problem and how they got it resolved.

  • Plot the figures in the same chart

    Hello everyone,
    Now I am doing the analysis with FFT. I get different power spectrums of the signal when I change the conditions. From one chart I just get the latest figure of power spectrum (it means that this chart will refresh every time). 
    To compare figures easily, I hope that these figures are shown in the same chart. How can I make it like this? Because I use the same sampling rate (N Samples style), so the x-axis of these figures are the same.
    I have read something about XY-graph, but in my case I can not plot these figures (at different conditions) at the same time.
    Any suggestion will be so appreciated!!!
    Thank you!
    Dapeng

    dapeng wrote:
    Hello everyone,
    I get different power spectrums of the signal when I change the conditions. From one chart I just get the latest figure of power spectrum (it means that this chart will refresh every time). 
    Dapeng
    Dapeng,
    looking into your VI and reading the quoted text, i asume that you re-run the VI several times. In each run, you get 250k samples and make your FFT on them. The result is displayed in the graph. When you rerun the VI, you want to keep the old "graph" and add the new result. Is that true?
    If yes, you have to create a loop in your VI, use some kind of memory (e.g. shift register) to store the results from previous iterations and add the new result before displaying the result-collection on the graph.
    hope this helps,
    Norbert
    PS: DO NOT use the run continuous button. NEVER!
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Inbound Condition in the PO

    Hi Gurus,
    Following is the scenario;
    POS creates a Purchase Order
    Inbound occurs to SAP through IDOC .PO created in SAP.
    If we maintain a condition type in the pricing procedure,and if the condition record is
    maintained,the condition type is getting populated in all the inbound Purchase orders.
    Now say,POS has entered a manual condition type only for selected Purchase orders.
    We want to get the condition type populated in the inbound Purchase order to SAP as well.
    In a nutshell,our requirement is only when POS enters a condition type in the Purchase orders,
    the same has to be populated in the inbound Purchase orders to SAP.
    Points for sure
    Best Regards

    Hi,
    Manually active indicator is checked already in the calculation schema.
    This will be fine when the PO is created and changed in SAP itself .
    But our requirement is when POS creates a PO and entering a condition type,
    the same should get populated in SAP.
    How to capture the same,FYI, we are using IDOC type "PORDCR102".
    Best Regards

  • Need to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.

    Hi All
    I have one sharepoint list with huge data i.e with 20columns and more than 200 records with the fields .
    Suppose lets consider there are A,B,C,D,E,F,G,H columns.
    Now i want to create one form with the fields A,C,E.
    When the user enter the existing data of list for columns A,C..based on C value the E column value should change and update that particular item in the list.
    Please guide me without visual web part can we acheive this by Sharepoint designer 2013 or what would be the preferable solution.
    Please help me on this as it is very urgent from me..
    Thanks in Advance
    Sowjanya G

    Hi,
    According to your post, my understanding is that you wanted to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.
    I recommend to create workflow associated to the list and then start the workflow automatically when an item is changed.
    In the workflow, you can add condition and actions as below:
    If current item: C equal to Test1
         Set E to Test2
    Then the value of the filed E will be changed based on the value of the filed C.
    In addition, if you create the form using InfoPath, you can add rule to the filed C as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Condition records- setting printer for multiple vendors at the same time

    Hi all,
    I have maintained condition record for POs for Key combination of Doc type,Purch Org and vendors.Now for a particular doc type and P.Org , I have around 50 vendors. I need to change the printer for all these 50 vendors to 'printerx'.Is it possible? I tried selecting multiple vendors at a time and changed the printer but its not working.

    Hi Saurav ,
    You can achieve this through SCAT transaction.
    For running SCAT take the help of ABAP team.
    I hope u might be having the list in the form of text file.
    If not , download the same from NACH table.
    Regards
    Ramesh Ch

  • How to set required for group of condition type in the same condition class

    Hello,
              we have a group of condition type with the same condition class B, the last one have been set, and all of others will be inactive.
    but we don't set any required for all the condition types in pricing control, so if user don't set any of them, the sales order or billing is still saved. that is a risk.How can i fix it? Thanks.
    Sophie

    Hello,
      incompletion log is not available in invoices.
    You have different options:
    - activate a validation in FI when the Billing document is released into accounting,  so that te release into accounting is not allowed if the invoice amount is zero;
    - define a subtotal in the pricing procedure as sum of the pricing conditions of your group, then develop a custom routine to be assigned in the formula "CalType" (field T683S-KOFRM) where an error should be raised if the amount of the subtotal is zero (use as an example formula 48);
    Best regards,
    Andrea

  • Condition type PB00 and PBXX, coming in the same PO Item

    Hi,
    In the PO (created with reference to Outline Agreement),  condition types PB00 and PBXX are coming in the same line item.
    In the PO output, the PB00 value is also showing up and PBXX value is also showing up. User entered PBXX value as 350000 dollars which is right, however system is picking 1.2 million dollar of PB00 from outline agreement which is not intended here. As a result of that the output going to Vendor is exceeding more than 1.2 million dollar instead of 350,000 dollars. I cannot change or delete any othe condition types.THis is a production problem.
    Has anyone faced this problem. I appreciate your reply in advance.
    Thanks,

    Well, thanks Saurav and Prabhakaran, however the problem still stays.
    The contract is created for services (1 lot), so the dollar amount can vary depending upon the service rendered by the consultant.
    That mean user will only enter the service amount.
    Saurav, system should not copy down PB00, it should come by itself when user enters the specific amount. And it comes from contract. PBXX should only appear if there is no PB00 maintained in the contract. This is not the case. The service amount is maintained in the contract. Also, I don't think that PBXX and PB00 should come in one line item together as normal system behaviour &  as a normal business process too. Moreover, it is not happeniing in the other two line items - line item 20 and line item 30 are fine. The pricing analysis shows both the conditions as found - PB00 and PBXX, so I could not take any clue from analysis too.
    Prabhakaran, system is only behaving incorrectly for line item 10. It is behaving as expected (good ) for other line items and other PO's. So, we cannot touch the pricing procedure as that will affect other line items.
    Regards

Maybe you are looking for