Relation between SD and MM  modules - Table name which links 2 modules

list the   Table  name ..which   links the     SD and MM modules ....
specify the name of the   table......
thnks in advancce.

I am giving you a comprehensive list to SD and MM tables. Most of them will have a link to another. This can be seen via the foreign key relation. For example, VBAP (item level data contains a material whose master data is in MARA).
<b>Sales Document</b>
VBAK Header Data
VBAP Item Data
VBAG Schedule Line Data in Sch. Agrmt.
VBUK Header Status and Administrative Data
VBUP Item Status
VBRL SD Document: Invoice List
VBPA partner
VBKD Business Data
VBKA Sales activities
VBEP Schedule Line Data
VBRK Billing: Header Data (invoice)
VBRP Billing: Item Data (invoice)
VBFA Sales Document Flow
LIKP Delivery: Header Data
LIPS Delivery: Item data
<b>Material Master</b>
MARA General Data         
MAKT Short Texts, descriptions           
MVKE Sales Org, distribution channel     
MLAN Sales data, tax indicator, tax      
MARC Classification                      
MBEW Plant Planning Data                 
MVER Warehouse Management Storage Type   
MARD Consumption Data                    
MCHB Storage location data
PS: Award points and close this question if this solves your query.
Regards.

Similar Messages

  • Relation between Responsibility and Business Area

    Hi,
    I have a requirement wherein i have to make a particular workbook available in specific responsibilities.
    Now when i have to create a folder then how do i know in which Business Area should i create the folder.
    Basically i need to know the relation between Responsibility and Business Area i.e which Business Area i should create the folder so that it is visible in desired responsibilities.
    Is there any way possible i can know this.
    Regards,
    Shruti

    Hi,
    You can do that in two ways:
    1. Go to the administrator and check the sharing BA for each responsibility you require.
    2. Query the database to retrieve the sharing.
    Do whatever you find easier.
    For the database option you can run the following (change it to your own schema name):
    select distinct
    t.ba_name,
    t.ba_id,
    t.ba_description,
    case when substr(t.ba_created_by,1,1)='#' then fu.user_name else t.ba_created_by end as CREATED_BY,
    disco_users.eu_username,
    case when instr(disco_users.eu_username,'#')=0 then disco_users.eu_username
    when instr(disco_users.eu_username,'#')>0 and instr(disco_users.eu_username,'#',2)=0 then (select fu.user_name from fnd_user fu where fu.user_id=substr(disco_users.eu_username,2,5))
    else (select resp.responsibility_name from fnd_responsibility_tl resp where resp.responsibility_id=substr(disco_users.eu_username,2,5))
    end as "Shared Name / Responsibility"
    from eul_us.eul5_bas t,
    apps.fnd_user fu,
    eul_us.eul5_access_privs disco_shares,
    eul_us.eul5_eul_users disco_users
    where substr(t.ba_created_by,2,10)=to_char(fu.user_id(+))
    and t.ba_id=disco_shares.gba_ba_id
    and disco_users.eu_username(+) NOT IN ('EUL5', 'PUBLIC')
    AND disco_users.eu_id(+) = disco_shares.ap_eu_id
    Hope it helps
    Tamir

  • Relation between psa and data source

    Hi everyone,
    What is the relation between DataSource and PSA.

    PSA tables get created when u activate datasource in BW...replication is just required for purpose of Meta data loading for that data source....PSA will store data temporarily when u will load data from R/3....just u can manage PSA request datasource wise....by right clicking datasource...selecting manage tab u can see all the PSA req corresponding to that particular datasource.

  • Table relations between vbrk and bkpf for  Accounting Document Number

    hello,
    i am using 4 tables to get data into my programs.
    vbrk,vbrp konv and bkpf.
    i want to get belnr from bkpf.i found relation between vbrk and belnr.but in vbrk table belnr's value is initial.
    can anybody tell me that how should i relate vbrk and bkpf or how to get Accounting Document Number(belnr) from bkpf for Billing Document(vbeln).
    regards,
    soniya s.

    hi,
    chekc this. its working for me.
    data : WA_AWKEY LIKE BKPF-AWKEY.
    data :  WA_BELNR LIKE BKPF-BELNR.
    data : LENGTH TYPE I.
    *BREAK MTABAP.
    LENGTH = STRLEN( IT_VBRK-VBELN ).
    if  LENGTH = '10' .
    MOVE it_vbrk-VBELN TO WA_AWKEY.
    SELECT SINGLE BELNR FROM BKPF INTO WA_BELNR
      WHERE AWKEY = WA_AWKEY
      AND AWTYP = 'VBRK'
      and blart = 'RV'.
    it_final-acc_doc = WA_BELNR.
      CLEAR WA_BELNR .
      CLEAR WA_AWKEY .
    else.
    CONCATENATE '0' it_vbrk-vbeln INTO wa_awkey.
    SELECT SINGLE BELNR FROM BKPF INTO WA_BELNR
      WHERE AWKEY = WA_AWKEY
      AND AWTYP = 'VBRK'
      and blart = 'RV'.
    it_final-acc_doc = WA_BELNR .
      CLEAR WA_BELNR .
      CLEAR WA_AWKEY.
    endif.

  • Database table/FM to find relation between plant and company code in SRM

    Hi,
    I have a requirement where I need to determine the relation between the plant and company code in SRM.
    The plant and company code both belong to R/3. We are replicating the plant by using the report BBP_LOCATIONS_GET_ALL.
    This plant is now available as a BP in SRM. But from which SRM table or using which SRM FM can I get the relation between this and the company code?
    Thanks,
    Srivatsan

    Hi
    <b>Check table BBP_LOCMAP. (Plants) -  Manage Table Business Partner   > System   > Location
    BBP_COMPCODE_FAV               User-Specific Favorites for Permitted Company code.</b>
    Hope this will help.
    Please reward suitable points, incase it suits your requirements.
    Regards
    - Atul

  • Table that gives the relation between plant and company code

    Hi gurus,
    I actually have plant number and using this plant value i need to get the company code.
    Is there any table that gives the relation between plant and company code. So,that i can get the company code details.
    Thanks in advance.

    Hi Bhanuphani,
    Use  T001K  where BWKEY is the plant
    Reward if useful
    Thanks Arjun

  • How to get data from three tables (A,B,C) having one to many relation between A and B .and having one to many reation between b and c

    i have  three tables A,B,C.  there is one to many relation between A and B. and one to many relation existed between table b and c . how will get data from these three tables

    check if this helps:
    select * --you can always frame your column set
    from tableA a
    left join tableB b on a.aid=b.aid
    left join tableC c on c.bid=b.bid
    This is just a general query. However, we can help you a lot more, if you can post the DDL + sample data and required output.
    Thanks,
    Jay
    <If the post was helpful mark as 'Helpful' and if the post answered your query, mark as 'Answered'>

  • Relation between matnr and kunnr in master tables

    Hi Friends,
    could you please suggest me database tables where we can get relation between matnr and kunnr in master tables.
    Thanks,
    Sathish

    Hi Satish,
    MARA ---> General Material Data
    Best regards,
    raam

  • Relation between Eban and Erev tables

    Hi,
       What is the Relation between Eban and Erev tables?
    Thanks and Regards,
    Parvatha Reddy

    Hi,
    if you have activated version management for purchase requisitions (spro - mm - purchasing - version mgmt - set up ver mgmt for PR), then if any changes are made to the fields as specified in the customizing, then an entry is made in EREV table. EBAN is the pur. reqn table.
    Hope it answers your query.
    Regards,
    Vivek

  • Relation between BKPF and EKBE table for reversing document?

    Is there any relation between BKPF and EKBE table for reversing document when STBLG is blank in BKPF.
    AND
    How to differentiate Old Accounting document / Reverse document / New document when in BKPF-STBLG is blank for all three document and BKPF-XBLNR are same for all.

    Hi Varun,
    Table Document no (BKPF-BELNR) is link between Material document no (EKBE-BELNR). If you are looking for validating Material reversal document then please use following logic for your requirement.
    Material Document (MBLNR) & Material Document Year (MJAHR). Pass material document (MBLNR) to MSEG-SMBLN to read MSEG-MBLNR with MSEG-MJAHR to MSEG-SJAHR, if record found delete both the documents i.e. MSEG-SMBLN & MSEG-MBLNR (donu2019t consider these documents in the logic) and display Material Document No. (MSEG-MBLNR)
    Regards,
    Santosh

  • Relation between PLM and QM modules

    What is the relation between PLM and QM modules?
    These two are different modules or QM is one of the module in PLM and there is no module as PLM and its just general term?
    Why QM is many times called with PLM - QM?

    Hi Sandip,
    mySAP PLM has many key features like:
    1.Collabarative Engineering and Design.
    2. Custom Product Development
    3. Knowledge Management
    4. Project Management
    5.Colloborative Maintenance management
    6. QUALITY MANAGEMENT
    <u>Begin quality planning during the product design phase, and create a foundation for quality inspection processes and in-process control during production
    and Allow employees to play a central role in quality management
    and it also Satisfy criteria for ISO 9000 and Good Manufacturing Practice (GMP)</u>
    Tracking the Product through out its life from a quality perspective is PLM-QM
    The Functionality that Spans the Entire Product & Asset Life Cycle are:
    1. Life Cycle Data Management (MM, BOM, DMS, CAD Interface, Classification System)
    2. Program & Project Management(Project System, Collaboration Folders, Collaboration Projects, XRPM, xAPPS)
    3.QUALITY MANAGEMENT
    4. Asset Life-Cycle Managment
    5. Environment, Health and Safety.
    Regards
    Rehman
    Reward Your Suitable Points if Helpful

  • Relation between vbuk and vbup tables?

    relation between vbuk and vbup tables?
    regards phani

    Dear Phani,
    http://help.sap.com/saphelp_erp2005/helpdata/en/70/a7853478616434e10000009b38f83b/frameset.htm
    VBUK .... Sales Document: Header Status and Administrative Data
    VBUP ....Sales Document: Item Status
    VBUK contains header status where as VBUP contains individual item status of the header. Similar to VBAK and ABAP where VBAK contains Sales Document header data and VBAP contains Sales document item data.
    Hope this will help.
    Regards,
    Naveen.

  • Relation Between RSEG and BSET Tables

    Hi ,
      I want to Calculate the the tax for MIRO document Line item wise, i am not able to get the relation between RSEG and BSET from where i can get the taxes. so, any one can help me to resolve this issue on priority.
    Regards,
    Venugopal.

    Hi, Mr. fantasy,
    I'm not too familar with MIGO - now working in non-logistics environment.
    Did you already try RSEG fields
    LFBNR     LFBNR     CHAR     10     0     Document No. of a Reference Document                                  
    LFGJA     LFGJA     NUMC     4     0     Fiscal Year of Current Period                                  
    LFPOS     LFPOS     NUMC     4     0     Item of a Reference Document     
    just an idea.
    Regards,
    Clemens

  • Can any one explain me the relation between BDC and reports events?

    hi experts.....
    can any one explain me the relation between BDC and reports events? we are using report events in BDC programmes why?\
    Is reports events occurs in each and every concept in ABAP i.e creating custom idocs, smart forms, sap scripts, dialog programmes, module pool technics?
    thanks in advance

    The forums are expert forums. So the first thing I would do is change your name.
    It's like entering a grand prix in a car with a "Student Driver" sign.
    Rob

  • Relation between GR and Theoritical qty

    Hi,
    I have an issue with a report program which fetches the PO and material data from ME23n.The program should display PO, material head, material quantity, GR qty, vendor, theoretical qty, Actual qty.
    Here for one of the POs, the GR qty is 1CU but theoretical qty is getting as 8640.
    Can anyone explain what is the relation between GR and theoretical qty ? and how to solve this issue?
    How to calculate theoretical qty ?
    Thanks.

    Hi
    By GR you mean Goods Receipt.There is no Idoc for this process.SRM uses XML format for Confirmation which is equivalent to Goods confirmation process in ERP system.
    GR Idoc - You can try WE09. Give the message type and all the details that you have. you will get the Idoc number.
    If you are in position to tell what is your exact requirement with table in SRM system,i should be in position to help.
    There is a transaction called BBP_PD using which you can get the required table.
    Just go to this transaction in SRM EASY Access Menu.
    Select Object Type as (Take F4 Help here)
    for confirmation ,object type = BUS2203.
    You will get an interactive list and you can browse the list and in the last node ,you will get some table names which may be helpful.
    If you have the PO# you can use the FM BBP_PD_CONF_GETLIST with the parameter I_FOR_PO_ID, this will return a E_PDLIST table with the GR numbers related to the PO that you used as input.
    Useful related pointers ->
    Goods Receipt and Invoice Receipt
    Re: interface required to post invoice in EBP system in SRM4.0
    Re: BAPI or FM to create Invoice in SRM , without reference to PO ?
    Do let me know.
    Regards
    - Atul

