Is there anyway to see the sql code generated in Report Builder?

I'm debugging a custom report complex which includes many variables bind and lexicals and uses several user_exits for flex collect field values. Is there anyway to see the SQL code that is actually generated in the report - that is, a type of log file?

Version of the EBS is 11.5.10.2
Report Builder 6i

Assuming that all of the lexical settings are in your before and after triggers setting, why not add a message pop up in your setting after trigger to display what is used? Ex:

If: P_input1 = 'A' then
: P_where1: =' and x = 2 ";"
on the other
: P_where1: =' and x = 3';
end if;

-make the last statement in your setting after release:
SRW.message (1, "SQL: select a, b, c from table1 where b = 5' |: P_where1");

Tags: Oracle Development

Similar Questions

  • If I can revise the SQL code generated by OBIEE

    Hi all

    I had a problemetic SQL generated automatically by OBIEE. I have to rewrite or at least add a tip to make it complete within a fixed period.

    But I'm not sure if OBIEE offers us this feature to change or customize the SQLs it generates?

    Please help to give some advice.

    Thank you very much.
    Leon

    Hi leon,.

    OBIEE increases the performance of the aliases table, cz as he can't do oneself joined himself.
    Please visit this link this will solve your problem to improve performance
    http://www.iwarelogic.com/blog/performance-increasing-OBIEE-724
    (GOLD) http://www.rittmanmead.com/2008/11/thoughts-on-OBIEE-performance-optimization-Diagnostics/

    UPDATE POST
    @leon, you cannot change the SQL code generated by obiee, your obligation to use EXISTS instead of IN operator, then you can do this in the physical layer of RPD by accessing the properties of the table and select SQL problem and write your query with condition EXISTS on the relevant tables. So that in turn Bi server accepts and converts according to its methodology.

    UPDATE POST-2
    @leon, you can use rownum in your where clause, but check the query generated by OBIEE and the results obtained by rownum satisfied your requirment.

    Please follow label by awarding points to make it useful to others and even for us. Rules to be followed http://forums.oracle.com/forums/ann.jspa?annID=939

    hope responds to your question.mark points.

    See you soon,.
    KK

    Published by: Jocelyn on January 24, 2011 22:25

    Published by: Jocelyne 24 January 2011 22:27

    Published by: Jocelyn on January 25, 2011 02:13

    Published by: Jocelyne 25 January 2011 05:26

  • view the sql code used in a cfquery that performs an update

    I want to see the sql code used in a cfquery that performs an update. I can't do it at all, advice?

    Have you looked at the docs? May I suggest the attribute of 'result '.

  • why I can't see the bar codes in pdf format

    why I can't see the bar codes in pdf format

    Very difficult to say what the issue is without seeing the actual file. Could be

    a problem of fonts, as if fonts of barcodes (3-of-9) had been incorporated properly

    in the file or something like that. In any case, there is nothing you can do

    on this subject with Reader. You must report this problem to the author of the file.

  • Y at - it an easy way to get the sql code that is sent in the query UPDATE

    I have a request to UPDATE abbreviated for readability. Is there an easy way to get the sql code that is sent? I use get this info for sql select in the display of debugging in cfeclipse but not for the UPDATE.

    < cfquery debug = "" name = "q" datasource = "#datasource #" > "



    UPDATE [BookingSystem]. [dbo]. [tbTrades]
    SET
    [Status] = #MATCHED_STATUS #.
    WHERE

    clientID = < cfqueryparam value = "" #arguments.clientID # "cfsqltype ="cf_sql_integer"> AND"

    < / cfquery >

    It might pay to read the docs for - http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_p-q_17.html#1102316 - focusing on the RESULT parameter.

    Read also about debugging in CF: http://livedocs.adobe.com/coldfusion/8/htmldocs/Debug_01.html

    --

    Adam

  • Where can I see the source code for the controller

    Hi all

    My question is maybe stupid to some gurus of the ADF, but many people have found that R12 Pages have a lot of code and there is not too much documentation on how to customize a controller.

    1. I see the *.class of my controller in the $JAVA_TOP/oracle/apps/ar/cusstd/createcus/webui/ArCreCusCO.class on my server, BUT I don't see that any of the encrypted code when I open up JDeveloper. So I guess I'm doing it wrong.

    2. I want to change ArCreCusCO.class. I see a lot of people say Hey I've customized XYZ controller, but how they found the code and continue to change it is the least of my headaches

    3. do I need to configure something in JDeveloper so I can see Server classes to my JDeveloper - what they do, if so, how you do?

    4. I saw something in the help page saying adding components to the Extension of the OA the devil what?

    Thanks to illuminate some beginners in the ADF.

    With the new philosophy of Java, some of those 12 developers experience that we are not starting from zero because of this new architecture.

    Hector. -.

    p.s. any entry will be taken, but do not refer to the Oracle tutorial, is an example of cake I need some practical examples ;-)

    Hi hbono99

    (1.) you can .class c above java, which is the compiled code as source code is not provided by oracle, if you need this file '.class' to see the source code for decompile, JAD decompiler 1.5.8 version will be newer .well, it would be useful to see the source code, but sometimes decompiled class create problems when trying to compile again.

    2.), you can make changes in the ArCreCusCO.class after that decompilation and compile the same thing again to generate the class file, bcz you can put only class file on the server, BUT that would be fatal to change the standard class and the concept here to come of the Extension in the image, you need to extend this class. «XYZ custom "means the extesión of the class parent and make the extension u don't need not the source.»

    3.) u cannot see the source code of a .class in Jdeveloper, there is no such a parameter.

    (4.) to extend the need to ArCreCusCO.class you to create a workspace followed by creating a project in the workspace Jdeveloper
    process to extend the class

    a.) create workspace and project
    (b) create the same package in which resides the ArCreCusCO.class under the \jdev\myprojects\ in your Jdeveloper
    (c.) right click on the project, go to create the new class, here you will find the option to metion the package where you want to put the superior (normal package starts with a xx.oracle.-) the possibility of mentioning the nmae classs that you want to extend
    (d.) click ok at the end, you will get your extended class

    e.) source code usually has two methods ProcessFormRequest and processRequest, you can add the code according to the requirement.

    extension works bcz inside the method she calls super, so all first it runs all the methods of the parent class in your case ArCreCusCO.class and then control comes in extended class, now, your code will be run, which will be accomliseh your condition

    f.) tranaser the class file file expanded to the server, add this extended class with seeded page you need to customize the page, you will find the option to add your class, mention u your class with package to compete (the way that we import the file with their package names in our source code, here import is not necessary)

    thanx

    Pratap

  • Is there anyway to increase the download limit?

    I have exceeded the daily download limit and I will probably exceed the monthly limit too (I'm downloading all my family photos). Is there anyway to increase the limit?

    None

    You can request that Apple offers - http://www.apple.com/feedback/photos.html

    LN

  • In IE10, I can see the source code - not in Firefox

    IE10, I click DISPLAY and then click the SOURCE and I see the source code.
    Firefox does not have the code source Shiwa.

    Hello

    You can use one of the following methods to view Source in Firefox:

    • Firefox > Web Developer > Page Source
    • Tools > Web Developer > Source of the Page (Ctrl + U)
    • Right-click on a web page to open the shortcut menu, and then select View Page Source
  • is there anyway to restore the deleted text messages?

    is there anyway to restore the deleted text messages?

    balhblah wrote:

    is there anyway to restore the deleted text messages?

    Yes, you restore them by restoring your phone to your iTunes or icloud backup, as text message is part of the backup.

    If you don't back upwards - so no you can't restore the.

  • see the key code is problem

    see the key code is problem

    Hello

    did you purchase your product of these companies like Amazon? If Yes, this isn't a serial number, only a code with which you can request a serial number from Adobe. Please take a look at http://helpx.adobe.com/x-productkb/global/find-serial-number.html. (Start here: How did you purchase your product?)

    The next part, so I don't see at the very least, ceased to exist on my Adobe website, everything happens in the link above. I leave as an info yet, he could still fit for you. For this purpose, please click your way through your Adobe Store and find the button "get serial number". Fill in the form and after awhile, you will get the real serial number.

    Hans-Günter

  • Hi, I need to activate my Adobe CS3 on a new computer because my old is dead and I'm having trouble. Tried the average normal recording then connected with my Adobe ID and can see the software code and activation already registered. How to get o

    Hi, I need to activate my Adobe CS3 on a new computer because my old is dead and I'm having trouble. Tried the average normal recording then connected with my Adobe ID and can see the software code and activation already registered. How to get it on my computer saved?

    If your two activation is used, you need to call Adobe. Install CS3 point of activation and call Adobe at this time here.  They help in cases like your My drive crashed and I replaced it. Could not disable the activation of the accident.  I've done that twice in the years I use PS for about 20 years

    To see your key, you must click on the product in your products and services Adobe page.

  • I want to uninstall my old CS5 Design Premium from my computer to reinstall it on another computer. What are the steps? Is there something special with the activation codes, etc.?

    I want to uninstall my old CS5 Design Premium from my computer to reinstall it on another computer. What are the steps? Is there something special with the activation codes, etc.?

    You are allowed to have two facilities enabled, so if you prefer you can keep ut on the current computer and just install it on the new as you did initially.  If you want to remove on the other machine, the first thing to do is to disable it by opening a program in the suite and by selecting help-> turn off in the top toolbar.  That's all you need to do to disable the software.  At this point if you prefer you can uninstall it if you want.

    As much as on the new nmachine, as I indicated just, just install it like you did the first time.

  • Add the new column to Admin tool, including the SQL Code

    Hi all

    I am new to OBIEE and I already searched here in the forum but have not found an exact answer which could help me.
    I have a table in the warehouse where to get information on employees. It's employe_id, manager_id and name.
    Example:
    Employe_id Manager_ID name
    1 Mueller
    2 1 Meier

    Now, I would like to create a new column in the Mapping BI Admin tool business layer and add a SQL where to select the name of the Manager.
    Is this possible? And how can we do it? It will work with a new logical column? Where we add the SQL Code?

    I hope someone can answer my question!
    Thank you very much!

    Kind regards
    David

    OK, I think I got it - the name of Manager is on a separate table (or a search to return to the current table) and your thinking that you want to label your SQL in the report to find the name of Manager based on Director ID, you have?

    If so, import the table with the names of Manager in the physical layer. If this is the same table that you already have (but want to search him in the current table) then you need to create an alias for the current table.

    For each new table in the Phy layer, or an alias - define the join (current_table.manager_id = manager_table_or_aliased_current_table.employee_id)

    Once completed, we will on the source of the logic table in the MDB for this dimension, edit, on the general tab, "Add" and select the table / alias that you created in the phy layer. Click OK - it combines now two tables attached as a source - you can then map the name of the Manager search in your column 'name '.

    Kind regards
    Alastair

  • is there any function in the osb to generate a unique number in proxy

    is there any function in the osb to generate a unique number in proxy

    FN - bea: uuid()

    The function fn - bea: uuid() returns a universal unique identifier. The function has the following signature:

    FN - bea: uuid() as XS: String

    You can use this function in the pipeline of proxy to generate a unique identifier. You can insert the unique identifier that is generated in an XML document in the form of element. You are unable to generate a unique identifier to the system variable. You can use this to edit a message payload.

    For example, suppose you want to generate a unique identifier to add it to a message for follow-up purposes. You can use this function to generate a unique identifier. The function returns a string that you can add it to the SOAP header.

  • Gallery video lightbox - how to see the embed code?

    , I guess that you already know the gallery video lightbox. You can see it here: http://muse.adobe.com/exchange-library/video-gallery-lightbox

    When it is used first there are images related to some videos on youtube. I was wondering how I can see the code that links to youtube videos to put my code for my videos.

    Any ideas?

    Click on one of the small thumbnails. Click on the blue arrow for this image circle. Select the checkbox for 'see the lightbox parts while editing' will then show the window of the light box. Control (mac), click on the area of the black light boxes and select "edit HTML". You can adjust the embed code.

Maybe you are looking for

  • I select a bookmark and it will open in a new tab not even though I have selected

    I selected the option to open the bookmark in a new tab, but it does that

  • Portege M750 Sensetivitiy in Photoshop

    Hi all.. I have something that really bothers me... I just bought the M750.It is important for me to have the option of sensitivity in the brushes inside photoshop, but unfortunately the new driver does not recognize the tablet.I tried to install old

  • Clock freezes in the docking station

    I have the docking of Milestone 2 and recently I found the clock freezes randomly while my phone is in host mode. The separator flashes but the time does not update. This affects the main clock display and the time in the notification bar. If I lift

  • Lack driver download web page

    Hi, I had to post a new question due to the lack of response on a previous post. Just a quick and simple question: Where the driver download page went to the HP Envy 15 laptop computer 151sa j? I was more on the page only 2 weeks ago, and it isn't he

  • Highlight tool

    The tool used to highlight text has been changed in a recent update.   She went under a line long and fine with a circle inside a circle which is close to the text.   Therefore, it is difficult to highlight.  The new circular tool being close to the