Show data of a listitem in a popover window

Hi Experts,
I am trying to show the data of a listitem in some input fields which are in a popover window. After clicking on the listitem the data of that listitem will automatically appear on the popover window.  I am using sap.m library. I have coded
In view.js
createContent : function(oController) {
  var list = new sap.m.List("list",{
       headerText: "Contact List",
       items: {
           path: "/KEY",
           //sorter : new sap.ui.model.Sorter("FIRSTNAME"),
           template: new sap.m.ObjectListItem({
             title: "{FIRSTNAME}",
             number: "{PHONE}",
             type: sap.m.ListType.Active,
             press : function (evt) {
               //var data = {};
               context = evt.getSource().getBindingContext();
               //var selectedIndex = data.context.sPath.split("/")[2];
               //var Odata = data.context.oModel.oData.KEY[selectedIndex];
               console.log(context);
       popover1.openBy(this,context);
                    firstStatus : new sap.m.ObjectStatus({
                        text : "{EMAIL}", 
                        state : "Success"
                      /*secondStatus : new sap.m.ObjectStatus({
                        text : ,
                        state : "Success"
                      attributes : [
                        new sap.m.ObjectAttribute({
                          text : "{LASTNAME}"
                        new sap.m.ObjectAttribute({
                          text : "{ADDRESS}"
  var popover = new sap.m.Popover({
       title: "Add Contacts",
       placement: sap.m.PlacementType.Top,
       footer:  new sap.m.Bar({
         contentRight: [
           new sap.m.Button({
             text: "Save",
             icon: "sap-icon://save",
             press: function () {
              var oParameters = ({
              "Listid" : "List",
                     "First" : sap.ui.getCore().getElementById('First').getValue(),
                     "Phone" : sap.ui.getCore().getElementById('Phone').getValue(),
                     "Last" : sap.ui.getCore().getElementById('Last').getValue(),
                     "Email" : sap.ui.getCore().getElementById('Email').getValue(),
                     "Address" : sap.ui.getCore().getElementById('Address').getValue(),
                     "City" : sap.ui.getCore().getElementById('City').getValue(),
                     "State" : sap.ui.getCore().getElementById('State').getValue(),
                     "Zip" : sap.ui.getCore().getElementById('Zip').getValue(),
              console.log(oParameters);
              var url = "http://vikalp.webhop.net:8000/sap/bc/zrestateui5_lis?sap-client=800";
              var model = new sap.ui.model.json.JSONModel();
              $.ajax({
                     url : url ,
                     dataType : "jsonp",
                     type : "POST",
                     data: oParameters,
                     success: function(data,textStatus,jqXHR) {
                    data = JSON.parse(data);
                      console.log(data);    
                      model.setData(data);
                sap.ui.getCore().setModel(model);
                popover.close();
         contentLeft: [
               new sap.m.Button({
                 text: "Close",
                 icon: "sap-icon://close",
                 press: function () {
                   popover.close();
       content: new sap.m.VBox({
         //width:"300px",
                 items: [
                         new sap.m.Input("First",{
                          type: sap.m.InputType.Text,
                          placeholder: 'First Name',
                          width:"240px"
                         new sap.m.Input('Phone',{
                             type: sap.m.InputType.Number,
                             placeholder: 'Phone No',
                             width:"240px"
                         new sap.m.Input('Last',{
                             type: sap.m.InputType.Text,
                             placeholder: 'Last Name',
                             width:"240px"
                         new sap.m.Input("Email",{
                             type: sap.m.InputType.Email,
                             placeholder: 'Email',
                             width:"240px"
                         new sap.m.Input("Address",{
                          type: sap.m.InputType.Text,
                          placeholder: 'Address',
                          width:"240px"
                          new sap.m.Input("City",{
                          type: sap.m.InputType.Text,
                          placeholder: 'City',
                          width:"240px"
                          new sap.m.Input("State",{
                          type: sap.m.InputType.Text,
                          placeholder: 'State',
                          width:"240px"
                          new sap.m.Input("Zip",{
                          type: sap.m.InputType.Text,
                          placeholder: 'Zipcode',
                          width:"240px"
     }).addStyleClass("sapUiPopupWithPadding");
  var popover1 = new sap.m.Popover("pop",{
       title: "Contact Information",
       placement: sap.m.PlacementType.Right,
       beforeOpen: function(oEvent){
      oController.display(oEvent);
      sap.ui.getCore().setBindingContext(context);
//      afterOpen: function (evt) {
       footer:  new sap.m.Bar({
         contentLeft: [
               new sap.m.Button({
                 text: "Close",
                 icon: "sap-icon://close",
                 press: function () {
                   popover1.close();
       content: new sap.m.VBox({
         //width:"300px",
                 items: [
                         new sap.m.HBox({
                          items: [
                          new sap.m.Label({
                          text:"First Name",
                          width:"140px",
                          new sap.m.Label({
                          text:"{FIRSTNAME}",
                          width:"140px",
                             new sap.m.InputBase("First2",{
                          type: sap.m.InputType.Text,
                          //value: sap.ui.getCore().setObject(oList)  ,  //
                          width:"240px",
                          placeholder : "{FIRSTNAME}"
                         new sap.m.HBox({
                          items: [
                          new sap.m.Label({
                          text:"Last Name",
                          width:"140px",
                         new sap.m.Input('Last2',{
                             type: sap.m.InputType.Text,
                             width:"240px"
                         new sap.m.HBox({
                          items: [
                          new sap.m.Label({
                          text:"Phone No",
                          width:"140px",
                         new sap.m.Input('Phone2',{
                             type: sap.m.InputType.Number,
                             width:"240px"
                         new sap.m.HBox({
                          items: [
                          new sap.m.Label({
                          text:"Email",
                          width:"140px",
                         new sap.m.Input("Email2",{
                             type: sap.m.InputType.Email,
                             width:"240px"
                         new sap.m.HBox({
                          items: [
                          new sap.m.Label({
                          text:"Address",
                          width:"140px",
                         new sap.m.Input("Address2",{
                          type: sap.m.InputType.Text,
                          width:"240px"
                         new sap.m.HBox({
                          items: [
                          new sap.m.Label({
                          text:"City",
                          width:"140px",
                          new sap.m.Input("City2",{
                          type: sap.m.InputType.Text,
                          width:"240px"
                         new sap.m.HBox({
                          items: [
                          new sap.m.Label({
                          text:"State",
                          width:"140px",
                          new sap.m.Input("State2",{
                          type: sap.m.InputType.Text,
                          width:"240px"
                         new sap.m.HBox({
                          items: [
                          new sap.m.Label({
                          text:"Zip Code",
                          width:"140px",
                          new sap.m.Input("Zip2",{
                          type: sap.m.InputType.Text,
                          width:"240px"
     }).addStyleClass("sapUiPopupWithPadding");
  return new sap.m.Page("page",{
  title: "mEstate",
  content: [list],
  subHeader: new sap.m.Bar("searchBar",{
  contentMiddle: [
                 new sap.m.SearchField( "searchField", {
                  placeholder: "Search",
                  showRefreshButton: true,
                  search: function onSearch(event) {
                         // alert(event.getParameter("query"));
                  jQuery.sap.log.debug("searchField: search for: " +
                  event.getParameter("query"));
                  if(event.getParameter("refreshButtonPressed")){
                       list.bindAggregation("items", {
                       path: "/KEY",
                       template : new sap.m.ObjectListItem({
                         title: "{FIRSTNAME}",
                         number: "{PHONE}",
                         type: sap.m.ListType.Active,
                         firstStatus : new sap.m.ObjectStatus({
                             text : "{EMAIL}",
                             state : "Success"
                           /*secondStatus : new sap.m.ObjectStatus({
                             text : "{}",
                             state : "Success"
                           attributes : [
                             new sap.m.ObjectAttribute({
                               text : "{LASTNAME}"
                             new sap.m.ObjectAttribute({
                               text : "{ADDRESS},{CITY},{STATE,{ZIPCODE}"
                  var filters = [];
                     var searchString = event.getParameter("query");
                     if (searchString && searchString.length > 0) {
                       var filter = new sap.ui.model.Filter("FIRSTNAME",
                       sap.ui.model.FilterOperator.Contains, searchString);
                       filters.push(filter);
                        var binding = list.getBinding("items");
                     binding.filter(filters);
                  width: "100%",
                  tooltip: "Search for objects..",
                  refreshButtonTooltip: "Refresh"
  showNavButton: true,
  navButtonTap:function(){ 
                 app = sap.ui.getCore().byId("myApp"); 
                 app.to("idfirst1"); 
  footer: new sap.m.Bar({
         contentLeft: [
               new sap.m.Button({
                 text: "Add Contact",
                 icon: "sap-icon://add",
                 press: function () {
                  popover.openBy(this);
In controller.js
onBeforeRendering
  : function() {
   var url = 'http://vikalp.webhop.net:8000/sap/bc/zrestateui5_lis?sap-client=800';
      var model = new sap.ui.model.json.JSONModel();
   $.ajax({
          url : url ,
          dataType : "jsonp",
          type : "GET",
          //jsonCallback : 'himmm',
          success: function(data,textStatus,jqXHR) {
          data = JSON.parse(data);
          console.log(data);    
          model.setData(data);
    sap.ui.getCore().setModel(model);
   display: function(oEvent){
             context = oEvent.getSource().getBindingContext();
I am getting no output in the popover window. Can anyone please show me how can I get the data in the popover window.
Thanks in advance
Himadri

Hi Himadri,
first, it would be very useful if you can post a running example of the problem on jsfiddle.net or a similar plattform. And maybe you find the mistake by yourself when creating a minimalistic example...
Second, I haven't used the Popover for now, but you call
popover1.openBy(this,context);
The second parameter is a context in your case, but the documentation states that it should be an boolean. What do you intend here?
Greets,
ben

Similar Messages

  • I am using Windows 8.1 i have an External Hard Disk and one drive is now inaccessible due to sudden power failure few days ago. Now it shows "Data error (Cyclic redundancy check)". I want all my important files and Pics. How ?

    Hi,
    I am using Windows 8.1
    I have an External Hard Disk i have partitioned it to 4 parts.
    One drive is now inaccessible due to sudden power failure while listening Music from that drive few days ago.
    Now it shows "Data error (Cyclic redundancy check)".
    I tried all the procedures provided here like
    chkdsk /f, diskpart, rescan etc
    but no result :( (i mean all processes failed. They could not detect the drive).
    Please help me to get those data, pictures and project files.
    thank you

    Then why aren't you posting this in the Windows 8 forums found @
    http://social.technet.microsoft.com/Forums/windows/en-US/home?category=w8itpro
    This is a Windows 7 forum for discussion about Windows 7.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • PLD Report does not show data from Query

    Hello,
    SAP b1 9.0 PL08 on MSSQL 2008 and I get data on the query, but when the PLD prints, it shows nothing. Is there a way to filter the data that the PLD shows? Does PLD have its own SQL script it uses b/c its not showing data from the query.
    Thanks,
    Nick

    Hi Nicholas,
    Please check below links.
    query based print layout design
    Print Layout Designer \Custom Reports
    How to Make a Print Layout (PLD) Report from a SBO Query | SBOnotes.com
    http://www.tegrous.com/wp-content/uploads/2011/07/HowTo_QPrintLs_88.pdf
    Hope this help
    Regards::::
    Atul Chakraborty

  • Discoverer Plus 10gR2 not show data when the script of view have package

    Hi my friends.
    I have a problem with discoverer plus, I don't know is a problem or I'm doing something wrong.
    I have a four views, the views containg in the SELECT stament and WHERE clause packages, example:
    SELECT d.price,
    d.total,
    d.min,
    d.mx,
    TO_CHAR (SYSDATE, 'q') quarter,
    d.fid,
    k_xdcd_qry.f_xdc_obt_price (d.prod, d.id) --> package
    k_xpxpd_qry.f_xpeds_salary_ca_u (
    d.prod,
    d.id) xp --> package
    FROM px_prices_proc c,
    xp_sla_max d,
    xmp_sla_puc b
    WHERE a.prod = b.prod
    AND a.id = b.id
    AND a.prod = k_xps_tools.f_obt_prod --> package
    When I used the views on discoverer plus for construct the report, when execute the query not show data.
    Appreciate it if you could help or tell me I'm doing wrong or does not support Discoverer Plus package execution.

    Hi Tux,
    This appears to be a grant issue. Apparently, you have granted execute with respect to this package to the EUL owner or the view would not have compiled. If you have not given EUL owner the grant option, I would recommend doing this as well.
    This appears to be an Oracle APPS EUL (tell me if I am wrong). If this is the case, it goes without saying that APPS will need to be granted the execute privilege.
    Also, by default, a stored package executes with the privileges of its owner. If your custom package was designed this way, are the objects which it references received the appropriate grant? I assume you tested this, but I am concerned that the line, a.prod = k_xps_tools.f_obt_prod, in the where clause could be resulting in the Null set being returned.
    Patrick

  • Not able to show data of prior three quarters,periods along with QTD , MTD

    My requirement is when user selects a date then we have to show data in the report for three ago quarters data and QTD, three ago periods data and MTD.
    eg: let the user selects a date in the 2010 Q 2(May-21-2010) then report should show
    2010 Q 1, 2009 Q 3, 2009 Q 2, QTD(2010Q2 till 21st May), Feb-10, Mar-10, Apr-10, May-10 (MTD till 21st May).
    I have created Ago metrics, Todate time series metrics for quarters and periods...
    but Ago metrics are not working when Todate metrics are filtered with date prompt,
    if I remove date filter then Todate metrics are not working (means not showing correct results).
    Also I tried to create logical columns in BMM layer by using filter condition with enterprise qtr, enterprise periods.
    but major problem is I am unable to go back to previous quarters and periods for the date user selected.
    I am struggling for it a lot, Please assist me
    Any response is highly appreciated.
    Thank you,
    Ramanujan.

    found the problem
    thanks

  • EXCEL  out put is not showing data

    Hi All,
    My report is working fine  it is showing data in XML but it is not showing data in Excel output.   Excel output is empty.
    i have attached  excel and xml files.  please help me.
    FYI: these are migrated reports from 10g to 11g.
    Thanks in advance for your time

    Using ua.bat  we upgraded 10g to 11g., we got sucessfully message.
    after upgrade if i try to open excel it is not showing opening and showing action instead of excel name . I though  excel out put has corrupted. i downloaded excel layout from 10g and  uploaded in 11g report using upload layout.
    we did not make any changes in database.
    below one is not related to this one  but  .. after upgraded reports  multi parametrs  did not work if i select more than one column ( i opened as different topic) then i have removed
    ( (coalesce(null, :P_PPD_REGION) is null)  and kept(region.X_REGION in (:P_PPD_REGION) from following statement then i did report is working with multi  parameters.
    my doubt is is it correct thing i did ?  if not how can   my multi parameter will work .  we are using oracle as database.
    AND ( (coalesce(null, :P_PPD_REGION) is null) or (region.X_REGION in (:P_PPD_REGION)) )
    AND ( (coalesce(null, :P_COUNTRY) is null) or (region.REGION_CD in (:P_COUNTRY)) )
    AND ( (coalesce(null, :P_SITE_NUM) is null) or (ptcl_site.site_num in (:P_SITE_NUM)) )
    I really appreciate  for your support.

  • 2lis_03_bf data is not showing data in RSA3

    Hi,
    I have loaded 2lis_03_bx first for a plant using MCNB transaction,its showing data in RSA3 then I have loaded 2lis_03_bf datasource for the same plant using transaction 0LI2BW. but it is not showing data in  RSA3.
    I have done the above process in background.
    In SM37 it is showing the following message for the 2lis_03_bf datasource
    <b>Job started
    Step 001 started (program RMCBNEUB, variant &0000000000003, user ID TCS_SRM)
    Date fields for info structure S032 are not generated
    Job finished</b>
    steps:
    1.Before loading the data I have deleted data using LBWG
    2.In LBWE, 2lis_03_bf is already activated.
    Please help me out on resolving the above issue
    Thanks in Advance

    ODS Settings
    BEx reporting option --> If this indicator is not set, no SID's are generated for the new characteristics when the data in the ODS object is activated.This optimizes the performance of the activation process, but the ODS object is not available as an InfoProvider for queries. 
    Refer this link for more information...
    http://help.sap.com/saphelp_nw04/helpdata/en/a6/1205406640c442e10000000a1550b0/frameset.htm

  • How to show data vertical in ALV

    How to show data vertical in ALV?
    such as :
    [http://img402.imageshack.us/img402/9978/20101230215621.png|http://img402.imageshack.us/img402/9978/20101230215621.png]
    Moderator Message: Search for available information. Keywords - Dynamic Internal Table
    Edited by: kishan P on Dec 30, 2010 7:35 PM

    Transpose the contents of your internal table.
    Original:
    A 1 1 1
    B 2 2 2
    Transposed:
    A B
    1 2
    1 2
    1 2

  • CFGRID does not show data (CF9.0)

    Under development server, CFGRID show data , all is fine , correct. (CF9.0  version dev)
    Under production server , CFGRID does not show data, only a grey line (like a HR).
    How to debug this ?
    Thanks,

    Kindly check below to troubleshoot this issue:-
    Is there any difference between your CF production & developement server setting summary?
    Is there any browser script level difference between your both CF server?
    Are you getting any relevant logging error in your CF server application.log & exception.log?
    Run a very simple cfgrid running app to check, either getting issue with that too or not.

  • Show data of last day of previous month against any day of current month

    Hi,
    I have fact table which contains data at date level (we have data for oct-2009 to april-2010). Our requirement is to show data of last day of previous month against any day of current month in obiee 11g. I am facing problem in Feb 2010 its picking data of 28-Jan-2010 instead of 31-jan-2010 and for April its picking data of 30-mar-2010 instead of 31-mar -2010.
    Any suggestion ???

    You're asking to filter your data set to only include rows between:
    1) last day of the previous month
    2) any day of the current month
    This can be achieved with prompting in OBIEE Answers.
    last day of previous month = TIMESTAMPADD( SQL_TSI_DAY , -(1), TIMESTAMPADD( SQL_TSI_DAY , DAYOFMONTH( CURRENT_DATE) * -(1) + 1, CURRENT_DATE)) . The problem is you need to make query work within Oracle's Answer syntax.
    In the prompt, select the operator type for your date dimension as 'between' and default to 'SQL Results'.
    For the 'last day of previous month' , use the query:
    SELECT
    case when 1=0 then Time."Fiscal Date" else TIMESTAMPADD( SQL_TSI_DAY , -(1), TIMESTAMPADD( SQL_TSI_DAY , DAYOFMONTH( CURRENT_DATE) * -(1) + 1, CURRENT_DATE))
    end
    FROM ENTER_YOUR_PRESENTATION_FACT_FOLDER_HERE
    For the current date, use the query:
    SELECT
    case when 1=0 then Time."Fiscal Date" else CURRENT_DATE
    end
    FROM ENTER_YOUR_PRESENTATION_FACT_FOLDER_HERE
    Another option is to create a last_date_pervious_month variable in the RPD and have that as the default value in your prompt.

  • How do I include/show data from a child table in a Modal Window?

    How do I show data from a child table in a Modal Window?
    I have an application where each customer might have multiple addresses and phone numbers which are stored in child tables.  When I show the customer in a record on a screen I can place a Modal Window button on the screen which can be pushed at runtime
    to display detail information for the particular customer parent table which works great. However, I would also like to display the data from the address and phone number child tables. Is there a way to do that?  Or can I just launch a hole separate screen
    which would automatically display the needed data for the particular customer? If yes, how? 
    Thank you for any help.

    I am not even sure how to describe my situation in such a way that this forum incident would be of benefit to other people as I think it is fairly unconventional. 
    The “add contactaddress” link does not show up on the right.  
    The contactaddress table is a child of the contact table. 
    The contact table is a child of the contactlink table.
    And the contactlink table is a child of the person table.
    I have it set up this way because the contact in the contact table may be a contact to multiple persons in the person table and I do not want to re-enter the contact info every time the contact is used. 
    In the list detail screen of the person table I can see the contactlink child collection so that I can see the name of the person in the contact table at runtime. However, the contactaddress collection is not related to the person table so it does not show
    up on the right hand side of the design screen as an “add contactaddress”; nor is there “add contact” link.
    What I would like to happen during runtime is that it is not necessary to switch screens from the person list detail screen to a contact list detail screen to see the addresses and phone numbers for the contact.
     Is my setup unnecessarily convoluted? Is there a better way? Please see the two snapshots below.
    Perhaps there is a way to call up a Detail screen from the List Detail at runtime? 
    Anyway, if you are still reading, thank you very much for your help.   
    jjjjj

  • Show data from a database on an applet

    Hello,
    I have the following problem. I don't know how to show all data from a table.
    I can connect to the database, that is not the problem. But what I am looking for is an object that has rows and columns
    something like this:
    http://www.undu.com/DN961101/00000018.gif
    (this is a DBGrid in Delphi)
    Is there such an object in Java??
    If not, how to show data in a simular way?
    Thank in advance,
    Hu9o

    You mean like JTable.

  • Need to show data related to Process order request , BOM in a smart form

    Hi,
    I need to show data related to
    •     Process order request
    •     BoM
    Now in selection screen we are entering the followings.
    Manufacturing  Plant ,MRP Controller, Production scheduler, Order type , Order , Material, Sales order, WBS Element,Release,Scheduled start, Scheduled finish ,Selection profile.
    how to get 1> Process Order number,Produced Material,Material Description,Print date,Narcotics indicator , Quantity produced , Phase number , Phase description ,Resource description,Standard value  to show in a request form.
      2> Item category ,Component code,Component description , Component quantity ,Component Unit of measure ,BoM base quantity.
    Please help me how to get those values , what should be the aaproach , how to write the select quiry.
    Thanks

    Hi
    To get BOM details, do the following:
    1. Use the material number and goto Article to BOM link table (MAST) to get STLNR (BOM).
    2. With this STLNR, goto STPO table (where STLNR is the key field).  Here you will get all the BOM details like components (IDNRK), UoM (MEINS) etc....
    Hope this helps.
    THanks
    Vijay
    <b>PLZ REWARD POINTS IF HELPFUL</b>

  • How to show data in table on the basis of click on a row of another table

    Hi All,
    I want to show two tables. In first table the main objects show in turn there is another collection in that main object for which i want to show data in separate table.
    e.g.,
    ObjectA
      have the collection of ObjectBs
    when i select ObjectA in main table then all the collection Objects of ObjectBs shows in separate table. Plz help me how to handle this case ??

    hi,
    You can create two value nodes for storing these collections. The first one would be singleton node as it is the main list. Under that create the second node with singleton = false.
    e.g.
    ---NodeA
        --attrA1
        --attrA2
        --NodeB(singleton = false)
                --attrB1
                --attrB2
    Now populate collection of object A in NodeA and after adding element in NodeA populate respective elements in NodeB.
    IPrivate<View>View.INodeANode nodeA = wdContext.NodeAnode();
    for (Iterator  it = collectionA.iterator(); it.hasNext(); )
         ObjectA objA= it.next();
         IPrivate<View>View.INodeAElement nodeAElem= nodeA.createNodeAElement();
         wdCopyservice.copy Corresponding(objA,nodeAElem);
         nodeA.addElement(nodeAElem);
         Collection collectioB =objA.getCollectionB();
         for (Iterator  it1 = collectionB.iterator(); it1.hasNext(); )
             ObjectB objB= it1.next();
            IPrivate<View>View.INodeBNode nodeB = nodeAElem.nodeBnode();
            IPrivate<View>View.INodeAElement nodeBElem= nodeB.createNodeBElement();
            wdCopyservice.copy Corresponding(objB,nodeBElem);
            nodeB.addElement(nodeBElem);
    Bind NodeA to the first table and NodeB to second one.
    After that when you select record in first table automatically its corresponding records will be populated in second table.
    Hope this helps!
    Monalisa

  • Mimic "show data as percent of row parent" in non-pivot table

    Is it possible to implement or mimic the 'percentage of parent row' functionality, foreseen for pivot tables in obiee 11g, for a 'normal' table?
    We use a rather fixed table, in which no drilling is allowed - conditions are applied by means of prompts and filters. The report is based upon the store dimension, which has as hierarchy: country > cluster > store. We have added a column to represent the 'share' of a store's net turnover in the cluster total. The results looks like:
    country  cluster  store  turnover   share
    =======  =======  =====  ========   =====
    belgium  1        a        20.000   66.7%
                      b        10.000   33.3%
             cluster total:    30.000  100.0%
             2        c        40.000   57.1%
                      d        30.000   42.9%
             cluster total:    70.000  100.0%
    country total:            100.000  100.0%
    holland  3        e        50.000   71.4%
             4        f        20.000   28.6%
             cluster total:    70.000  100.0%
    country total:             70.000  100.0%
    grand total:              170.000  100.0%Instead of all the total levels showing as 100% however, we would like to see each sub-total represented as a percentage of the level above, much like the forementioned pivot table functionality. For the example above that would mean it should look like:
    country  cluster  store  turnover   share
    =======  =======  =====  ========   =====
    belgium  1        a        20.000   66.7%
                      b        10.000   33.3%
             cluster total:    30.000   30.0%
             2        c        40.000   57.1%
                      d        30.000   42.9%
             cluster total:    70.000   70.0%
    country total:            100.000   58.8%
    holland  3        e        50.000   71.4%
             4        f        20.000   28.6%
             cluster total:    70.000  100.0%
    country total:             70.000   41.2%
    grand total:              170.000  100.0%Any advice or idea would be greatly appreciated...

    902360 wrote:
    Hello,
    I'd like to know if there's a way to configure the Pivot Table "Show Data As - Percent of" precision.
    ATM, I have some reports using SR types where one of those are much bigger than the others.. So when the report its generated, it returns something like:
    TYPE A: 99%
    TYPE B: 0%
    TYPE C: 0%
    TYPE D: 0%
    How can I show the other types correct value? Something like number of decimal places...
    Ps: As criteria to this report, I have changed my Data Format to "Number", "Minus: -123" with 15 Decimal Places.
    Thanks,
    RamonYup. Can do. Read this link:
    http://shivabizint.wordpress.com/2008/09/14/changing-the-precession-of-percent-of-columns-in-pivot-table-of-obiee/

Maybe you are looking for

  • How can I preserve word internal document hyperlinks when importing into indd cs6

    I have a document that is hundreds of pages long. The document was created in word by another user and has many internal document hyperlinks. Is it possible to preserve the hyperlinks, so that they show up and work in indd CS6? The document will then

  • Change of program command in piqst00

    Hi, In piqst00 on change of program command student is deregistered in one program and registered in other program it is working fine.but i want update same in CRM also as soon as he user use change of program functionality. for no seat for program w

  • BEx Analyzer: How to optimize reporting over a hierarchy?

    Hello there, using BEx Analyzer & Excel, we're reporting over a large hierarchy of cost centers, beginning at the top level and then looping over 166 different cost centers in that hierarchy. Looping works from within a macro, calling the SAPBEXSetFi

  • Indirect role assignment- PO Release strategy  roles

    Hello,           I am in the midst of creating PO release strategy roles for implementation and trying to figure out if indirect role assignment / position based assignment would be a good idea for these roles. The reason- there are 35 release codes.

  • Problem in Login Page

    Hi all, I have installed Oracle9iAS on WinNt(Enterprise Edition). when i typing http://oracle8:80/pls/portal30 i am getting the portal30 home page(Welcome to Portal)but when i am clicking on Login link i am getting following error You Cannot login be