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

Similar Messages

  • 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>

  • Report on current stock and safety stock

    Hi,
    I want to have the report on current stock and safety stock.
    In MC.9 it gives wrong safety stock. When I go to cross check the safety stock in material master & in MC.9 I see differences.
    Thanks,
    Kiran

    You can user tcode MC.9 or MC.5 to know valuated stock available at given plant. Stock lying in Returns (MB52) will not be a part of this report as it non-valuated stock.
    The stock in the accounting view of the material master considers stock at plant level including stock in Transit (Intra & Inter plant stock trasnfers) & special stock like stock issued to vendor , consigment stock etc which is valuated at plant level.
    whereas and stock in the plant stock view of the material master does not consider such special stocks hence there will always difference in both veiws.
    For Physical stock as on particular date you can consider MB5B report with radio button "Storage location/Batch Stock" wherein you will get Quantity issued & Qunatity received in those SLOC along with Opening stock & Closing stock for the specified period.
    use tcode
    MBLB to know stock at vendor.
    MB54 - Consignment Stock.

  • Sales report for current month and year a go month

    i could you please guide me builting report for current monthwise for current month and year a ago month
    report parameter month_year='06-2010'
    tables = sales and below are the table fields
    customer_id
    invoice_dt
    invoice_am
    thanks
    nhm

    Okay, Still you did not mention how you will pass value in report while generating.
    Anyway the query with UNION ALL will work. For Example.
    I am assuming that the parameter for date/month you will pass in range like 01-JUN-2010 to 30-JUN-2010
    SELECT customer_id, SUM(curr_value) curr_value, SUM(past_value) past_value
    FROM
    SELECT customer_id, NVL(SUM(invoice_amount),0) curr_value, 0 past_value
    FROM sales
    WHERE invoice_dt BETWEEN :P_FROM_DATE AND :P_TO_DATE  -- here P_FROM_DATE and P_TO_DATE will be the date range for current year as i showed above.
    AND  -- Any Condition goes here...
    GROUP BY customer_id
    UNION ALL
    SELECT customer_id, 0, NVL(SUM(invoice_amount),0)
    FROM sales
    WHERE invoice_dt BETWEEN ADD_MONTHS(:P_FROM_DATE,-12) AND ADD_MONTHS(:P_TO_DATE,-12) -- This add_months function for the previous year same month.
    AND -- Any condition goes here...
    GROUP BY customer_id
    GROUP BY customer_idNow using the above query you can design the tabular report as you showed the format.
    -Ammad
    Edited by: Ammad Ahmed on Jul 3, 2010 7:55 PM
    added GROUP BY

  • 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.

  • Stock Aging report with current date

    Dear Experts
    Can we able to take stock aging report with current date?
    Thanks&Regards,
    Vinoth Raj K

    You're posting in the Portuguese B1 space.
    You might want to post in the English one: SAP Business One Application

  • 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

  • How to assign t-code to the report painter

    Dear expert,
    Would like to seek for advice for the step to assign the T-code to report painter.
    Kindly advise.
    Thank you.
    Regards,
    Karen
    Moderator: Please, search SDN

    Hi
    1. Create the transaction code,say, ZF01_TCODE from Se93
    2. Choose "Transaction with parameters".. Press enter
    3. Enter START_REPORT in the Transaction field and press Enter
    4. Select the Skip initial screen and Inherit GUI attributes check boxes
    5. On the same screen, scroll down to the Default Values table and select parameters D_SREPOVARI-REPORTTYPE and
    D_SREPOVARI-REPORT.
    6. Enter RW for the report type and your report group ZCC8 as the report value
    7. Now you can save your transaction and transport it to other systems
    Regards
    Ajay M

  • Assigning the library to a report in report painter

    Hi All,
    I have developed a new Z report in report painter by copying from an existing report called 3CST6. (Actual/Plan/Variances Proj + Responsible).
    But I would like to know to which library this report belongs to. (As this information is needed during the assignment of the report to the report group)
    Could anyone please help me out with the same.
    Thanks & Regards,
    Sushanth Hulkod

    Hi,
    we will define library using transactions  GR21   and GR22
    and check the tables  T804A   ,  T804E

  • 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.

  • 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).

  • E-mailing report changes current directory

    When I e-mail report the current directory is changed and when
    there is Image in the report it can't be found.
    And the next time I run the report and DESTYPE=File, the file is saved at
    c:\Program Files\Common Files\System\Mapi\1033\NT

    change your registry key entry which says
    REPORTS60_TMP to which ever dir you want

  • 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

  • Showing Oracle reports in current web application with JBOSS as AS

    hi:
    I have installed the Oracle AS(10g 10.1.2.0.2) and the reports services... I have also installed the Stand Alone J2EE Thin Client (http://www.oracle.com/technology/products/reports/htdocs/getstart/examples/Tools/index.html)
    My current web project uses JBoss and I have to show oracle reports keeping the current environment.
    I have followed the steps provided on the doc mentioned in the above link.
    first i did the following steps ( please refer to the text of that readme doc below)
    (//text of readme doc, I have done these steps
    1. Deploy THINCLIENT_HOME/reports/j2ee/reports.ear on the J2EE application server.
    2. Add the following JAR files to the classpath of the J2EE application server:
    * THINCLIENT_HOME/reports/jlib/rwrun.jar
    * THINCLIENT_HOME/jlib/zrclient.jar
    3. Use THINCLIENT_HOME/vbroker4/lib/vbjboot.jar while starting the application server.
    but i cannot understand what is written just next to the above llines in that doc I am pasting those points from that doc
    (text of readme doc:
    The following section provides detailed instructions on carrying out the above 3 configuration steps with OC4J Standalone Distribution 10g (9.0.4). You need to consult your J2EE application server's documentation to carry out the same steps for your application server.
    1. Add the following to OC4J_HOME/j2ee/home/config/server.xml
    <application name="reports" path="<THINCLIENT_HOME>/reports/j2ee/reports.ear" auto-start="true" />
    2. Add the following to OC4J_HOME/j2ee/home/config/http-web-site.xml
    <web-app application="reports" name="web" root="/reports"/>
    3. Add the following to OC4J_HOME/j2ee/home/config/application.xml
    <library path="<THINCLIENT_HOME>/reports/jlib/rwrun.jar"/>
    <library path="<THINCLIENT_HOME>/jlib/zrclient.jar"/>
    according to what i understood i went to OC4J which is under my Oracle_Infra directory and then completed the above steps
    after that I ran the command (according to this doc):
    java -Xbootclasspath/p:<THINCLIENT_HOME>/vbroker4/lib/vbjboot.jar -jar oc4j.jar
    the result of this command is following
    06/02/09 14:57:37 Oracle Application Server Containers for J2EE 10g (9.0.4.0.0) initialized
    and then it never comes back to command prompt
    Now after all these steps...i don't understand what to do next and my problem is still there which is How to deploy reports made by oracle reports from my web project links
    please help
    Waqas

    If the links in your example report1 and report2
    follow my format stated earlier
    http://machine:port/reports/rwservlet/report=reportnam
    e.rdf&destype=cache& paramform=htmlcss&server=<YourReportSe
    rverName>&userid=scott/tiger@hrdb&desformat=pdf
    This is what I believe
    >
    so http://machine:port/ is the port where
    JBoss is running and
    This should be the port that the report server is listening on
    >
    server=<YourReportServerName> is the name of
    my oracle report server
    so I call the above link in my current application
    and the report would show up
    Yes
    >
    that means (correct me if I am wrong) that my reports
    would have to be deployed in OracleAS
    Yes
    >
    I have to try all this yet as till this point I was
    trying to run Oracle reports deployed in JBoss...
    This may be possible, I am not sure.
    >
    Oracle J2EE Thin Client?
    I am not sure what this is used for in your setup.

  • 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

Maybe you are looking for

  • Duplicate rows in DataGrid in Flex3/LCDS2.5

    Hi, My project in Flex2/LCDS2 uses DataGrid very extensively with streaming data coming in. After we recompiled it with Flex3 and run with LCDS2.5, we see a strange behavior: originally it shows everything right, but all coming data creates duplicate

  • Hierarchy in ALV

    Hi, I have a SALV_WD_TABLE component with hierarchy display type. Is there a way to display the 'leaves' of the tree (the texts of the second column) not in a separate column but in the first column right after the dots? Thanks, Anett

  • Issue when clicking checkbox inside JTable

    The following exception in displayed when populating a table that is created extending the JTable, and clicking on the checkbox that is present in one of the cells. Any idea !!!!!!!!!!!!! java.lang.NullPointerException at javax.swing.plaf.basic.Basic

  • FCP 5.1.1 Update Tip

    This is a tip for my fellow FCP newbies out there who may have had trouble updating FCP to 5.1.1 via Software Update. I was unable to get SU to recognize that FCP needed this update and tried a number of tricks recommended to me in these boards. (Rem

  • Must re-enter wireless info after sleeping; okay after that; solution?

    I've been doing a bunch of reading and I know I'm not the only one on here with the problem. But I thought this fresh post may catch someone's eye. I have an imac connected to the time capsule, sending the wireless signal thru the house. I just bough