Current Report!!

Hi all,
In Forms we have a way to know the form module name using :SYSTEM.CURRENT_FORM, is there any way to know the current report name in REPORTS??? It is very much required to avoid the hard coding while showing the report id in the header.
Thanks in anticipation
RK Raju

We had a similar problem that we wanted the URLs in the report pointing to itself.
The easiest we found is to create a report_name parameter in the report and used it wherever you need. (at least you only need to change it once for each report).

Similar Messages

  • Report Issue - A subquery filter may not reference the current report

    Hi,
    I a, trying to create a drill down report - I am getting below error when I drill down from summary report to detail -
    A subquery filter may not reference the current report (or contain a circular reference to any report).
    Error Details
    Error Codes: S6C66RYK:WIF3IYGO
    Recursion limit exceeded in Xml Expression Visitor
    The issue is I have a budget report which will drill down to display amount by each period -
    Jan-10 Feb-10 Mar-10
    1223 123 10
    Now I am trying to display detail GL transactions by clicking the amount field.
    This means summary report should pass period along with amount to display detail GL transactions.
    Please help me to resolve this issue.
    Thanks,
    Poojak

    Explain exactly how you create your 2 reports.
    The second one must have "is prompted" filters if you want it to use the values of the first one.

  • Column link - call java script & assign current report column value to item

    Hi,
    How to call java script and assing current report column value to item?
    I have a button column in the report to 'delete' the selected row.
    I want to first show dialog box with message 'Are you sure?'. If yes, process to delete
    will be executed, else no action.
    In order to fire JS, I used Column Link ->Target=URL.
    Problem: The alert is showing but I don't know how to pass selected row's primary
    key value to process (to delete selected row).
    I have a item which can be used to store selected primary key value but don't know how to assign the value
    when button pressed.
    Thanks in advance
    Dip

    Ok. The issue has been resolved by following way.
    PAGE PROCESS: delete_request
    begin
    delete xyz
    where id = :P8_id;
    commit;
    end;BUTTON URL:
    javascript: DelRec(null,'CREATE', 'f?p=&APP_ID.:8:&SESSION.:delete_request:NO::P8_id:#id#');Java Script:
    <script language="JavaScript1.1" type="text/javascript">
    function DelRec(msg, req, url){
    var confDel = msg;
    if(confDel ==null){
    confDel= confirm("Are you sure?");
    }else{
    confDel= confirm(msg);}
    if (confDel== true){
    redirect(url);           }
    </script>

  • Check current report user security inside CLR code

    Hi,
    I am writing a CLR stored procedure which will be invoked via a SSRS report.This SP will call a web service to fetch secure data. As this data is critical, we are implementing many security measures, one of the measure is to check inside CLR assembly,whether
    current report user is a part of an AD group (only this group will have access to read secure data) or not before I call web service .
    I am not sure if there is a way to check individual users inside CLR code . Any suggestion /input is appreciated.
    Thanks!
    Gaur

    Hi Gaur,
    Since this issue is related to Common Language Runtime (CLR), I will move this thread to .NET Framework forum. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • PLEASE HELP!  members deleted after refreshing, current report and report layout

    Hi ,
    First of all , before explain my issue, I read the note about March Microsoft update, and my symptoms aren't exactly similar but almost the same.
    And it appeared last week, so one month after the ms update.
    So, I opened my report, and I see that current report and report layout are greyed out,
    I try to refresh the report and some members in rows axis are deleted.
    I'm only  one to have this problem in my team.
    Is there anybody able to solve my issue please ?
    Thanks in advance
    Jonas
    P.S  sorry for my english.

    Hi Marco,
    First of all, sorry to reply long a time after you answer but I was so very busy with another things.
    In fact, It's was a mistake, It's sure that it's not about an update. My issue comes only when I save my report in a different server, When I'm in the  source server,  I select the target server with  "Select Another Connection" process And I save my report in the target server.
    After that,  lot of members are dissapeared in my row axis.
    I don't know why.

  • Error when trying to refresh the current report-Invalid prompt def.WIS00005

    I am trying to create a Webi report using a Universe created with Universe Design Tool 4.0. I have created a new universe with a secured relational connection from a cube in our BBD system. The Universe can be created and exported in UDT (and when I test the connection, I get a message saying the server is responding). I can see values for the BEx query in BEx analyzer.
    When I open Webi and connect to a universe, I can see the universe, but when I put a dimension to our results tab and go to "run query", I first get the error "Error when trying to refresh the current report". If I close this error I get the error "Invalid Prompt Definiton - WIS00005". Has anybody else had this issue and if so, where can I begin to troubleshoot the error?

    Hi,
    Please note that if the object parses at Universe level it may still fail at runtime especially for the prompts.
    If you still experience the error after applying Patch 11 please analyze the characteristics of the prompt, get some trace logs with High level of detail, they surely  will help.
    Thanks!
    Best regards,
    Simone

  • Query current report only and not since advertised but removing the since advertised give me multiple row

    How can i query the current report only?
    Note: The ScheduleToken is set to “Since Advertised”.
    SQL Query:
    Select
    OfferName Name, 
    Recieved, 
    Failures, 
    ProgramsStarted 'Programs Started',
    ProgramsFailure 'Program Errors', 
    ProgramsSuccess 'Program Success', 
    ProgramsFailureMIF 'Program Errors', 
    ProgramsSuccessMIF 'Program Success (MIF)', 
    PkgName Package, 
    PkgProgram Program, 
    CollectionName 'Target Collection', 
    PresentTime 'Available After',
    ExpirationTime 'Expires After',
    OfferID 'Advertisement ID'
    From vOfferStatusSummarizerRoot
    Where ScheduleToken = '0001128000080008'
    Order by OfferName

    Current report as in the latest advert?
    if yes, this should work
    Select top 1
    OfferID 'Advertisement ID',
    OfferName Name, 
    Recieved, 
    Failures, 
    ProgramsStarted 'Programs Started',
    ProgramsFailure 'Program Errors', 
    ProgramsSuccess 'Program Success', 
    ProgramsFailureMIF 'Program Errors', 
    ProgramsSuccessMIF 'Program Success (MIF)', 
    PkgName Package, 
    PkgProgram Program, 
    CollectionName 'Target Collection', 
    PresentTime 'Available After',
    ExpirationTime 'Expires After'
    From vOfferStatusSummarizerRoot
    Where ScheduleToken = '0001128000080008'
    Order by Offerid
    Blog: http://theinfraguys.com
    Follow me at Facebook
    The Infra Guys Facebook Page
    Please remember to click Mark as Answer on the answer if it helps you in anyway

  • Error when trying to refresh the current report

    I am having this error message "Error when trying to refresh the current report on my reports appear before they are executed. It has been a very random so I am unable to pinpoint what is causing it. I am currently working with BO 4.1 and it is connected to BW, whereby the authentication is SSO.
    Either way the reports are able to run with problems but I dislike having to insist with the refresh button or having to close and reopen the report for it to run as it should.
    I did some investigations but did not find anything conclusive because there is no problems with authorizations, there are no merged dimensions nor grouping variables used in the report and it is based on just one query.
    Does anyone know why this error message appears? What its cause is?

    Hi
    While creating the report if we select the authentication mode as :Use specified user name and password or Use Business Objects credential mapping, will get the same error.
    So if possible can you please test change Connection Type Authentication Mode to Single Sign on.
    Find the below link.
    http://scn.sap.com/community/semantic-layer/blog/2014/06/06/how-to-change-connection-type-authentication-mode-to-sso-1

  • No current report server error

    Using Report Builder 3.0,  I get no current report server error and when I run the report I get no data. Does anyone know how I can remedy this problem?
    sukai

    Hi sukai,
    Based on your description, it seems that you have not connect report server when you run a report in Report Builder. In this scenario, I suggest that you should click the Connect option with “No current report server” in the lower-left corner.
    If you have access to the machine where SSRS is installed, you can open up the Reporting Services Configuration Manager. Then you can see the Report Server Web Service URLs in the Web Service URL tab. Another option is directly type the following URL in
    the popup window:
    http://<machine name>/ReportServer_<SQL Server instance name>
    If you have any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Assign receiver report to current report

    Hi
    I am running report S_ALR_87013635 in that report when I double click on Cost element it is giving me message that "Assign a receiver report to the report".
    Message no. GR785
    Diagnosis
    You tried to execute a report callup at a detail line.  However, no receiver reports have been assigned to the current report.
    System Response
    A report callup could not be executed.
    Procedure
    Assign at least one receiver report to the current report.  If you have authorization, the corresponding function can be found under the menu option 'Settings->Report/Report Interface'.
    I am not able to see this Report / Report Interface in the report menu under Settings. I am currently working on 4.7 version.
    How to assign report to the current report if anybody has steps would be very helpful.
    Thanks in advance.
    Best regards,
    Roberto

    The report/report interface is assigned at the report group level.  The report group for transaction S_ALR_87013635 is 1SOT.  Follow this menu path:  Information System > Ad Hoc Reports > Report Writer > Report Group > Change.  Enter 1SOT in the report group field and enter.  You will get an information message stating "You are changing an object in the SAP naming range".  Enter through this message.  You will get the following information message "You are changing a report group of user SAP".  Enter through this message also.  You will then be taken to the Change Report Group:  Header screen.  The report/report interface can be found in the lower left corner of the screen.  Right now it should say that no reports have been assigned to this report group.  To assign a report, click the Configure button.  Select the insert row icon.  A pop up box will appear and where you can assign another report group as the report/report interface.  If you would rather assign a transaction such as KSB1 (Cost Center Actual Line Items) to this report, select the Other Report Type button.  Another pop up box will appear with all the available options for the report/report interface.
    I hope this helps.  If not, let me know.
    Sue

  • Print Current Report All

    Hi
    We are using Web Intelligence Rich Client
    Version 14.0.2
    BUild 481
    For single page reports my report prints exactly as expected.
    However for reports with mulitple pages when I select "Print > Current Report > All, the first page of the report is printed and the remainder of the pages are printed as blank pages.
    Has anyone had a similar problem or am I missing something.
    Thanks
    Ian

    Hi Ian,
    this sounds decidedly buggy ..
    I did a Note search and 1624266 sounds similar. However the bug ADAPT01595242 which was for the BI 4.0 codeline got closed/rejected without a proper investigation (IMO) I will ask in ternally for follow-up
    Firstly, i would encourage you to try again, on the latest Patch2.8, (FYI - 2.9 comes out next week) and test again.
    IF you still get the issue after that, please contact primary support, log a message, and attach your problem document to the OSS.
    BTW - that note hints to a workaround - use the DHTML (web) viewer as your WebIntelligence preferences, instead of rich internet application (java)
    How does that look now?
    Regards,
    H

  • Retrieve Current Report File Name

    i am using Forms and Reports 6i.
    in Forms, i am using the following statement to get the current form name -
    GET_FORM_PROPERTY (:system.current_form, FILE_NAME)
    i didn't find a similar statement in report to get the report file name,
    plz help...

    Hello,
    You will have more chance to get an answer by sending this question in the Reports forum.
    Francois

  • Sub query filter may not reference current Report

    Hi,
    I've 2 reports, i'm calling one from the another report by navigate methode(Column Propertives--> Value-->Navigate). 2nd report is having narrative veiw in title of the report .
    Getting Error:
    Sub query filter may not reference current Report

    hi,
    have u seen this ?
    http://siebel.ittoolbox.com/groups/technical-functional/siebel-analytics-l/issue-with-drill-down-1710714
    thanks,
    Saichand.v

  • .html report stored in a file, the current report?

    I would like to make an .html report previously stored in a file, the cuurent report referred to by the report reference number. Any help would be appreciated.

    Stan,
    To do this you need to take advantage of the "Template" terminal on the "New Report" VI. If you wire the path to your existing html file to that terminal the report will now point to that file. You can then make the additions to the report you would like. When you are all done you can then save it to a new file path, or overwrite the existing html file.
    Here is a KnowledgeBase and example that discusses how to do this with a word document, but the idea is the same. Opening Existing Word/Excel Files Using the LabVIEW Office Report Generation Toolkit
    I also attached a simple example. I hope these help.
    Evan
    National Instruments
    Attachments:
    Append_html.zip ‏13 KB

  • Is there a variable that contains the current report name ?

    Hi:
    I'm trying to log certain data to an audit table when users run BI Publisher reports. I have the BI Publisher user name from xdo_user_name but I'd like to get the name of the report that user is executing as well. Is that an xdo variable or something as well?
    Thanks.

    Not really sure. But if your report uses package/procedures, you could set something up at the DB level to figure out how many times the procedure executes and have another domain table that associates the db object with the report name.
    I don't think you would need to set any parameters at the report level.
    But there is no way that I know of to capture the user information etc..
    Thanks,
    Bipuser

Maybe you are looking for

  • AP of purchase order issue

    I have a PO, the goods has been deliveried, and payment has been clear by customer, Now, vendor sent a invoice to us, but the unit price is different from the po unit price. I would like to know then how to do next step. I can't change the po price b

  • How to clear invoices posted in foreign currency in APP  VERY URGENT

    Hi Sap Gurus, I have posted 2 invoices , one is in inr (local curcy), another one in usd and i have run the app using the t.code f110 local currcy incoive was cleared but usd curcy invoice went to exception list Why this happened? how can i clear for

  • Zooming animation is extremely slow in IE7 and IE8

    Hi, version: OracleAS MapViewer Version: Ver1033p5_B080908 zooming effect is extremely slow in IE7 and IE8 (FF, Safari, Chrome do it fast!) thanks, Branislav

  • Messages disappearing in whole or part.

    Win 7, IE 11;   Many times when I am writing a message or leaving a note on a petition or just writing, the use of the back space or movement of the cursor or the simple deletion of a letter will cause  missing letters, portions of the message, or th

  • SRM7.0 - PO status issue in ECS

    Hi, We are observing status (Tracking-Status) of ECS POs is always "In Transfer to Execution system". Can some body help me in analysing why is it so?. We are working on SRM7.0-SP03 and we are observing above mentioned issue only in Extended Classic