How to view RUN_REPORT_OBJECT built-in source code

Ps help.
I'm creating a batch report that will execute from PL/SQL not forms - so I can't use this built-in directly on my PL/SQL procedure. How do I view RUN_REPORT_OBJECT source code and that of the functions that it calls.
Thanks
Khombi

good question for the report forum :
Reports

Similar Messages

  • How can I download the full source code for the Java 3D package

    how can I download the full source code for javax.media.j3d
    especially I need the Transform3D.java class.
    thanks a lot
    Meir

    thank you guys I'll try to do so, I suggest you to
    join me.From the one of the (ex-!)Java3D team:
    "I'm glad to see that Sun has decided to officially support an
    open source Java/OpenGL binding, JOGL. Perhaps they will
    eventually decide to make Java 3D open source. However, be
    careful what you wish for. The Java 3D source is huge and
    complex. There are native sections for Solaris, Windows/OpenGL,
    and Windows/Direct3D, plus common code. I don't know how you'd
    open source a build process that requires different pieces of
    the code be built on different machines running different
    operating systems."
    Sounds scary - I hope we're ready for it :)

  • How can I get the XSLT source code?

    How can I get the XSLT source code?

    Actually, I want to parse customer reviews for academic purpose.
    I'm trying to follow the links in the customer reviews zone.
    For example:
    In the following page
    http://www.amazon.com/gp/product/customer-reviews/B000LU8A7E/sr=1-1/qid=1180473311/ref=cm_cr_dp_all_helpful/102-2890495-8864146?ie=UTF8&n=1065836&qid=1180473311&sr=1-1#customerReviews
    in the "customer reviews" section, there is a link "next" that gets the next 10 reviews.
    The thing is that I don't know how to imitate its action using java and actually, I'm not sure if it is possible to do that using software.
    I tried to look at the source code that I got using the previous java code I posted and I see that the next link always has the following href attributes "http://www.amazon.com/gp/product/customer-reviews/B000LU8A7E"
    I tried to see if there is any javascript that tells the page which 10 reviews to get but with no success.
    So if anyone knows how to imitate the next link action using software that will sure help me a lot.
    Thanks in advance

  • How to view RUN_REPORT_OBJECT buil-in package source code

    Ps help.
    I'm creating a batch report that will execute from PL/SQL not forms - so I can't use this built-in directly on my PL/SQL procedure. How do I view RUN_REPORT_OBJECT source code and that of the functions that it calls.
    Thanks
    Khombi

    You can't see source code of this package.
    You can use srw package. Please see the following link.
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_evnt.htm

  • How to view SQL Built-In function Codings ?

    Hello All
    I want to view the sql built-in functions codings,any one say how to view this, or any web links contains this
    for ex --- i want to view the round function coding
    Thanks

    user2233 wrote:
    I want to view the sql built-in functions codings,any one say how to view this, or any web links contains this
    for ex --- i want to view the round function codingIf you mean seeing the actual source code for the SQL round() function, then no - not possible. It is part of the copyrighted (and private) Oracle source code.
    If you want to see what functions there are, what the syntax is and arguments are, what the functions do, then refer to the Oracle® Database SQL Language Reference guide.

  • How to track DDL Changes and source code changes

    How can I track the DDL Changes and the Source code (Functions,Procedures,Packages & views) changes made for selective schemas?.
    I mean I want to maintain the history of DDL changes and the sourcecode change history. How to do that? Please provide your guideline with some example...

    Hi,
    you could use a DDL trigger (before create)
    to maybe capture the code and do the audit as well?
    Try this:
    SQL>create table old_code
    2 as
    3 select user username, 0 version, sysdate date_changed, user_source.*
    4 from user_source
    5 where 1=0
    6 /
    Table created.
    SQL>create sequence version_seq;
    Sequence created.
    SQL> create or replace trigger create_trigger
    2 before create on schema
    3 declare
    4 l_date date := sysdate;
    5 l_ver number;
    6 begin
    7 if (ora_dict_obj_type in ( 'PACKAGE', 'PACKAGE BODY', 'PROCEDURE',
    'FUNCTION' ) )
    8 then
    9 select version_seq.nextval into l_ver from dual;
    10
    11 insert into old_code
    12 select user, l_ver, l_date, user_source.*
    13 from user_source
    14 where name = ora_dict_obj_name
    15 and type = ora_dict_obj_type;
    16 end if;
    17 end;
    18 /
    Trigger created.
    SQL> create or replace function f return number
    2 as
    3 begin
    4 return 0;
    5 end;
    6 /
    Function created.
    SQL> select * from old_code;
    no rows selected
    SQL> create or replace function f return date
    2 as
    3 begin
    4 return sysdate;
    5 end;
    6 /
    Function created.
    ops$[email protected]> select * from old_code;
    USERNAME VERSION DATE_CHAN NAME TYPE LINE TEXT
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 1 function f return number
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 2 as
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 3 begin
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 4 return 0;
    aaaaaaaaaaa 2 17-OCT-02 F FUNCTION 5 end;

  • How to find the foreign function source code of srw.user_exit in report?

    Hi,
    We know that srw.user_exit can invoke a foreign function,for example SRW.USER_EXIT('FND SRWINIT').
    But how can I find the source code of the foreign function in SRW.USER_EXIT(e.g. the source code of FND SRWINIT)?
    Thanks in advance,

    Hi,
    You build user exits when you want to pass control from Report Builder to a program you have written, which performs some function, and then returns control
    to Report Builder.
    So you will have to know the foreign function you want to invoke.
    For information on writing a user exit, see the following note on Metalink:
    179324.1
    And the "Programmer's Guide to the Oracle Precompilers, 1.8"
    Navneet.

  • How can I execute a existing source code in visual studio 2012?

    My friend sent me a mini project(ASP.Net) through mail in a zipped folder. I extracted it and it contains source code and databases. I don't know how to execute it in visual studio 2012. I read that I can do it by choosing Project from existing code option
    from the file menu.But I don't find the option.Kindly help me how to execute that project which I received through mail in visual studio 2012. 

    In case of ASP Web Sites, which do not require solution and project files, go to FILE
    à Open
    à Web Site, then select the folder from File System.
    If nothing work, then perhaps you do not have the required version of Visual Studio. Then give more details or clarify it with your friend. The database probably requires some preparation steps too.

  • How to See and Change the Source Code of Spawned Concurrent Program.

    Hello Team,
    There is one requirement in which we have to add some condition in the Concurrent Program.But the Type of that concurrent Program is ,"Spawned ".
    Please suggest me , how can i check the Source code for this type of Concurrent Program and how can i make the changes to satisfy the requirement.
    Thanks & Regards

    There is one requirement in which we have to add some condition in the Concurrent Program.But the Type of that concurrent Program is ,"Spawned ".
    Please suggest me , how can i check the Source code for this type of Concurrent Program and how can i make the changes to satisfy the requirement.Please see old threads, it should answer your question -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Spawned+AND+Concurrent+AND+Code&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • How to hide Procedures,Functions,Packages source code?

    Hi,
    I tried to find a way to hide all our application oracle
    database's all Procedures, Functions, Packages PL/SQL Source
    code. But I haven't find the way. Could Oracle do this? ( MS SQL
    Server can)
    Thanks in advance,
    Cheng
    null

    cheng (guest) wrote:
    : Hi,
    : I tried to find a way to hide all our application oracle
    : database's all Procedures, Functions, Packages PL/SQL Source
    : code. But I haven't find the way. Could Oracle do this? ( MS
    SQL
    : Server can)
    : Thanks in advance,
    : Cheng
    Hi Cheng,
    You may be interested in what Quintessence Systems (Berkshire,
    United Kingdom - http://www.quintessence.demon.co.uk) have
    developed.
    Addressed at precisely this kind of problem area, we've
    developed a technology called F2J (Formula to Java). F2J
    automatically converts stored PL/SQL (Procedures, Functions and
    Packages) to Java classes which can be loaded and run as Stored
    Procedures in an Oracle8i database.
    If you think this may be able to assist you then check out the
    website for further info or email me directly.
    How this is helpful.
    Elton Barendse
    null

  • How to view pre-built Dashboards and Reports of Oracle BI- Apps?

    Hi All,
    We have sucessfuly installed and configured the Oracle Apps, and also we configured the OracleBIAnalyticsApps.rpd and we are able to view the different subject areas.
    But we are facing problem in viewing any prebuilt dashboard or report.
    Is it possbile to view pre-built Dashboards and Reports of Oracle BI- Apps if we dont have any ERP applicaton as a source?
    As we dont have any ERP application we have loaded the data from the sample flat files to the Analytics warehouse.
    Any help would be highly appreciable.
    Regards,
    Manmohan Sharma

    Hi Damon,
    Thanks a lot.
    Now I understand that we have to have ERP data source if want to view the prebuild Dashborads and reports.
    Could you please provide the path to get Prebuilt Dashboard & reports ?
    Regards,
    Manmohan Sharma

  • How can i secure the cfm source codes?

    hi ppl,
    i will be deploying my cf apps and i want to make sure that
    no one would be able to view the source codes of the cf apps.
    what can i do? any advice?
    thank you

    cfcompile -
    Link
    Can't say I've used it before though.

  • How to remove css style from source code?

    Hello,
    I am working on launching a website soon and saw that I have some repetative css styles in the source code. I would like to remove them, because I want my style sheet "115209.css" to be the main controller.
    Below is my code. I just need to know what exaclty I need to remove to make that happen. I am a bit of a newbie and am not too comfortable in chopping it up myself in fear that I might lose a closing tag or something else of importance.
    Any help would be greatly appreciated!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Novato Youth Center</title>
    <link rel="stylesheet" type="text/css" href="115209.css" />
    <style type="text/css">
    <!--
    a:link {
    text-decoration: none;
    a:visited {
    text-decoration: none;
    a:hover {
    text-decoration: underline;
    a:active {
    text-decoration: none;
    -->
    </style><body>
    <div id="wrapper">
             <div id="headernav"> <a href="index.html">Home</a><br>
               <a href="overview.html">About Us</a><br>
               <a href="donate.html">Donate</a><br>
               <a href="getinvolved.html">Get Involved</a><br>
               <a href="contactus.html">Contact Us</a><br>
          Español </div>
            <div id="header"> <a href="index.html"><img src="http://www.novatoyouthcenter.org/logo.jpg" /></a>
        <div id="Title">
          <h1>Novato <br>
            Youth Center</h1>
        </div>
        <div id="Tag">
          <h2><em>Success Starts Here</em></h2>
        </div>
          <div id="socialbuttons"><a href="http://www.facebook.com/pages/Novato-Youth-Center/151677233396?v=app_2309869772#!/pages/No vato-Youth-Center/151677233396?v=wall"><img src="http://www.novatoyouthcenter.org/facebook_button_11.gif" alt="facebook" height="48" width="50" /></a><a href="https://twitter.com/#!/NovaYouthCtr"><img src="twitter-icon.jpg" alt="twitter" height="48" width="48" /></a></div>
      </div>
            <div id="navigation"><a href="6to5.html">Infants - 5 years</a> | <a href="5to14.html">5  - 14 years</a> | <a href="teens.html">Teens &amp; Young Adults</a> | <a href="adults.html">Parents &amp; Adults</a></div>
       <div id="leftcolumn">
             <h4> </h4>
             <h4>Academics...<br>
             Health...<br>
             Arts...<br>
             Athletics...<br>
             Community...<br>
             FUN!<br><br>
             Inspiring and <br>
             preparing youth<br>
             for success.
             </h4>
             <p> </p>
             <p> </p>
             <p> </p>
             <p> </p>
             <p> </p>
             <p> </p>
             <p><strong>Sign up for our</strong></p>
             <p><strong>E-newsletter!</strong></p>
             <p> </p>
             <form id="EmailSubmit" method="post" action="enewsletter.php">
               <label>
                    <input name="emailsubmit" type="text" id="emailsubmit" value="Email Address" />
                     </label>
                  <input type="submit" name="Submit" id="Submit" value="Submit" />
                  <input name="recipient" type="hidden" id="recipient" value="0" />
            </form>
             <p> </p>
       </div>
       <div id="content">
         <div id="mainphoto"><img src="indexphoto.jpg" width="656" height="386" alt="main" /></div>
       </div>
    </div>
    </body>
    </html>

    Maybe I already removed the "h1", but I still see link styles and the
    background color.
    I need to know what point to which point is safe to delete without messing
    up the coding.
    Thanks again,
    - Theresa

  • How to set breakpointer at any source code?

    i want to set break point any one line of source code.
    i saw the object file of this source code is loaded already
    even i use command to load it again by
    loadobjects xxx.so
    but when i set breakpoint at line of source code
    it said. couldnot find object files.
    but it is under LD_LIBRARY_PATH . and i load share libaray which contains
    this object file already.
    what should i do?

    Well, these 2 are different. If you want dbx to find shared libraries, executables ended with .so, you use LD_LIBRARY_PATH which is by the way the run-time linker would use. But for dbx to find object files in an executable, which are located in other directories, you need to use the dbx command "pathmap". Please type "help pathmap" in dbx for more details.
    - Rose

  • How do I delete the html source code

    I found the html source code, selected it but am not able to delete it so I can put in my own code. I am using firefox

    Could you describe in more detail what file it is. Is this a page on a website that you are editing, or a page on your computer you use as your home page, or some other page?

Maybe you are looking for