Available webservice/tool that returns the physical qry from logical qry?

Is there any obiee webservice or program that returns the physical query by receiving the logical query as a parameter ?
What we are looking for is to have a "process" that use the logic that bi server has to resolve the reports using the metadata (rpd) to derive the physical query.
It should be like the logic that is behind the "issue direct sql" function. But instead of pasting the logical query into the text box we will be passing it as a parameter in a custom process.
Many thanks,
Georgina

800 by 800 pixel file @ 300 DPI:
Guide @ random position:
800 by 800 pixel file @ 300 DPI:
Guide @ 40,341 mm
One selection drawn from the left, one from the right.
The border of the selection should be on the same left-right-position, but differs about one pixel (these are all zoomed in).

Similar Messages

  • What is the Function MOdule that returns the fields in database table order

    Hello Folks
      I have a dynamic internal table with fields ( which are not in order). I want to display them in the order of which they are present in the database table? Is there any function module that returns the fields in database order?
    FAQ. Please search before posting your question.
    Edited by: Suhas Saha on Oct 10, 2011 10:19 PM

    Hi,
    You can use this BAPI.
    <b>BAPI_SALESORDER_GETLIST</b>
    Reward if useful.
    Regards,
    Vimal

  • BAPI OR RFC THAT RETURNS THE VALUE TABLE CONTENTS THAT IS SPECIFIED IN DOM

    HI ALL,
    i have requirement of BAPI  or RFC that returns the value table contants(text table) in CRM..
    for ex:
      if i  pass the dataelement or domain or checktable as input parameter,could i get the contents of its text table associated with it....
    please if there is way help me on this..
    thanks and regards,
      goutham,

    Check these FM
    RFC_READ_TABLE
    RFC_GET_TABLE_ENTRIES

  • Server.MapPath(virtualPath) Returns root directory of controller, it is nor returns the physical path mentioned in the virtual directory in IIS

    I have created a virtual directory "myVirtualFile" virtual path is "\myVirtualFile" and I have given physical path as "D:\Home\myProject\Files"
    Below is my code
    var virtualpath="/myVirtualFile\UserManual";
    var resultPath=Server.MapPath(virtualpath);
    out put is resultPath contains "D:\Home\myProject\Web\client\myVirtualFile\UserManual" Expected out put is "D:\Home\myProject\Files".
    It returns the folder structure of my project. I didn't return the physical path which I mentioned in virtual directory.

    Hi,
    I am not expert on Asp.Net. But I will try my best.
    The following sample is what are
    Virtual paths and Physical paths
    ASP.NET the "~" tilde indicates the root of a virtual path.
    Virtual paths
    ~/App_Data/Sample.xml
    ~/
    ~/Map.txt
    Physical paths
    C:\Website\Files\Sample.xml
    C:\Website\Default.aspx
    C:\Website\Map.txt
    Server.MapPath doesn't find automatically where a file is. It allows to get the physical path
    corresponding to a virtual path (relative to the current request if you don't give an absolute path)
    If above still cannot resolve your issue, please repost in Asp.Net forum, The link as above posted.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • BAPI that returns the PurchasingOrg of given user.

    Hi all,
    I'm trying to find BAPI that returns the PurchasingOrg of given user.
    Any help will be very appreciated.
    Thanks,
    DannyL

    >
    Danny Leviev wrote:
    > Hi all,
    >
    > I'm trying to find BAPI that returns the PurchasingOrg of given user.
    >
    > Any help will be very appreciated.
    >
    > Thanks,
    >
    > DannyL
    Hi dear,
    Can u explin in deatails what exactly you are looking for??

  • I need a query that returns the average amount of characters for a text colum in MS SQL.

    I need a query that returns the average amount of characters
    for a text colum in MS SQL.
    Could someone show me how?

    Sorted, i need the
    DATALENGTH
    function

  • HT1040 trying to make an ibook and have 800 photos, want format of 8 photos/page, but default is not that- "create" the initial book from iphoto "album" it loads less than 800 pics and then when i change layout i have blanks.

    trying to make an ibook and have 800 photos, want format of 8 photos/page, but default is not that- "create" the initial book from iphoto "album" it loads less than 800 pics and then when i change layout i have blanks.
    if i clear the book so that it is all blanks and then try to load in the pictures i have it loses the chronology of the pictures that i had established in the album.
    is there a way to import photos into an ibook template and keep the original order of the photos without having to do them one at a time?
    also, is there a way to insert a photo rather than just dragging it? i have tried the cut and paste funciton but it doesn't seem to work, the target site doesn't seem to register with iphoto.
    many thanks for your help.

    Photos are added to book in chronological order.  So if you want to add them to a book in the order you have placed them manually in an album do the following:
    1 - select all the photos in the album.
    2 - use the Photos ➙ Batch Change ➙ Date menu option as shown here. Select any date and add 1 minute between photos.
    3 - select just one photo from the album and create a book from it.
    4 - in the book click on the Options button ➙ Book Settings button and make sure the checkbox for Auto-layout pages is unchecked.
    5 - drag the album with your book photos onto the book icon and they will be imported into the Photos tray of the book in your pre-determined order but not into the pages themselves.
    OT

  • What are the physical topology and logical topology in sharepoint

    Hi
    what are the physical topology  and logical topology in sharepoint
    how to define  the physical topology  and logical topology in
    sharepoint
    adil

    Here are the example topologies for SharePoint:
    Traditional - 
    http://www.microsoft.com/en-us/download/details.aspx?id=30377
    Streamlined - 
    http://www.microsoft.com/en-us/download/details.aspx?id=37000
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to return the entire row from a table

    Hi guys,
    Tabl A
    FirstName varchar2(10),
    Age Number,
    Add varchar2(100),
    Table B
    Filedname varchar2(200), -- contains all the fields of table A
    Datatype varchar2(100), -- Contains the datatypes of the filedname
    Length Number -- contains the length of the fileds
    Now how can i return the entire row from table A with the datatype and its length.
    Any help would be appreciated ?
    Here is the query I wrote but it how to take the datatype and its length..
    create or replace procedure disp_table_data
    as
    type r_cursor is REF CURSOR;
    c_A r_cursor;
    er A%rowtype;
    begin
    open c_A for select * from A;
    loop
    fetch c_A into er;
    exit when c_A%notfound;
    dbms_output.put_line(er.FirstName||'--'||er.Age);
    end loop;
    close c_A;
    END;
    /

    Guys,
    I want column value from table A and its corresponding data_type and length from table B. I think I cant do it through joins.
    Any idea would be appreciated ?.
    Example ..
    Tabl A
    FirstName varchar2(10),
    Age Number,
    Add varchar2(100)
    insert into A values('John',24,'Boston');
    Table B
    Filedname varchar2(200), -- contains all the fields of table A
    Datatype varchar2(100), -- Contains the datatypes of the filedname
    Length Number -- contains the length of the fileds
    insert into B values('FirstName','varchar2',10); -- this is coming from table A.
    Output should be like this...
    John,Varchar2,10
    Here (John is the FirstName - coming from table A, Varchar2 is a Datatype and 10 is the Length which are coming from table B ). Only column values are coming from table A , corresponding datatype and length are coming from B.
    Any idea would be appreciated ?
    Thanks.

  • How can I undo a back up that combined the contact info from 2 different phones

    how can I undo a back up that combined the contact info from 2 different phones.

    Once you merge contacts with iCloud or any back up for that matter, it will be merged until you go through and decifer which contacts you would like to keep.
    Was it an iCloud backup?

  • How to get the selection parameters from logical database into one of the t

    Hi Sap ABAP Champians,
    How to get the selection parameters from logical database into one of the tab in the tabstrip selection-screen.
    Please help me for this
    Thanks
    Basu

    Hi
    Thanks, that will work, but then I'll have to insert code into all my reports.
    I can see that "Application Server Control Console" is able to rerun a report.
    This must mean that the Report Server has access to the runtime parameters.
    But how?
    Cheers
    Nils Peter

  • Physical Standby from Logical Standby

    Is it possible this scenario?
    Create a physical standby from logical standby and the physical receive archive from logical.
    I mean,
    Primary (10g production) -> Logical (11gr2 new server 1) -> (Physical 11gr2 new server 2)
    The goal of this scenario is a migration with a short downtime.
    O.S. aix 6.1
    11.2.0.2

    Is it possible this scenario?YES

  • How to consume the webservice if it returns the data in dataset format

    Dear All,
    We have a requirement to consume webservice created in .NET platform. In that webservice they are returning data in dataset format. In this case i am not able to create a proxy. It is showing the following information.
    Cannot generate proxy (object schema mis
    WSDL, see long text)                   
      <?xml version="1.0" encoding="utf-8" ?>
    - <wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://tempuri.org/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    - <wsdl:types>
    - <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
      <s:import namespace="http://www.w3.org/2001/XMLSchema" />
    - <s:element name="getTaskEffort">
    - <s:complexType>
    - <s:sequence>
      <s:element minOccurs="0" maxOccurs="1" name="SPRProjectId" type="s:string" />
      </s:sequence>
      </s:complexType>
      </s:element>
    - <s:element name="getTaskEffortResponse">
    - <s:complexType>
    - <s:sequence>
    - <s:element minOccurs="0" maxOccurs="1" name="getTaskEffortResult">
    - <s:complexType>
    - <s:sequence>
      <s:element ref="s:schema" />
      <s:any />
      </s:sequence>
      </s:complexType>
      </s:element>
      </s:sequence>
      </s:complexType>
      </s:element>
      </s:schema>
      </wsdl:types>
    - <wsdl:message name="getTaskEffortSoapIn">
      <wsdl:part name="parameters" element="tns:getTaskEffort" />
      </wsdl:message>
    - <wsdl:message name="getTaskEffortSoapOut">
      <wsdl:part name="parameters" element="tns:getTaskEffortResponse" />
      </wsdl:message>
    - <wsdl:portType name="OntimeWSSoap">
    - <wsdl:operation name="getTaskEffort">
      <documentation xmlns="http://schemas.xmlsoap.org/wsdl/">This method.</documentation>
      <wsdl:input message="tns:getTaskEffortSoapIn" />
      <wsdl:output message="tns:getTaskEffortSoapOut" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:binding name="OntimeWSSoap" type="tns:OntimeWSSoap">
      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    - <wsdl:operation name="getTaskEffort">
      <soap:operation soapAction="http://tempuri.org/getTaskEffort" style="document" />
    - <wsdl:input>
      <soap:body use="literal" />
      </wsdl:input>
    - <wsdl:output>
      <soap:body use="literal" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:service name="OntimeWS">
      <documentation xmlns="http://schemas.xmlsoap.org/wsdl/" />
    - <wsdl:port name="OntimeWSSoap" binding="tns:OntimeWSSoap">
      <soap:address location="http://hts-pcs-0808/OntimeData/Ontime.asmx" />
      </wsdl:port>
      </wsdl:service>
      </wsdl:definitions>
    I tried to consume webservice http://student.ohecampus.com/projects/group95/stud17/assignment7/validateEmail.asmx, which will return the data in boolean format. In this case, i am able to create a proxy and it is working fine. Can anyone help me out.
    Thanks in advance.
    Regards,
    Karthick

    Dear Raja,
    I checked with webservice owner who created the webservice. They are telling that there is no problem in XML file which they gave. The webservice they provided is consumed in many application and it is working fine. When in SAP, i tried to create a proxy it is showing the in information which i mentioned in earlier posted forum message.
    Kindly advice.
    Regards,
    Karthick

  • Upgraded to 8.0.2 on 5. Lost all photos in camera roll and photo stream.  I used a recovery tool that shows the photos are still in there 'somewhere' but they want $70 to recover them.  Any free methods? I shouldn't have to pay for Apple's screw up!

    Also, I did a backup on iTunes before the upgrade but after the upgrade completed, it performed a backup that overwrote the last one I did.  At least I think it did, there is only one backup showing up in the MobileSync-Backup folder on my computer.  Also, in iTunes on the bottom of the screen, the bar that shows how much storage space is being used by what, its number of pics is several hundred more than the number of pics on my phone.  The ones it didn't erase were in a different album that I had uploaded from my computer (ironic that the pics that I didn't lose in the upgrade, I already have copies of on my computer). Anyhow, I used a trial version of recovery program called Wondershare Dr.Fone for ios, and while I'm definately not here to promote them, after it did the scan on my iphone, it showed thumbnails of all the missing photos, along with everything else I'd ever done on my phone lol. So I do know they are in there, I just can't afford to pay $70 to retrieve them, nor do I think I should have to as the upgrade caused them to be missing!  Does anyone know of a free recovery tool? I never used iCloud, so that is not an option either.

    Also, I did a backup on iTunes before the upgrade but after the upgrade completed, it performed a backup that overwrote the last one I did.  At least I think it did, there is only one backup showing up in the MobileSync-Backup folder on my computer.  Also, in iTunes on the bottom of the screen, the bar that shows how much storage space is being used by what, its number of pics is several hundred more than the number of pics on my phone.  The ones it didn't erase were in a different album that I had uploaded from my computer (ironic that the pics that I didn't lose in the upgrade, I already have copies of on my computer). Anyhow, I used a trial version of recovery program called Wondershare Dr.Fone for ios, and while I'm definately not here to promote them, after it did the scan on my iphone, it showed thumbnails of all the missing photos, along with everything else I'd ever done on my phone lol. So I do know they are in there, I just can't afford to pay $70 to retrieve them, nor do I think I should have to as the upgrade caused them to be missing!  Does anyone know of a free recovery tool? I never used iCloud, so that is not an option either.

  • Is there a tool that reads the number of assigned RefNums (primarily Queues)?

    Hi-
    I have been troubleshooting a memory leak caused by queues, and have found the following link helpful:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=85418&requireLogin=False
    My question is: Is there a tool that I can use that will show me how many refnums are opened in memory? Preferably with the references name? It would make verifying queue memory leaks and their eradication so much easier! If such a tool does not exist, could it be added to the VI profiler sometime in the future?
    Thanks!
    -Randy

    BUMP. I am curious too.  But I suspect not.
    A couple of things:
    Looking queues up by name creates a new reference to that queue (even if it exists).  So if you have a VI that runs for a long time repeatably looking it up by name, it will bleed the memory dry.
    Setting the "force destroy" of the release queue to true will destroy all references to that queue.  Freeing up that memory.
    As you are aware, I uses queues in my primary architecture.  I have run them in 30 plus day trials with no problems.  (I realize this is not helping you.) so by NI side implementation, there is no problem.
    I am not sure how much of a bear it would be, but you could wrap the "create queue" and log the number of creates that you are running. You can wrap the release queue, and see which are getting released.  Keep in mind if you "create" the same queue twice you will have two references open to that queue.  Force destroy closes both, otherwise, you are left with the remaining.  It is a management nightmare.  The latest incarnation of my statecase manager implements queue tracking. The nice part of this, is that I can actually pass events to any queue running, and save myself the trouble of looking it up by name.
    But you do have your work cut out for you, depending on the size of your program. 
    Good luck.
    Paul <--Always Learning!!!
    sense and simplicity.
    Browse my sample VIs?

