List of universe for a deski report using deski report engine.

We have some Deski reports. While running query builder , we are not able to get list of universe for those reports. (SI_UNIVERSE.SI_TOTAL is 0).
We need to go for deski report engine approach to get the list for the same. Can someone please help me with the sample code for the same.
Thanks,
Abhay

Hi Ted,
Do you know if the ability to pull DeskI SQL will be supported through Java reportEngine in the future?  Is there a workaround aside from using COM SDK to pull this data provider information for DeskI?
Thanks

Similar Messages

  • How to get the list of values for a dynamic parameter using Web Services SDK?

    <p>I am struggling to get the list of values for a dynamic parameter of a report.</p><p>I am using Java Web Services SDK ... I tried to use PromptInfo.getLOV().getValues() method but it does not work.</p><p>First of all ... is this possible (to get the list of values for a dynamic param) using Web Services?</p><p>Second of all, if this is possible, how should I do it ... it seems it works fine when running the report from CMC. It asks for DB logon info and after that it provides a list of values.</p><p>Thx </p>

    <p>Your assumption is correct. We are trying to get the LOVs from the Crystal Report. I was not aware that this is not supported by Web Services SDK.</p><p>We used Web Services SDK to integrated the Crystal Reports in our web application. We implemented some basic actions for reports: schedule, view instances, run ad-hoc reports.</p><p>We encountered this problem when trying to run/schedule reports with dynamic parameters (a list of values from DB). We were unable to get the LOVs.</p><p>Please let me know if you can think of an alternative to look at.</p><p>Thanks a lot,</p><p>Catalin </p>

  • Question on list of value for both of deski and webi

    Hi,
       I have two questions on list of values issue: (we are using boxir3.1)
    1) on the deski, when I click on the Values on the 'Enter or Select Values' prmopt, the list of value it shows is not what it should be, it is pointed to other object, for expense, the value should show department code but the list of values shows the company name. I did refresh, and also refreshed on the universe side: restored default, automatic refresh before use. then export the universe, still doing the same. the only way to correct it I found so far is to change the prompt text which I don't prefer (we used userresponse in the report, it will be too much to change.
    2) for the webi report, when I click on the 'Refresh Values' on the prompts page, it shows (No value). I also checked on the universe side, did restored default, automatic refresh before use. then export the universe, still doing the same.
    Please help,
    Thanks,
    jt

    Try a new universe on the same connection, build the same objects. Just something simple to test the LOV results. If it doesn't work, it could be a data issue, or a permissions issue as suggested.
    You should check the SQL created for the LOV in the universe and verify that it's going to the right place.
    You can check to see if there is another LOV using the same name and if so, change it. The LOV name is found on the properties tab. You can find the LOV in the universe folder as a sub-folder from your environment. In my case, I have a folder named @Dev and a folder for universes inside that, then a folder beyond that with the universe name that contains the LOV files. Find the one in question and delete it, ensuring that it gets recreated.
    Try making sure that any unv and lov files on your server are purged. You may also need to test cache testings. The easy way to test if it's a cache issue is to reboot your system, which should clear the cache.

  • Is it possible to use the JAVA Report Engine SDK to modify DESKI reports?

    Post Author: Nadine
    CA Forum: JAVA
    Hi, is it possible to add a complex filter to a DESKI report using the JAVA report engine sdk?
    In the developer tutorials for this API, I've only found references to WEBI in terms of modifying reports, though it seems to be possible to view DESKI reports with this sdk.
    I am a bit confused in terms of the scope of this API and how I would use it in regard to DESKI.
    Many thanks for any suggestions!
    Nadine

    Post Author: Ted Ueda
    CA Forum: JAVA
    Current (XI R2) version of ReportEngine API only supports refreshing/viewing functionality for Desktop Intelligence documents.  Document modification/creation is only supported with Web Intelligence documents.  Queries aren't modifiable for Deski using ReportEngine API - you can only do so using Desktop Intelligence Reporter SDK, which is COM based.Sincerely,Ted Ueda

  • Standard table for finding query where used list

    Are there any standard tables available to find the list of web templates, bex reports and views using a particular query?
    i.e if i have the query name i should be able to find out where all it is being used.
    Thanks,
    Archna

    Hello,
    You have to join multiple tables to achieve this, here we go
    FOR QUERY Related Information
    RSRREPDIR - Directory of all reports (Query GENUNIID)
    Choose Type of a reporting component -> REP
    Tips :
    Choose Type of a reporting component -> QVW for query view
    SE11 -> RSZ* -> F4 gives you all tables related to queries
    For WORKBOOK Related Information
    Use the FM RRMX_WORKBOOK_QUERIES_GET to get the queries in a workbook by selecting the workbook ID from table RSRWORKBOOK
    Tips :
    SE11 -> RSRWB* -> F4 gives you all tables related to workbooks
    SE37 ->RRMX_WORKBOOKS* -> F4 gives you all the FM related to workbooks
    For Webtemplate Related Information
    Choose the dataprovider for query / view ID.
    SE11 -> RSZWOBJXREF - Structure of the BW Objects in a Template
    Also see,
    SE11 - > RSZWTEMPLATE - Header Table for BW HTML Templates
    Thanks
    Chandran

  • How to create @prompt filter at universe level for my Webi reports

    Dear all,
    I am using BO XI 3.1 SP3 with SAP BW 7.0.
    I have created an open[big] query based on a multiprovider for my OLAP universe.
    OBJECTIVE: to create LOV prompts for Calender year, for my webi reports, which takes 2010 as input then offsets the input year and then shows Gross sales for the prompt year [2010], 2009 & 2008.
    ISSUE: if 2010 is selected in webi prompt filter, then it doesn't display any data for any other year, lets say gross sales for 2009.
    ALTERNATIVE: i tried to create a prompt filter in the universe with this syntax,
    <FILTER KEY="@Select(Calendar year\Calendar year).[TECH_NAME]"><CONDITION OPERATORCONDITION="InList"><CONSTANT TECH_NAME="@Prompt('Enter year','N',,Mono,Free,Not_Persistent)"/></CONDITION></FILTER>
    it worked fine. but i also want to create a measure or dimension which subtracts 1 from the above filter and return a result with a previous year.
    e.g
    PROMPT: 2010
    PROMPT-1: 2009
    Universe structure
    [TIME]                         class
      [Calender year]        class
         [Calender year]     dimension  ( type:string)
    Please guide me with correct procedure and syntax.

    masood44 ,
    I think you should just prompt for year and capture and use the selection at the webi report  level.
    say you have calendar year(convert it into numeric) prompt at webi level. say user selects 2010 capture it in a variable var1:userresponse('enter year'). then create a variABLE (var2)  with formula :
    if(isPromptAnswered('enter year')='yes';([year] where year inlist(var1;var1-1;var1-2);null)
    build your report with var2 and gross income
    Thanks,
    Karthik
    Edited by: kbharadwaj79 on Jun 2, 2011 5:34 PM

  • In need of a report that will list all vendors for all parts in our plant.

    Can anyone tell me if there is a report in SAP that we can use to list all suppliers for a given material? We are operating in SAP ECC6.0 and need a report that will list all vendors that the company has used for a given part. Is there a standard report in SAP that pulls information from purchasing info records?  Woud this be  a custom report?     I have tried using MCE3. 
    Also does anybody know of any SAP consultants that can help us create custom reports

    For the list of vendors for the material - Me03 if source list is maintained
    For list of vendors with info record - Me1m
    For list of vendors with PO - Me2l
    If you can give the correct requirements then your Technical consultant will develop a report in the required format.

  • Using cost center as a characteristics for GLPCT based report painter

    Hi,
    Can we use cost center as a characteristics in a report painter report in a library using GLPCT table?
    It shows in the selection list but if can not save report if tried to use. Is there a work around as KOSTL is not part of GLPCT?
    Thanks,
    Sanjay

    You can create a report based on PCA line items, where there is the cost centre
    I copied a library for PCA line items reports and made a custom report
    cheers
    matej

  • Query builder how to list objects, description for universe

    need query to list objects, object type, object description, object hidden property for selected universe

    All information about Universes available using Query Builder can be queried like this:
    SELECT * FROM CI_APPOBJECTS WHERE SI_KIND = 'Universe'
    Information such as objects used, etc, needs to be retrieved through the SDK:
    A sample for this exists in the developer library:
    [Direct Link to Sample|http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/en/BO_SDK/unv_info_vb/data/dessdk_com_unvInfo_sample_115_en.zip]
    "This is a Visual Basic 6.0 application which traverses the Universe Designer SDK object model and outputs the universe details to a HTML file."
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/devsuite.htm

  • List the universes and reports

    the copmosants BO XI are stored in the files systems and not in the domaines (schèmas) of data base.
    to list the universes and the reports,is what it a request SQL or a universe manager or other solution?
    thank you

    The easiest way to accomplish this or any type of query of CMS metadata,  is using the free CMS database driver + Universe found at:
    Download Location:
    http://www.infolytik.com/cmsconnect-community-edition
    Installation and Setup Video:
    http://www.infolytik.com/video/cmsconnect_ce_install/cmsconnect_community_edition_installation.html?iframe
    It supports completel hierarchical reporting of core objects (Universes, wid, unv, Users, UserGroups, CrystalReport etc)
    Hope this helps
    Atul

  • I am an international student studying in Kettering University, US and i have an isic that is international student identity card. Can you tell me what is the procedure to claim for a discount by using my isic. Want to buy ipad air 2 for education.

    I am an international student studying in Kettering University, US and i have an isic that is international student identity card. Can you tell me what is the procedure to claim for a discount by using my isic. Want to buy ipad air 2 for education.

    Welcome to the US!  I think you can just take your ID card to the Apple store or shop online : http://store.apple.com/us/browse/campaigns/education_pricing
    the site has all the info for eligibility and available items for purchase -- I think you can type in your school to see if on list of approved schools. I think the ID checking is rather benign. discounts are modest from what I recall.

  • Reports For Service desk

    Hi experts,
                  I would like to know the different kind of report that i can use  for service desk reporting .I have used service analysis report directly from the solution_manager transaction,
    but was not able to execute it properly,
           regrads,
                  Varghese

    Hi Varghese,
    At the moment, I am using only CRM_DNO_MONITOR.
    However, I do hear abot BI reports being possible; I raised a query too, but didn't get a reply.
    If you have the time you may like to explore the thread referred in my query [thread|BI Reports for Service Desk - any pointers, insights, experience please!;.
    Regards,
    Srini

  • Report for list of POs for with Invoice has not been posted

    Hi All
    Can anybody tell me the report for list of PO' for which GR has already been done but Invoice is not posted
    Thnks
    Ranjith

    Hi
    Try Report ME2M,
    With input selection parameter  "WE101".
    Hope this helps.
    Harish

  • How can I export a list of events for one of many calendars - e.g. "sailing" to use in Excel

    How can I export a list of events for one of many calendars - e.g. "sailing" to use in Excel?

    See this thread here
    Display number of emails by sender

  • URGENT - Using a session value for query in reports

    Please Reports Team or anyone....
    I need to make a pdf report on the web.
    The query needs to be dynamically so i can make reports on the fly in a secure manner, for example with the use of a session variable as the identifier (eg. select * from emp where id=<session>).
    I know that rwservlet can be used but the id must not be displayed - so i figured to make a servlet or use a JDBC-PDS, but i cant find any coding examples anywhere.
    Whats the framework ? how do i do this - i've tried an example using a new Java URLconnection and connect to the rwservlet then i'll hide the url, but how can you then stop people from using the rwservlet...
    I've been working on this for a long,long,long,long time - could anybody please help !!!!!

    Dunno if this wil help you, but here's what we do...
    We use multiple web servers and we put our application servlets on a different box to the report server's servlet.
    Users cannot access the report server directly. They must request reports from our application servlets which build the appropriate http requests and forward these onto the report server (using URLConnection). We stream the result back through our servlet so the user is completely unaware that the reports are generated on a separate box.
    If you don't have the luxury of multiple servers, you may be able to configure your webserver to only accept requests to the report server's servlet from the local machines IP address?

Maybe you are looking for