Do sub variables work with bus rules 931?

Do sub variables work with bus rules 931?

Hi,
Yes you can use essbase substitution variables with Business Rules 9.3.1
e.g. &CurrYear points to substitution variable called CurrYear
Cheers
John

Similar Messages

  • List Tile View not working with include rule on iOS?

    hi Expert,
    I used the List Tile View with include rule in Agentry 6.0 on WinCE before to generate "selected" object list upon different conditions, e.g., assigning tasks based on scenarios.
    Currently, I am experimenting the same function on iOS tablet.
    On the start screen which is a detailed screen for main object, there is a List Tile View and an include rule. However, the objects in the tile list are not updated correctly when the output of the rule changes. Note that the same include rule works perfectly with a List View for the same collection.
    To my observation, the problem seems to associated with "update" of the tiles when result of include rule changes. For example, in scenario 1, there are 5 objects in the list; switching to scenario 2, there are 10 objects. From the No.6 to No.10, the objects are correct. The No.1 to No.5 are still the original 5 objects for scenario 1.
    When the user clicks on tiles, it makes the situation worse. Normally, a single object's tile will always be shown in the selected tile regardless which tile is selected from the list.
    My development environment is 6.0.40 and the client is 6.0.40 on iPad (iOS 7.1). I would like to know whether this is a known issue before I provide more details.
    Thanks.
    -Yang

    hi experts,
    When I asked the question on this list tile view refreshing issue, my dev environment is Agentry 6.0.38.
    In Agentry 6.0.40.1's release note, there is a fixed
    AG-25821  iOS 7 refresh issue with iPad tile list
    However, I currently have Agentry 6.0.42.1 on iPad (iOS 7.1.2). And my editor/server is 6.0.42.0. I still have the list tile view refreshing issue. The same rule can be used on list without any problem. But the list tile still has trouble on display the right set of objects.
    My question is is that fix related to the problem I saw?
    Thx.
    -Yang

  • RTP not working with Business Rule

    I am trying to create a buisness rule that fixes on a member in a custom dimension based on a run time prompt using Calc Manger (11.1.2.2).  I created the variable at the cube level, set it to 'Member' and selected the appropriate dimension, and selected RTP.  The FIX statement is very simple FIX("Current",{Contract}).  The rule validates and deploys with no problem.  When running the rule either on form save or through Business Rules I receive the error: "error parsing formula for [FIX STATEMENT] (line 2): invalid object type.  If I change the variable to uncheck 'RTP' and place the same member used previously as the Default value the rule runs no problem.  Is there any reason why the rule appears to not be able to read in my RTP selection?
    Thanks,
    CS

    Though this is not a calc manager issue, I am sure the member that Planning is picking up is a member that is set tyo dynamic calc.
    You cannot use a member that is set to dynamic calc in a fix.
    -Sree Menon

  • Third party apps no longer work with bus transportation! HELP!

    I understand Apple no longer supports bus transportation (lame) but third party apps, such as SEAtac, OneBusAway, or anything else just gives me a 'no routes available' page. I can't find any routes on my desktop either. Is this happening to anyone else?!
    Does anyone know a) how to fix this or b) how to downgrade back to the 7.1 operating system?

    a) you would probably need to contact the app developer about their app, and I would know nothing about your desktop. b) Apple does not support downgrading of iOS. It cannot be done.

  • Why does my Web Handler work with Internet Explorer, but not with Firefox

    I am trying to develop a web page that uses the Simile Timeline (http://code.google.com/p/simile-widgets/wiki/Timeline) with data from SQL Server.
    In initial testing of my timeline I tested it with Example.xml, a static XML file in the correct format to be event data. I wrote the following in the appropriate place within mytimeline's Javascript: -
    var WebHandler = "Example.xml"
    tl.loadXML(WebHandler, function (xml, url) { eventSourceFamily.loadXML(xml, url) });
    This worked fine with both Firefox and Internet Explorer. I then changed the assignment to
    var WebHandler = "GDBTimeline.ashx?Type=Family&Userid=" + getControlValue("input", "hdnUser");
    so that invoked a web handler that could look up the SQL database and return the XML that I wanted, and wrote this web handler.
    This works perfectly with Internet Explorer, but with FireFox the timeline band is blank. Yet when I examine the http traffic with Fiddler2 (http://www.fiddler2.com/fiddler2/) I see that with either browser there is a response from URL
    /GDB_pages/GDBTimeline.ashx?Type=Family&Userid=robertb
    that returns the XML that it is supposed to.
    I have previously used web handlers with Firefox before, with no problems. The Fiddler results conclusively show that the web handler is invoked, and returns the appropriate XML, and this XML is identical to the XML from the static test with Example.xml.
    Where do I start looking for answers? I don't even know if this is a Simile problem, a Firefox problem, or an ASP.NET problem.
    Thank you, Robert.

    Problem solved. The issue: Content Type was not correct.
    Visual Studio creates the web handler with dummy code like this: -
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
    context.Response.ContentType = "text/plain"
    context.Response.Write("Hello World")
    End Sub
    I wrote a database query that set a string variable to the XML I wanted: -
    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
    Dim Outstring as string
    ' my logic to fill Outstring with XML
    context.Response.ContentType = "text/plain"
    context.Response.Write(Outstring)
    End Sub
    This works with Internet Explorer. However it's not strictly correct: to make it work with other browsers as well,
    context.Response.ContentType = "text/plain"
    should be
    context.Response.ContentType = "text/xml"
    It now works with IE, FF, and Chrome, and presumably all others.

  • Getting a script to work in Mail rules

    I have a script that works fine in Script Editor or as a stand alone script. I would like to get it to work from within Mail rules but for some reason it doesn't want to. I have tried placing hte script within the brackets of
    using terms from application "Mail"
    on perform mail action with messages theMessages for rule theRule
    and
    end perform mail action with messages
    end using terms from
    which I was thought to believe enabled script to work with Mail rules. If aynone has any ideas how to resolve this I would love to hear from them.
    My script is as follows.
    tell application "Mail"
    set the_message to item 1 of (get selection)
    set theSubject to the subject of the_message
    if theSubject is "Nouvelle Réservation" then
    set the_message to item 1 of (get selection)
    set message_text to content of the_message as string
    set nom to paragraph 8 of message_text
    set prenom_script to paragraph 9 of message_text
    set spectacle_script to paragraph 2 of message_text
    set date_script to paragraph 3 of message_text
    set node_placesscript to paragraph 5 of message_text
    end if
    end tell
    tell application "FileMaker Pro Advanced"
    activate
    open file "xxx:Users:yyy:Documents:zzz:fichiers fp7:Import reservations script.fp7"
    try
    delete every record
    end try
    set newRecord to create record -- store the result as 'newRecord'
    tell newRecord -- now target that new record
    set cell "nom_script" to nom
    set cell "prenom_script" to prenom_script
    set cell "spectacle_script" to spectacle_script
    set cell "date_script" to date_script
    set cell "node_placesscript" to node_placesscript
    do script "whole import process into «•_reservations»"
    end tell
    end tell

    Hello
    You need to tell application "Mail" to do its tasks. Also your original if clause is closed too soon.
    So a possible fix would be as follows :
    --SCRIPT1
    using terms from application "Mail"
    on perform mail action with messages theMessages for rule theRule
    my initFilemaker()
    tell application "Mail" -- # required
    repeat with oneMessage in theMessages
    set theSubject to the subject of oneMessage
    if theSubject is "Nouvelle Réservation" then -- # should enclose the rest of this iteration
    set message_text to content of oneMessage
    set nom to paragraph 8 of message_text
    set prenom_script to paragraph 9 of message_text
    set spectacle_script to paragraph 2 of message_text
    set date_script to paragraph 3 of message_text
    set node_placesscript to paragraph 5 of message_text
    tell application "FileMaker Pro Advanced"
    set newRecord to create record -- store the result as 'newRecord'
    tell newRecord -- now target that new record
    set cell "nom_script" to nom
    set cell "prenom_script" to prenom_script
    set cell "spectacle_script" to spectacle_script
    set cell "date_script" to date_script
    set cell "node_placesscript" to node_placesscript
    do script "whole import process into «•_reservations»"
    end tell
    end tell
    end if
    end repeat
    end tell
    end perform mail action with messages
    end using terms from
    on initFilemaker()
    tell application "FileMaker Pro Advanced"
    open file "xxx:Users:yyy:Documents:zzz:fichiers fp7:Import reservations script.fp7"
    try
    delete every record
    end try
    end tell
    end initFilemaker
    --END OF SCRIPT1
    Or, since I'm not comfortable with nested tell structure (tell FMP in tell Mail), I'd write something like this (with other minor changes to my preferences) :
    --SCRIPT1a
    using terms from application "Mail"
    on perform mail action with messages theMessages for rule theRule
    my fmpclearrecords()
    tell application "Mail"
    repeat with m in theMessages
    set m to m's contents
    if m's subject = "Nouvelle Réservation" then
    my fmpnewrecord(m's content)
    end if
    end repeat
    end tell
    end perform mail action with messages
    end using terms from
    on fmpclearrecords()
    set a to "xxx:Users:yyy:Documents:zzz:fichiers fp7:Import reservations script.fp7" as alias
    tell application "FileMaker Pro Advanced"
    open a
    try
    delete records
    end try
    end tell
    end fmpclearrecords
    on fmpnewrecord(t)
    tell application "FileMaker Pro Advanced"
    tell (create new record)
    set cell "nom_script" to t's paragraph 8
    set cell "prenom_script" to t's paragraph 9
    set cell "spectacle_script" to t's paragraph 2
    set cell "date_script" to t's paragraph 3
    set cell "node_placesscript" to t's paragraph 5
    end tell
    do script "whole import process into «•_reservations»"
    end tell
    end fmpnewrecord
    --END OF SCRIPT1a
    Not tested, for I don't have FMP for OSX.
    But I see no specific reason for the above to fail except for the case that certain threading issue of script run via Mail rule interferes.
    *If it still fails, check console log for specific errors.
    Good luck,
    H
    EDIT: The object referencing in FMP seems incomplete though it might work in current form.
    It would be better to specifiy complete reference such as :
    -- delete records
    tell application "FMP"
    tell document 1
    tell database 1
    tell current layout
    delete records
    end tell
    end tell
    end tell
    end tell
    -- create new record
    tell application "FMP"
    tell document 1
    tell database 1
    tell current layout
    tell (create new record)
    -- omitted
    end tell
    end tell
    end tell
    end tell
    end tell
    --etc
    Message was edited by: Hiroto

  • Calc Mgr - 11.1.1.3.05  -  Migrating Bus Rules not working

    Hi,
    I'm trying to migrate Bus Rules from one environment to another. I did the extracts of the artifacts on the source system. Copied the files to the target system i the correct user directory. When i go through migration, I select all the Bus Rules to migrate. It says completed. I then log into target system Calc Mgr and the BR's are not showing up under each app. I have refreshed numerous times and even logged in/out and still nothing. I have done this probably 100 times with no issues until now. I also tried restarting all the services etc...
    stumped :(

    When our Calc Manager Rules disappeared, it was because HSP_CALC_MGR_RULES was not storing the rules properly in SQL Server.
    The impacted part of the BODY field was <ruleid="0" name"">. The ruleid should be equal to the ID field, and the name should not be null.
    We had a similar issue with disappearing variables in HSP_CALC_MGR_VARIABLES.
    We ended up having to apply a patch to clean this up. Once we had to restore the tables and restart services.
    I know this is not a solution, and I apologize for that, but hopefully it will give you an idea of where to start looking.
    Good Luck,
    Tim

  • Use @TODATE with Subs Variable?

    I'm have a series of calculations which depend on the elapsed time between now (stored in a substitution variable as &Todaysdate), and a date which is in an Attribute.While I can get the formulae to work using typed-in dates, when I swap the date for the variable, it gives an error:VAR TheDateDummymember( TheDate = @TODATE("dd-mm-yyyy", "23-08-2002"); )works fine, butVAR TheDateDummymember( TheDate = @TODATE("dd-mm-yyyy", &Todaysdate); )with &Todaysdate defined as either 23--8-2002 or "23-08-2002" gives a syntax error (error in TODATE command).If I split it in two:Temp = &Todaysdate;TheDate = @TODATE("dd-mm-yyyy", Temp); then I get no errorAm I missing something?

    It could be that the @TODATE function wants a member reference - I know that it should work, but the workaround that you posted suggests to me that the function is not resolving the sub variable properly.Try using the @MEMBER function around the sub variable - I haven't tested it myself but it might work...Regards,Jade-------------------------------Jade ColeSenior Business Intelligence ConsultantClarity [email protected]

  • OBIEE 11g Prompt's default value doesn't work with a presentation variable

    Hi, I'm using OBIEE 11g and I have two dashboard prompts (Product Name and Product Number). Theses prompts are hierarquical, so the values that are displayed in the Product Number prompt have dependency with the values chosen on the Product Name prompt. This I was able to do, but now I want to put a default value on the Product Number prompt. The steps are:
    1 - The user chooses the value for the Product Name Prompt and by doing that the Product Number prompt is automatically filled with the correspondent value.
    But unfortunatelly this is not working, after choosing the value for the Product Name the default value for Product Number is not displayed (when you open the prompt the values displayed are correct and already filtered considering the Product Name but the prompt is not automatically filled with the default value).
    What I did is:
    On the Product Name Prompt I've created a Presentation Variable called PROD.
    On the Product Number Prompt I've selected:
    1 - For the "Choice List Values" field I've checked the option "Limit Values by All Prompts"
    2 - For the "Default Selection" field I've chosen the SQL Results option and enter the following SQL:
    SELECT "Products"."Product Number" FROM "Sample Sales Lite"."Products" WHERE "Products"."Product"='@{variables.PROD}
    What am I doing wrong?
    Thank you,
    Carla

    Sorry I was wrong in my previous thread.
    Actually your approach is not correct, Product Number choose constraint that will show as per the selection of Product Name.
    Coming to default value for Product Number you are going for sql override that is okay but not work with variable, instead of setting default values for product number set that to product name.
    if not you need to go for 2 different prompts
    Prompt 1 Product Name hit GO
    Prompt 2 will work based on as you defined earlier with variables
    Hope this helps

  • I want to work with shared variables. How can I add a remote pc?

    I did an aplication to work with shared variables, but I do not know how add a remote pc. I tried make it in Variable Manager, but Labview showed a error message: "Cannot Connect to Target xxxxxxxx". What can I do?

    Message Edité par JeromeL le 08-28-2007 06:44 AM
    Jérôme LIBBRECHT

  • ACS 'Password Change Rule' doesn't work with telnet

    Hello:
    I am trying to configure that users have to change their passwords when they enter to a network appliance the first time they log in.
    I have an ACS 4.0 appliance, the option "Disable TELNET Change Password against this ACS and return the following message to the users telnet session" is disable. When I try to enter to a Catalyst 6500, for instance, I type user and pass and I get Rejected (RADIUS is the protocol used).
    In the ACS' reports I can see it appears the next error 'Authen Failed - CS Password Expired'.
    I only have enabled the option "Apply password change rule" in Group Settings, the others options for "Password Aging Rules" are deactivated.
    Thanks for your help,
    Francisco

    You'll need to be using TACACS+ to get password change to work.
    Doesnt work with RADIUS.

  • PS CS5 - Working with Variables | The Complete Picture with Julieanne Kost | Adobe TV

    In this episode of The Complete Picture, Julieanne demonstrates the incredible power of Variables in Photoshop. Learn how to cut hours of time out of your production time when you need to combine text and photographs. Although this feature has been in Photoshop for many releases, only a small number of customers know if it’s immense power for tasks such as automating event photography, creating web banners and graphics.
    http://adobe.ly/A1tzfO

    Struggling with my .png's in variables.  They are sizing up against the previous dataset and shrink.  By the 5th or 6th in my set of datasets, I'm working with a tiny version - very lo-res.  Jpg's are no problem as are .png's that are a set size (i.e. 4x5).  Only my cutout PNG's with transparency around them are an issue.  Thoughts on how to keep the size from shrinking?
    thank you

  • Firefox 4 Menu Bar - When I hover over or select a menu bar item, the menu bar sub-menu becomes transparent and unreadable. Is this a known issue that can be corrected with an update or is it functionality that is not designed to work with this version?

    Firefox 4 Menu Bar - When I hover over or select a menu bar item, the menu bar sub-menu becomes transparent and unreadable. Is this a known issue that can be corrected with an update or is it functionality that is not designed to work with this version?

    If this happens on monitor 2 of 2, this problem has been solved here:
    http://support.mozilla.com/en-US/questions/794823#answer-157988
    Go to "Firefox"--> "Options" --> "Advanced"
    Then un-check "Use hardware acceleration when available"
    While not verified, I believe this problem is due to an SLI configuration where the focus is on monitor 1. (I.e acceleration is available, but only on monitor 1.)

  • I have updated my BRE with new rule but it is not working.

    Hi All,
    I have got a requirement to add one more rule into my existing BRE.
    Below are the points that I followed :
    1).Firstly, I created the new version for my BRE , and added my rule in that.
    2). Then I un-deployed the previous version of BRE and Deployed its new version.
    3). I did restarted host instances and Rule engine service also.
    3). Now, when I am testing the sample consisting of previous rule then it is executing,
    But on the other hand when i am testing the sample based on my new rule then BRE is not working.
    If BRE is Executing with previous rule then i believe it is working,
    Then why it is not working for my new Rule .
    4). When i am testing my policy then it is also working well enough .
    Note : The Schema path is also correct ,
    Any help and suggestion will be appreciated
    Kind Regards
    Rishi Gaur

    Hi Shankycheil,
    1). My policy version 1.0 was having 10 rules.
    2). Then i copied version 1.0  and added it to my new version 1.1 .
    3). Than i added my rule to it only.
    After all this I Undeploy version 1.0 and deployed my new version 1.1.
    In Admin console I am getting error like you mentioned   somewhere about policy not found?

  • Working with Sub Menus

    I've been having some issues with the latest version of iDVD 7.0.1 in working with sub menus. Sometimes I need a sub menu button to click through to 1 full screen still image with the option to hit the "back button" to get to the main menu. How I've been doing this is when in the main menu, I click "add sub menu," then it brings me to a new menu where I can drop something in the drop zone, etc. I bring my full screen static image in and drop it while holding down the option or cntl key, which gets rid of the drop zones and gives me a full screen image. This has worked fine for me in the past. But now I get issues where the "back" button won't work to get back to the main menu. The "back" button simply flashes and won't let me select it once the disc has been burned.
    Am I going about this all wrong? Should I be utilizing the slideshow function instead?
    Thanks in advance!

    Needless to say, it had been a while since I sorted through my hotmail account. Last I looked I had 861 messages and I was starting to feel a bit like Jim Carrey in the movie Bruce Almighty....
    Better late than never.

