How can i get report filename in a fomula column

Hi,
We are using Oracle Reports 6i.
i want to get the filename of current report in a formula column.
how can we take the current report filename into a variable in a formula column..
If it is possible please provide your valuable inputs on how to achieve this or please provide any helpful pointers
Please get back to me if my requirement is not clear
Thanks,
anish

Its not possible to get the report file name in a formula column

Similar Messages

  • How can i  get report no of user login in system

    Hello
    how can i  get report no of user login in system
    means user license login per day in system
    what is strategy of SAP against licenses audit
    how can i manage my license users ??????????
    Jayesh

    Hi Jayesh
    You can use the Audit Transactions. Set the Audit Profile with Tx SM19 and then report with Tx SM20.
    You can also use the programs CCUINIT and CCUEVAL. Report CCUINIT initialises the measurement of current users and report CCUEVAL will provide the report and the logs for you to download.
    Also regarding the licensing of users,
    Refer to http://www.sap-img.com/sap-overview/help-to-understand-sap-licenses.htm
    and https://websmp104.sap-ag.de/licenseauditing
    You will get everything you need
    Rohit

  • How can i get report between two dates?

    Hi
    how can i get report between two dates?
    for example i want get reports between 20/4/2002 & 27/4/2002.
    my table has date column and i can get first date( exam : .... where date:=a and/or ....i don't know this part)
    thanks alot.
    Regards
    The Oracle Reports Team
    http://otn.oracle.com/

    where exam_date between :from_date and :to_date
    from_date and to_date are user_parameter

  • How can I get (using API) the current sort column for some report

    hello,
    How can I get (using API) the current sort column for some report ? For example something like "fsp_sort_1_desc" - if the user sorts by the first column ?
    I cannot use the :REQUEST for this, sometimes the current sort column is not in the :REQUEST, but it is still active.
    I thought it was posssible by using
    APEX_UTIL.GET_PREFERENCE (
    p_preference IN VARCHAR2 DEFAULT NULL,
    p_user IN VARCHAR2 DEFAULT V('USER'))
    RETURN VARCHAR2;
    function, but I don't really know which preference should I pass as parameter.
    looking in WWV_FLOW_PREFERENCES$, i saw preferences_names like FSP4000_P527_R6281510839654570_SORT , I'm not sure how this name is formed.
    I'm using generic columns for that complex report (which has a flexible number of columns shown), and the idea is that sometimes I have to overwrite that sort column, in case the user chose the version of the report with fewer columns than the previous one.
    Can I get (using API) a list of all preferences set for some user ?
    Thank you,

    seems that it is FSP<app_number>P<pagenumber>R<regionnumber>_SORT.
    is there anyplace where I can get these kind of things documented ?
    Thank you.

  • How can I get a filename without the file extension?

    I using a JFileChooser to select and read a file. Now I want to get the filename without the file extension
    JFileChooser j = new JFileChooser;
    String file = j.getSelectedFile.getName();
    At the moment I get this result "file.dat". I need only the filename.....
    Thank you
    Thomas

    It's quite that.
    Here is the code to do that (and the method to get only the extension):
         public String getFileName(String text) {
              int ind = text.lastIndexOf(".");
              if(0<ind && ind<(text.length()-1)) {
                   return text.substring(0, ind);
              return(null);
         public String getFileExtension(String text) {
              int ind = text.lastIndexOf(".");
              if(0<ind && ind<(text.length()-1)) {
                   return text.substring(ind+1).toLowerCase();
              return(null);
         }(I used 0<ind instead of ind>0 because with the code formatting there is a bug with > )
    I hope this helps,
    Denis

  • How can I get the table name of my column?

    I'm using the JDK 1.3 trying to get a table name of a column from a result set. Regardless of what driver I'm using (ODBC Bridge/Oracle) I always get a null returned. Does this method work?
    If not, if I'm doing an SQL query that uses more than 1 table and each table has a return of the same column name, how do I distinguish which table the column is from. Thanks

    You can use ResultSetMetaData interface and method
    String getTableName(int column)
    This should return you the table name.
    To get ResultSetMetaData object, you can use
    ResultSetMetaData getMetaData()
    method of ResultSet interface.
    HTH

  • How can I get a filename during or after saving in CS4/5?

    I'm trying to get the new filename of a file the user is saving.  The way I'm trying to do it right now is to wait until after the file is saved, and then just check the current filename.
    In CS5, I found kAIDocumentWritePostprocessNotifier to be notified after a save,.  But CS4 only has kAIDocumentWritePreprocessNotifier.  I thought of using a timer, but I was wary that my plugin might be shut down before I can take an action if the user is shutting down Illustrator and saving.  Is there some way to emulate this functionality?  Is there a way to check when the file has been saved?  That'd at least let the timer length go under a second safely, by checking repeatedly.
    Or, better yet, is there just a way to get the new filename directly?
    Edit: It appears Postprocess is still too early in CS5.  So, any answer will be helpful for both CS4 and CS5.

    Hello,
    FTP From PL/SQL, look at this,
    http://www.oracle-base.com/articles/misc/FTPFromPLSQL.php
    something like this,
    DECLARE
      l_conn  UTL_TCP.connection;
      l_list  ftp.t_string_table;
    BEGIN
      l_conn := ftp.login('ftp.company.com', '21', 'ftpuser', 'ftppassword');
      ftp.list(p_conn   => l_conn,
               p_dir   => '/u01/app/oracle',
               p_list  => l_list);
      ftp.logout(l_conn);
      utl_tcp.close_all_connections;
      IF l_list.COUNT > 0 THEN
        FOR i IN l_list.first .. l_list.last LOOP
          DBMS_OUTPUT.put_line(i || ': ' || l_list(i));
        END LOOP;
      END IF;
    END;
    / http://www.oracle-base.com/dba/miscellaneous/ftp.pks
    http://www.oracle-base.com/dba/miscellaneous/ftp.pkb
    Hope this helps,
    Christian Balz

  • How can i get a filename?

    I have some files on linux, I need to get their names and checks if the word that I search exists in the filename or not? if it does, I will copy the file as a different name. If it doesn't i will raise an error.
    I want to do that using pl/sql, is there anyone who can help me?

    Hello,
    FTP From PL/SQL, look at this,
    http://www.oracle-base.com/articles/misc/FTPFromPLSQL.php
    something like this,
    DECLARE
      l_conn  UTL_TCP.connection;
      l_list  ftp.t_string_table;
    BEGIN
      l_conn := ftp.login('ftp.company.com', '21', 'ftpuser', 'ftppassword');
      ftp.list(p_conn   => l_conn,
               p_dir   => '/u01/app/oracle',
               p_list  => l_list);
      ftp.logout(l_conn);
      utl_tcp.close_all_connections;
      IF l_list.COUNT > 0 THEN
        FOR i IN l_list.first .. l_list.last LOOP
          DBMS_OUTPUT.put_line(i || ': ' || l_list(i));
        END LOOP;
      END IF;
    END;
    / http://www.oracle-base.com/dba/miscellaneous/ftp.pks
    http://www.oracle-base.com/dba/miscellaneous/ftp.pkb
    Hope this helps,
    Christian Balz

  • How can I get report of only non compliant clients via Fileshare or to admin mailbox each day?

    I need to figure out how to get a daily report of non compliant clients in SCCM2012 to admin email or fileshare.
    Is there any built-in report that returns only non compliant clients I could use to accomplish this,
    and create alert subscription or exchange server connector to receive the message / file once a day ?
    Do I need to use SQL Server Reporting Services for this ? New to SCCM and getting confused with all those reports,
    sorry ;-)

    Yes you need SSRS for this.
    This will help.
    http://be.enhansoft.com/post/2013/08/27/How-to-Set-up-a-Windows-File-Share-Subscription.aspx
    http://be.enhansoft.com/post/2013/08/14/How-to-Set-up-an-Email-Subscription-in-SSRS.aspx
    Non compliant for what?
    http://www.enhansoft.com/

  • I am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier

    i am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier photo please help me to recover my photos

    Well I'll guess you're using iPhoto 11:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • How can i get dyanamic image in report template

    How can i get image dynamically in report template

    the report forum is the best place for such questions
    Reports

  • How can i get data from standard report 'PP_ORDER_PROGRESS'?

    When I have a sales order,i want get Production Orders & Plan Order related to this SO.
    The same as result of standard report 'PP_ORDER_PROGRESS'~~
    How can I get the same data like report 'PP_ORDER_PROGRESS'~~
    TKS very very much~~

    Lorry,
    I hope you are looking for an option similar to CO46 transaction.
    You can use transaction COOIS, activate "Production orders" and "Planned orders" check box and in header level selection input your Sales order number to get a report you wanted.
    Regards,
    Prasobh

  • How can I get Launching report directory in report trigger??

    how can I get Launching report directory in report trigger??
    pls help me :'<
    I can run this function in forms.
    "how can I get Launching report directory in report trigger??"
    does reports have same function???

    Click the little down arrow/+ symbol  next the + - in the folders bar.

  • How can I get the second group and report totals in Matrix report?

    Hi,
    I have created a matrix report with 2 break Groups.
    Iam getting columns totals for the first group, but not for the second group and the report totals.
    How can I get the second group and report totals for each month?
    Thanks.
    Ram.

    Hi Ram,
    If you want a total at any group-level, go to the particular group in the data model, insert a summary column in the group, and select
    Reset At > appropriate Group Name
    For report level summaries, you must create the summary column outside of all groups.
    Navneet.

  • How can I get CDP neighbor information from access point reports in Cisco Prime 2.0

    How can I get CDP neighbor information from access point reports in Cisco Prime 2.0?  I have looked through all the reports and I cannot find a report that gives me the CDP neighbor information of an access point.  I thought that information was in there, however I cannot seem to find it.
    Thanks in advance!

    Hi
    You can get this from an inventory report in PI (Select Report Type AP). Here is an example of PI 2.1 works for me. Once you export this into excel you can sort based on controllers & filter the single controller connected AP you want.
    Regards
    Rasika
    **** Pls rate all useful responses ****

Maybe you are looking for

  • How to check the sales order that has been PGI from a range of dates.

    Hi SAP Gurus, I have a query on how can I check the sales order that has been PGI from a range of dates in SAP? Thanks, Madelyn

  • JDeveloper 3.1 JSP Engine Run-Time error - "NLSFormat undefined"

    hi, I have a JSP/Bean page running through JDeveloper 3.1 It has the "EditForm" bean with (among other fields) a date field in it. <jsp:useBean class="....EditForm" id = "f1"> <% f1.initialize(.....); f1.setFormAction(.....); f1.addHiddenField("execu

  • App Builder  - Create App from InDesign - "Sign In Failed - Please Try Again"

    I'm launching the App Builder from the Folio Builder Panel in InDesign (CC), by selecting my folio and choosing "Create App".  When App Builder launches, it immediately errors, saying "Sign in failed, pelase try again".  I can select "Log Out" in the

  • Marketing Plan Element Authorization

    Dear All, We are working on SAP CRM 2007 and have a business requirement. We want to make a role that can only approve or release marketing projects. We do NOT want this role to be able to create anything like marketing plan, marketing plan element o

  • Selected item flashes

    Infrequently, but consistent throughout a session when it does happen, when I select an item in a Finder window, the highlighted selection flashes rapidly. Sometimes moving the cursor off the window does stop it but starts again whenever the cursor i