Get the name of the report file in oracle running Report Builder

Dear all,

Is it possible to get the name of the report file in oracle running Report Builder?

for example, "HR_REP012. REP.

I need to this very important...

Kind regards
Yousef

Published by: Yousef_m on June 2, 2012 05:18

Hello

Have you tried the builtin SRW. Built-in GET_REPORT_NAME?

Example of

function boolean return AfterPForm is
my_variable varchar2 (80);
BEGIN
SRW. GET_REPORT_NAME ($my_var);
SRW. MESSAGE (0,' report Filename = ' | my_variable);
RETURN (TRUE);
END;

Concerning

Tags: Oracle Development

Similar Questions

  • When I try to open the games on my Windows 7 system, I get the executable file to the games error message has stopped working.

    When I try to open the games on my Windows 7 system, I get the executable file to the games error message has stopped working. I tried several times to load the games following the indications for help but the games is not accessible. My computer is a remanufactured unit that was on the lease are there steps I can take to solve problems?  Thank you

    Original title: frustrated in New York

    The problem seems to be the igdumd64.dll:

    Fault Module name: igdumd64.dll
    Fault Module Version: 8.15.10.1749
    Timestamp of Module error: 4a5bdf54

    The igdumd64.dll is a component of the Intel graphics driver and seems to be an older version then try to update the graphic driver Intel.

    You could try the manufacturer of the computer for an updated driver, or use the following utility for intel to check a generic version:

    http://www.Intel.com/p/en_US/support/detect

  • Get the report Monthwise

    Hi all,

    I need to get the report equipmentwise monthwise. Our application is used by the JCB rental company. If they want to profit each JCB monthwise.

    We are capturing the date range of which JCB is engaged. Here is my table structure. How to use the function of pivot or case to get this result

    ph_timesheet_details / / DESC

    Name of Type Null

    ------------------- -------- -------------

    ID NOT NULL NUMBER

    TSHDR_ID NOT NULL NUMBER

    NUMBER OF LINE_NO

    LINE_TYPE NOT NULL VARCHAR2 (1)

    NUMBER of EQUIP_ID - it is the need for material to use for the collection

    NUMBER OF ACC_ID

    NUMBER OF OPERATOR_ID

    From_date DATE - JCB engaged since

    To_date DATE - JCB engaed in

    NUMBER OF NO_OF_DAYS

    NUMBER OF CONT_HOURS

    ACT_HOURS NUMBER - these hours must be sum for every month equipmentwise

    RATE_PER_HOUR NUMBER (14.3)

    LINE_VALUE NUMBER (14.3)

    NUMBER OF OT_HOURS

    REMARKS VARCHAR2 (255)

    RECORD_CREATED_USER VARCHAR2 (50)

    DATE OF RECORD_CREATED_DATE

    LAST_MOD_USER VARCHAR2 (50)

    DATE OF LAST_MOD_DATE

    I need output like this

    jan Feb mar Apr... equipment dec

    ********************************************************************

    equip1 200 h...         100 h

    .

    .

    .

    equip the xx 500 h...                        300hrs

    Hello

    This with the assumption that you treat the lines where min (from_date) and max (to_date) are in the same year, and I don't consider fractions of day and all the days are considered as (holidays, weekends, etc.):

    with rng_dates as
    (
       select min(trunc(from_date)) min_dt
            , max(trunc(to_Date))   max_dt
         from ph_timesheet_details
        where from_date >= to_date('01.01.2015', 'dd.mm.yyyy')
          and to_date < to_date('01.01.2016', 'dd.mm.yyyy')
    )
    , got_dt_list as
    (
       select min_dt + level -1 dt
         from rng_dates
      connect by min_dt + level -1 <= max_dt
    )
    select td.equip_id
         , sum( case
                    when extract(month from dl.dt) = 1
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) jan
         , sum( case
                    when extract(month from dl.dt) = 2
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) feb
         , sum( case
                    when extract(month from dl.dt) = 3
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) mar
         , sum( case
                    when extract(month from dl.dt) = 4
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) apr
         , sum( case
                    when extract(month from dl.dt) = 5
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) may
         , sum( case
                    when extract(month from dl.dt) = 6
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) jun
         , sum( case
                    when extract(month from dl.dt) = 7
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) jul
         , sum( case
                    when extract(month from dl.dt) = 8
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) aug
         , sum( case
                    when extract(month from dl.dt) = 9
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) sep
         , sum( case
                    when extract(month from dl.dt) = 10
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) oct
         , sum( case
                    when extract(month from dl.dt) = 11
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) nov
         , sum( case
                    when extract(month from dl.dt) = 11
                    then td.act_hours / (trunc(to_date) -  trunc(from_date) + 1)
                end
              ) dec
      from ph_timesheet_details td
           join got_dt_list dl
             on dl.dt >= trunc(from_date)
            and dl.dt <= trunc(to_date)
    where from_date >= to_date('01.01.2015', 'dd.mm.yyyy')
       and to_date < to_date('01.01.2016', 'dd.mm.yyyy')
    group by td.equip_id;
    
      EQUIP_ID        JAN        FEB        MAR        APR        MAY        JUN        JUL        AUG        SEP        OCT        NOV        DEC
    ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------
            14                               80
            81                              230         80
           119                              220         90
            75                              240          8
            74                                          20
            93                              136
            92                              176         72                                                                                      
    
    7 rows selected.
    

    Kind regards.

    Alberto

  • Need to get the report of last hour in ot txt CSV cluster

    Hi all

    Thanks in advance,

    I work for a script where I need to get the information from vms that was revived by HA during the restart of the host.

    or if we can get the report of last hour in csv or txt file cluster we can extract and find out how many virtual machines has been migirated to another host for host restarts.

    Please advice.

    SIV

    Try the following, this will give you all the VMS who have been restarted and the time when it happened.

    Connect-VIServer -Server yourserver
    
    $start = (Get-Date).AddDays(-5)
    Get-VIEvent -MaxSamples 1000000 -Start $start -Type warning | Where {$_.FullFormattedMessage -Match "vSphere HA restarted"} | Select ObjectName, CreatedTime, FullFormattedMessage
    
    Disconnect-VIServer -Confirm:$false
    
  • I nned to know the procedure I use to get can Mac 2008 Desk top that will not start. I don't know how to connect two computers, my portable Mac Air 2013 on my desk, now I need to know how get the workstation files in order to appear on my mac air so I can

    Does anyone know how after I connect to my office 2008 Mac (which will not start.) to my computer laptop (2013 Mac Air). What are the steps that I need to know to get the Desktop files is displayed on my mac air so I can copy files to your laptop, especially my Itunes folder.

    Thanks Jerri

    If you can't get the iMac began and ongoing implementation, you will not be able to use the target disk Mode:

    https://support.Apple.com/en-us/HT201462

    Then the option is to take the iMac HARD drive, install it in an enclosed, and connect the HARD drive to the MBA via the USB port.  If the HARD drive is recognized, you can copy the data out of it.

    Ciao.

  • I get the error ' file \i386\ntkrnlmp.exe could not be loaded error code 32768 is Setup can not continue "when you try to reload windows xp on a computer problem. What should I do?

    I'm trying to "sweep" and reinstall windows XP pro on a computer that has had problems. I get the error ' file \i386\ntkrnlmp.exe could not be loaded error code 32768 is Setup cannot continue to press a button to exit "as soon as I got the boot from the cd (and actually after a long break). Help, please!

    Hello

     
    Try the steps listed in the link below and check if it helps:

    "Ntkrnlmp.exe could not be loaded. The error Code is 7 "Error Message occurs during installation of Windows: http://support.microsoft.com/kb/318729

  • I come from components to build a new computer. Try to use the Windows XP Pro computer old version but after BIOS and XP installation I get the error "file not found \i386\ntkrnlmp.exe. The error code is 7. "What should I do?

    New components is a new computer.
    Inserted the XP Pro CD in the drive but get the error "file not found \i386\ntkrnlmp.exe. The error code is 7. »
    Rebooted comp 5 times with the same problem after BIOS.

    Hi Milkshake83,

    Thanks for posting. Proceed as follows for this error.

    Method 1: Restore the default settings of the BIOS WARNING: this procedure may involve changing the semiconductor (CMOS) settings of the computer's complementary metal oxide and by changing the BIOS of the computer. Incorrect changes to the BIOS of your computer can result in serious problems. Change the CMOS settings of the computer at your own risk.

    To resolve this issue, restore the BIOS of the computer to its default settings. For more information about the correct settings of the BIOS of the computer and how to check and change these settings, see the computer documentation or contact the manufacturer of the computer.

    In addition, to confirm that the computer's BIOS is current, contact the computer manufacturer to inquire about the last update of the BIOS available for the computer.

    Method 2: Remove the faulty RAM to resolve this issue, remove the memory modules installed in the computer.

    NOTE: you must leave enough RAM for the computer to start and run Windows.

    For more information on the amount of RAM that is required to run Windows, click on the number below to view the article in the Microsoft Knowledge Base:

    304297 configuration (http://support.microsoft.com/kb/304297/) System requirements for Microsoft Windows 2000 operating systems

    If the error message described in the "Symptoms" section of this article appears again after removing the memory module, remove a different memory module. This procedure may ask you to restart your computer several times to identify the specific memory module that is not working properly.

    For more information about how to add and remove RAM to the computer, contact the manufacturer of your computer or see the documentation that came with your computer.

    http://support.Microsoft.com/kb/318729

    I hope this helps!
    Shawn - Support Engineer - MCP, MCDST
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • How can I get the jpg files to show after recovery?

    So, I accidentally deleted permanently about 4 000 pictures on my computer today. I found a recovery program that could get back them. Unfortunately, I couldn't have my phone to allow my office transfer images here (for an external hard drive). I advanced and retrieved the files on the hard drive even I had deleted the same if there was a possibility of problems. I discovered that one of the problems is a jpeg images wouldn't show.

    My question is, is it possible to get the jpg files to show? Or am I just more or no chance?

    Thanks for any help.

    It seems that some of the recovered image files are corrupt and are therefore not visible. Microsoft® Security MVP, 2004-2010

  • When you import a song from itunes for windows moviemaker I get the message (file cannot be imported because the game to version Recentepour the file codec is not installed)

    original title: codec

    When you import a song from itunes for windows moviemaker I get the message (file cannot be imported because the game to version Recentepour the file codec is not installed) how can I fix it?

    Install the codec.  Really.

    Something like GSpot to understand that one.

  • codec error, I get the message (file cannot be imported because the codec required not installed) how to install appropriate codec?

    original title: codec

    I have windows vista Home premium.  I get the message (file cannot be imported because the codec required not installed) how do we install the right codec

    ... How to install appropriate codec

    There is an excellent set of codecs available here.
  • I get the same files repeat KB and how to stop it?

    I get the same files repeat KB and how to stop it?

    The KB record number are KB2478663 and KB2518870.

    Mike

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-windows_update/how-to-stop-the-KB-file-from-keeping-repeating-to/21fb21b2-9a13-4261-9c1a-e7ef90a9e6a0

  • By using the Microsoft XPS document Writer print driver, I no longer get the XPS files indexed.

    By using the Microsoft XPS document Writer print driver, I no longer get the XPS files indexed.
    Open the file "print" with the XPS Viewer XPS and while trying to search inside, I get this message:

    The XPS Viewer has finished searching for the document. The search item was not found.
    There is no searchable text in this document.

    I have 'print' some of my pages on the Bank, internet bank that every now and then I get a searchable history on disk, and opening a XPS I created in April (2011), the text is perfectly accessible, and I can select text with the mouse. However, the next printed file may, the entire document more like a picture. Nothing can be selected, and the message shown above, appears when you try to search for in the document.

    What could be the error? Can I change something to get back to normal "text printing" or is this a deliberate, change that has been installed from Windows update or even?

    Hello

    1. what changes have been made to your machine before the problem?

    I suggest that you follow the steps below and check if the problem persists.

    Step 1:

    Refer to this document to ensure that the settings are correct for Microsoft XPS Document Writer.

    See also: print in Microsoft XPS Document Writer

    Step 2:

    Perform the System Restore to the point that your XPS Document Writer worked very well.

  • How to get the mov files to play on ms media player

    Hello how is what we all mov files by our cameras when we're doing videos, that I can up load on youtube very well, but my Media Player will not play. Please don't tell me about codecs unless you include the link to get the mov files. Thank you

    Right-click on the mov file and point to open with, click Windows movie maker,

    Rotation is on the top / center and Save is on the top / right.

  • Where can I get the iso file of windows 8?

    I bought a cd of Windows 8, I have the product key, but I don't have the cd anymore. I tried to use the installer of windows 8 on the website, but it keeps saying that he could not tell if my pc is ready to install windows 8. where can I get the iso file?

    Who does not work even when the online version and commercial version are somewhat different and your retail key are except in the download web site. You will need to either borrow a DVD of 8 Windows or contact Microsoft support and get a replacement.  Hope this helps and if you need another post to help and we will be happy to help you.

    The above opinion is mine and mine nothing and does not necessarily reflect that of Microsoft, it's employees, or any other Member of this forum.

    "When we try to take anything by itself, we find it hitched to everything else in the universe." -John Muir

  • I need a file to an exact width and height and it must be in png format, because it allows to translucency. My graphics are only the top of the page and when I export only the graph is not exported the entire file. How can I get the entire file to ex

    I need a file to an exact width and height and it must be in png format, because it allows to translucency. My graphics are only the top of the page and when I export only the graph is not exported the entire file. How can I get the entire file of export including blank parts?

    in the export dialog box, you have chcked 'use of work plans? ''

Maybe you are looking for

  • You can get Amazon Prime on the Apple TV

    You can get Amazon Prime on the Apple TV?

  • Prompt the user for a parallel process

    Hello I am developing a software where I constantly read data from equipment. There is a command that requires a password to enter in this software. I tried to use the query the user entry to receive the password for the user. However when the guest

  • Cannot access the network using WiFi hotspot

    I have a lenovo ideapad z570 running windows 7 ultimate, processor intel pentium cpu B950 @2.10 GHZ 2 GB ram and 64-bit operating system. My problem is that when I create a wifi hotspot via intel my wifi technology, I so can not access the network on

  • Application of unwanted BBM blackBerry Smartphones

    I have received a request BBM from someone I don't know. I refused it and now I want to remove the application from the list of queries. I tried selecting 'ignore' and then by removing from the list of applications to ignore. I tried to delete my Inb

  • Problem: Screen resolution & Lan adapt.

    Problem 1: Screen Resolution. First of all start, Windows 7 Home Premium 64-bit. Second boot, Windows 7 Home Premium 32-bit. Then I didn't work as it used to be. Now using, Windows 7 Ultimate 32-bit. After this install and reinstall, I was confused a