Linking of FI tables

Dear Xperts,
Can you tell me the linking of FI tables with different modules and which are the important fields in those tables.
Regards
Varun

Varun,
Can you tell me the linking of FI tables with different modules
It would require a book to answer your question.  Log onto a system and look at the repository (SE84), which contains info about tables and fields and programs that link objects.
which are the important fields in those tables.
All fields are important.
Unfortunately, this forum is not suitable for this type of question.  I encourage you to obtain one of the many FI textbooks available and study this.  Also, SAP offers many fine FI classes which would be another opportunity for you to get the basic FI knowledge you require.
Best Regards,
DB49

Similar Messages

  • Crystal Report linked to a table with filter attached

    I have a Crystal Report based on 2 tables and I want it to display every incident in the incident table and to pull the truckID of the
    first truck on the scene from the truck table . So the finished product should look like this…
    IncidentID           IncidentNum     ResponseTime                  First Arriving Truck           Disctict
      1x44452                1258ab55             5:32                                        B8                              2
    *The first arriving truck is the truck in the Truck Table with the same IncidentID and  the earliest ArrivalTime.  There will be multiple trucks for each incident but I want it to only show the one that arrived first (ArrivalTime).  So one line per incidentID.
    Incident Table
    IncidentID
    IncidentNum
    ResponseTime
    District
    Truck Table (Will contain many trucks for one incident with the following info
    Truckkey
    IncidentID (Link to Incident Table)
    ArrivalTime
    TruckID
    I figure I probably need to build a formula with the min function or perhaps an OnCommand – I’m just not sure.
    The biggest issue is the overall report has 4 filter settings.  They can select a date range, a location, an incident type and a range for the response time. So I do this with the Select Expert
    I can get all of that to work except I cannot figure out how to get it to pull the First Arriving Truck without duplicating the incident
    line.  Also, if there is a Truck with an ArrivalTime of Null I want it to ignore that Truck Table record.
    Can anyone help???

    Hi Debbie,,
    You may try this:
    1) Go to the Group Expert > Create a Group on the 'Incident ID' field from the Incident Table
    2) Insert a summary on the 'Arrival Time' field and place the field on the Group Footer
    3) Move all the fields from the Details section to the Group Footer
    4) Go to the Group Selection Formula (Report > Selection Formulas > Group) and use this code:
    {Truck.ArrivalTime} = Minimum({Truck.ArrivalTime}, {Incident ID})
    5) Suppress the Details Section
    -Abhilash

  • Get the row index by clicking on a link in a table

    Hi,
    I am using a table to display a product catalog in Web Dynpro ABAP.
    The user should be able to click on any material number (link) in the table to get a detail view of this material.
    How do I get back the table line, the user has clicked to show him a detail-view?
    Thanks a lot for your help.
    Reagards.

    Hi,
    To get the details of complete row,
    Data lo_nd_products type ref to if_wd_context_node.
    Data lo_el_products type ref to if_wd_context_element.
    Data ls_products type wd_this->Element_products.
    data ld_material type string.
    lo_nd_products = wd_context->get_child_node( name = wd_this->wdctx_node ).
    lo_el_products = lo_nd_products->get_element( ).
    lo_el_products = wd_event->get_context_element( name = 'CONTEXT_ELEMENT' ).
    lo_nd_products->set_lead_selection( Exproting element = lo_el_products ).
    lo_el_products->get_static_attributes( importing static_attributes = ls_products ). "ls_products contain selected row content.
    ld_material = ls_products-material. "To get selected material number
    Regards
    Vasundhara

  • How to find out the link for the tables for sub contract PO

    Dear All,
    How to find out the link for the tables for sub contract PO, I am looking for the fields Material, Unit, Batch no., quantity.
    Please provide the solution for the Table related to ABAP.
    Thanks,
    V.V.

    Hi,
       Make use of the table EKKO, EKPO...
    For subcontract please select the option in EKPO-PSTYP.
    Regards
    GK.

  • Command Link in ADF table is not working/ PPR event not getting fired

    Hi All,
    I am having ADF Table, in that one column is with command link if click on command link, it is not navigating to corresponding page or method of a bean. If i give same command link out of the table it working fine, this issue i am facing is in IE9.
    if i use IE in compatibility mode the links works fine, even in IE8 version also.
    Browser: IE 9
    Jdev version: 11.1.1.5.0
    I tried all possible things, but nothing workout for me.
    showPopupBehavior not working in IE9 for af:table buttons (jdev11.1.1.5.0)
    Partial page rendering not working in ie9
    Command Link in ADF table is not working
    Thnks

    Hi,
    please file a bug if you have a customer support contract and provide a testcase
    Frank

  • Link B/W table field and  Applications

    hi
    Is there any transaction for Link B/W table fields and  Applications.
    regards,
    pavan.

    Hi
    If you starts from delivery you can find the sales order number and item in LIPS table: LIPS-VGBEL and LIPS-VGPOS, if you need to start from sales order it should be better to use the table VBFA (document flow) and search the next document of sales order VBFA-VBELN and VBFA-POSNN with VBFA-VBTYP_N = 'J'
    Max

  • ORACLE EXPRESS: build a page with multiple forms linked to one table

    hi,
    im using oravle application express. APEX
    i would like to build a page with multiple forms linked to one table (orders) , the page has 4 from  each one with different order_id number (depending on filtering),  and if the order is prepared click yes for each order and this 'YES' should be UPDATED AND SAVED to each order number in the same table with the press of one button.
    i created all the form as (sql query)
    and create one update process
    (UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_1
    WHERE ORDER_ID =:P10_ORDER_ID_1;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_2
    WHERE ORDER_ID =:P10_ORDER_ID_2;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_3
    WHERE ORDER_ID =:P10_ORDER_ID_3;
    UPDATE ORDERS
    SET TRAY_PREPARED =:P10_TRAY_PREPARED_4
    WHERE ORDER_ID =:P10_ORDER_ID_4;
    i dont know really if i can do that, but it appear hat it actually saving according to order_id number , but not all the time some time it saved the value as "null".
    please guide me what is the correct way to do this.
    I READ THIS ONE
    http://stackoverflow.com/questions/7877396/apex-creating-a-page-with-multiple-forms-linked-to-multiple-related-tables
    BUT IT WAS FOR MULTIPLE INSERT
    thanks.

    Sans,
    I am no Apex expert, but with a situation as "complex" as yours, have you thought about creating a VIEW that joins these 7/8 tables, placing an INSTEAD OF trigger on that view to do all the business logic in the database, and base your application on the view?
    This is the "thick-database" approach that has been gaining momentum of late. The idea is to put your business logic in the database wherever possible, and let the application (Form, Apex, J2EE, whatever) concentrate on UI issues,

  • How do we link a new table to CRMC_OBJECTS?

    RE: CRM4
    I tried to use the BBP_PDIGP table in the CRMC_MAP transaction for UI Structure CRMT_ISALES_BASKETITEM_BBP, but it says that table is not part of CRMC_OBJECTS
    How do we make BBP_PDIGP table part of CRMC_OBJECTS?
    If we can link the BBP_PDIGP table to CRMC_OBJECTS, then I can map MATGROUP from the UI Structure above with CRMC_MAP to SCHEMA_TYPE. 
    Next, we need to map the SCHEMA_TYPE in CRM to the field in ERP that we have the data already.
    Sounds simple enough...but, I don't know how to do the linkages.
    Otherwise, how might we link the field SCHEMA_TYPE found in table BBP_PDIGP to one of the objects already found in the UI Structure CRMT_ISALES_BASKETITEM_BBP - Here's the available list:
    AC_ASSIGN     Settlement Account Assignment (CRM)
    ACCOUNTING     Account assignment
    ACTION     Actions
    ACTIVITY_H     Header data activity
    ACTIVITY_I     Activity Item Data
    APO_I     APO item data
    APPOINTMENT     Dates
    ATTACHMENTS     Attachment set, not BDS!
    BATCH     Batch Properties
    BILLING     Billing data
    BILLPLAN     Billing plan
    CANCEL     Cancellation
    CONDITION_COM     Communication structure condition det.
    CONDITION_H     
    CONDITION_I     
    CONDLINE     
    CONFIG     Configuration data item
    CONFIG_FILTER     Configuration filter item
    CONFIRM     Availability confirmation
    COPY     General copy control
    COUNTER_H     APO Item Data
    COUNTER_I     APO item data
    CREDITVALUES     Open Transaction Credit Values
    CRMD_CASE     CRM Case Management
    CUMULAT_H     Header totals
    CUMULATED_I     Item cumulation values
    CUSTOMER_H     Customer header data
    CUSTOMER_I     Customer item data
    CUSTTAB_H     Table-Like Header Data for Customer
    CUSTTAB_I     Table-Like Item Data for Customer
    DOC_FLOW     Document flow
    DYN_ATTR     Dynamic attributes
    EVENT     Event handler
    FINPROD_I     Financing product data item
    FREIGHTCOST     Shipment costs
    IPM_RCHAR     Rights Characteristics
    IPM_RCTRL_I     Rights Control Data
    LEAD_H     Lead Header Data
    LIMIT     Limit
    LINK     Link Handler
    MESSAGES     Message Handler
    OPPORT_H     Opportunity header data
    ORDER     General order processing
    ORDERADM_H     Administration header
    ORDERADM_I     Administration item
    ORDPRP_I     Connection PPR to transaction item
    ORGMAN     Organizational data
    PARTNER     Partner Set
    PAYPLAN     Payment Schedule
    PRICING     Pricing Data
    PRICING_I     Pricing data und results
    PRIDOC     Pricing document
    PRIDOC_COM     Communication with price determination
    PRODUCT_I     Item product data
    QUALIF     Qualification Requirement Set
    REFOBJ     Service Reference Object
    SALES     Sales data
    SCHEDLIN     Schedule lines
    SCHEDLIN_I     Scheduling lines item view
    SERVICE_H     Service header
    SERVICE_I     Service item
    SERVICE_OS     Service reference object subject
    SERVICEPLAN_I     Service Plan Item
    SHIPPING     Shipping data
    STATUS     Status
    STATUS_H     Header Total Status
    STRUCT_I     Item structure data
    SUBJECT     Service Subject
    SURVEY     Questionnaire
    TAX     Taxes
    TEXTS     Texts
    TOLERANCE     Tolerances

    Hi Mike,
    Will it be possible for you to let me knw how the entries come in table CRMD_LINK...??
    I am not getting the entry  of orgman in this table for item guid.
    Pls help.
    Thanks,
    SA

  • Linking asset tracking tables

    Hi all,
    Can anyone help me with connecting tables mtl_material_transactions and fa_mass_additions.
    I am using asset tracking, and after issuing item from inventory, it finishes in FA. How can I now which mass_addition belong to which material_transaction?
    Best regards, Thanks for help

    Varun,
    Can you tell me the linking of FI tables with different modules
    It would require a book to answer your question.  Log onto a system and look at the repository (SE84), which contains info about tables and fields and programs that link objects.
    which are the important fields in those tables.
    All fields are important.
    Unfortunately, this forum is not suitable for this type of question.  I encourage you to obtain one of the many FI textbooks available and study this.  Also, SAP offers many fine FI classes which would be another opportunity for you to get the basic FI knowledge you require.
    Best Regards,
    DB49

  • Linking a dbase table to an Oracle one

    Hello Every body
    Is there a mean (by ODBC,JDBC or somethink else) to link a dbase table to an oracle table so that oracle process can read the dbase table from the oracle side?
    Please advice.
    Thanks in advance

    try hetrogeneous services of Oracle
    check this link http://www.easysoft.com/applications/oracle/hsodbc.html

  • ALV Report program linking 5 db tables.

    What should be the general approach to generate a simple ALV program that links 5 database tables, where the selection criteria is date field?
    Edited by: Matt on Dec 4, 2008 11:38 AM - Removed all caps

    SAP Query is a bit of an abomination -- complicated to use correctly and definitely difficult to maintain.
    If you need to get stuff from 5 different databases in one report it might be better from a Systems Performance perspective to create a "Z_object" containing the data you want and then simply run your ABAP ALV against your "Z_Object".
    Depending on the frequency / content of your report you could run say a batch job every evening to update your "Z_Object".
    The other possibility would be to run your query on a BW/BI system if the volume of data is quite large -- however if you don't have BW then OK this is not a possible solution.
    My preference would be to go for the "Z-Object".
    I also have to wonder at how the original application was designed if you really do need to collect data from 5 different data bases --perhaps you should re-design the original application.
    Cheers
    jimbo.

  • Datasource linked to the table EKKN ?

    Experts,
    what is the closest datasource linked to the table EKKN ?
    I have couple of fields available in this table and i need to bring those into BW.
    Inputs appreciated.
    Regards

    YES please check link
    http://help.sap.com/saphelp_nw70/helpdata/en/5c/8ea0e626e442efb109232830faded9/content.htm
    data source 2LIS_02_ACC might help you.
    also see
    to extract ekkn table
    hope it helps
    thanks
    pathak

  • How to link two fact table in OBIEE

    i experts
    1. I have one fact table EXCHANGE_FACT(Contains the exchange rate for each curruncy on each day) .
    2. I Have anothe fact Table ACCOUNT_FACT(Contains Amount for each currency on each day).
    Now i have to link these two table on bace of currency_key and time_key in OBIEE. so i have can i achieve it in OBIEE.
    Regards
    Frnds

    Hi Frnds,
    You should create two common dimensions (currency en time) and join each fact table seperately to these dimension. Create a demnsion (hierarchy) for each dimension.
    Good Luck,
    Daan Bakboord
    Scamander Solutions

  • Link in ALV table

    Hi,
    One of the table column in my ALV table displays Sales order with line item separated by "-".
    For Ex : 70000174 - 10.
    The sales order number should be a link in the table. When we click on Sales order number it should display another view.
    How can I make only sales order number as a link?
    Please note: Line item number should not be a link.
    It should appear as below in the table.
    70000174 - 10
    70000175 - 10
    70000176 - 10
    70000177 - 10
    Thanks in advance,
    Prathap

    Hi,
    Having concatenatedvalue into once column and showing link to part of cell is not possible. Try to have salesorder and lineitem in 2 columns, and provide the link for salesorder.
    Let your cleint know that the above case(original post) is not possible.
    One more thing, POPINS are  not possible for ALV. Youcan use TABLE UI element for popins.
    Regards,
    Lekha.

  • Link in the Table

    Dear All,
                  I am having a requirement of hyper link in the Table. The table is getting populated with the link but if i click the link it should navigates to the URL specified there.
    What should i make it to work like that...
    Thanks in advance
    Yogesh

    Hi Nithya,
            Thanks for your reply...
    Actually my requirement is like I am using the table control to display a list of URL LINKS. when i click that URL link it should navigate to the specific URL specified. I am not using that LINK UI element.
    Thanks
    Yogesh

  • How to link MM & FICO Tables

    Hi,
    I have a requirement to extract the data from the transaction FBL1N ( i.e. from BSIK & BSAK) to get the details of XBLNR-Reference Document & WRBTR-Amount in Document Currency to display in the MM-Purchasing reports. In MM-Purchasing tables we are using ( EKKO, EKPO, EKBE) tables. Bothe FBL1N & the MM-Purchasing custom report runs based on Vendor & Company code.
    Please provide how to link these two.
    Regards,
    Kiran.L

    Hi,
    You can link the two tables using joins.
    Here's one simple example.
    Select matnr ersda mtart maktx into corresponding fields of table itab1 from mara as a inner join makt as b on amatnr = bmatnr.
    If you want to use outer join use outer join in place of inner join.
    Hope its helpful.
    Reward points if found helpful...
    Cheers,
    Chandra Sekhar.

Maybe you are looking for

  • Parent member level rollups of amount

    I have dimension formula in base level members of account and values are properly being calculated in base level. But these values are not being properly rolled up in to parent account in the report. Is someone is experiencing same issue in BPC7NW. T

  • Transferring Final Cut Training DVD to HD and then playing from HD

    Does the latest (Aug 07) MacBook Pro come with any software that is able to play the contents of Final Cut Pro Studio 2 training DVD after it's contents have been copied to a folder on the HD? I did that to save wear on my Optical Drive and now I can

  • Webservice being called multiple times throws strange error

    This is something that just started occurring and doesn't make much sense to me. Using JDK 1.7 and doing the following: FlashlineRegistryTr registry = new FlashlineRegistryTrServiceLocator().getFlashlineRegistryTr(lUrl); ((Stub)registry).setMaintainS

  • Inserting any JComponent in a JEditorPane

    Hi, I'm having some trouble using JEditorPane and JTextPane. I would like to include some JComponent of my own into them. With JTextPane, no problem, let's create a style with StyleConstants.setComponent(myStyle, myComponent); then insert a space cha

  • Problem with large text-files, HOWTO?

    Hi! I'm making an application witch shall search through a dir with 3000 html-files, and find all links in those files. I have a text files with the format: file1: linktofile:linktofile6:linktofile5 file2: linktofile1:linktofile87: and so on. This fi