Standard Reports/FM's/BAPI's in CRM TPM

Hi ,
      Can some one some say me are there any Standard Reports/FM's/BAPI's in CRM TPM to get the executed trade promotions.
Thanks,
Muneesh.

Hi ,
some basic  info related to crm tpm...
DB tables associated
CGPL_PROJECT – Project Master containing TPM general details
CRM_JEST – Object status table
CRM_MKTPL_ATTR – Attribute table containing TPM attribute data
CRMD_MKTPL_COSTA – Contains Trade Spend values for TPM
CRMD_MKTPLTP_PCG – Details of Product Category associated with TPM
CRMD_MKTPLTP_PGR – Details of Product Group associated with TPM
CRMD_MKTPL_PROD – Assignment of Product in Marketing Planning TPM
Function Modules associated
MKT_ELEMENT_READ – To read details of Trade Promotion like general data
MKT_ELEMENT_STATUS_READ – To read TPM user and system status
BAPI_MKTPL_PROD_ASSIGN_READ – To get products assigned to TPM
CRM_MKTTG_TG_READ – To get accounts in a Target Group
BUPA_HIERARCHY_BW_READ – List of accounts in a customer hierarchy
CONVERSION_EXIT_CGPLP_INPUT – Conversion of External Project ID to Project GUID
CONVERSION_EXIT_CGPLP_OUTPUT – Conversion of Project GUID to External Project ID
CRM_MAP_SALES_ORG – Convert SAP CRM Sales org to ERP sales Org
Class associated
CL_CRM_MKTPL_APPL_BASE - Marketing Projects API for External Usage. Can be used to extract details of TPM using API.
Enhancement Spot: CRMTPL
                           BAdI: CRM_MKTPL_OL_OBJ

