BRF plus doesn't work on Conditions and calculations

Hello,
When you create an additional filter or condition on the business rule, it doesn't work on the ad hoc query. What is wrong with it?

You should save your conditions, close the window, open it again and it should work properly.

Similar Messages

  • Freeview Plus doesn't work on my KDL60W850B.

    Freeview Plus doesn't work on my KDL60W850B.I purchased the tv June 2014. The Sony site says 'Freeview Plus compatibility (in Australia only)'. I have pressed the green button and nothing happens.Firmware has been updated.  

    Hi lukebrewer1, 
    Welcome to the Sony Community! 
    Please perform  Refresh Internet Content. Here are the steps:
    Press the Home button.
    Select Settings.
    Select Network.
    Select Refresh Internet Content and press the button.
    For further assistance regarding your concern, please contact the Sony offices/Sony representative offices nearest to your place of residence in Asia Pacific region http://www.sony-asia.com/countryselector.html?hpid=countryselector:AsiaPacific. Due to proximity, they are in a better position to respond to your questions or concerns.
    If my post answers your question, please mark it as "Accept as Solution"
     

  • HT5622 The Game Center used to work with my Apple ID before I updated to iOS 7.4, I used to play multiple player with EA Real Racing 3 game but it doesn't work at all and every time I tried to go to the Game Center it's just blank, even to the settings no

    The Game Center used to work with my Apple ID before I updated to iOS 7.4, I used to play multiple player with EA Real Racing 3 game but it doesn't work at all and every time I tried to go to the Game Center it's just blank, even to the settings nothing!

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Game Center and sign out and sign back in
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
    - Restore to factory settings/new iOS device.             

  • I want to play candy crush on Facebook and it says i need latest version of adobe flash player, i downloaded it and it still doesn't work. i uninstalled and re installed and still not working. what is wrong? what do i need to do,

    i want to play candy crush on Facebook and it says i need latest version of adobe flash player, i downloaded it and it still doesn't work. i uninstalled and re installed and still not working. what is wrong? what do i need to do,

  • Translation from CS5 to Cloud doesn't  work correct, navi and linked images are broken.

    Translation from CS5 to Cloud doesn't  work correct, <navi> and linked images are broken.
    The data of CS5 was created at another PC. I installed Cloud version into two different PC. One has had the site data since dreamweaver CS5 and it works correct in Cloud version. Another PC got the site data from remote server and it doesn't work correct. <navi> and linked image are broken.

    Another PC got the site data from remote server and it doesn't work correct. <navi> and linked image are broken.
    This implies your site is not properly defined in DW.  Go to Site > Manage Sites.
    Or simply go to your other installation of DW and export the site definition file from Manage Sites.
    Save it to a flash stick or other removable drive.  Then import the STE file into your 2nd installation of  DW.
    Nancy O.

  • Zoom in-out and rotation in trackpad doesn't work in iPhoto and Aperture. Any solution?

    Zoom in-out and rotation in trackpad doesn't work in iPhoto and Aperture. Any solution?

    Sound like a trackpad problem and not an iPhoto one.  Have you asked in the forum dedicated to the Mac model you're using or is this an add on trackpad?
    OT

  • How can I order an iphone 6 and pick it up from one of the apple stores in London. It doesn't work with reserve and pick up because the 64 gb is never in stock.

    How can I order an iphone 6 and pick it up from one of the apple stores in London??? It doesn't work with reserve and pick up because the 64 gb is never in stock.

    Thank you for replying.    Yes I deleted the old email address..   

  • My blackberry messenger doesn't work its needs and update for q10

    my blackberry messenger says that it needs an update and it doesn't work for Q10 and when i search for update it shows that there is no update available than you

    Hey,
    Welcome to the BlackBerry® Support Community Forums.
    To better assist you can you please provide the full error message you receive when attempting to launch BlackBerry Messenger?
    Thank you.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Installing 8.1.052 doesn't work... and now I've lost the previous version!

    Tried to download and install 8.1.052 (using both Apple installer and 'download only' +manual installation). As soon as I select installation options/directory it says "itunes installer completed. The installer encountered errors before itunes could be configured. Your system has not been modified". I have deleted the update, done a cold reboot, re-downloaded and tried again, but it doesn't work... and now my old shortcuts etc. to itunes have disappeared! Any suggestions please?

    It may be you got no responses here because your questions really belong in other forums:
    Backup:
    http://discussions.apple.com/forum.jspa?forumID=956
    iWeb:
    http://discussions.apple.com/forum.jspa?forumID=1108
    PS Since Backup has a QuickPick for the iWeb Domain file, I am puzzled how you could not find it to back it up.

  • Sql query with conditions and calculations???

    Hi,
    how I can build a query with conditions and calculations?
    E.g. I've got this table
    Start          | End     |     Working Place     |     Mandatory
    01-JAN-13 | 11-JAN-13 |     Office           |          1
    14-JAN-13 | 25-JAN-13 |     Home Office      |     0
    04-MRZ-13| 15-MRZ-13 |     Office           |          0
    11-FEB-13 | 22-FEB-13 |     Office           |          1
    Now if column working place=Office and column mandatory=0
    the new column "price" has to calculate: (End-Start)* $25.00
    and if working place=Office and column mandatory=1
    the "price" column has to calculate: (End-Start)* $20.60
    else $0.00
    I tried it with the case statement but I didn't know how
    to calculate my values and display it to the virtual column "price".
    Something like
    case
    when Working_Place = 'Office' and Mandatory=1
         then ...
    else '0.00'
    end as PRICE
    Or is it not possible?
    Edited by: DB2000 on 12.03.2013 05:09

    Use CASE:
    select  start_dt,
            end_dt,
            working_place,
            mandatory,
            case
              when working_place = 'Office' and mandatory = 0 then (end_dt - start_dt) * 25
              when working_place = 'Office' and mandatory = 1 then (end_dt - start_dt) * 20.60
              else 0
            end price
      from  tbl
    START_DT  END_DT    WORKING_PLA  MANDATORY      PRICE
    01-JAN-13 11-JAN-13 Office               1        206
    14-JAN-13 25-JAN-13 Home Office          0          0
    04-MAR-13 15-MAR-13 Office               0        275
    11-FEB-13 22-FEB-13 Office               1      226.6
    SQL> SY.

  • Can I extract Conditions and Calculations from the Discoverer V5 EUL?

    I have been using The Discoverer V5 EUL Business Area to extract information on workbooks such as the owners, report names, descriptions etc. I am trying find out if the conditions and calculations within reports are stored separately within the EUL5 tables? So far I have only been able to extract the entire SQL.
    Does anyone know if the conditions and calculations are stored within the EUL5_DOCUMENTS.DOC_DOCUMENT field or elsewhere? I am looking for a quick way to access them which avoids having to look at each report manually.
    Thanks
    GB

    Hi GB
    You are out of luck. Conditions and calculation associated with a workbook are embedded within the workbook itself and are not accessible outside of it. Workbooks themselves are stored as binary objects within the database and are not decodable.
    Best wishes
    Michael

  • Lock table overflow - BRF Plus - can it work with many entries in tables ?

    hi,
    when I'm trying to open expression table in BRFplus with 500 entries in web
    I get an error: Lock table overflow and I see more then 2000 entries in sm12 for fdt_ tables
    and the system cannot create any more locks (so other applications are not working)
    why is that ? can BRF plus work with more then 100 entries in table expressions at all ?
    can anyone tell from experience as this is a huge issue I believe
    thank you,
    Regards,
    Michal Krawczyk

    Hi Michal,
    You are running a NW 701 system. This was the first version of BRFplus and the DB schema was not good for high volumne.
    I have created some notes recommending to use decision table for up to 100 rows (of course other factors like # of columns are also important).
    In NW 702 the DB schema has been changed and decision tables with 10.000 rows are possible and performance better by a factor of 100 and more.
    In your specific case you may consider to increase the number of logs that are possible. But this is rather a workaround than a solution.
    BR,
    Carsten

  • Cannot print with a Samsung ML2160 printer (mono laser) and Pages. Print function doesn't work, only drag and drop in printer's queue

    Hello,
    I just purchased a Samsung ML2160 printer and it doesn't work with nor my Pages program, nor the Preview (to print PDF). No matter the way I tried, the Print function doesn't work and I cannot neither print or even enter the printer preferrences menu! My MacBook Pro has worked before with other printers, but now with the Samsung it doesn't work at all... Though, if I drag and drop a document, jpg, pdf in the printer queue, it prints just fine, but that method gives me absolutely no freedom to the printing... Could it be something from the Computer -> Machintosh HD -> Library -> Printers? Because a friend of mine was recently trying to save me some disk space, and therefore erasing part of the HP printer (to remove the previous printer I owned)...
    If anyone has any idea, that would be much appreciated
    Thank you in advance

    Do the sensible thing, as you say neither Preview nor Pages print, try other programs eg TextEdit. If none of them print then it is a System problem and very likely the printer drivers are AWOL or were never installed.
    Go to Samsung's website and download their software for the Mac:
    http://www.samsung.com/uk/consumer/print-solutions/print-solutions/mono-printers /ML-2160/XEU-support
    http://www.samsung.com/uk/support/model/ML-2160/XEU-downloads
    Peter

  • Home button doesn't work with AWKb and iPad2

    I've paired an Apple Wireless Keyboard with my old iPad 2, running iOS 8.1.3. It seems OK, but the Ctrl-Opt-H doesn't work for the Home button. Thoughts?

    Place the iPod in recovery mode using one of these programs and then restore via iTunes:
    For PC
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    If necessary:
    Download QTMLClient.dll & iTunesMobileDevice.dll for RecBoot
    and                                           
    RecBoot tip
    RecBoot may have problems on 64X windows, then try:
    Tenorshare ReiBoot – Enter & Exit iPhone, iPad, iPod Recovery Mode with a Single Click
    For MAC or PC       
    The Firmware Umbrella - TinyUmbrella
    Installs blootware on PC too

  • Folder redirection doesn't work in DOS and other apps

    We are redirecting my documents and some other locations.
    If I open a dos window and cd c:\users\username\documents it does to a local directory not the redirected location. I can browse that same path in explorer. it seems to only be when I use the library and shortcuts in a "open" dialog that I see the folder redirection location.
    A new application we are using saves the config file to "my docs\application\session"
    I've saved the config file to the redirect my docs\application\session, but the application doesn't pull up with the config. I'm guessing its not using the correct environment variable to look for the config file. What is the correct environment variable that would recognize redirected folders?
    thanks,jb
    This topic first appeared in the Spiceworks Community

    I'm having the same problem. It just started yesterday. My top row buttons were not working in SMS and Loopt. I did a reset. I did a restore. I removed all applications and restored to original factory settings and did not put my backed up information back on- still he same issue. The "messages" and "clear" buttons do not respond in SMS, but the screen responds in that location in all other applications and on the home screen. It definitely seems to be a software issue and not the screen itself.

Maybe you are looking for

  • I do not have any IOS device!!! So how can i create an icloud account

    How can I create a il=cloud account if i don"t have and IOS device. How does that actually work???

  • Getting EWA report But in Grey Colour

    Hi,    Iam getting EWA with all details of my solution manager,But my doubt is In my before EWA session its showing with grey colour.Is it iam getting report correctly or not.or is it any problem of getting report or i have to change any settings for

  • Bank, Idoc, Ale

    Hi Friends, I have created a Distribtion model for Bank data with ALE. - created and provided the logical systems - configured the RFC Destination in SALE - created the model view with bapi 'bank create' - generated the partner profile in both system

  • I'd like a complete alphabetical list of albums in my library.

    any simple way to do this? i'm transferring my cds to itunes ( a lot). it would be nice to be able to find and album on a master printed alphabetized list for easy reference. eventually id like an alphabetized song list too.

  • No OS 9 Startup Disk

    I am using 10.4.3 with a PB G4 15". When I go to the Startup Disk pane in System Preferences, my OS 9 System 9.2 is not listed as a potential startup disk. It used to be but it isn't now. I don't know when this occurred, but I think before 10.4.3. Wh