Reg: Pagination option in OBIEE

Hi All,
Is there any way to acheive pagination in Pivot Table (OBIEE)??
We checked and it is not there...
I mean is there way if we add any tags in instance config file or so..or any other customization and get this done??
Thanks!
Kris

I'm assuming you speak of downloading all the records regardless of what is viewed in the paginated table.
Create another pivot table view and this time use the pagination feature to display all the rows. Then use the View Selector to allow users to switch between the two pivot tables for printing eithre the rows of what they view or printing all the rows.
If you want the users to be able to select how many rows they would like to print, create a Dashboard prompt for number of rows. Then place a filter on the RCOUNT(1) column in your request set to the PV of your prompt.
P.S. If you want to award points, you need to click on the "correct" or "helpful" icon on the top right of the correct or helpful post. Just marking the thread answered doesn't award points. I believe Kishore gave you some helpful info and perhaps me as well, but that is your call. Good luck.

Similar Messages

  • Buttons not showing up for Writeback option in OBIEE 11g

    Hey guys,
    I'm struggling with the writeback option in OBIEE 11g.
    I've made all the required changes as per the documentation.
    1) Making the column writeable in BMM layer.
    2) Giving the column and the table read/write permission in the presentation layer.
    3) writing the query in the xml for insert and update and have put it in the right path.
    4) Modified the instance config and included the <Lightwriteback>true</Lightwriteback> in it.
    5) Enable the column with writeback property.
    6)Enabled the table view property with writeback.
    However when i untick the table toggle mode,it makes the column editable but without any update button.
    whereas if i tick the table toggle mode it neither makes the column editable nor does it shows up any button.
    Could somebody help me out with the solution.
    Thanks,
    Anirban

    Anirban,
    You need to make sure that 'Write Back to Database' privilages have been correctly setup for you. If you have admin rights on the catalog, you should be able to check and modify it under Security > Manage Privilages on the Administration screen.
    cheers,
    Adnan

  • Regarding print option in obiee 11g

    Hi All,
    i am getting one issue when using print pdf option in obiee 11g.
    i have a report in dashboard and for displaying data in that report i have used custom format of columns.
    but when i an using print pdf option , it is not retaining custom format of columns of report.
    please suggest any workaround to me for this problem.
    Regards,
    Manoj

    I think it is expected behavior. Try out saving as html and then saving it as pdf.
    If helps mark

  • Agent option in OBIEE 11g

    I have OBIEE 11g(11.1.1.7.1) in my machine as development environment.When i try to create an agent from analytics->New->agent
    But i am not able to find the agent option in NEW menu.
    What are all the required steps to make it enable.
    Thanks,
    prasanna

    Have a look at the below document and section 19.1.
    Configuring and Managing Agents - 11g Release 1 (11.1.1)
    Thanks,
    ~KKT~

  • Reg : EXISTS function in OBIEE

    Hi all,
    I have a req where the condition for a column is as below
    select count(distinct shipment_header_id) from F_ERP_PO_RECEIPTS a
    where exists (select 'X' from F_ERP_PO_RECEIPTS_TRX b
                  where b.TRANSACTION_TYPE = 'RECEIVE'
                  and b.shipment_line_id = a.shipment_line_id)
    and not exists (select 'X' from F_ERP_PO_RECEIPTS_TRX b
                  where b.TRANSACTION_TYPE = 'DELIVER'
                  and b.shipment_line_id = a.shipment_line_id)
    where F_ERP_PO_RECEIPTS_TRX and F_ERP_PO_RECEIPTS are my fact tables.
    How do i apply this condition in the column level in obiee ..
    Pls help me in resolving the same .
    Thanks in advance
    Reg,
    Niv

    Hi,
    Please try this,
    Right Click on your Schema -> Select New Physical Table
    Give the name of the Physical table as Dim_ERP_PO_RECEIPTS_HEADER_INFO
    Select "SELECT" from the Table Type dropdown
    Write your query as it is here:
    select distinct header_id from F_ERP_PO_RECEIPTS a
    where exists (select 'X' from F_ERP_PO_RECEIPTS_TRX b
                  where b.TRANSACTION_TYPE = 'RECEIVE'
                  and b.shipment_line_id = a.shipment_line_id)
    and not exists (select 'X' from F_ERP_PO_RECEIPTS_TRX b
                  where b.TRANSACTION_TYPE = 'DELIVER'
                  and b.shipment_line_id = a.shipment_line_id)
    Make a physical join between F_ERP_PO_RECEIPTS -> Dim_ERP_PO_RECEIPTS_HEADER_INFO on header_id
    Create a new LTS in the logical table of the Fact F_ERP_PO_RECEIPTS
    Pull the Dim_ERP_PO_RECEIPTS_HEADER_INFO in the General tab of the LTS
    Create a new Logical Column with HEADER_COUNT name
    Double click on it
    In the Column Source tab -> Select the new LTS you have created above -> Edit Expression
    Give the formula as Dim_ERP_PO_RECEIPTS_HEADER_INFO.Header_id
    Aggregation as Count or Count distinct
    Please mark, if it is helpful
    Thanks,
    Srikanth

  • Export option in OBIEE

    Hi,
       I am using OBIEE 11.1.1.5.When you download reports in OBIEE basically we use "Export" link at the bottom to download in PDF/Excel etc., Is it possible to have right click functionality on the report and just download instead of using export option.
    Please let me know if any one has solution for it.Thanks in advance.

    Well , go through below discussion and you have to use GOURL option
    https://forums.oracle.com/thread/2563304
    Thanks,
    Saichand

  • Reg:page options in dashboard

    hi,
    i have followed the link below to remove the page options button in dashboards
    http://obiee101.blogspot.com/2009/07/obiee-hide-page-options-button.html
    but now i just want to add a link in the place of page options called "edit dashboard" which allows directly to edit dashboard.
    how can i do this?
    thanks

    Hi,
    I have developed the below script to replicate the functionality of 'Edit Dashboard...' link. This script can be placed anywhere on the dashboard which would display the 'Edit Dashboard' link and behave like one. Also, the link would be hidden/shown based on the permissions defined for each dashboard.
    <!-- Remove these comments surrounding the a href tag
    <a href="javascript:void(null) " id="customLink" onClick = "return new_onclick()">Edit Dashboard</a>
    -->
    <script language="javascript">
    var new_onclick = getOnClickContent();
    if(getOnClickContent() == "Not Found"){
         document.getElementById("customLink").style.visibility = 'hidden';
    }else{
         document.getElementById("customLink").style.visibility = 'visible';
    function getOnClickContent(){
         var flag = -1;
         var el = document.getElementsByTagName('a');
         for (var i = 0; i < el.length; i++){
            if(el.innerHTML == "Edit Dashboard..."){
              flag=i;
              break;
         if(flag == -1){
              return "Not Found";
         }else{
              return(el[flag].getAttribute("onClick"));
    </script>
    To implement this, go to Edit Dashboard and copy paste the above the script in a Text Object. Ensure to check 'Contain HTML Markup' option. That should be it.
    I have tested the above code in 10.1.3.4.1 version of OBIEE on IE7 and IE8.
    Please test it at your end and let me know in case of any issues.
    Hope this helps!!!
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • BIN Option in OBIEE ?

    Hi,
    I Just want to know about the usage of BIN Option Provided in OBIEE.
    Regards,
    Rishi

    hi Rishi,
    Please see this post
    http://varanasisaichand.blogspot.com/2010/01/using-bins-in-obiee.html
    thanks,
    saichand.v

  • Pagination Options Disabled

    Hello
    I have a XDP form. I am trying to update the pagination tab on the object palette however all the options in this tab are grayed out ( disabled ).
    Can someone tell me why or how can I enable the options.
    Thanks

    Doesn't matter if you're an admin, you still might not have full control and ownership of the music folder and all its subfolders. The system account or trusted installer account might have those privileges, for all I know. Vista permissions are just funky, at times.
    How to Take Ownership and Grant Permissions in Windows Vista

  • Edit Dashboard option in OBIEE 11.1.1.6 not visible

    Hi all
    Recently i installed OBIEE 11.1.1.6 with BIAPPS 7.9.6.4. I couln't see edit dashboard option in any of the dashboards..
    i am logging with weblogic user only.. I tried with creating diff user's also.. even then i am unable to view that..
    please help me out asap?

    Hi if you can created new users and groups u should assign the application roles to that users and groups..
    And u should give the Administrator privileges to that group.Then only you have the read and write options....
    For reference please follow this link..
    http://www.rittmanmead.com/2012/03/obiee-11g-security-week-managing-application-roles-and-policies-and-managing-security-migrations-and-deployments/
    Please mark if it helps you....

  • How to show all the rows in PRint html option in obiee 11g

    Hi ,
    I am facing a issue in obiee 11g(windows 2003 server). I have 2 environments (SIT & dev)
    In dev I am not facing any issue but in SIT when i print the report in html only 1-25 rows are displayed.
    What should i do to see all the rows
    Thanks in advance
    Abdul

    Hi,
    In your Dev Server its configured on instanceconfig.xml file that why are getting the all rows with setting pdf/print control properties.
    1. Change instanceconfig.xml file in <biee11g_install>\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1 as following
    <Views>
    <Pivot>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DefaultRowsDisplayedInDownload>2500</DefaultRowsDisplayedInDownload>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DisableAutoPreview>false</DisableAutoPreview>
    <MaxVisibleColumns>5000</MaxVisibleColumns>
    <MaxVisiblePages>2500</MaxVisiblePages>
    <MaxVisibleRows>500000</MaxVisibleRows>
    <MaxVisibleSections>5000</MaxVisibleSections>
    </Pivot>
    <Table>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DefaultRowsDisplayedInDownload>2500</DefaultRowsDisplayedInDownload>
    <MaxVisiblePages>2500</MaxVisiblePages>
    <MaxVisibleRows>500000</MaxVisibleRows>
    <MaxVisibleSections>5000</MaxVisibleSections>
    </Table>
    </Table>
    </Views>
    3. Note the new elements added are the following to both <Pivot> and <Table>, the Pivot part controls Pivot view, and Table part controls Table View, my testing was done with Table View.
    <MaxVisiblePages>2500</MaxVisiblePages>
    <MaxVisibleRows>500000</MaxVisibleRows>
    <MaxVisibleSections>5000</MaxVisibleSections>
    4. Restart Presentation Server from EM, then run your request, do pdf export to verify.
    Note:
    When a table or pivot table includes a large number of rows, a set of buttons can be displayed under the view. You can use the following buttons to page through the rows in the view:
    •First 25 Rows — Displays the first 25 rows of data for the view. The number that is used for the First, Previous, and Next buttons is specified by the Rows per Page field in the "Table Properties dialog: Style tab".
    •Previous 25 Rows — Displays the previous 25 rows of data for the view.
    •Next 25 Rows — Displays the next 25 rows of data for the view.
    •Display maximum (500) rows per page — Allows you to display as many as the maximum number of rows per page at one time temporarily. The default is 500. The administrator can specify a different maximum value that is displayed on the tooltip for the button using the MaxVisibleRows element in the configuration file.
    For more Refer my blog post
    http://obieeelegant.blogspot.sg/2011/09/unable-to-export-all-rows-from-request.html
    Note: this same thing you can also configure your UAT/Prod Server. then its will automated so you no need to configure each report.its will affect all the pivot/table view
    also its noted as a bug in obiee11g(11.1.1.3/5) and its fixed in obiee11.1.1.6.0 and above version
    FYI:
    Thanks
    Deva

  • Reg : Grand Total in OBIEE

    hi all,
    I have two measure columns and i performed grand total on that columns .
    Here, I want grand total only for one measure column (I dont want to use default aggregatio rule as none).
    Any formatting options available(for eg: fill the same color for the measure as well as value for the particular column Grand Total)
    Can u help on this?
    Edited by: udeffcv on Apr 5, 2010 12:24 AM

    If you are using Pivot table.,
    try placing the measure cols(for which grand total is not needed) in the "Rows" section of the pivot table.
    Regards,
    Raghu

  • Search Option in OBIEE

    Hi experts,
    I have requirement.
    I need to display the Column name of tables in my first prompt.
    Based on selected column data will display in the report. But data is very large volum.
    So i want to have an serach box in report. So that user can type some text and corresponding data will display in the report.
    Thanks,

    Looks like you have a similar thread open:
    Can we impliment it in OBIEE.
    Maybe You should close this question so all your answers apply to the same topic.
    Paul

  • Reg:Help option in IR and ID

    hi friends
           how i can find documentation for each object in XI i mean like F1 help in ABAP is there any option in XI . i need documentation for Adapter objects node in repository.
    Thanks & regards
    suman

    Hi Suman,
    There is no F1 help in XI/PI.
    All you can do is to refer Help.sap.com
    Check this for Adapter Objects:
    http://help.sap.com/saphelp_nw04/helpdata/en/65/dfc755843b734992ce0d8f93f35178/frameset.htm
    and this for other XI objects:
    http://help.sap.com/saphelp_nw04/helpdata/en/0f/80243b4a66ae0ce10000000a11402f/frameset.htm
    Sachin

  • Reg Personalise option in Portal

    hi,
    The user did nt have personalise option in Portal.
    Hence created him a copy of EU_role and gave him access to only user profile
    The user is able to do the follwoing
    1. Change his display name
    2 .change his email id.
    3. Change his password.
    The scenario here is that the user should be only able to change his password and the other fields should be read only or greyed out.
    Pls help of how can i achieve this

    Hi Balaji,
    I also faced the same then I created a new user and Assigned the user super admin role that is super_admin_role.
    For details go through the following link
    *********************/enterprise_portal/enterprise_portal_authentication.htm
    For much details on security use the link as ->*********************
    Please let me know if you need anything more.
    With Regards,
    Lolla.

Maybe you are looking for