Maybe you are looking for

  • Do JNDI look up for entity beans from a session bean  in different  jars

    I have a problem doing entity beans JNDI look up from a session bean which is deployed as a separate package (session.jar) from the entity beans (entity.jar) I believe if both session bean and entity beans are deployed into one jar and I specify ejb-

  • Keep getting error when trying to use =related function in PowerPivot

    Greetings, I have created a relationship between two tables based on a common field in PowerPivot, and whenever I use the =related() function to try and bring data from a field in one table to a field in another table, I keep getting and error messag

  • Link Query and Ref Cursor Query

    Hi all!! How can I link Query and Ref Cursor Query?? I mean, How can I pass input parameters to the PL/SQL procedure if they are not User parameters but they come from another table?? Thanks a lot F.

  • Digital camera RAW formats supported - Canon EOS 7D

    Does anyone know if and when Canon's 7D RAW images will be supported by Aperture 2.1? I just got the 7D and Aperture is not recognizing the RAW images. What is the typical lag time for Apple to add new camera model RAW files?

  • Will there be a 4G Network Extender

    I currently have the Samsung 4G Network Extender. It works great where it is installed in my home office, but my cell phone reception is terrible in the rest of the house. Since Verizon has rolled out 4GLTE in my area also, will there be a 4G Network