How to generate graph's in portal based on customer data

Hi
customer wants graphs based on BW data in the portal.is it possible to generate graph's in BW and display it in portal?
Prasad

Yes, you would need to integrate the BEX URL in the BW iView.
Otherwise if the whole BW role needs to be imported into the portal, please use role upload functionality in System Admin.
If your BW is BW 3.5 then you can directly publish BW reports from BW to the portal.
Vibhu

Similar Messages

  • R12: How to filter Open Item Revaluation Report based on GL Date

    Hi,
    Anybody know how to filter Open Item Revaluation Report based on GL Date from and GL Date to in R12?
    Since we just upgraded from 11.5.10 to 12.1.3 and found we cannot filter those report for specific date. It shown all data included the old data from 8 years ago also.
    We need to run the report only for specific date only. Please share with me if anyone know about this.
    Thanks.

    Pl do not post duplicates - R12: How to filter Open Item Revaluation Report based on GL Date

  • How to enable/disable the input fields based on the data entered/user action in the web dynpro abap?

    How to enable/disable the input fields based on the data entered in the web dynpro application abap?  If the user enters data in one input field then only the next input field should be enabled else it should be in disabled state. Please guide.

    Hi,
    Try this code.
    First create a attribute with the name readonly of type wdy_boolean and bind it read_only property of input field of which is you want to enable or disable.
    Next go to Init method.
    Set the readonly value as 'X'.
    DATA lo_el_context TYPE REF TO if_wd_context_element.
         DATA ls_context TYPE wd_this->element_context.
         DATA lv_visible TYPE wd_this->element_context-visible.
    *   get element via lead selection
         lo_el_context = wd_context->get_element( ).
    *   @TODO handle not set lead selection
         IF lo_el_context IS INITIAL.
         ENDIF.
    *   @TODO fill attribute
    *   lv_visible = 1.
    *   set single attribute
         lo_el_context->set_attribute(
           name =  `READONLY`
           value = 'X').
    After that Go to the Action  ENTER.
    First read the input field ( first input field, which is value entered field) , next give a condition
    if input value is not initial  then set the readonly value is '  '.
    DATA lo_nd_input TYPE REF TO if_wd_context_node.
         DATA lo_el_input TYPE REF TO if_wd_context_element.
         DATA ls_input TYPE wd_this->element_input.
         DATA lv_vbeln TYPE wd_this->element_input-vbeln.
    *   navigate from <CONTEXT> to <INPUT> via lead selection
         lo_nd_input = wd_context->get_child_node( name = wd_this->wdctx_input ).
    *   @TODO handle non existant child
    *   IF lo_nd_input IS INITIAL.
    *   ENDIF.
    *   get element via lead selection
         lo_el_input = lo_nd_input->get_element( ).
    *   @TODO handle not set lead selection
         IF lo_el_input IS INITIAL.
         ENDIF.
    *   get single attribute
         lo_el_input->get_attribute(
           EXPORTING
             name =  `VBELN`
           IMPORTING
             value = lv_vbeln ).
    if lv_vbeln IS not INITIAL.
        DATA lo_el_context TYPE REF TO if_wd_context_element.
        DATA ls_context TYPE wd_this->element_context.
        DATA lv_visible TYPE wd_this->element_context-visible.
    *  get element via lead selection
        lo_el_context = wd_context->get_element( ).
    *  @TODO handle not set lead selection
        IF lo_el_context IS INITIAL.
        ENDIF.
    *  @TODO fill attribute
    *  lv_visible = 1.
    *  set single attribute
        lo_el_context->set_attribute(
          name =  `READONLY`
          value = ' ' ).

  • Need Report based on "CUSTOM DATA field @ Shop Order Maintenance"

    Need the REPORT based on CUSTOM DATA field.
    Requirement - I am having the CUSTOM data at Shop Order Maintenance that is called as XXX, I need some report in SAP ME which can display the SFC related to particular Shop order based on XXX Number.

    Hi!
    As far as I remember there is no such base report. So, you may try to create it using SDK or request it as custom enhancement from SAP.
    If you want to create it using SDK, you can find the required data for report in CUSTOM_FIELDS table.
    Regards,
    Alex.

  • How to generate graph

    Hi All
    I have an query
    i want to generate graph with below data
    data are hard coded for both the tables
    normally if data is coming from DB than we will just do RT click and click on TURN INTO and get graph options.
    due to hard coded all options are hide
    dont not what to do
    Country
    SR
    india
    15%
    us
    20%
    uk
    25%
    kenya
    30%
    I am using sap bo 3.1 (infoview)
    Thanks in advance
    Ranjeet

    hard coded means
    ndia
    15%
    us
    20%
    uk
    25%
    kenya
    30%
    for 15% different formula
    for 20 % different formula
    for 25 % different formula
    for 30 % different formula
    please give some suggestion
    Ranjeet

  • How to generate graph of total CSV used space ?

    hi ,
    I want to generate graph of total  Hyper-v CSV used space
    we use scom and i can get graph of each volume individually.
    I want to create a summation graph to know average growth rate
    Ramy Shaker

    I don't think this (http://gallery.technet.microsoft.com/scriptcenter/HyperV-Dash-Board-VM-Disk-299bac7d) will give you a graph of the total, but you should
    be able to look at the code and create your own summation.  What you are asking for is something that would be custom, so you are likely to have to create it on your own.  At least Shabarinath has written PowerShell code to get the information you
    want to summarize.
    . : | : . : | : . tim

  • How to generate the java code of a table's data model by parsing it's FXML?

    I have know how to create FXML file that describes a table. Meanwhile, according to [Oracle Tutorial|http://docs.oracle.com/javafx/2/fxml_get_started/fxml_tutorial_intermediate.htm#CACFEHBI], it is a best practice to implement a class that defines the data model and provides methods and fields to further work with the table.
    However, It's rather cumbersome and time consuming to typing the code. So, is there any tools that can generate the java code of a table's data model by parsing it's FXML describe file?
    Regards, Qinn
    Edited by: 854675 on Oct 7, 2012 11:02 PM

    I have know how to create FXML file that describes a table. Meanwhile, according to [Oracle Tutorial|http://docs.oracle.com/javafx/2/fxml_get_started/fxml_tutorial_intermediate.htm#CACFEHBI], it is a best practice to implement a class that defines the data model and provides methods and fields to further work with the table.
    However, It's rather cumbersome and time consuming to typing the code. So, is there any tools that can generate the java code of a table's data model by parsing it's FXML describe file?
    Regards, Qinn
    Edited by: 854675 on Oct 7, 2012 11:02 PM

  • Exchange rate should pick from TCURR based on custom date field added in MIGO

    Hi,
    In MIGO, FI document get posted by picking exchange rate based on the posting date. Through BADI(MB_DOCUMENT_BADI) we have added a field called translation date in MIGO screen, while doing GRN exchange rate should pick from TCURR based on translation date instead of posting date. We have tried this logic using substitution (GGB1) in FI accounting it is working fine in FB60 & F-02 transaction but it is not working with MIGO transaction. Please suggest some solution for this.
    Thanks & Regards
    Vinoth Kumar.M

    Hi Maniraj,
    This will a modification to existing system and it is not supported directly.
    There are 2 notes of SAP for modification of translation date of BKPF.
    SAP Note 574583 will activate a BADI kindly refer to it for details.
    http://www.stechno.net/sap-notes.html?view=sapnote&id=574583
    There is another one but is appilcable if material ledger is active in the system
    Regards

  • How to generate graphs from csv file and show on remote clients?

    Hi,
    I have set of csv files. Each file has 104 parameters. From these parameters different graphs have to be generated and displayed to remote clients thru tomcat.
    Can anyone tell me how to do that?
    cheers,
    its reeju

    it's very easy to load the CSV into java objects. Once you have done that why not use the Java2D API to draw your graphs and then use the Sun JPG encoder tools to write out a jpg stream back to the browser (you will need to set the content type for jpg).

  • How can generated EWA for SAP Portal system

    Hi Guru there,
    Usually generate EWA should maintenan RFC, We have SAP Portal systems ( prod PP1 and test PT1 and dev PD1), but they are not appeared at saplogon and no general SAP interface, only operationing system level we can start/stop SAP system and database and from the operating system browser can see the portal work normal ( 50000 port) or not.
    How can I generate EWA from solman?
    waiting for your kind reply!
    best regards,
    WEI

    Hi Wei,
    Do you already know SAP Note <a href="http://www.service.sap.com/sap/support/notes/976054">976054</a>?
    This SAP Note describes the setup of EWA for NON-ABAP Components.
    Please see the description and the attachments.
    Best regards,
    Ruediger

  • How to generate a TOC in Rh8 based on a structured Fm9 book

    Hi,
    After linking a structured FrameMaker 9 book in RoboHelp 8, is it possible to generate a RoboHelp TOC with the same folder structure?
    For example, let's say you've created a structured Fm book which consists of several DITA (XML) topics organized into folders, as shown below.
    After linking the book in Rh, is there a way to automatically generate a TOC with the same folder structure, as shown below? The TOC should remain linked, so that any changes you make to the Fm book will also be reflected in the TOC after you update the book in Rh.
    Note: As RJ Jacquez demonstrated in Linking FrameMaker 9 Books in RoboHelp 8 via Adobe Technical Communication Suite, this can be achieved with unstructured books and documents by using a TOC generated in Fm. However, if you attempt to use this method with structured documents (such as DITA files), the generated TOC is flattened, i.e., the folder structure is lost.
    Does anyone have any ideas or solutions?
    PS: I am using the Adobe Technical Communications Suite 2.

    Hi there,
    When you linked the book in Robohelp, in project manager pod just right click in the linked book and go to properties. There you have an option to select the TOC.
    Hope that helps
    Thanks
    Priyank

  • How to generate a list of Devices based upon an eDir group

    Is there a way for us to generate a report/query of devices (we need model, etc) where the calculated user for each device is a member of an eDirectory group?
    Basically, we need to generate a list of machines in our "HR" department or "Finance" department, etc.
    Any clever ideas?
    -Brian

    bpedrant,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • How to create a report in bex based on last data loaded in cube?

    I have to create a query with predefined filter based upon "Latest SAP date" i.e. user only want to see the very latest situation from the last load. The report should only show the latest inventory stock situation from the last load. As I'm new to Bex not able to find the way how to achieve this. Is there any time characteristic which hold the last update date of a cube? Please help and suggest how to achieve the same.
    Thanks in advance.

    Hi Rajesh.
    Thnx fr ur suggestion.
    My requirement is little different. I build the query based upon a multiprovider. And I want to see the latest record in the report based upon only the latest date(not sys date) when data load to the cube last. This date (when the cube last loaded with the data) is not populating from any data source. I guess I have to add "0TCT_VC11" cube to my multiprovider to fetch the date when my cube is last loaded with data. Please correct me if I'm wrong.
    Thanx in advance.

  • How to generate a new predefined PDF from certain form data?

    Hi,
    I want to create a form (in either Word or PDF) with diffrerent sections for people to fill out. I then want them to easily turn some of the data from the form into a new predefined PDF template.
    For example, I have created a case study form for academics to complete. Then i'd like them to be able to generate an actual case study that they can distribute. The case study will be a predefined template that only needs to contain certain data from the form. Some of the sections on the form will be for internal purposes only.
    How can i do this? I have Abobe Pro, but not everyone does.
    Thanks
    Kellie

    This type if thing is fairly easy to do for people who have Acrobat since the form data can be readily exported from one PDF and imported into another, but this isn't an option with Reader. There are methods you can use to easily copy data from one form to another with Reader, but it relies on JavaScript programming in both of the forms. If this sounds like something you want to pursue, post again and I can provide some guidance.

  • How do I assign a css class based on spry data?

    I need to assign a css class based on the value of spry data. IOW - I need to do a calculation on two values and assign a class to that <tr> if the resulting value if > 0. Is it possible to plug spry data into php? Is there a better way to go about doing this? Spry may have a function that will hide or style data based on the value of that data, but I can't find it.

    I think I need to provide better information. I currently have:
    <tbody spry:repeatchildren="JSCC_Courses" spry:choose="choose" >  
                            <tr spry:when="'{method}' == 'WEB'" style="background-color: #fffdc7;">                                       
                                <td>{callno}</td>
                                <td>{rubric}</td>
                                <td>{session}</td>
                                <td>{hours}</td>
                                <td>{title}</td>
                                <td>{days}</td>
                                <td>{time}</td>
                                <td>{room}</td>
                                <td>{instructor}</td>
                                <td>{seats}</td>
                                <td>{location}</td>
                              </tr>
                             <tr spry:when="'{method}' == 'VDC'" style="background-color: #cbffc7;" >                                       
                                <td>{callno}</td>
                                <td>{rubric}</td>
                                <td>{session}</td>
                                <td>{hours}</td>
                                <td>{title}</td>
                                <td>{days}</td>
                                <td>{time}</td>
                                <td>{room}</td>
                                <td>{instructor}</td>
                                <td>{seats}</td>
                                <td>{location}</td>
                              </tr>
                           <tr spry:default="default">                                       
                                <td>{callno}</td>
                                <td>{rubric}</td>
                                <td>{session}</td>
                                <td>{hours}</td>
                                <td>{title}</td>
                               <td>{days}</td>
                                <td>{time}</td>
                                <td>{room}</td>
                                <td>{instructor}</td>
                                <td>{seats}</td>
                                <td>{location}</td>
                             </tr>
    </tbody>
    I now need to add a class to the <tr> if the {seats} > 0. I'm having trouble conceptualizing how this works in conjunction with my current spry:whens.

Maybe you are looking for

  • How to resolve many-to-many join by 2 one-to-many joins

    Hi,    I was asked many times how to resolve many to many relationship between two tables. I read to use 2 one -to- many relationships to resolve this. Can some expalin me when many to many relationship occurs between two tables and how to reslove th

  • Freezing columns and rows in an Interactive Report

    version 3.2.1 Hello, How can I freeze columns and/or rows in an Interactive Report so they don't scroll off the screen? Thanks, Joe

  • 10.8.4 - Motion 5 - Completely Erratic OSC Controls

    HI... In creating FCPx Templates I have always (Prior to 10.8.4) any Plug with OSC-Controls to control other parameters like Position, via Link. I have used this routine since the dawn of FCPx. Now with this latest version of OS X Mountain Lion - Mot

  • Run report in the background

    hi how to run report in background and store it in cache thanks in advance krish

  • Menu Button = Backlight???

    Can anyone tell me WHY Apple decided to make holding the Menu button go back to the Main Menu instead of toggling the backlight? I don't see the point of this because the largest number of directories (menu screens) you can go in is 6 or so, which is