Asset  Details report  ,  AA-MM-FI link ?

Dear All,
I have to make a report for asset details (line item wise).
In this report i have to display asset with G/L  no, purchasing doc no , service document no, qty, value etc.
This report can be develop with the help of AA-MM-FI integration.
i m not getting the link between MM-FI-AA.
In my report G/L account no, Asset No. , Assest Class will be given as input.
Can u help me to get releted table and links for AA-MM-FI ?
points will be rewarded.
Thnx in advance.
Ashish Gautam

use tables:
anla field : posnr
anlz fields: CAUFN, IAUFN, IPSNR
and table EKKn for MM: fields anln1 and anln2
A.

Similar Messages

  • Dynamically select detail report for a master report link item or button?

    I'm still new to APEX, so apologies if this sounds like a stupid question, but so far I can't find anything online about how to do the following.
    I have a simple report, and I want to be able to drill down from here to a detail report via a link item (or a button) in each row. The problem is that the specific detail report to use depends on a combination of values in the parent record.
    So if I have a parent record in the master report with values for columns 1/2/3 of A/B/C, I would drill down to a detail report against table X. If my parent record has values of D/E/F, I might drill down to a different detail report against table Y.
    I can build the individual reports easily enough, and I can set up a link item in the master report to drill down to a hard-coded detail report page. I can even generate the name (alias) of the relevant target report as an extra non-DB item in each row of the parent report. But I can't figure out how to allow each row in the parent report to actually link to a different detail report dynamically, depending on the contents of the parent row.
    Can anybody suggest an easy way to do this, or point me towards an online resource that would explain how to do this (preferably in basic terms that this APEX-newbie can understand)?
    Thanks for your help!

    Hi,
    When you say "Detail report" do you just mean a normal report of the child records for the selected master record or a tabular form style "Details report"?
    Using different reports on a page would, typically, depend on the value in a hidden page item - for example, P1_REPORT_TYPE. Your link could pass an appropriate value into this item and the second page would then use this as a Condition for each of the report regions - each region being conditionally displayed when the hidden item is a specific value.
    Andy

  • Hierarchal Columns and Passing Values to a Detail Report (Action Links)

    I have a question in OBIEE 11.1.1.5 around Hierarchal Columns and passing the values to a detail report. I have create a report with a Hierarchal column (Two Levels only), Month Column and a metric.
    I created a detail report and see both columns used in the hierarchy to "is Prompted" as well as the Month column.
    On the Summary report I put an Action Link on the Metric to navigate to this Detail Report. When I select the metric I see that the Month value gets passed to the Detail Report but none of the Hierarchal columns have been passed at all.
    When I replace the hierarchal column with just the two columns, the values get passed fine.
    Is this a known issue with Hierarchal columns? Is this functionality even available?
    Thanks

    I am assuming then that no one has attempted this on the forum?

  • Linking reports passing prompt values to detail report ?

    Hi,
    I am building a linked report in webintelligence on SAP universe which has prompts coming from BI variables.In the master report i have created a hyperlink column so that if user can select the hyperlink for each row.now if i select the hyperlink it should take me to the detail report by passing the prompt values.i want to pass the values to the prompts build in BI varaible.
    eg: master report
    Country  Product  Rev  City
    now here i want to select city and open the detail report by passing city values. i need the formula for the hyperlink  city. City is just a prompt in master report it is not object in my report.
    Thanks,

    Hi Try this code
    ="<a href='http://l1280:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?&sDocName=Account&sType=wid&iDocID=5311&lsSAccountType="+[Account Type]+"'>"+[Account Type]+"</a>"
    Regards
    Prashant

  • Link to detail Report doesn't work.

    Hi, we are using Webi for On Demand reports (against Salesforce universe) and the hyperlinks to details reports are not working.
    my URL in master report looks like this:
    ="<a href=https://na.crystalreports.com/opendoc/openDocument.do?iDocID=48877773&sType=wid&sWindow=New&lsMFocusBook="[Focus Book]"&lsMSegment="[Segment]"&lsMAccount="[Account Name]">"[Segment]"</a>"
    and UR in detail report appears as:
    https://na.crystalreports.com/opendoc/documentXML.jsp?cmdP1=untitled488777731wid*&token=&cmd=askPromptView&cmdBlock=all&cmdP2=lsMSegment%3D%255BSegment%255D%26sWindow%3DNew%26useCustomPrompts%3DY
    Some how details report doesn't recognise the propmpt values and always asks to fill prompts.
    can some one advise?
    Thanks

    Hello,
    The openDocument.do url was really only designed for use with Crystal Reports documents.
    It is not officially supported for webi documents, or any of the other document types.
    That being said, it sounds like opening webi docs with openDocument.do does work, it is just the parameter passing that is problematic.
    Cheers
    Steve

  • Asset Depriciation Report (as AR01)

    I am Developing a Report for Asset Depriciation Details with fields -
    Asset no, Asset sno, Asset desc, Dep key, Plant, Cost  cntr, Asset class, ODep. start,  START BOOK VALUE, Depriciation, end book value & TRANS. ACQ. VALUE.
    In this, I am unable to find the two - START BOOK VALUE &  TRANS. ACQ. VALUE
    ( I have Depriciation Percentage, to count End book value)
    How can I get this two fileds?

    Hi,
    Check the below tables.
    ANEP - Asset Line Items
    ANLP - Asset Periodic Values
    ANLC - Asset Value Fields
    Check the below link also.
    http://sapfin.blogspot.com/2009/04/issuesolution-incorrect-book-value-in.html
    Re: Depreciation Reports format
    Hope its useful.

  • Master Detail Report for PDF Printing

    Dear All,
           While trying to create a master detail report using Oracle APEX 4.2 and BI Publisher. I tried creating report queries and report layout following the below mentioned steps.
    CREATE TYPE emp_row AS OBJECT (
      EMPNO NUMBER(4),
      ENAME VARCHAR2(10),
      JOB VARCHAR2(9),
      MGR NUMBER(4),
      HIREDATE DATE,
      SAL NUMBER(7,2),
      COMM NUMBER(7,2)
    CREATE TYPE emp_tab AS TABLE OF emp_row;
    CREATE TYPE dept_row AS OBJECT (
      DEPTNO NUMBER(2),
      DNAME VARCHAR2(14),
      LOC VARCHAR2(13),
      EMP_LIST emp_tab
    SELECT SYS_XMLAGG (
      SYS_XMLGEN(
      dept_row(
      d.deptno, d.dname, d.loc,
      CAST(MULTISET(SELECT e.empno, e.ename, e.job, e.mgr, e.hiredate, e.sal, e.comm
      FROM emp e
      WHERE e.deptno = d.deptno) AS emp_tab)
      SYS.XMLGENFORMATtYPE.createFormat('DEPT')
      ) AS "XML_QUERY"
    FROM dept d
    WHERE d.deptno = 10;
    Though the above steps generates xml output while trying to generate in APEX it says unsupported datatype. Tried using DBMS_LOB as well no luck. Any inputs will be quite helpful. Should there be any other way to incorporate master detail report printing in APEX kindly advise.
    Thanks
    Ahmed

    Hi Ahmed_Jed,
    Ahmed_Jed wrote:
    Thanks Kiran for your prompt response. I tried following the steps already using this link (How To Create a Master-Detail PDF Report) somehow the detail record was not getting processed perhaps was trying to generate xml data using the above query. Any other reference will be highly appreciated.
    Regards
    Ahmed
        Well the problem lies here:
    SELECT SYS_XMLAGG (
      SYS_XMLGEN(
      dept_row(
      d.deptno, d.dname, d.loc,
      CAST(MULTISET(SELECT e.empno, e.ename, e.job, e.mgr, e.hiredate, e.sal, e.comm
      FROM emp e
      WHERE e.deptno = d.deptno) AS emp_tab)
      SYS.XMLGENFORMATtYPE.createFormat('DEPT')
      ) AS "XML_QUERY"
    FROM dept d
    WHERE d.deptno = 10;
        The Report Query itself generates XML data (in the required BI Publisher format). So, no need to generate it like this.
        As you are using table functions your query should be of the type:
    SELECT EMPNO
                , ENAME
                , JOB
                , MGR
                , HIREDATE
                , SAL
                , COMM
        FROM TABLE ( EMP_PKG.GET_EMPLOYEES ( :PXX_DEPTNO ))
        where EMP_PKG.GET_EMPLOYEES is packaged table function which returns the Object Table of type EMP_TAB mentioned above.
        When you test the above Report Query with sample DEPTNO, it will generate the sample XML, which you can use to generate Report Layout in RTF format using BI Publisher Desktop.
        Hope this helps!
    Regards,
    Kiran

  • EAM Maintenance Work Order Detail Report

    Hello All,
    I have a requirement to add new fields to the Maintenance Work Order Detail Report which is run from the web page. This report's RTF template works based on the fields which are defined in the seeded data definition. This seeded data defintion has an seeded XSD file with the fields in it. By the RTF template I got the standarad concurrent program name as Maintenance Work Order Detail Report.
    I assumed the following process to happen when the Run button on the EAM work order page is clicked.
    1. Concurrent program Maintenance Work Order Detail Report is submitted
    Executable: PL/SQL Package EAM_WOREP_PUB.Work_Order_CP
    Seeded Data Definition: Work Order Details -- This DD has a seeded XSD file EAMWOREPORT.xsd
    2. So the RTF template based on the pl/sql package and the XSD file generates the report and displays.
    Please correct if my assumptions are wrong.
    I want to add new fields to this report. So I have customized the pl/sql package, modified the code with new fields and created a custom data defintion with a new XSD file with the new fields added in it. Also created a new template linked to new data defintion. After doing all this I am not able to see the new fields on the report generated they come as NULL.
    My question is Is it feasible to add new fields to this Maintenance Work Order Detail Report or we can use only the fields which the seeded one gives?
    Version: R12.1.2
    I tried and tried but couldn't find a solution to it. If anyone has faced the same issue please let me know.
    Thank You!!

    IW47 should give you the required information.
    Regards
    Narasimhan

  • Open detail report in same window(same frame) in BI Publisher11.1.6.0

    Hi
    I have created 2 reports
    Master Report - Interactive view template
    Detail Report - Interactive view template
    I have given detail report hyperlink in Master report. when i click on the link, it opens in new tab or window instead of opening in same tab/window.This is happening only in case i have created report in Interactive view.
    If i create both the reports in RTF template then it's opening in same window/tab but my requirement is that template should be Interactive template as it's having sorting and filter functionality embedded.
    Kindly reply.
    Thanks
    Nitasha
    Edited by: 856219 on Mar 26, 2012 1:31 AM

    Hi Nitasha
    we need same exact requirement. Could you please let me know if you find any solution ?
    Thanks
    slokam

  • Add the Z report to the Navigation Link

    We are working on the SAP CRM 4.0 with Web client as a interaction center.
    As per our requirement we need to add custom report to the navigation link.When the user clicks on this link the report should appear in Web client.
    At present i am trying with SAP provided display customer functionality.That link is fetching me SAP Netweaver website instead of CRM BP transaction.
    Pls advise as how i can i achieve this.
    Thanks.

    Hi -
    Changes to be done in Z_QUINNOX_PAYMENT_SUMMARY
    methods:
    1. GET_ACTION_DEFINITION
      class cl_crm_ic_abox_constants definition load.
      concatenate cl_crm_ic_abox_constants=>bor_action
                  'REPORT'  "#EC NO_TEXT
                  'EXECUTE'  "#EC NO_TEXT
                  'CRMSYS'  "#EC NO_TEXT
             into rv_result.
    2. CLASS_CONSTRUCTOR
      class cl_crm_ic_abox_constants definition load.
      gv_atype =
        cl_crm_ic_abox_constants=>bor_action.
      gv_method  =
        'EXECUTE'. "#EC NOTEXT
      gv_bortype =
        'REPORT'. "#EC NOTEXT
      gv_mappedlogsys =
       'CRMSYS'.  " 'R3SYS46C'. "#EC NOTEXT
      gv_version =
        '2.0'. "#EC NOTEXT
    Is return data flow requested?
      gv_is_return_df_requested =
        'X'. "#EC NOTEXT
    similarly set the BOR obj name et all in the CONSTRUCTOR also....check the class 'CL_CRM_IC_ABOXSAMPLE_CREATESO' and make the changes accordingly.....you can ignore the t.code parameters which they have passed, jus add the relavant BOR obj details and the log sys details in the relavant places....
    Now in ur BOR obj method 'EXECUTE', call the report using the SUBMIT prog stmt.....
    This shd work.....
    _Aarthi.

  • Unable to open the detail report in the same page/window

    When i use the "Navigate to Web Page" action link to navigate to the detail report, the detail report is opening in new window. Is there any way that the detail report can be opened in the same page/window.

    Hi,
    why don't you use the master/detail table option when dragging the master VO ?
    Frank

  • How to call a detail report from a master report in 11g?

    How to call a detail report from a amster report in 11g?
    We have a requirement to call a detail report based on the invoice id that will parsed from the master report in OBIEE 11g. Any ideas sugegstions will be greatly appreciated.
    Thanks,
    Edited by: user8957415 on Jul 31, 2012 9:04 AM

    Check these links
    http://gerardnico.com/wiki/dat/obiee/master_detail
    http://prasadmadhasi.com/2011/11/13/master-detail-event-in-obiee-11g-and-pass-multiple-events-to-one-detail-report/
    Hope these helps

  • How to capture event in Master Detail report of OBIEE

    Hi,
    Is there is any way we can capture which account is clicked in master report and store it in BI variable i.e. presentation\request\session?
    My requirement is that in 1st report there will be certain account and some more column. Each account here is the parent account which have more then 1 child member On click of a particular account in 1st report, we need to display child account member in another report i.e.
    In 1st report we have below account
    Cash
    Asset
    XYZ
    On click of Cash i need to display cash.1, cash.2,cash3 account, if user click on Asset i need to display Asset.1, Asset.2 account in another report.

    Hi
    Use action links for your requirement.
    steps:
    1. Create a report1 with Account as column.
    2. from criteria select Account column properties
    3. In interation tab Value (Primary interaction select action link)
    4. Create (+ ) Action using Child columns
    5. Save and execute
    Please mark it useful/ Correct.
    Thanks

  • Webi report part(include Opendoc Link) ondesktop did not work in BI Widgets

    My customer followed <BI Widgets User Guide>(XI3.1) to create a webi report part(include Opendoc Link) onto desktop.
    Page 26:
    To convert Report Part into a Widget ,drag and drop the Report Part from the Web Intelligence Viewer onto the desktop.
    As a widget, the Report Part will include the following BI Widgets features:
    - Automatic refresh
    - User controlled size and positioning
    - Saved display and data context state
    - Optional setting as the top application window
    - Full XI R3 security
    - Web Intelligence opendoc links to detailed reports.
    But it can not be clicked(hyperlink did not work).
    My customer follow the SAP Note 1244968 to create again, it still can not be clicked.
    For I can't reproduce this issue, could you tell me what's it probably related to?
    SAP Note 1244968:
    Symptom
    Trying to use Hyperlinks in a BI Widget created from a WebIntelligence
    report
    Environment
    XIR3
    Workflow
    1. Login in Webintelligence
    2. Create on efashion a Webintelligence report with the
    objects:Year,Sales Revenue
    3. In the Edit panel add a column to the table and insert the
    variable :=If([State]="DC"; HTMLEncode("http://uk.yahoo.com"); "")
    4. In the Properties Display/Display/Read cell content as Hyperlink
    5. Run the report and save it
    6. Open the Webintelligence report with HTML view and click on the
    hyperlink you are redirected to the Yahoo website
    7. Log in BI Widget
    8. Right click on the right inside icon of BI Widget and click on
    Document List Explorer
    9. Find the Webintelligence report and double click on it
    10. Click on the table and drag and drop it to your desktop
    11. The BI Widget gets created
    12. Click on the column containing the Hyperlink:nothing happens.
    Cause
    There is no functionality of using Hyperlinks in a BI Widget created
    from a Webintelligence report
    Resolution
    Enhancement Request ADAPT01119581 has been created
    Environment details:
    Srerver Environment: OS Version: RedHatEnterpriseLinuxES4.0 update5
    Client Environment: OS Version: WindowsXP
    Browser: IE6
    JRE Version: 1.6.003_
    Web & Application Server: Tomcat 5.5.20
    Database character: AL32UTF8, JA16SJIS
    Connection: native, ODBC, OLEDB
    NLS LANG: Japanese Japan.JA16SJIS

    Hi Soniya,
    These are the steps:
    1. Log in into infoview
    2. Change the preferences (Click in the Preference button in the main tool bar), in the WebIntelligence section change the Select a default view format: to Interactive.
    3. Click OK
    4. Open the report where you want to add the hyperlink
    5. Right click in the column or cell to add the hyperlink
    6. Click Hypelink > New
    7. You will see the Create Hypelink window, click Browse the select which report do you want to link
    8. Fill in the parameter, prompts, etc.
    and that's it, hope it's clear now. If you have any question let me know.

  • Vendor wise product wise details report

    Dear all,
    please give me any standard report for vendorwise product wise details. and also  customer wise and product wise details report.

    Pls have a look on the blw link which is the std sap reports, its provided by sap.. hope it will be helpful for u.
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/erplo/sapStandardReports

Maybe you are looking for

  • Can one have multiple e-mail addresses in iCloud?

    My family shares one apple ID for purchases.  This also works wonderfully for syncing our calendars with iCloud.  However, I have one e-mail address and my wife has another.  Is it possible to create two @me accounts and sync them across all of our d

  • Creating abap data flow, open file error

    hello experts, i am trying to pull all the field of MARA table in BODS. so i m using abap data flow.but after executing the job i got error "cant open the .dat file" i am new to abap data flow so i think may be i did some mistake in configuration of

  • Basic Doubt in GroupBy

    I need to write a query which will display the name, salary and the department of the employees who are getting the maximum salary in their respective departments assuming that there are two different tables employee and department. Expected output:

  • How to install hp deskjet 1000 without disc

    hp deskjet printer 1000 j110a

  • Loop with event structure

    I put an "event structure" inside of a while loop. My target is to keep the VI running and make selections to run different subVI. But I got two questions: 1. how to use two button on front panel? I mean, when I press one button, step 1 runs, when I