Link between COMM_PRODUCT table and Pricing Reference Material

Hello
  In CRM we have in transaction COMMPR01 the material, and in the Sales and Distribution tab, the field Pricing Ref. Prod. fille with a reference material. We are looking in the tables for this link, but have not found it. We have table CRMM_PRODUCT for the 1st material, and have looked in others, such as CRMV_PROD_SALESG, CRMM_PR_SALESA, but have been unable so far to find the link. Any answers on this?
Thanks,
  George

Hello George,
Check PRICE_PRODUCT field of table CRMM_PR_SALESA .
Also you can refer to table CRMM_PR_SALESG.
Hope this helps!
Best Regards,
Shanthala Kudva.

Similar Messages

  • Link Between OINV Table And OBTN Table

    I want to create relationship b/w A/R Invoice and Batch Number transaction Reports table.
    sap point out two tables of Batch Number Transaction Report RBTN and OBTN,Problem is that i never found any  table with name of RBTN.
    plz tell me what is RBTN table???why its not in sql database  and how i can create link b/w A/R invoice and Issue for production  .

    Hi Vinu.........
    Welcome to SAP Business One Forum............
    Please check the link between these tables........
    SELECT Distinct T1.BatchNum
    FROM IBT1 T0
    Inner Join OIBT T1 On T0.BatchNum=T1.BatchNum AND T1.ItemCode=T0.ItemCode
    INNER JOIN DLN1 T2 ON T2.DocEntry=T0.BaseEntry AND T2.ItemCode=T0.ItemCode
    inner join ODLN T3 on T2.DocEntry = T3.DocEntry LEFT JOIN INV1 T4 On T4.BaseEntry=T2.DocEntry Left Outer Join OINV T5 On T5.DocEntry=T4.DocEntry
    WHERE T0.BaseType = 15
    Hope this will help you........
    Regards,
    Rahul

  • Link between credit management and pricing procedure

    Hi,
    I want to know the link between the pricing procedure and credit management,on basis of that system determine that credit value is exceeded at the time of sales order.
    Regards
    Prabudh

    Hi,
    In pricing procedure there is a field called Subtotal.
    SUBTOTAL
    A key is assigned from the drop down menu; this can be used
    by the system in other area like Sis for reporting purpose
    also
    As Pricing comes under billing and In this there is close link with the SIS which is Sales Info System. Subtotal fieldand Net value notifies the SIS about the value and thus calculates the Credit Check.
    Hope this will help.
    Thanks,
    Raja

  • Link between technical table and datasource - SE16

    Hi,
    I'm looking for the table in SE16 that gives me the association between my technical tables and my datasources/infosources:
    for example:
    I have table /BIC/B0000161000 and I want to know for which datasource this is the PSA table...
    Kind regards
    Joke

    already found the link: rstsods

  • Link between XML table and a resource

    I have registered an XML Schema in Oracle and the tables were automatically generated. I can access the data in these tables via "SELECT extractValue(value(i),'/factureExterne/codeTypeFacturation')
    FROM <xml_table> i". I use WebDAV + ftp to upload my XML-files.
    How can I retrieve the name of the file in the WebDAV folder that corresponds with the row in my table?
    Regards,
    Vincent Botteman

    Vincent:
    I found a way to get de conexion using the undocumented funcion sys_op_r2o.
    sys_op_r2o transforms an XMLRef to the object_id of the target row, then its possible to join the XML Schema based table to the resource_view or path_view information.
    The XDB$RESOURCE, store an XMLRef to the target row of the table and is available using extractValue(res,'/Resource/XMLRef') function.
    Here the example:
    SELECT r.path,extractValue(value(i),'/factureExterne/codeTypeFacturation')
    FROM <xml_table> i,path_view r
    where ref(i)=extractValue(res,'/Resource/XMLRef');
    If you need to do this inside a trigger of the target table look at the example of the thread:
    Undocumented function sys_op_r2o
    Best reagards, Marcelo.

  • How  to link between these tables and get the bom explosion

    tables : mast,stpo,makt
      SELECT AMATNR BMAKTX CIDNRK CMENGE C~MEINS  INTO CORRESPONDING FIELDS OF TABLE IT_COMP_IDEL FROM
                       MAST AS A INNER JOIN MAKT AS B ON AMATNR = BMATNR
                                 INNER JOIN STPO AS C ON ASTLNR = CSTLNR
                       WHERE AMATNR IN S_MATNR AND AWERKS IN S_WERKS.
    using cs13 to get the bom summary
    using these table to but i got only few materials only,
    but cs13 got more materials
    how can i solve that one
    Regards
    ds

    Hi,
    Just go through this program i think it will help u out.
    TABLES: MARA, MARC.
    TYPE-POOLS : fibs,stree.
    TYPES: BEGIN OF STRUCT_BOM,
            MATNR TYPE MATNR,          " Material Number
            WERKS TYPE WERKS_D,        " Plant
            IDNRK TYPE IDNRK,          " BOM Item
            STLAL TYPE STLAL,          " Alternative BOM
            STUFE TYPE HISTU,          " BOM Level
            OJTXB TYPE OJTXB,          " Object description (assembly)
           END OF STRUCT_BOM.
    *- table types
    types: t_bom type table of struct_bom.
    *Internal Tables to hold the BOM data.
    DATA: ITAB_BOM type table of STRUCT_BOM.
    DATA: WA_BOM TYPE STRUCT_BOM,
          wa_stb type stpox,
          wa_matcat type stpox.
    DATA: IT_STB       type standard table of STPOX,
          IT_STBC      type standard table of STPOX,
          IT_MATCAT    type standard table of CSCMAT.
    *-- to enter BOM DATA
    *Selection Options
    select-options: s_matnr for V_matnr,       "BOM Material
                    s_plant for V_werks.       "BOM Plant
    *Input Parameters
    parameters:     p_alter type stko-stlal,      "Alternate BOM
                    p_usage type stzu-stlan,      "BOM usage
                    p_appli type tc04-capid,      "BOM Application
                    P_CATE  TYPE STKO-STLTY DEFAULT 'M'.      "BOM Category
    INITIALIZATION.
    REFRESH ITAB_BOM.
    CLEAR WA_BOM.
    REFRESH IT_STB.
    REFRESH IT_MATCAT.
    START-OF-SELECTION.
    SELECT matnr
           werks
           stlal
           INTO CORRESPONDING FIELDS OF TABLE itab_bom
           FROM mast
           WHERE matnr IN s_matnr
           AND werks IN s_plant
           AND stlan = p_usage
           AND stlal = p_alter.
    CLEAR V_MATNR.
    CLEAR V_WERKS.
    DATA: WA_STB TYPE STPOX,
          WA_MATCAT TYPE CSCMAT.
        v_matnr = wa_bom-matnr.
        v_werks = wa_bom-werks.
        CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
          EXPORTING
            capid                 = p_appli
            datuv                 = sy-datum
            mktls                 = 'X'
            mehrs                 = 'X'
            mtnrv                 = v_matnr
            stlal                 = p_alter
            stlan                 = p_usage
            werks                 = v_werks
          TABLES
            stb                   = it_stb
            matcat                = it_matcat
          EXCEPTIONS
            alt_not_found         = 1
            call_invalid          = 2
            material_not_found    = 3
            missing_authorization = 4
            no_bom_found          = 5
            no_plant_data         = 6
            no_suitable_bom_found = 7
            conversion_error      = 8
            OTHERS                = 9.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    Then just print whatever data u want it_stb, it_matcat tables.
    reward points if u find my answer helpfull.

  • Table for link between Accounting document and Billing document

    Which is the table for link between Accounting document and Billing document ?
    Thanks & Regards

    Ø Go to SE16N, enter table BSAD
    Ø In the Reference Field (VBELN) enter the Billing Document no. 
    Tips:
    Ø Make sure that only those billing documents will be considered whose accounting documents actually exists
    Ø No Accounting documents will be displayed for Credits, Free of charge orders and those acc. Documents which have been cancelled.

  • Table link between contract document and billing document

    Hi,
    Please let me know the table link between contract data and its billing plan nnumber.
    Regards,
    bhaarathi.

    VBKD is the Table name
    if Ordertype "G"  <--- that means It is a contract
    From VBAK and VBAP you can get the Contract Details for the Order Type "G"
    Go to Table VBKD, with the contract and get the billing plan .
    FPLNR <--- is the Billing plan
    Here you get the relation Between Contract and Billing Plan

  • Establish link between Billing document and material document

    Hi All,
    I have billing document for some materials created using the FM BAPI_BILLINGDOC_CREATEMULTIPLE and I have created the material document for the corresponding materials using the FM BAPI_GOODSMVT_CREATE. Both these documents have been created in separate FM calls.
    My requirement now is that I have to establish a link between these documents, so that the material document appears when  the "Document flow" button is clicked in billing screen (VF02). Does have any suggestion for making this happen ? Any help will be highly appreciated .
    Cheers,
    Sandeep

    hi Meenakshi,
    Check with this i hope it will work
    you can have the data from BKPF through fields like AWKEY and AWTYP and VBRK (vbeln).
    in bkpf there is a field called AWTYP  in which you have to specify 'VBRK',and you have split AWKEY depending o upon the vbeln .
    bkpf-awtyp = 'VBRK'
    bkpf-awkey = vbrk-vbeln
    bkpf-bukrs = vbrk-bukrs.

  • References between source tables and mappings

    Hi,
    I'm looking for a table, view etc. in the repository which shows me references between source table and mappings?
    cheers,
    Bernhard

    Here's another one:
    http://www.nicholasgoodman.com/bt/blog/2005/04/01/owb-sources-and-targets-sql/
    select
    distinct 'TARGET',
    comp.map_name,
    comp.data_entity_name,
    comp.operator_type
    from
    all_iv_xform_map_components comp,
    all_iv_xform_map_parameters param
    where
    lower(operator_type)
    in ('table', 'view', 'dimension', 'cube')
    and param.map_component_id = comp.map_component_id
    and param.source_parameter_id is not null
    UNION
    select
    distinct 'SOURCE',
    t1.c1,
    t1.c2,
    t1.c3
    from
    (select
    comp.map_name c1,
    comp.data_entity_name c2,
    comp.operator_type c3,
    max(param.source_parameter_id) c4
    from
    all_iv_xform_map_components comp,
    all_iv_xform_map_parameters param
    where
    lower(operator_type) in
    ('table', 'view', 'dimension', 'cube')
    and param.map_component_id = comp.map_component_id
    group by
    comp.map_name, comp.data_entity_name, comp.operator_type) t1
    where t1.c4 is null
    order by 2,1

  • Link between Business area and Material master

    Hi guys
    Is there a link between Busines area and material master, i am getting an error when I am trying to Move part of material stock from unrestricted stock to Project stock by 411/Q.
    Error
    Business area xx changed to yy
    Ideas?
    sam

    Hi
    Yes Business area has a link with MMR
    Business area determination is through by three rules
    1. Plant and item division
    2. Sales area( sales orgdistribution channeldivision )
    3. Sales org, distribution channel and item division
    Here item division means the division in MMR that is basic data 1 tab and sales org 1 tab
    This division field forms the main link between Business area and MMR
    Regards
    Raja

  • TABLE link between RPM Item and corresponding cProject

    Is there a table that shows exact link between RPM Item and corresponding cProject that is created automatically?
    Thanks

    use Table RPM_OBJ_LINK
    select on
    PROJECT_GUID= Item GUID
    OBJECT_TYPE = '0INMCPROJECT'
    Get cProject GUID from OBJECT_KEY.

  • Relations Between MLCD table and material movements type

    Dear all,
    I Have a question about relations between MLCD table and Material movements.  For Example We have a movement type Z71 when we did a movevent with tis movement type from MB1C Transaction. System creates a record in Mlcd Table. in this table Category field is VN and  PCat field is V. How system decides about VN and V
    is there any table which contains these conversions or is there any custimization in MM or CO modules ?
    Could you please help me if you have any information about subject.
    Best Regards

    Hi Anupam
    Thanks for your speedy reply.sorry i forget to mention i need FG materials details for given plant,production version,metrial type.In
    MKAL i am not able to give material type as input parameter
    Regards
    Bala

  • Table for link between Expense receipts and G/L account

    Hello,
    Could you give me the table where we we can see for all "expense receipt" the account of finance (G/L account associated to each expense)
    Thank you in advance

    Hi Tarek,
    Thatu2019s correct what Nandagopal is saying, there is no table where you can see all G/L account associated to each expense.
    However you can see the all your expense type relation to Wage type in view V_T706B4 and then respective wage type relation to symbolic account in view V_T706K.
    Then you can check the link of symbolic account to particular GL account at below IMG Path.
    Financial Accounting / Travel Management / Travel Expenses / Transfer to Accounting
    Please note that the link happens in below manner and we cannot get any direct link between Expense type and GL account.
    Expense Type -> Wage type -> Symbolic Account -> GL Account
    Do let us know for any query.
    Thanks,
    Vaibhav

  • Link between Fixed Asset and Purchase Order Tables

    Hi,
    I am working in Fixed Asset Report. I have a folllowing Doubts.Please clarify.
    1. How to link the Fixed asset tables with PO_HEADERS_ALL
    2. I took the Asset_Account field from FA_ASSET_DISTRIBUTIONS_V . But how to link with this table to other Fixed asset tables.
    Please give me the link between these tables. It will be grate helpful for me.
    Thanks,
    Prakash

    Hi,
    This should be mentioned/explained in [Oracle eTRM|http://etrm.oracle.com/] website (which is down for now). Others who already know the exact link may be able to help.
    Regards,
    Hussein

Maybe you are looking for

  • What's wrong with the New  iMac's AirPort?

    Hello Last night I spent 4 hours trying to connect with my brand new wireless router (Netgear DG834PN). The one time I did connect and tried to configure using Netgear's Wizard (using Safari) my Mac's AirPort Extreme dropped the connection, never to

  • Flash Player For 911 Homeland Security News Video.

    Can I install Adobe Flash Player 10.  Adobe Reader 9.5.1  is on my computer  Windows 7.

  • No codepage for Charset message

    Hello everyone. I have  published my captivate file and have tried creating a plug file from it using TopClass Publisher. The problem is, I keep getting this error message: No codepage for charset - Use CP_ACP? Would anyone happen to know what this m

  • What's the easiest way to make a password system? 10 Duke Points!

    Hello everyone, What's the easiest way to make a password system in java? I'd like to be able to: 1) store passwords for about 6 people. 2) have the people only interact with my program using my Eclipse console with no GUIs, pop-ups or Swing code. 3)

  • What is the best way to learn SAP Java

    Hi, I would like to understand basic principles of SAP Java, to check how it is working, primarily J2EE components like JMS, WS, EJB, Persistence... As I'm ABAP and PI consultant, I see this as my next step, sure I'm not aiming to be experienced Java