Maybe you are looking for

  • Saving Notifications with blank Mandatory Fields

    Dear Experts, I have an observation. The tabs 10\TAB02 and 10\TAB06 of a notification are having mandatory fields. Saving of this notification is refused without filling the mandatory fileds of tab 10\TAB02, but the same thing is not happening with t

  • Iphone videos sent via mms are crap. Why?

    I want to know what the heck happened and who dropped the ball on iPhone video MMS. It gets compressed to the point where it is completely unable to be made out. Not to mention there is no zoom option. Maybe I could understand if you're sending a vid

  • Encore CS4 crashes when transcoding

    Hi, I'm trying to get Encore to transcode all my videos (right click > transcode now). If I do them one at a time, it seems to work. However, if I attempt to add a bunch to the queue, I get an error that "transcode failed" or "can not create image bu

  • Failed to access internet in App sometimes even the internet is active

    Hi Some times I am unable to access internet from my WinRT Application even my device is connected to internet. Is that a problem with Opeating System or with my Application, Can anybody explain Plz..

  • Thinkvantage Access connections & AT&T U-verse

    I have (3) "permanent" profiles in my Access Connections menu in my old T60 and in my new T410  One for my office, where I get Wired LAN and Wireless (networks administered by IBM). Second for my favorite customer's office, where I have a fixed IP as