Using arcsine function on WebI reports

Hi All,
I could not find the arcsine function to be included in the WebI report.
Is there a way I can enforce WebI to return arcsine values.
Can I create a formula?
Please suggest.
Regards,
Faisal Vakil
Edited by: Faisal Vakil on Nov 5, 2010 11:12 PM

Try:
=MonthNumberOfYear([Order Date])+"/"+DayNumberOfMonth([Order Date])+"/"+FormatNumber(Year(CurrentDate());"####")
Or,
=FormatDate([Order Date];"M/d/")+FormatNumber(Year(CurrentDate());"####")

Similar Messages

  • How to Get SUMCT SUMGT functionality in WEBI reports.

    Hello All,
    How to get the SUMCT SUMGT functionality in WebI reports using variables/formulates, as these fictions cant be used in Bex if we are developing a BO report on top of that.
    We are developing BO WebI reports on top of BeX query. nd we are on BO 4.0
    I tried to search in SDN but didnt got any relevant link.
    Thanks  & Regards
    Neeraj.

    Hello,
    Srry for disturbance.
    Got the soln for the same. Can be achieved easily using report context.
    For more details refer below link.. :
    http://www.dagira.com/2010/01/04/calculation-context-part-i-overview/
    Neeraj.

  • #SYNTAX error while using Merge Dimension in webi report

    Hi All,
    # Syntax error when using merge dimension in webi report
    screen shot has been attached.
    iam using BO 4.0 SP6
    checked the datatypes in BW
    they are same in BW in both the queries
    i followed the given links but no result.
    https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3138343530303526
    https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3136323339323126
    https://websmp230.sap-ag.de/sap%28bD1lbiZjPTAwMQ==%29/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3137353438313026
    http://scn.sap.com/thread/3592588#15241008
    Need Help!!!!!
    Regards
    Sushma

    Hi Mark,
    Thanks for the reply,
    I did not use any formula,
    I used merge dimension
    Anyways i tried in other system,it s working fine.
    Regards
    sushma

  • How to use oracle functions in Crystal Reports XI using Oracle Server

    Hi all,
    Is it possible  to use oracle functions in Crystal Reports XI using Oracle Server as Data Source.
    If i try to use a procedure,i am getting error with message "Invalid Arguement Provided".
    Functions are not visible objects like tables,views and stored procedures.
    The  jdbs driver i m using is oracle.jdbc.driver.OracleDriver.

    I think it is not possible to add functions in crystal directly for any database. You need to use those functions in a stored procedure and add that storedprocedure as a datasource.
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233353335333833323333%7D.do]
    regards,
    Raghavendra

  • Sort function in web report using servlet

    Dear all
    Please help me this out. I'm doing an online report using servlet. When the report is displayed as a table on the web, is there a way to have a sort function-when you click on the tabs, it will sort the data accordingly.
    If I didn't state my question clearly, please let me know.
    Thank you all for your kind help!
    Grace

    You could probably do that using Javascript, but it's beyond my competence to even suggest how. Alternatively you could make the tabs behave as buttons that send a "sort me" request to the server, which would send out new, resorted, HTML.

  • How to use Decode Function in Webi / Designer - BOE XI 3.1

    Hi All,
    I have a SQL query which needs to include in the webi report.
    Below is the query :
    SELECT
    SECURITY.SEC_CUSIP_NO "CUSIP", 
    SECURITY.STY_SEC_TY_CD "SECURITY TYPE",
    SECURITY.SEC_DERIVED_DESC_TX "SECURITY DESCRIPTION",
      SECURITY.sec_dep_teleg_de "FED DESCRIPTION",
      SEC_STND_PR "STANDARD/FACTORED PRICE",
      SEC_STND_PR_EFF_DT "STANDARD/FACTORED PRICE Date",
      SECURITY.SEC_YIELD_PR "YIELD PRICE",
      SECURITY.SEC_YIELD_PR_DT "YIELD RICE EFFECTIVE DATE",
      STND_PR_VND_VENDOR_CD "PRICE SOURCE",
      SEC_MATURITY_DT "MATURITY DATE",
      SEC_ISSUE_DT "ISSUE DATE",
                 CASE WHEN SECURITY.STY_SEC_TY_CD IN ('BA','CD','CDD','CDE','CDM','CDV','CP','CPD') THEN
                    (position.PSN_AVAIL_PAR_VL + position.PSN_COLLAT_PAR_VL) * (SECURITY.SEC_STND_PR) / 100
                 ELSE
                    (position.PSN_AVAIL_PAR_VL + position.PSN_COLLAT_PAR_VL) * (  (  SECURITY.SEC_YIELD_PR * DECODE (SECURITY.SEC_PRIN_FT, 0, 1, SECURITY.SEC_PRIN_FT))) / 100
                    * DECODE(SECURITY.STY_SEC_TY_CD, 'AMP', DECODE(NVL(SECURITY.SEC_MULTIPLIER_UNIT_VL,0), 0, 1, SECURITY.SEC_MULTIPLIER_UNIT_VL), 'MMP', DECODE(NVL(SECURITY.SEC_MULTIPLIER_UNIT_VL,0), 0, 1, SECURITY.SEC_MULTIPLIER_UNIT_VL), 'AMPT', DECODE(NVL(SECURITY.SEC_MULTIPLIER_UNIT_VL,0), 0, 1, SECURITY.SEC_MULTIPLIER_UNIT_VL), 1 )
                 END
            ) "MARKET VALUE"
    FROM SECURITY SECURITY
       ,   position position
    WHERE STND_PR_VND_VENDOR_CD = 'VT'
    AND SEC_MATURITY_DT > SYSDATE-1
    and SECURITY.sec_sys_id=position.sec_sys_id
    I could create a report which has selected objects and defined where condition from the above query. I have also created a variable for 'when' & 'then' condition but stuck at else part which contains 'DECODE' function.
    Please suggestions how to write the same at the report or designer level.
    Thanks,
    Rameez Shaikh

    Hi Rameez,
    Looking at the query you can create the object directly in the universe, either create two objects one for inner decode and use it in outer case logic. In report it is nothing but nested if logic. For eg.  If(a=b;1;(if(a=c;2;3))
    Thanks
    Gaurav

  • Multiple schemas to be used for a single webi report

    Hi,
    Recently i got one requorement.as per the requirement i need to develop a single webi report in which i have  to display the data from 7 schemas.i am using the BO XI R 3 version.
    Is there any options available to achieve this?
    Please provide me your suggestions how better we can implement this?
    Regards,
    Kishore.
    Edited by: NandaKishore A.V on Sep 9, 2011 3:46 PM

    Okay then pleace check this:
    1. IN every universe (schema) has to be one or more dimensions wich are equal to other dimensions(keys) in the other universes(schemas) .
    2. There are 7 universes (1 per schema)
    If this is fine then:
    1. Create a documet with the first universe
    2. select all needed objects and what else you need to define
    3. use the Add Query button to add another query from the second universe
    4. select all needed objects and and what else you need to define form the second universe
    5. repeat step 3 and 4 until you are at the seventh universe
    6. run queruies
    7. when the dimensons from the 7 queries are not automatily merged. you have to merge them by hand, this could be done by the merge dimensions button in edit Report panel. There you have to move together the dimensions which are keys.
    8. Now you can display in one table the merged dimensions and all measures. If there are not megred dimensions, which should also be displayed in the table. Is the solution du put them into a variable which is definded as measure and has a measure function like this example =max([Name])
    I hope you unstand what i mean, because of my bad english

  • How to use email function in crystal report ?

    Post Author: kudo
    CA Forum: .NET
    Hi I'm a novice by touching .net not more than 2 months. Can somebody guide me how to use email function provided in crystal report components?(Better put a sample code so that I can understand well.)  ps: I'm using VS2005 VB.net.Thanks.

    Post Author: mewdied
    CA Forum: .NET
    'EXPORT to EMAIL        ''' Code for exporting the report to Mapi (.Net Windows application)        ''' *For a Web application you must export to disk as a PDF file first.
            crReportDocument.Load(Application.StartupPath + "\World Sales Report.rpt")        crMicrosoftMailDestinationOptions = New MicrosoftMailDestinationOptions        With crMicrosoftMailDestinationOptions            .MailCCList = "[email protected]"            .MailToList = "[email protected]"            .MailSubject = "Attached exported report"            .UserName = "admin"            .Password = "password"        End With
            crExportOptions = crReportDocument.ExportOptions        With crExportOptions            .DestinationOptions = crMicrosoftMailDestinationOptions            .ExportDestinationType = ExportDestinationType.MicrosoftMail            .ExportFormatType = ExportFormatType.PortableDocFormat        End With
            'Add some error handling        Try            crReportDocument.Export()            MsgBox("Report exported successfully.")        Catch err As Exception            MessageBox.Show(err.ToString())        End Try
    Hope this helps

  • Using Combo Box in Web Report 6.0

    Has anyone had success using a combo box on the parameter form in
    a Reports 6.0 web report? I can successfully use a list of
    values, but this requires that the user must select an entry.
    Some parameters may be null. Current environment is NT4 SP4,
    OAS4.07, Oracle Developer Server 6.0.
    Thanks!
    S Hatch
    null

    Hello,
    You need to create a client-side PL/SQL package as Program Units for your report. In this package you can define a package variable to hold and share your file handle, and create functions to open, write, and close the file. You can call these functions from the Before Report, Formula, and After Report triggers in your report.
    Regards,
    The Oracle Reports Team --skw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to save data using a function in WEB?

    Dear All,
    I'm using Web interface builder to make a Simulation interface.
    In this web interface I’m not using layout, I'm just using it to introduce values and to apply a simulation value. The output in the same interface is a BSP Page with an assigned to a report.
    My problem is that since I’m not using a BPS Layout the values on my query are not updated.
    What I would like is when the user press the button simulation the system automatically same the data. Doing this my report is also automatically updated with the last values.
    Can anyone help one this?
    Thanks and regards,
    Rui Valente

    It seems you want to use the SAVe functionality by creating Custom Button IS IT?
    If yes, then what you have to do is, You will need to use Web Application Designer.
    Over here you can create as many custom buttons you want using Button command Group Web item.
    You can give your own description to such buttons as well as you can use your selective Command Instruction for the same.
    Please search for WAD in forums and you will find a lot of good documents.

  • Hover Functionality on Webi Reporting

    Hi,
    I was wondering if webi reporting allows us to implement hover functionality wherein if we choose to hover over particular row it shows the column value that we want to display when the users hover.
    The reason for analyzing this requirement is beacuse I have a webi report which already is out of space for representation. I wanted to implement the date column as a hover functionality so that when users hovers around that row the date is displayed associated to that row.
    Or is there any other way of dynamically representing the column.  I am on  Business Objects XI Release 2 Version.
    Thank You,
    boe user

    Hi,
    I'm sorry, I only ever used this functionality to display descriptions and notes so I made an error...
    ="<a title=\""+FormatDate([Schedule Date];"dd-MM-yyyy")+"\" href=\"#\" style=\"text-decoration:none; color:black;\">" + [Driver_Name] + "</a>"
    I cannot check the syntax (especially the part with the double "" to get a " in the generated string) at present
    but it should work, this formula generates a string exactly the  same as the previous one,
    but instead of the string
    [Schedule Date]
    it is inserting the formatted contents of the object schedule date.
    You can off course choose any date format you want and might even keep the "schedule date" string in the string to tell the user which date they are seeing
    Good luck,
    Marianne

  • Using Match function in FR Reports

    Hi,
    Can anyone pls. let me know how i can use Match function in FR ? I've a Report where i'm using 2 Grids. In one Grid1 i'm using Entity under page and ICP dimension as Column. In Grid2, i'm using ICP under page and would like to use Match function where the condition is, if i select ICP member from Page, it should show the corresponding Entities in Grid1
    Thanks,
    PVR

    I don't think what your trying to do is available "out of the box", we have used a workaround to do what you want:
    - include idescendants for the member but apply suppression on the member names that ended in rollup.
    (we were lucky in that the parent members were standardized to contain rollup as the description name).
    Cheers, Iain

  • Using a function in a report query

    Why can't I call a function (basically a query) in a report query like I can from from SQL?
    Consider the following:
    Select MyFunctionName(arg) from dual;
    From SQL, it works great! No problem:
    In a report query, [Application/Shared Components/Report Queries] It doesn't work. I get an XML error:
    XML Parsing Error: not well formed
    <MyFunctionName('arg')>&lt;?xml version="1.0"?&gt;
    ----------------------^
    Why?
    Looks like APEX is not even executing the function...
    See I have a table with a CLOB field that contains properly formatted HTML. I cannot simply query for that content, since Oracle escapes the tags in the conversion to XML. I have to (somehow) tell Oracle to keep it's grubby mitts off my CLOB content. As far as I can tell, using DBMS_XMLGEN.setConvertSpecialChars is the only way to keep Oracle from escaping the html stored in the table--in fact, the DBMS_XMLGEN documentation states that it why this functionality exists in the first place!
    This is why I am trying to use a function. Simply queries don't work. The function I wrote works beautifully in SQL, but not in a report query...
    Edited by: Vorlon on Aug 5, 2010 1:20 PM

    Note from the first post:
    "In a report query, [Application/Shared Components/Report Queries]" Let me clarify: This report query is used in a BI Publisher report. Getting the information to the screen isn't the problem. I have that working. :-) It's just when I try to get the report to print that I see APEX has escaped the output before reaching BI Publisher--so BI Publisher is not the issue. I have a xsl template that will process the embedded HTML, but APEX is escaping my data before I can act on it. In other words:
    It seems Apex is not creating the XML properly, since it escapes everything. Even when the function passes back data correctly.
    Has anyone else seen this? Ideas for a workaround?
    Thanks!

  • How to include a delete functionality to web reports of BW

    Hello Experts,
    How can we delete the views which are saved by endusers in a web report.
    I hope  there should be a possibility of adding a "button" to the report which gives the user the functionality of deleting a view.
    Please let me know <removed by moderator>
    Thanks in adavance.
    Edited by: S MB on Jun 15, 2009 3:38 AM
    Edited by: S MB on Jun 15, 2009 5:59 AM
    Edited by: S MB on Jun 15, 2009 6:02 AM
    Edited by: Siegfried Szameitat on Jun 15, 2009 12:08 PM

    HI
    Hope the below link will be help ful to you..
    http://help.sap.com/saphelp_nw04/helpdata/en/d3/f4ec293e424f49be098ad506b32a95/frameset.htm
    Many thanks
    Kiran

  • Use of CSS in Web Reports

    When we use DesFormat = 'HTMLCSS' parameter on our Web report, we get correct output in 80 column report width. However, same parameter with 132 column width report generates distorted output. Headings and columns which are positioned after 80 column, don't print properly.
    Which CSS file is used by Oracle Reports when we use the parameter DesFormat = 'HTMLCSS'? Where this file is located? Can we create our own CSS file and use it in place of HTMLCSS?

    hello,
    the CSS is generated in-line with the HTML file and can therefore not be replaced.
    regards,
    the oracle reports team

Maybe you are looking for

  • IPhoto/iPod and Syncing Albums

    Using OS X.3.9 and iPhoto 6.x: When I sync iPhoto with my new iPod (video), will I be able to browse the photos on the iPod by the same Album names used in iPhoto? Will the iPod list my Albums? For example, can I present a slideshow of a certain Albu

  • Installing Oracle Client in 9.2.0.8

    I was trying to install oracle client and in OSS 1017418, it states: "Confirm that /oracle/client/92x_64/lib is a link to /oracle/<DBSID>/920_64/lib" Can anyone advise me how to do this in AIX 5.3? I know the command is "ln". Should it be a soft link

  • Console Gaming - NAT Issues - Workaround and Solut...

    I've already used the BT Broadband Contact Us, to raise this issue. They said it was beyond them and that they'd forward me an address for a technical forum. They've not managed to do so yet, so I'm trying here. Problem: NAT hole punching regularly f

  • How I can append new node in existing  XML file

    I've just begun learning DOM XML , so I'm currently at a very beginner level. I have an existing XML file that I would like to add an additional node to before saving it to another variable. how I can append new node in this file. now this code is ov

  • Drawing custom component in AS

    I have a custom component that is displayed using a repeater. Sometime, I need to draw that component in as. How can I add that component?