GL A/C with Detailed Transactions

I have prepare a report which showing the GL A/C with Detailed Transactions.
I need the link about GL tables with PO, AP and AR tables
can anybody help me in this regard
thanks in advance
sadiq

Please Refer to table
gl_import_references
link this table with gl_je_headers and gl_je_lines using je_header_id and line_id
gl_import_references can be linked with subledger tables using gl_sl_link_id
the Link table in Subledger can be identified from gl_sl_link_table
Ex: gl_import_references shall be linked to ap_ae_lines table using gl_sl_link_id
I hope it is helpful
Regards,
Sridhar

Similar Messages

  • Item details with Last Transaction Date ?

    Hi,
    Please help someone to fine tune this query :-
    Select ILLITM,ILDOC, ILDCT, ILTRDJ
    FROM CRPDTA.F4111
    where ILTRDJ in (Select max(ILTRDJ) FROM CRPDTA.F4111);
    The above query is returning the latest transaction date with Item details.
    But expected output is: Every Item with last transactional date.
    Hope I am clear on the above requirement please.
    Thanks in advance.
    RAM

    you can use table alias for this
    Select ILLITM,ILDOC, ILDCT, ILTRDJ
    FROM CRPDTA.F4111 tab1
    where tab1.ILTRDJ in (Select max(tab2.ILTRDJ) FROM CRPDTA.F4111 tab2);
    or if you are using this query inside any PL-SQL block , you can use a variable to hold max(ILTRDJ) and then use this variable in query.

  • How to export customer/vendor aging detailed transactions to excel ?

    hi all,
    How to export customer/vendor aging detailed transactions
    to MS-Excel ?
    After entering all selection creterias,report
    opens up with consolidated aging details
    for each customer,we need to double click a
    customer to get detailed break up of all transactions,
    Is it possible to export to ms excel for detailed transations break up of all customers/vendors ?
    In standard it is only possible to export detailed
    transactions break up for a customer/vendor ?
    Jeyakanthan

    Thanks,
    Eventhogh we don't need detailed aging report in print,
    we converted print preview into text file
    and then converted to excel format.
    Jeyakanthan

  • Report for display the list with details of quantity stock order etc

    Can anybody give the code to display a list with details of quantity stock for specific materials in specific plants or storage locations based on the input values like plant, storage location, material and product hierarchy entered on the selection screen?

    Yes it is possible.
    we can try doing this by user exsits. with one of our client we have added a new tab in MIGO transaction.
    For details on user exsits user below links
    Check out the below links
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    here is the user exit examples..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6378ef94-0501-0010-19a5-972687ddc9ef
    all the user exits for sd
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/erplo/sd%2buser%2bexits
    Regards

  • MRP Exceptions list with details

    Hi gurus,
    I would like to know if somebody has a list of most important MRP exceptions with details.
    I explain after MRP run, I go in MD06 transaction to display MRP material list. When I display this list I have exceptions and I don't understand all of these exceptions.
    Does somebody have a list of principle exceptions with explanations and details or a link to find such a list?
    Thank you in advance.

    Hello
    You can check the exception messages in the table  T458A and T458B.
    96    Stock fallen below safety stock level
    98    Abnormal end of materials planning
    70    Max. release qty - quota exceeded
    01    Newly created order proposal
    02    New, and opening date in the past
    03    New, and start date in the past
    04    New, and finish date in the past
    61    Scheduling: Customizing inconsistent
    62    Scheduling: Master data inconsistent
    63    Production start before order start
    64    Production finish after order finish
    50    No BOM exists
    52    No BOM selected
    55    Phantom assembly not exploded
    53    No BOM explosion due to missing config.
    58    Uncovered reqmt after effective-out date
    56    Shortage in the planning time fence
    40    Coverage not provided by master plan
    69    Recursive BOM components possible
    05    Opening date in the past
    06    Start date in the past
    07    Finish date in the past
    10    Reschedule in
    15    Reschedule out
    20    Cancel process
    30    Plan process according to schedule
    25    Excess stock
    26    Excess in individual segment
    57    Disc. matl partly replaced by follow-up
    59    Receipt after effective-out date
    27    Excess Stock Applied to Superceding Mat.
    60    Disc., Rec. Applied to Superceding Mat.
    27    Underdelivery tolerance
    42    Order proposal has been changed
    44    Order proposal re-exploded
    46    Order proposal has been manually changed
    80    Reference to retail promotion
    82    Item is blocked
    Regards,
    Velmurugan S

  • Synchronizing with J2EE transaction

    Hello,
    I am diving into Kodo's ability to synchronize with J2EE transactions. I
    have altered JDOFactory and added a method 'getEEPersistenceManager' which
    returns a new PM from a singleton EEPersistenceManangerFactory ( much the
    same way the code already worked for the JDBCpmFactory... ).
    I am using JBoss and added the line
    <tm-location>java:/TransactionManager</tm-location> to my system.prefs file
    as specified in the docs, but when I run my simple test case, I get a
    java.util.MissingResourceException: tm-location.
    Has anyone else tried integrating transactions with JBoss, and if so, did
    you have any problems like this? Sorry for the somewhat undetailed post, I
    know this is a bit of a long shot...
    Thanks in advance,
    Eric Lindauer

    READ the last part
    Abe's response:
    To use Kodo with an external datasource from JNDI, do the following:
    1. Make sure the system.prefs are set up correctly. Even though Kodo will
    be using an external datasource, it still needs to know how to connect to
    the DB itself so that it can use external connections for getting sequence
    numbers and getting the list of persistent classes (if you're not using the
    <persistent-types> array in prefs).
    If you like, the system.prefs can point Kodo to a different database than
    your production one, so long as you don't mind Kodo creating a sequence
    table in this DB and so long as you're using the prefs to list your
    persistent types, or have used the schematool to register all your
    persistent types with this second datababse.
    2. Set the JNDI location of the external datasource in the
    PersistenceManagerFactory via the setConnectionFactoryName() method. When
    Kodo needs a datasource, it will see that you've given it a location to look
    for one in JNDI. It will obtain a JNDI Context and perform a lookup on the
    given location, casting the result to a javax.sql.DataSource.
    To obtain the Context, Kodo by default will simply create a 'new
    InitialContext ()'. This means that your system JNDI properties should be
    set up correctly for the JNDI provider you are using (see the
    javax.naming.Context javadoc for details).
    You also have the option of completely controlling how Kodo obtains the JNDI
    context by implementing your own com.techtrader.modules.jndi.ContextProvider
    and telling Kodo to use your custom implementation in system.prefs. As the
    user guide mentions, this is covered in the javadoc for the
    com.techtrader.modules.jndi package.
    That's all there is to it. A couple of warnings, though:
    * The use of external datasources is untested.
    * If using the datasource within an appserver, the Connections from it
    should not be automatically committed/rolled back with the completion of the
    global transaction. Kodo performs its own transaction management on the
    Connections it uses. In future releases we'll be able to handle Connections
    that are controlled by the appserver.
    Good luck.
    -- Abe White
    TechTrader
    Eric Lindauer <[email protected]> wrote in message
    news:[email protected]...
    Hello,
    I am diving into Kodo's ability to synchronize with J2EE transactions. I
    have altered JDOFactory and added a method 'getEEPersistenceManager' which
    returns a new PM from a singleton EEPersistenceManangerFactory ( much the
    same way the code already worked for the JDBCpmFactory... ).
    I am using JBoss and added the line
    <tm-location>java:/TransactionManager</tm-location> to my system.prefsfile
    as specified in the docs, but when I run my simple test case, I get a
    java.util.MissingResourceException: tm-location.
    Has anyone else tried integrating transactions with JBoss, and if so, did
    you have any problems like this? Sorry for the somewhat undetailed post,I
    know this is a bit of a long shot...
    Thanks in advance,
    Eric Lindauer

  • Is there a way to create a year at a glance with detail and print?

    Is there a way to create a year at a glance with detail and print?

    To do what Dave indicated you need to do, it depends on what version of Acrobat you have:
    Acrobat 8: Advanced > Enable Usage Rights in Adobe Reader
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
    Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
    I wonder what it will be next time?

  • Showing Items with no transactions

    I am trying to build a report that will show us items with potentially incorrect item status.  Item status (on table itmmas) is either A(ctive) or I(nactive).  The report should show all Inactive items which have had at least one transaction in the past 4 weeks AND active items which have had no transactions in that period.
    My plan is to join the item master table to the item ledger table (itmldg) which lists all inventory transactions.  I can show the inactive items with transactions without a problem.
    What I can't figure out is how to show items with Active Status that don't have any transactions.  I can't get CR to return a data set which includes ALL records from itmmas but only those from itmldg in the last 4 weeks.  I tried this SQL query:
    SELECT itmmas.itmiid, itmmas.itmdes, itmmas.itmsts, itmldg.ilgdno, itmldg.ilgdat
    FROM {oj itmmas  LEFT OUTER JOIN itmldg ON itmmas.itmiid = itmldg.ilgiid}
    WHERE (itmldg.ilgdat>={d '2009-09-01'})
    When I run this query in MS Query and return the results to Excel, I get single lines for items with no transactions.  For these items, the fields from itmldg are NULL.  When I run this query in CR, I don't get any data for items with no transactions.
    Can anyone think of a way to get this to work?

    The issue that you have is that the WHERE clause in your SQL statement is only looking at an itmldg table field for a value.  This is effectively making your Left Outer Join an Inner Join, because when an itmmas record does not have an itmldg record, the date field will be NULL.  You have to add the condition "OR itmldg.ilgdat is null".
    If you want to return ONLY the records that the report is interested in (which should have beter performance), change the SQL to
    SELECT itmmas.itmiid, itmmas.itmdes, itmmas.itmsts, itmldg.ilgdno, itmldg.ilgdat
    FROM {oj itmmas LEFT OUTER JOIN itmldg ON itmmas.itmiid = itmldg.ilgiid}
    WHERE ((itmldg.ilgdat>={d '2009-09-01'}) and (itmmas.itmsts = 'I'))
      or  ((itmldg.ilgdat is null) and (itmmas.itmsts = 'A'))
    HTH,
    Carl

  • Report Row With Detail (AJAX) by Carl - How to implement?

    I just had a look at Carl's example place and I'd like to implement his Report Row With Detail feature. But how, it's made up of 3 sections:
    1. a query
    2. javascript
    3. application process
    The query on which the report is based and where I want this feature is:
    select leverancier, artnr, vendorcode from plijst where productgroep = :p1_assortiment_tree or subgroep = :p1_assortiment_tree
    A break is defined on Leverancier
    I understand the query and the application process part. But where goes the Java part???
    Peter
    Message was edited by:
    Pete

    Tried to upload your example application, unfortunately it does not seem to upload properly in my APEX v2.0 environment
    Can you please confirm if your example works with APEX version 2
    and does the Javascript go in the Page Header or Region Header/ Footer area
    thankyou
    Frank

  • Report Row With Detail (IFRAME)

    Hi,
    I am trying to implement the Report Row with Detail but not successful.
    I have gone thru the various threads in the forum.. but i am unable to
    get it. It would be great if I could know the step by step process to do the same.
    I have created two regions. The first region (the query to it) also
    has a show_region link.. I have copied and pasted the javascript given
    by Carl.
    Thanks,
    shilpa.

    Hello,
    Ok then you are almost there so when you submit the form to update your data on a sucessful save you are going to create a plsql region that just uses htp.p() to write out the javascript to update the report in the main page.
    a simple example would be something like this.
    Lets say I'm getting back values to update the two first table cells on my parent report.
    <script>
    /*set up call back function*/
    function ReportRowUpdate(){
    var lRow = parent.g_LastRowOpened; /* hook to last row clicked */
    lRow.cells[0].innerHTML = 'SOME VALUE FROM DATABASE 1';
    lRow.cells[1].innerHTML = 'SOME VALUE FROM DATABASE 2';
    /*call call back function*/
    ReportRowUpdate();
    </script>
    And that should be it.
    Carl
    Message was edited by:
    Carl Backstrom

  • Report Row With Detail (IFRAME) - How to reload Main Page within iFrame

    Hi,
    Based on Carl's example - Report Row With Detail (IFRAME), i.e:
    http://htmldb.oracle.com/pls/otn/f?p=11933:17
    Within my scenario, I have a button within the iframe section of my report that calls a pl/sql process that performs some database processing.
    What I basically need is a means of performing a page refresh of the main page, when this button within the iframe is pressed. In Carl's example, that would be page 17.
    As mentioned, I call a PL/SQL process within the iframe, but unsure how to then refresh the main page - parent page.
    Any help would be appreciated.
    Thanks.
    Tony.

    Tony,
    you could insert the following script to the region footer of a region located on your "iframe"-page.
    <script>
    parent.location.reload();
    </script>
    But this is dangerous because everytime the parent is being reloaded, the iframe is loaded, too. Risk of loop...
    A possible solution is to conditionally display a html region (with the script) on your iframe-page basing on a request. You could post the request as a result after your plsql processing in a branch.
    Regards,
    Jens

  • Report row with detail (AJAX)

    Hi,
    In Carl's report row with detail (AJAX) demo, is there any way to show all detail row by default when the page is loaded?
    http://apex.oracle.com/pls/otn/f?p=11933:13
    Thanks.
    Andy

    Hi Andy,
    In Carl's example, the "details" content seems to be from a table that has a one-to-one relationship with the main table. If this is the case, you would probably find it easier to use a "Named Column (row template)" type of report template and lay out the report as you need it rather than use Ajax
    Otherwise, I'm sure it would be possible to loop through a report and make a series of Ajax calls to retrieve the details should there be multiple records required.
    Andy

  • Hi I'm running Addressbook and cannot clear previous entry easily when searching my data base of around 5,000 contacts.    I prefer to view in All contacts on a double page spread with details on the right page.  Searching doesn't seem to work correctly i

    Hi I'm running Addressbook and cannot clear previous entry easily when searching my data base of around 5,000 contacts. 
    I prefer to view in All contacts on a double page spread with details on the right page.  Searching doesn't seem to work correctly in this view.
    It's always the second search that is problematic.
    I've tried typing over and all it seems to do is confine the search to the the entries that have come up for the previous search.
    I've tried to use the x to clear the previous entry and then type the next search, same problem.  The only way seems to be to move from "All Contacts" to "Groups".  Then the searched name appears and I can return to All Contacts to see full details.
    Surely three key press' are not the way it's supposed to work?
    FYI
    Processor  2.7 GHz Intel Core i7
    Memory  8 GB 1333 MHz DDR3
    Graphics  Intel HD Graphics 3000 512 MB
    Software  Mac OS X Lion 10.7.3 (11D50d)
    Address book Version 6.1 (1083)
    MacBook Pro, Mac OS X (10.7.1), 8Mb RAM 2.7Ghz i7

    AddressBook experts are here:
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion#/?tagSet=1386

  • How to get XLR to show BPs with no transaction data for a given date range

    Hi -
    I am building an XLR report that does a comparison of net sales data across two periods for a given sales employee's BPs.
    The report has the row expansion:
    FACT BPA(*) SLP(SlpName = "ASalesPersonNameHere") ARDT(Code = "ARCreditMemo", "Invoice") Group by BPA.CardName
    and column expansions:
    FIG(SO_TaxDate = @StartDate:@EndDate)
    and
    FIG(SO_TaxDate = @StartDate2:@EndDate2)
    where @StartDate, @EndDate, @StartDate2, @EndDate2 are parameters that define the two ranges of dates.
    The column formulas are, from left to right:
    =ixDimGet("BPA", "CardName")
    =ixGet("SO_DocTotal")      <-- filtered by column expansion for first date range
    =ixGet("SO_DocTotal")      <-- filtered by column expansion for second date range
    The report works fine except for one problem, I would like it to include BPs for which no transaction occurred in either date range as well.
    Any help is greatly appreciated!
    Thanks,
    Lang Riley

    Really appreciate your feedback!  Those are good suggestions. I should have mentioned that I had already tried both those suggestions.
    Removing FACT on BPA in this case ends up returning all the BPs and not respecting the SLP(SlpName = "aName") part of the query. 
    Using **, i.e., * or #NULL, makes no change in the resulting data in this case.  I had thought that ** would be the solution, but it didn't change the outcome.  I still have BPs for which when their sales employee is used as the filter and they have no transactions for either date range, and yet they still do not appear. 
    I should further mention that the IXL query, as it now stands, does return BPs for which one of the periods has no data, just not both, and I have verified that applicable BPs with no transaction data for both periods do exist in my data set.  It seems that perhaps the IXL query needs to be restructured?  Please keep the suggestions coming including how this query might be restructured if necessary.

  • Data inconsistency: posting with restricted transaction type (FAA_POST047)

    Hi colleagues!
    I have the following error:
    Data inconsistency: posting with restricted transaction type
    Message no. FAA_POST047
    Diagnosis
    You are trying to post in company code 1000 with transaction type 130 in ledger group 0N. According to table TABWA, this transaction type is limited. Nonetheless, according to your entries, you want to post to area 11.
    System Response
    Using limited transaction types is obsolete and would lead to an inconsistent posting in this situation. The system rejects the posting.
    Procedure
    Use a transaction type that is not limited. And, if possible, choose the ledger group and/or depreciation area on the initial screen.
    According to specific accounting we shouldn't post to one of the depr. area, so most of the tr.types are restricted to post to all areas except this one.
    Because of this, posting from MM with acc.assignment 'A' is impossible - I have this error.
    Any ideas how to solve?
    Thanks in advance

    Hi Anton
    This looks like your transaction type -130 is limited to post only in ledger group-0N as per the transaction type configuration. Due to which system is unable to post all the ledgers and hence this lead to inconsistency.
    Please verify the transaction type 130- in configuration T code - OAYA and see if it is restricted by depreciation area (eventually allow to post only ledger group- 0N.
    Tcode - OAYA (Limit Transaction Types to Depreciation Areas)
    please verify and let us know the update. hope this helps
    Best Regards
    Jomon

Maybe you are looking for

  • 32-bit executable does not run in Windows Server 2008

    Hi, Sorry if this question has been asked already. I am having trouble finding a solution in the NI knowledge base and here in the forums. I just created a simple UI standalone application in Labwindows/CVI with UI. It runs perfectly in XP when it wa

  • I downloaded the 64bit Itunes, yet as soon as it loads, itunes it not responding. what can I do to fix this?

    I downloaded the 64bit version on itunes, yet when I try to run it itune will not respond. What do I do about this?

  • SLD Landscape Design Question

    After reading the Planning Guide - System Landscape Directory, I am left with a question. The Setup: Standard three system landscape ECC 6.0 Ehp5 on NW 7.02ECC Instances: DE1, QE1, PE1 PI 7.31 PI Instances: DP1, QP1, PP1 PI Business Systems: DE1CLNT1

  • Thunderbolt DaisyChain Woes

    I have a late 2012 iMac and late 2012 Mac Mini, both with Thunderbolt. I'd like to use the iMac as a display for the Mini, no problem (CMD+F2) when linked directly together via Thunderbolt. The problem here is that I have a bunch of Thunderbolt drive

  • 0Employee/Vendor/Customer Email Address

    Hello, Does anyone know how to get the email address into BW for an employee, vendor, or customer?  The email address resides in the R/3 table ADR6, however, the email address is not referenced by the employee/vendor/customer number.  So I'm not sure