Hyperion vanilla Functional Requirements Matrix

Hi everyone,
i'm doing some documents, and i need this matrix - hyperion vanilla Functional Requirements, someone can help me with this?
thanks in advance.
JL

Is this what you're looking for:
http://www.oracle.com/technology/products/bi/hyperion-supported-platforms.html

Similar Messages

  • My ipod touch is only partially functional, requiring multiple taps to do anything, with apps crashing.  I performed all Apple troubleshooting steps, including reset and restore, but no change in symptoms.  What should I do now?

    My iPod Touch (4G, 8Gb) is only partially functioning, requiring multiple taps on icons to do anything, and apps are crashing often.  There is a thin white border that appears around icons when tapped once, then I must tap twice to activate. (that's 3 taps for what used to take 1)  I successfully completed all the Apple troubleshooting page steps, including reset and restore, but there was no change to its condition.  What can I do now?

    Now that I think aboput it further, You may have an Accessibilty feature turned on.
    - Try triple clicking the Home button to see if that will allow access to the iPod so you can go to Settings>General>Restrictions to turn off all the Accessibilty features.
    - If not then connect the iPod to your computer and turn off the features. See:
    iTunes 10 for Windows: Accessibility features for iPod, iPhone, and iPadApplewill exchange broken iPod for a refurbished one for this price:
    Apple - Support - iPod - Repair pricing

  • I am getting this error :The right function requires 2 argument(s).

    declare 
    @startdate datetime,
    @enddate datetime 
    SET @STARTDATE ='01-MAR-2014'
    SET @enddate = '01-MAR-2014'
    Set @StartDate = Convert(datetime, Convert(char(10), @StartDate, 120) + ' 00:00:00', 120)
    set @enddate =convert(datetime,Convert(char(10),@enddate, 120) + ' 23:59:59',120) 
    SELECT 
    [row_date]
    ,[logid]
    ,CONVERT(VARCHAR(6), (ISNULL(SUM([acwouttime] + [auxouttime] + [holdtime]), 0))/3600) + 
    ':' + RIGHT('0' + CONVERT(varchar(2),(ISNULL(SUM([acwouttime] + [auxouttime] + [holdtime]), 0)) % 3600) / 60), 2)
    + ':' + RIGHT('0' + CONVERT(varchar(2), (ISNULL(SUM([acwouttime] + [auxouttime] + [holdtime]), 0)) % 60), 2)AS HoldTime
    FROM [CMSData].[dbo].[hagent2]
    WHERE ([logid] IN (1382, 1493,1382,1493,1444,1466,1301,1074,1655,
    1749,1685,1686,1684,1617,1681,1792,1595,1597,1687,1622))
    AND (row_date BETWEEN  @StartDate AND @EndDate)
    GROUP BY 
    [row_date]
    ,[logid]
    hi friends when I am executing this query I am getting this error please help me I will grateful to you .
    ERROR: The right function requires 2 argument(s).

    you may be better off making date filter as below
    declare
    @startdate datetime,
    @enddate datetime
    SET @STARTDATE ='01-MAR-2014'
    SET @enddate = '02-MAR-2014'
    AND (row_date >= @StartDate AND row_date <@EndDate)
    see
    http://visakhm.blogspot.in/2012/12/different-ways-to-implement-date-range.html
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • The sum function requires 1 argument(s).

    ---Hi i am trying get all of
    (sum(Q.SCTOTAL,0)) as SC,
    (sum(Q.SRTOTAL,0)) as SRTOTAL,
    (sum(Q.CminusREF,0))as CminusREF,
    (sum(Q.SFAT,0))as SFAT,
    (sum(Q.SPAT,0))as SPAT,
    (sum(Q.SNOTATPT,0))as SNOTATPT,
    (sum(Q.SET,0))as SET,
    (sum(Q.TOTAV,0))as TOTAV
    and for each emp_name?
    but it is not wotking for me. the error says: The sum function requires 1 argument(s).
    what shoould i change on the code below so mY Query can Run?
    thank you
    B.
    select distinct
    G.Emp_name,
    upper(G.EMP_case_number) as MIS_EMP_case_NO,
    G.Emp_name as Emp,
    G.MIS_Emp_id,Radius,
    G.address,
    G.DC as Emp_DC,
    G.Emp_class,
    Q.YEAR,
    Q.EMP_case_number,
    (sum(Q.SCTOTAL,0)) as SC,
    (sum(Q.SRTOTAL,0)) as SRTOTAL,
    (sum(Q.CminusREF,0))as CminusREF,
    (sum(Q.SFAT,0))as SFAT,
    (sum(Q.SPAT,0))as SPAT,
    (sum(Q.SNOTATPT,0))as SNOTATPT,
    (sum(Q.SET,0))as SET,
    (sum(Q.TOTAV,0))as TOTAV
    FROM tbl_MIS_QC G
    LEFT JOIN QCPFA Q ----View
    ON upper(Q.EMP_case_number) = upper(G.EMP_case_number)
    where DC = '55'
    gorup by G.Emp_name
    order by G.Emp_name, upper(G.EMP_case_number)

    Hi,
    It's true: the SUM function only takes one argument. What are you trying to do with the second argument, 0?
    When you use aggregate functions (like SUM), everything in the SELECT clause must be an aggregate function, a constant, or one of the GROUP BY columns. Without knowing your tables, your data, or what results you want, I can't tell you exactly what to do. You might want to compute the SUMs in a sub-query before joining them to the other table, something like this:
    select  G.Emp_name,
            upper(G.EMP_case_number) as MIS_EMP_case_NO,
            G.Emp_name as Emp,
            G.MIS_Emp_id,Radius,
            G.address,
            G.DC as Emp_DC,
            G.Emp_class,
            Q.YEAR,
            Q.upper_EMP_case_number,
            q.sc,
            q.srtotal,
    FROM    tbl_MIS_QC G
    LEFT JOIN
            (   -- Begin in-line view q
            SELECT  year,
                    UPPER (emp_case_number) AS upper_emp_case_number,
                    sum(SCTOTAL) as SC,
                    sum(SRTOTAL) as SRTOTAL,
            FROM    QCPFA
            GROUP BY  year,
                      UPPER (emp_case_number)
            )   -- End in-line view q
    ON Q.upper_EMP_case_number = upper(G.EMP_case_number)
    where DC = '55'
    order by G.Emp_name, upper(G.EMP_case_number) Repeat: this is just a wild guess, the best I can do without seeing some test data and the results you want from that data.

  • Please send me Functional requirement specification's in bw regarding

    Dear Experts,
            Please send me any sample functional requirement specifications regarding MODELING,REPORTING,EXTRACTION.
       points will be added
      thanks very much
    Regards,
    SridharMenda
    [email protected]

    Hi,
    check these links...
    http://hosteddocs.ittoolbox.com/CM021805.pdf
    a forum discussion on specs..
    bex sample project/specs
    assign points if useful ***
    Thanks,
    Raj

  • Functional requirements of the Java Pet Store

    Hi,
    Someone know where I could find the functional requirements of the Java Pet Store?
    Thanks,
    Antonio.

    Hi,
    Someone know where I could find the functional requirements of the Java Pet Store?
    Thanks,
    Antonio.

  • How to write functional requirements

    Hello,
    I need your help in this matter.
    There is  SAP PM/CS analyst opening in our company. I've been offered that position but I don't  how to write the functional requirements for the developers in case we want to make some customization in the system.
    Could anyone provide me with a template, a procedure or a list of information that I should provide? How am I going to use the tables and user exit in to write the new requirements?
    Thank you very much for you help.

    Hi John,
                   As you have offered a new role of SAP PM/CS the customizing configuration related to your module ,you will have to do in that developers are concerned .
    List of information you should provide to developers .
    1 .What's the Requirement you should want or client wants
    2 .Explain the Document Flow and tell them few specific tables and in case document flow related issues tell them to find thorugh SAP available transactions like SARA .
    3 .In case of userexits explain them what is the requirement and ask them about their approach .
    4 .Test Data ,testing and flow testing will varried by you and customize related issues link to your module you will take care .rest all customize the developers have to take care .
    5 .Guide them on the Formatting stuff what does client wants.
    Please reward if useful.

  • Currencies and Exchange Rate Requirement Matrix

    Hello All,
    Could anybody give me some inputs on my query. I have a TD for creating the BEX report. In the TD i have an option of below requirement. Please have a look :-
    Currencies and Exchange Rate Requirement Matrix               
    Value        Currency Type
         Document        Local       Group
    Actual                  X
    Plan               
    I meaan the Actual has value of group currency. I have no idea how to set in the report or query desginer? How do i set the value in the query desginer.
    Please throw some lite on my questions. Your view are appreciated.
    Thanks
    surendra

    Hello SRM Experts,
    May I know any answers or pointers to our issue/question.
    Thanks for your help.
    Regards,
    Sasikala

  • Is using MDB valid for my functional requirement?

    I am newbie to JMS. I just want to know if I can use MDBs in my following functional requirement :
    Each request from a web page, starts a process in my app which in turn posts messages to a topic.
    Depending on the content of the message, I need to start different processes for each request. The input params for this new processes come from the earlier web request.
    All the requests need to listen to the topic and wait for the message(which is a message like something is COMPLETED) and then after getting this message, the separate processes should start.
    Can I use MDBs in this scenario?

    Hi,
    You should use a MDB if your process needs to invoke other Bean operations or if you require concurrent processing of messages. If you only want to achieve concurrent processing of messages, I would recommend the use of a lightweight MDB container like. Fore example, ArjunaMS is shipped with such a container called Message Driven Services container.
    Hope it helps
    Arnaud

  • Hyperion Workspace portal requirement

    Hi Experts,
    I have a requirement from the client to develop a hyperion workspace portal wherein we can provide alerts about the regular data loads and can broadcast important communications about downtime etc..to the user community and moreover by some visuals (like traffic lights)we want to showcase that which month of data against particular POV resides in the cube.
    The similar functionality was present with the business in their earlier BI suite.
    Basically need a start up that how this can be achieved at workspace.
    We are using EPM 11.1.2
    Thanks !!
    Edited by: Harsh on Oct 6, 2011 12:25 AM

    A suggestion, with the help of OBIEE together with workspace this requirement can be achieved.
    Below links will be helpful for the same:-
    http://download.oracle.com/docs/cd/E12825_01/epm.111/hs_new_features/hs_new_features.html
    Mentions use of Oracle BI Delivers for business activity monitoring and alerting.
    For integrating OBIEE with workspace:-
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/hyp/WS11.1.2_OBIEE/WS11.1.2_OBIEE.htm

  • SSRS 2008R2 : Not able to use Previous aggregrate function in matrix columns cell

    Hi Expert,
    I have used a matrix tablix in my report. It is working fine. But when I am trying to use Previous aggregrate in one matrix column cell I get the below error:
    The use of previous aggregrate function ia a tablix cell with in 'Tablix1' is not supported.
    Please help me regarding that.
    Thanks Rana

    Hi Rana,
    In your scenario, you use previous function in the “Data” cell, right? Previous function cannot be used in the overlapping parts of row group and column group. One workaround of this issue is use custom code to get the previous value.
    Public Shared previous as Integer
    Public Shared current as Integer
      Public Shared Function GetCurrent(Item as Integer) as Integer
         previous=current
         current=Item
         return current
      End Function
      Public Shared Function GetPrevious()
         return previous
      End Function
    Then you can use the expression below in the “Data” cell to get the previous value:
    =Code.GetCurrent(fields!Score.Value) & "-Previous-" & iif(Code.GetPrevious()=0,"",Code.GetPrevious())
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    TechNet Community Support

  • User defined Function Required for EDI 850 file fields.

    Hi Guys,
    I have an requirement where i need to check two fields in incoming EDI 850 file, based on those fields data should be populated to target side fields IDOC(ORDERS05).
    here is the requirement
    If Field.01 = "001" and field.02 exist then
       Set TDID = "31"
    If  Field.01 = "001" and  field.02 exist then
       Set TSSPRAS = "A"
    If  field.01  = "001" and  field.02 exist then
       Set TDLINE = Concat("XXXXXXX" +  field.02 (mm/dd/yy))
    If  field.01 = "002" and  field.02 exist then
       Set TDLINE = Concat("XXXXXXX: " +   field.02 (mm/dd/yy))
    If  field.01  = "010" and  field.02 exist then
       Set TDLINE = Concat("XXXXXXX: " +   field.02 (mm/dd/yy))
    If  field.01 = "015" and  field.02 exist then
       Set TDLINE = Concat("XXXXXXX: " +   field.02 (mm/dd/yy))
    If  field.01 = "037" and  field.02 exist then
       Set TDLINE = Concat("XXXXXXX: " +   field.02 (mm/dd/yy))
    If  field.01 = "038" and  field.02 exist then
       Set TDLINE = Concat("XXXXXXX: " +  field.02 (mm/dd/yy))
    If  field.01 = "063" and field.02 exist then
       Set TDLINE = Concat("XXXXXXX: " +   field.02 (mm/dd/yy))
    If  field.01 = "064" and  field.02 exist then
       Set TDLINE = Concat("XXXXXXX: " +   field.02 (mm/dd/yy))
    Here Field01 and Field 02 are sender side fields.we need to check this two fields . I Know this can be created with graphical mapping but as per requirement i need to write UDF bcoz with graphical mapping this would be more complex.
    so can any one please provide me UDF for this.
    Regards,
    Sandeep.

    Hi,
    you can do it with standard functions.
    If_1 source -> length -> greater -> constant 2
    then_1 if_2 substring source 0, 2 -> equals TN
    then_2 -> constant ""
    else_2 -> source
    else_1 source
    Regards
    Patrick

  • Can Mac OS X Server can do the same as MobileMe but without a MobileMe account ? (It seems to me that it is not clearly mentioned which function require a MobileMe account.

    My interest for this server it would be to have the same function as MobileMe but without it.
    Best regards.
    Camille

    Which features of MobileMe are you looking for specifically?
    OS X server does allow you to host e-mail, contacts and calendars (including syncing between devices). You can also do web hosting, as well as file storage. How well all of these services work will depend on the type and speed of your internet connection. Most "home" ISPs do not allow you to run a mail server, and will block the ports required to do so.
    You will not be able to use the "Find My iPhone" service through OS X server, although Apple has already made that free to use without a MobileMe account.

  • Approval functionality required

    Hello,
    I have been asked to post a missing functionality request to this forum.  Please see below:
    Version: 2007 PL45
    Description of requirements:  You set up an
    approval procedure whereby if a purchase order's document total is
    above £100 it gets sent for approval. You create a purchase order for
    £10, add the document...no approval needed. You go back into the same
    purchase order and change the amount to £200 and click 'Update'. The
    document is added and not sent for approval. This seems wrong as
    the purchase order has been added now with a value higher than the
    approval limit of £100.
    Business needs: documents can be added without having to be sent for approval when they should have been which defies the point of having an approval setup.
    Examples: The document, after an alteration should be then sent for approval again as the value has changed since it was added.
    Current Workaround: An alert was set up but this is not practical.
    Proposed solution: The document, after an alteration should be sent through the approval process again after the value has changed.
    Thanks,
    Kate

    Hi,
    For the first step,I want to create a group called "*manager*".To this group I will assign a custom menu called "*Your Reportee's*" where I will try to build a logic to show User's under a manager.
    To achieve this,
    a)I will run flatfileGTC( EMPGTC ) and users in the flatfile( Employee Data ) will get created in oim.
    Sample Employee Data Flatfile
    ##HRDB
    empno,userid,firstname,lastname,manager,EmployeeType,Org,Role,department,location,position,Start Date,End Date,Provisioning Date,Provisioned Date,Deprovisioning Date,Deprovisioned Date
    00009,anine,A,Nine,AONE,Full-Time,Xellerate Users,End-User,Engineering,BEND,Engg Assistant,2011/05/31 12:22:33
    b)Then, I will write a custom java class outside IDM which will read manager column of the flatfile( Employee Data ) and create a new flatfile ( Manager Data ) which contains manager information.
    Sample Manager Data Flatfile
    ##ManagerData
    empno,userid,firstname,lastname,manager,EmployeeType,Org,Role,department,location,position,Start Date,End Date,Provisioning Date,Provisioned Date,Deprovisioning Date,Deprovisioned Date
    00001,aone,A,One,xelsysadm,Full-Time,Xellerate Users,End-User,Engineering,BEND,Engineer,2011/05/23 11:25:43
    c)I will create another flatfileGTC( managerGTC ) to assign managers with group called Manager.
    I want to know, is it possible to assign a group(manager) to the "manager user" by running flatfile and plz provide to guide lines for the same.
    Regards,
    Madhu

  • SCOM 2012 R2 Domain Functional Requirement

    Hi
    We are planning to deploy SCOM 2012 R2 in our environment. We are running Windows 2012 AD and have Domain and Forest functional levels of
    Windows Server 2012 R2. The Environmental prerequisites stated on Technet article
    http://technet.microsoft.com/en-us/library/hh487285.aspx under section "Domain Functional Level", following description is provided:
    Windows Server Active Directory can operate at different functional levels. These levels are distinguished by the version of the Windows Server operating system that is permitted on the domain controllers present in the domain. System Center 2012 – Operations
    Manager requires that the domain functional level be Windows 2000 native, Windows Server 2003 interim, Windows Server 2003, or Windows Server 2008. The domain functional level of Windows Server 2008 R2 is also supported (for the SP1 version of System Center
    2012 – Operations Manager, Windows Server 2008 R2 SP1 and Windows Server 2012 are supported). For System Center 2012 – Operations Manager to function properly, you must check the domain functional level and raise it to the appropriate version.
    This description does not includes Domain Functional Level of Windows Server 2012 R2.
    Does SCOM 2012 R2 supports domain and forest functional levels of Windows Server 2012 R2?
    Thanks
    Taranjeet Singh
    zamn

    Yes.
    I has a SCOM 2012 R2 deploy in domain with forest and domain functional levels of Windows Server 2012 R2 and it work fine. Moreover, SCOM monitoring is more depend on kerberos encrpytion of data transfer rather than functional level.
    Roger

Maybe you are looking for

  • Variable not appearing for User

    Hi everyone! I have a query which the user have been using for quite some time and it was working fine. When the query is run the user has option of 3 input variables. Today, all of a sudden, the 3rd variable does not show up for that user. The query

  • Distinguish b/w Automatically created Info Record and created thru ME11

    Hi, How can we distinguish between Automatically created Info Record and manually created Info Record (By User through ME11 transaction). Where we can see the difference??? Plz guide...

  • Business component xml files

    I'm researching which files of an adf/bc application should go into version control and came across this piece in the developer's guide: 4.4.7.2 Recommendation for Disabling Use of Package XML File By default, for upward compatibility with previously

  • Display query's result (with many rows & field) into a list ?

    I'd like to display the result of a query wich returs many rows without using a list of values but another component which allowed the display of sereval columns at the same time. Note: I can't use a LOV because I don't want to return no value, and I

  • Create an ASCII file from pl/sql procedure

    hello I need to create a file starting from a pl/sql procedure launched by command line I'll have my .sql file containing my procedure; I'll launch it via command line and it will create the ASCII file In the procedure I'd like to use some stored pro