Similar Messages

  • Activation the Standard reports for SAP CRM IN BW 3.5 Version

    hi guys
    I am working on SAP BW 3.5 version
    I have Activated the Satadard Reports for CRM Campaign, Lead, Opportunity in BW 3.5  Business Content
    But I don't find  the any single Standard Report in BEX.
    I followed these Steps ;
    BEX - Open - Queries - Info Area
    If any One Knows please let me Know, Urgent Requirement
    thanks in Advance
    Suma

    did u try to see that reports in metadata repository
    login to bi system
    enter RSA1
    on the left panel select METADATA REPOSITORY
    select LOCAL OBJECTS
    then hit Query
    TRY TO find ur REPORTS WITH TECHNICAL NAME
    if it exists here than u shuld be able to seee in infocube.
    if that doesnot make sense
    go back to LOCAL OBJECTS SCREEN
    hit INFOCUBE
    locate ur infocube and select it
    now everything with respect to infocube active and available is visible
    all char catalog, keyfig catalog, queries etc....

  • Standard MRP report ( or ABAP BAPI)

    Pl. Guide for a standard MRP report ( or ABAP BAPI) which can provide details Like Stock, Material MRP Element Receipt/Reqmt , QM Stock , CusOrd , PrdOrd , PldOrd , Ord.DS
    I am aware of MD04 But I Need a Report for Bulk materials.

    Hi,
    Check MD07 report. If it does not suit then go for a Z report using MD_STOCK_REQUIREMENTS_LIST_API or BAPI_MATERIAL_STOCK_REQ_LIST
    Regards,
    Vivek

  • CRM standard report

    Hi,
    do you know the list of CRM standard report such as S_AE2_89000019 - Activity Monitor ...
    Best regards,
    Bertrand

    I think this is the only standard one.
    Regards.

  • Standard Reports for CRM Marketing

    Hi All,
       Could any one tell me where can i find all standard reports for CRM Marketing  ?
    Regards,
    Hari

    Hi Hari,
    As you might be knowing CRM is depended on BI for any reporting requirements. Pls check the below link for more details.
    http://help.sap.com/saphelp_crm50/helpdata/en/be/92fb3b28904f73e10000000a114084/frameset.htm
    Hope this will be helpful.
    Rgds
    Mallikarjun

  • Standard report for period end stock report

    Hi all,
    My client is looking for a SAP standard report for material.Their req is as follows.
    Open Bal (Stock)
    Add: Purchase/Production
    Less: Sales/Consumption
    Closing Bal(Stock)
    I have sugegested them MC.9,MB51,etc....but they are not satified.
    They are not willing to go for a 'Z' report too....
    Can any one suggest me whether their is any function module or bapi or badi thro' which i can fullfill my clients req. or any other better alternative like report painter,set,etc which suit my requirement.
    (can you please let me know from table i can get these datas......just for knowledge purpose)
    hope that anybody will guide me...
    We are in 6.0 version
    God Bless
    Regards

    Try Standard Report MB5B once.
    Regards,
    Ashok

  • Sales order standard report?

    Can anybody send me the standard sales order please if it is possible send me code?
    I am ABAP fresher want to analze the standard and the new sales orders tht is possible for createing
    Points will be rewarded.
    Thks

    hi,
    reddy,
    u create sales order in va01Tcode,
    change va02,
    deete va03.
    if u want to create sales order using a report u se bapi's
    /bdc .it is easy to use bapi's
    for create:BAPI_SALESORDER_CREATEFROMDAT1
                  BAPI_SALESORDER_CREATEFROMDAT2
    for change BAPI_SALESORDER_CHANGE.
    use these bapi's.
    regards,
    chandu.

  • Calling standard report to my custom report

    Hi ALL,
    i need to call a standard report into my custom report
    for example :
    i am having a report with all PR related data
    now i am having nearly 20000 purchase requisitons and there related data .
    now i will get all the Source of supply for each PR
    using bapi BAPI_SOURCEDETERMINE_GETSOS.
    now i am having all the PR's and source of supply
    then i need to assign source of supply .
    using the standard report RM06BZ00.
    then how to call this report and assign source of supply .
    Will be there any performance considerations for calling this report in a loop (20000)
    and how to catch the result
    if source of supply  was assigned ok
    if not how.
    Thanks in advance .
    siva

    Hi Prabhu,
    Use the Submit Statement for calling the standard report u can use the options available with the submit statement for passing any parameters ,
    for reference u can refer following code....
    MOVE: 'S_LIFNR' TO seltab_wa-selname,
            'S'      TO seltab_wa-kind,      " SELECT-OPTION
            'I'      TO seltab_wa-sign,
            'EQ'     TO seltab_wa-option,
            ct1_key-lifnr TO seltab_wa-low.
      APPEND seltab_wa TO seltab.
      CLEAR seltab_wa.
      MOVE: 'S_DOCNO' TO seltab_wa-selname,
            'S'      TO seltab_wa-kind,      " SELECT-OPTION
            'I'      TO seltab_wa-sign,
            'EQ'     TO seltab_wa-option,
            ct1_key-docno TO seltab_wa-low.
      APPEND seltab_wa TO seltab.
      CLEAR seltab_wa.
      MOVE: 'S_DOCTYP' TO seltab_wa-selname,
            'S'      TO seltab_wa-kind,      " SELECT-OPTION
            'I'      TO seltab_wa-sign,
            'EQ'     TO seltab_wa-option,
            ct1_key-doctyp TO seltab_wa-low.
      APPEND seltab_wa TO seltab.
      CLEAR seltab_wa.
      MOVE: 'P_CT1' TO seltab_wa-selname,
            'P'      TO seltab_wa-kind,      " SELECT-OPTION
            'I'      TO seltab_wa-sign,
            'EQ'     TO seltab_wa-option,
            'X' TO seltab_wa-low.
      APPEND seltab_wa TO seltab.
      CLEAR seltab_wa.
      SUBMIT zexc_ct1_prg
       via selection-screen
          WITH  SELECTION-TABLE seltab.

  • Report On folders/documents/version in CRM

    I need to develope the report using folders/documents/version in CRM created for <b>Business Partner</b>(Master data).
    This details are provided in 3 different tables and there is no reference/link to Business Partner.so how can get the report? do we have any Function Module or BAPI for the same?

    Hi,
    I think you can use the class cl_crm_documents. I use that to check if a product has a document or not, with the business object type corresponding at "bus1178".
    I hope that it will help you,
    Regards,
    Servane Coppalle

  • Possible standard reports that can be generated with respect to lead...

    hii friends,
    i am new to CRM.
    can any on please give me some idea about what kind of standard report can be generated in crm with respect to leads and opportunity.
    thanks,
    regards,
    akshay ruia

    Hi Akshay
    Lead management
    1. Won / Lost Leads Lead Origin - Lead Management
    2. Channel Analysis - Lead Management
    3. Efficiency Reporting - Lead Management
    4. History Reporting - Lead Management
    5. Lost Leads - Lead Management
    6. Qualification Level - Channel Mgmt.
    7. Lead History - Channel Mgmt.
    8. Top n Lost Leads (Current Year) - Channel Mgmt.
    9. Won Leads (Current Year)
    Opportunity Management
    Competitors in Current Opportunities
    1. Completed Opportunities According to Status
    2. Completed Opportunities Acc. to Status (Sales Manager Portal)
    3. Expected Product Value
    4.. Expected Sales Volume per Product
    5. My Strongest Competitors Opportunity Item Details
    6. Opportunity Monitor
    7. Opportunity Monitor Timeline Analysis
    8. Opportunity Pipeline
    9. Pipeline Analysis per Phase
    10. Pipeline Analysis per Phase (Sales Manager Portal)
    11. Pipeline Analysis per Region
    12. Sales Volume Forecast
    13. Sales Volume Forecast (Sales Manager Portal)
    14. Targeting Based on Competitors
    15. Targeting Based on Lost Opportunities
    16. Top Five Opportunities
    17. Top Five Opportunities (Business Transaction Number)
    Hope this will be helpful.
    Regards

  • Standard report for Open Orders & JIT lines

    Hi,
    I need a standard report that will list out all open Purchase Orders and All Open JIT lines for a Supplier for Perticular plant.
    Is there any standard report that can pull this data.
    Regards
    Sandeep

    Use ME2M / ME2N  and ME2L reports with selection parameters WE101 and scope of list EINT

  • Edit font size standard report

    Hello community,
    I try to edit the font size of a standard report but I can't find any menu within APEX to edit this reports.
    I also tried to edit it within the SQL with '< f o n t s i z e=130%">' || ... || '</ f o n t >' but this did not work.
    Can anybody help me? Is there a menu which lists all the standard reports and where is the chance to edit this?
    Or is there any other chance?
    Thank you so much,
    Lisa :-)

    Hi Lisa,
    The font is defined in the style sheet (css file) that is referenced in the Page Template. You can override the style by adding your own style (with the same name as used by the columns in the report - you can check that using Firefox+Firebug or the Developer Tools in Chrome) after the APEX standard CSS. You can also put this CSS in your Report Template or in your Page (if it's only for one specific page).
    A good practice is not to include CSS or HTML in your SQL query. Because SQL is logic and HTML/CSS is presentation and these two shouldn't be mixed up.
    Roel

  • How to add new fields to standard reports

    hi friends,
                 im into ABAP and working across all modules..the basic thing is users and functional people are not satisfied with the standard reports..they need some logic change or to add some more fieldsinb the standard reports.For logic change we have to copy the standard to zprogram and can do or create a new program itself..but in many cases they ask for extra fields.how to achive it ..
    for example my requirement now is adding vendor name field to the report FAGGL03 ....i found a badi and have make changes to it ...now the vendor name will be coming in sgtxt over writing the text ...but they need text also...now what shall i do???
    append structure vendor name field in faglposx table ....???how to find out the final internal table from where the output is coming ????
    ?when we check the standard rewport codes...there are lot of include statements perform statements etc  ...how to find out the final structure or internal table which has the output values..???

    hi
    it would be better if u giv full name of the report
    if ur displaying the data in alv then search for the
    word REUSE_ALV_LIST_DISPLAY REUSE_ALV_GRID_DISPLAY from which u can get the final table name
    then check the data that is comming into
    try using implicit enhancement or any other exit in the declaration and declare a new structure with the field and append it to the field catalog
    if ur displaying the data using write statement
    then create a zprogram and add a write statement
    fi ur unable to find here the final table then after displayign the report start the debugging and double click on any row to find out more easily
    shiva

  • How to add additional fields to zreport which contains standard report code

    Hi Experts,
    In order to add additional fields to standard report i copied the code into zreport but i am unable to  add additonal field into report because the code is looking so complex.
    standard report:AQZZ/SAPQUERY/FKF1============
         or
    sapmenu->accounting->financial accounting->accounts payable->information system->reports for accounts payable accounting->master data->S_ALR_87012087-Addresslist.
    Additional feilds to add is :Region,company code,country
    Please let me know how toidentify ALV and guide me how to solve this.
    Regards,
    naresh.

    Hello Naresh,
    First check whether these three fields are available in the text elements area.
    Please write your code in the subroutine %comp_ldesc.
    Repeat the code for your three new fields
    perform ldesc(rsaqexce) using 'G00010000X010       00  A1'
        %txt1 %txt2 %txt3 'LFA1-LIFNR' LFA1-LIFNR 'LFA1-LIFNR'.
      read table %textpool_langu into %textpool_langu_line
                                 with key ID = 'I' key = 'A01'.
      if sy-subrc is initial. %txt1 = %textpool_langu_line-entry.
      else. %txt1 = %txt_unknown.
      endif.
    So this subroutine will give you the basic list. Now Program is creating ALV with this basic list. So I think you don't need to worry about that. Please have a thorugh look at the code over this perform, and write accordingly.
    I think this is enoogh.
    Please update if you got the solution, which will be informative for others.
    regards,
    Antony Thomas
    Edited by: Antony Thomas on Jul 27, 2010 7:57 AM

  • Reading values from standard report in custom report dynamically

    Hello Gurus,
    I have a strange requirement, We have some standard reports which displays output in drop down blocked data. I want to create a custom report which will get that data in my internal tables.
    Just to elaborate this requirement, I will give you a example:
    I have a standard report which output as first line 'A' and second line as 'B'. Now when I press drop down in 'A', it displays line items say 1,2,3,4,5.... Similarly block 'B' once when pressed displays line items 6,7,8,9,10.
    Here I want a custom report which directly read data from this standard report and gives us the values of line items 1,2,3,4,5 in one internal table and similarly items 6,7,8,9,10 in another internal table.
    Hope the question clarifies the requirement now.
    Request you to please provide the resolution.
    Thanks,
    Harjeet

    Hi Harjeet,
    Use sumit statement for standard program and export the list to  memory. and then read list from memory and use in your custom program.
    Use below code for reference.
    DATA: t_list TYPE abaplist OCCURS 0.
    SUBMIT rfdopr10
                    ************** your options
                    AND RETURN
                    EXPORTING LIST TO MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        listobject       = t_list
      EXCEPTIONS
        NOT_FOUND        = 1
        OTHERS           = 2.
    BR,
    Vijay

Maybe you are looking for

  • Is there any way to upload songs from iPod to iTunes?

    My old computer broke,so all of my songs from my old iTunes are gone. Is there any way that I could upload the songs from my iPod, to my iTunes? Is there any type of software I'd have to download, that could do this?

  • Handling of Down payments / advance payments retail POS interface

    Hi all, Does anyone know if there´s a best practice to handle down payments with POS interface? thanks in advance Mariana

  • IPhone 5 music not showing even it's sync

    Can anyone help? I have sync my iPhone 5 with itunes already. The bar beneath did show there are audio files stored in my iPhone, but when I try to play music on my phone, it doesn't show any music stored. Kindly show me how to fix it?

  • Schedule documents to email in Business Objects XI R3.1

    Hello I need to schedule documents to email. how do i configure the email  in Business Objects XI R3.1 ? can i have any document regarding the scheduling ? Any solution, it helps me a lot. Thanks mahesh Edited by: mahesh ch on Feb 19, 2009 11:51 AM

  • Select into Temp Table Identity Column

    I'm trying to select data into a temp table but how would I select the identity column into my temp table. This is what I have so far(RefId is the identity Column (1,1) BEGIN TRAN SELECT [RefId] ,[Name] ,[CreationDate] ,[CreatedBy] ,[ModificationDate