Maybe you are looking for

  • Hide Buttons for Business Partner - CRM 5.0

    Hi,     I am trying to implement roles in CRM 5.0. I want some buttons like "Create person" and "Create Group" to be hidden for a certain user. I have used the Object B_BUPA_RLT but still it is not working. Any suggestions ? Regards Raj

  • Macbook Pro Doesn't Recognize Samsung TV

    Hi all, I've seen this question in a few other discussions which are still unresolved, but I'm hoping maybe I can get some answers. I've been hooking up my MBP 15" to my Samsung LCD TV (Model: LN32B460) for almost a year. Last night, I connected the

  • IDE's for Java

    I'm fairly new to Java. Ive programmed quite a bit in the past (Pascal, C and C#.NET) - Im at university and I would like to know if there are any free good IDE's. I'd like one with some Debugging tools if possible. I'm currently using Textpad, as it

  • Regarding Archiving files

    Hi All, Consider there are three folders in Sender application. lets say f1,f2,f3. XI has to pick the files from f1 folder and archive it in f2 if the process is successful. If any errors are occured in the files then that files has to place in f3. I

  • Discoverer Viewer Preferences

    My configuration: OracleBI Discoverer 10g (10.1.2.2) Oracle Business Intelligence Discoverer Plus 10g (10.1.2.54.25) Discoverer Model - 10.1.2.54.25 Discoverer Server - 10.1.2.54.25 End User Layer - 5.1.1.0.0.0 End User Layer Library - 10.1.2.54.25 O