Smart view -Offline Dataforms can have Business rules,Cell Text ,Supporting

Hi Gurus,
Does the Offline Data form is having the Business Rules, Cell Text,Supporting Details if the original Dataform having all those.If yes how they can be retrived in Offline Dataform.
Thanq

Hi,
I recommend reading some of the sections in the Smart View user guide > http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_sv_user/frameset.htm?ch14s01.html
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • How can I show Planning cell text on FR?

    How can i display the cell text being stored in Planning data cell on FR? I'm already using the Planning connection on FR.
    thx.

    Have you had a look at the cellText function > http://download.oracle.com/docs/cd/E12825_01/epm.111/fr_user/15.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Is it possible to have business rules as a table

    Hello Friends,
    I have an application where in which I had altogether some x procedures, y fucntions and z triggers .
    Right now I have implemented all the business rules in the procedures, triggers , and fucntons. Is it possible to have
    the implementatkon of business rules as a table so that i can use the table as a rules engine .
    I have done with java technologory usaing the business rules as a seperate external file and reading the file for business rules. How about oracle is it possible. If yes can any one give a scenario how i can implement.
    thanks/kumar

    As posted, your whole procedure could be replaced with:
    procedure update_paycheck_deductions is
       cursor c1 is select * from MINC ;
       cursor c2 is select * from FINC ;
       v_flag_boolean boolean := false;
       v_famid number ;
    BEGIN
       for i in c2 loop
          for j in c1 loop
             if ( i.famid = j.famid ) then
                v_flag_boolean := true;
                v_famid := j.famid;
             end if ;
          end loop ;
          if ( v_flag_boolean = true ) then
             update FINC set famtfedx = 0 WHERE famid = v_famid ;
             update FINC set fgovretx = 0 WHERE famid = v_famid ;
             update FINC set fpripenx = 0 WHERE famid = v_famid ;
             update FINC set frrdedx = 0 WHERE famid = v_famid ;
             update FINC set fsltaxx = 0 WHERE famid = v_famid ;
          end if;
          v_temp_sum_anfedtx := 0;
          v_temp_sum_angovrtx := 0;
          v_temp_sum_anprvpnx := 0;
          v_temp_sum_anrrdedx := 0;
          v_temp_sum_ansltx := 0;
       end loop;
    end;Since none of the j.column != null and predicates will ever be true. This is roughly equivalent to your code:
    SQL> WITH t AS (
      2     SELECT 10 amount, 'Y' col2 FROM dual UNION ALL
      3     SELECT null, 'Y' FROM dual UNION ALL
      4     SELECT 25, 'N' FROM dual)
      5  SELECT amount, col2, CASE WHEN amount != NULL and
      6                               col2 != 'N' THEN amount
      7                          ELSE 0 END eval_amount
      8  FROM t;
        AMOUNT C EVAL_AMOUNT
            10 Y           0
               Y           0
            25 N           0This would simplify Toon's merge statement to:
    merge
    into FINC f
    using (select distinct j.famid, 0 amount
           from MINC j) m
    on (f.famid = m.famid)
    when matched then
    update set f.famtfedx = m.amount
              ,f.fgovretx = m.amount
              ,f....      = m.amount
              ,f....      = m.amount
              ,f....      = m.amountWhich could be further simplified to:
    update finc
    set famtfedx = 0,
        fgovretx = 0,
    where famid in (select famid from minc)Whiich strikes me as an odd business rule, specially for one dealing with (apparently) payroll.
    I won't go into the fact that you will scan every record in once for every record in minc. I hope these are not large tables.
    I have seen a number, and even worked on a a couple of payroll systems based on "business" rules in tables to avoid putting the rules in code. None of them were very good and perfomance tended to lag when there were more than a few people to pay.
    You need to explain a lot more about what sort of business rules you want to put into tables.
    John

  • Is there a way I can have Business Catalyst automatically import product content from Amazon? (e.g. a Web App I could build, perhaps?)

    I'm currently building a site using Drupal that is basically a huge book database and book review site. In order to acquire basic information about certain books I'm using an Amazon module that automatically pulls information into my Drupal database (such as author name, page count, publication date, etc.) based on any ASIN (Amazon Standard Identification Number) I enter. It's a pretty nice arrangement. Also, people can click on a link that leads them to the item on Amazon so that they can purchase it and I can collect a puny affiliate commission. Yay Internet!
    But I'd like to use Muse and Business Catalyst instead. I was able to create a Web App version of my database but I can't figure out how to 1) automatically import based on ASIN and 2) automatically link each book record in the database to its page on Amazon. Honestly, if I could just get the info into the database alone I'd be happy.
    I'm afraid that Adobe would have to create some sort of connection on their end that interfaces with the Amazon API - and therefore there is no way to create such a website now using Muse. But, of course, I don't know everything so I ask you all: is there a way this can happen now?
    Thanks for all of your input!

    To do stuff like that will always need custom coding and things like API work. You will never be able to use Muse for that, its a basic site design tool that can hook up to BC modules. You will need to use coding software and have custom API work done for things like this.

  • Exporting Hyperion Business Rules as Text files

    Hyperion 9.3.1 installtion...
    Does anyone have any nifty scripts or techniques for getting the HBR code out into flat files (ideally named as the Rule)...
    I Know you can export via AAS, but all I want is the raw code so I can use some differencing tools on them.
    Basically I've rules being changed in Prod, and Dev, and need to manage the situation.
    Using the individual export option is painfully slow with 100+ rules.
    Surely there is a way to query the [dbo].*AAS.HBRRules* table feild '*Body*' which is of type 'Image' and convert it into ASCII ?
    Anyone done such a thing? or automated the export facility?
    Cheers,
    BossHogg.

    Here is my variant on it.
    It differs in that it accepts command line parameters for SQLServer, Output Dir (defaults to {Desktop}\Rules) & DBName (defaults to AAS). It also has header size changed to 201 which works here. Finaly some of the EOF checks have been fixed as the original posting seems to have lost the 'not equals' characters...
    I Save this as HBRulesExport.vbs the execute it via a batch script twice using 'start /w ....' to export Dev & Prod to two seperate dirs for comparison.
    'Force "cscript"
    Dim numRules
    Dim ID
    Dim length
    Dim index
    Dim headerSize
    Dim fileName
    Dim rule
    Dim DirPath
    Dim SQLSERVER
    Dim DBCAT
    'ORIGINAL :- headerSize = 233
    headerSize = 201
    Set fs = CreateObject("Scripting.FileSystemObject")
    Set rs = CreateObject("ADODB.Recordset")
    Set cnSS = CreateObject("ADODB.Connection")
    Set shellObj = CreateObject( "WScript.Shell" )
    If Wscript.Arguments.Count < 1 Then
         MsgBox "This script requires at least a SQLServer DB name to get to HBRules. Parms are as follows..." & vbCrLf & vbCrLf & Wscript.ScriptFullName & " {SQL Server Name} [{OutputPath}] [{Db Name}]"
         Wscript.Quit 1
    Else
         SQLSERVER = Wscript.Arguments(0)
         If Wscript.Arguments.Count = 3 Then
              DBCAT = Wscript.Arguments(2)
              DirPath = Wscript.Arguments(1)
         Else
              DBCAT = "AAS"
              If Wscript.Arguments.Count = 2 Then
                   DirPath = Wscript.Arguments(1)
              Else
                   DirPath = shellObj.ExpandEnvironmentStrings("%USERPROFILE%") & "\Desktop\rules"
              End if
         End if
    End If
    if (fs.FolderExists(DirPath) = False) Then
         fs.CreateFolder (DirPath)
    End If
    cnSS.Open "Provider=sqloledb;" & "Data Source=" & SQLSERVER & ";" & "Initial Catalog=" & DBCAT & ";" & "Integrated Security=SSPI"
    strQuery = "Select max(id) from hbrrules"
    rs.Open strQuery, cnSS
    If (Not rs.EOF) Then
         numRules = rs.fields(0)
         For ID = 1 To numRules
              rule = ""
              strQuery = "Select name from hbrrules where id=" & ID
              rs.Close
              rs.Open strQuery, cnSS
              If (Not rs.EOF) Then
                   fileName = rs.fields(0)
                   rs.Close
                   strQuery = "Select body from hbrrules where id=" & ID
                   Set rulefile = fs.CreateTextFile(DirPath & "\" & fileName & ".hbr", True, True)
                   rs.Open strQuery, cnSS
                   If (Not rs.EOF) Then
                        length = rs.fields(0).ActualSize
                        For count = 1 To length - headerSize - 5
                             index = count + headerSize
                             character=AscB(MidB(rs.fields(0).Value, index, 1))
                             If Character = 10 Then
                                  rule = rule & VBNEWLINE
                             Else
                                  ' Filter for normal ASCII character range
                                  If (Character > 31) And (character < 127) then
                                       rule = rule & Chr(Character)
                                  Else
                                       rule = rule & " "
                                  End if
                             End If
                        Next
                        rulefile.WriteLine(rule)
                        rulefile.Close
                   End If
              End If
         Next
         MsgBox "Finished extracting HBRules from " & DBCAT & " on server " & SQLSERVER & vbCrLf & "Extracted " & numRules & " to Dir - " & DirPath
    Else
         MsgBox "Query of DB " & DBCAT & " on server " & SQLSERVER & " - Returned no rows"
    End If
    rs.Close
    'CODE ENDS
    Edited by: djhogg on 09-Dec-2008 06:30

  • Can I use a cell text as table name

    I would like to give my table name the same as the cell A1. the tables I am using are journals so the first cell is the date and I would like to give the table the same date. Can I link the two so I only have to write the date once?

    lovattsa wrote:
    I would like to give my table name the same as the cell A1. the tables I am using are journals so the first cell is the date and I would like to give the table the same date. Can I link the two so I only have to write the date once?
    No. But, you can Copy the content of A1 and Paste into the Table Name field in the Sheets Pane.
    Jerry

  • Where can I view all Business rules that are currently running

    Hi,
    I was told that this is available in our Planning v11 but can't find it.
    where can I view all processes (such as Business rules) that users are currently running ?
    thanks.

    Hi,
    They are probably meaning the job console > Tools > Job console.
    More information > http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_user/job_stat.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can members in business rule prompts be sorted

    Hi,
    we have business rules with prompts in accounts as Level 0 of a parent. the users are complaining that these leaf level members in the prompts selection window are not sorted. Is there a way we can display the selection list in prompts alphabetically?
    thanks

    Hello,
    the users see the alias or ID?
    When it is the ID, then I can agree what Sree said. If it is the alias, you have a bigger challenge. Sorting the children on Alias.
    I would recommend to use a relational table for creating the dimension files in EPMA or OutlineLoad.
    Regards,
    Philip Hulsebosch

  • Interactive Users Can't See Business Rules

    <p>We have business rules for interactive users in planning.</p><p> </p><p>We had to do a refresh on the planning application to includesome members into the planning outline (members added usingHAL).</p><p> </p><p>After that the interactive users can't see the business ruleswhich they could see earlier to the refresh.</p><p> </p><p>Can some one help me on this please. This is a criticalissue.</p><p> </p><p> </p>

    <p>Issue resolved.... The issue was using the wrong password toenable HBR while regenerating the HSPJSHome.Properties file.</p>

  • Dataforms using smart view

    Hi All,
    I m having a problem with smart view.Few dataforms don't open peoperly.I saw one of your posts saying if i use DTS in column level i will not be able to open that dataform.I have exactly done the same thing,I have used Y-T-D in column level.As per my requirement i had to use it in column level rather than page level.
    Is there any other way to open the dataform in smartview excel sheet?
    Regards,

    Hi,
    I take it you mean this issue
    If a data form has Dynamic Time Series members displayed in the columns or rows, when the form is opened in Smart View an invalid form message is received. If the Dynamic Time Series members are in the Page dimension, the data form opens without an error. (8557012)
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can't login to Business Rules

    Hi there. I just cant see the business rules EAS Console.
    I mean when I click on Business Rules....the error is "Error logging in to Business Rules. The repository has not been configured or you are not authorized to use Business Rules.".
    Detailes error:
    "Detail:Error authenticating user in UserServerManager.
    Detail:Error authenticating user in UserServerManager.
    Detail:Error authenticating user in UserServerManager.
    Detail:Exception occurred. Please check your log file for details."
    It is happening when I externalised users ......before that I can see Business Rules.....
    Help would be appreceated.
    Thanks and Regards,
    Sri-Oracle

    Hi,
    It usually means the account you are logging into EAS is not provisioned for business rule access.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Track changes in business rule made using SOA composer

    Hi,
    I have business rules deployed on a server. Authorized user can change condition or any other thing in a business rule using soa composer. How can i track changes made in this business rule?
    i.e. I want to view the change and if possible who changes it.
    I am using SOA 11g
    Any help is appreciated
    Thanks

    Below document describes how to Monitor Decision Service Components and Engines.
    http://docs.oracle.com/cd/E29597_01/admin.1111/e10226/rules_mon.htm#CJAJJIJB

  • Does EAS needs to running for Business Rule Migration

    We are having issues with EAS server in one of the env, so it is offline. The user wants to access BR from that env, so EAS server needs to be running for migrating those BR using LCM or LCM would connect with the Database repository for the migration.

    I posted a script years ago that I put together which has been used a few times over.
    You can see the thread at: Exporting Hyperion Business Rules as Text files
    This would require the relational server is up and running. I have used it against many versions of the repository. You may want to look at the writeln code and make sure you have it set to do ascii vs unicode as I think I set it to UTF-8 in original scripts.
    Regards,
    John A. Booth
    http://www.metavero.com

  • HFM Data Form in Smart View - Improper Suppression

    We have several data forms that are opened by a group of controllers every month to load forecast information to HFM. This data form is opened by all of these users in Excel and submitted back to HFM via Smart View.
    We have instructed all of the users to turn off ALL suppression while working with the data forms because there are some invalid intersections for ICP based on the input entity. The form is rendering properly for all users but one. When he opens the data form it appears to show all of the lines, but then once it fully loads, it is removing/suppressing one line that is an invalid intersection. In checking his Smart View options, I can clearly say that he does not have ANY of the suppression options in use.
    Has anyone experienced this issue? Are there any workarounds? Why would this only happen for one user when 10 others have no issue when using the same file/form/options?
    Your help is appreciated, as always!
    Scott

    Hi Scott,
    If this is only for one user, I doubt something wrong in his profile.
    Ask your IT to have his profile recreated to see if the issue disappears.
    Hope this helps,
    Thank you,
    Charles Babu J

  • Business Rules error when creating new classic planning application in 9.3.

    Im trying to create a new planning application using classis planning application wizard in Workspace. everything seems alright untill i gets an error saying "Business rules cant connect to Planning"
    other than this Business rules working fine and i can open business rules in other applications and i can access business rules repository in EAS.
    Any thoughts on this ?

    Further invesitgation bears this problem out.
    Oracle support recommend wrapping the SimpleType in a ComplexType. This does work, but now I have an extra wrapper element to deal with. I either have to use the wrapped type in my other complex, composed Types and/or add an external wrapping element when trying to create Business Services in BPM to call the BusinessRules I've created.
    This is a bit messy.
    To be clear, this does not seem to be an issue with Business Rules; the BR editor and generation of Facts (including simple restricted types -> JAXB 2.0/Java Enumerations) seems to work correctly. There seems to be an issue exposing DFs as Services. The code which generated the WSDL and its supporting types seems to choke on restricted SimpleTypes.
    As a side note, it seems that HumanTasks have a similar limitation
    Edited by: wylderbeast on May 31, 2011 3:27 PM

Maybe you are looking for