CRM - BW documents/cookbooks

Hi,
Can someone send me CRM - BW documentation/cookbook to [email protected]
Will reward points.
Thanks in advance
Sanju

Hi Guys,
Any document of SAP BW with CRM environment scenerio .
Thanks

Similar Messages

  • Documents/cookbook on ICSS

    Hi,
    Could you please provide me some documents/cookbooks/links to documents on ICSS.
    Thank you!
    Regards,
    Praveen

    Hi Praveen,
    There is no specific cookbook for ICSS.  However, the E-Commerce Enhancement / modification guide can be used as the reference for making ICSS modifications (the applications are the same - both are Java applications based on the struts framework.
    Document link:  [E-Commerce Enhancements / modification guide|https://websmp210.sap-ag.de/~sapdownload/011000358700000469462006E/]
    [Helpful examples and tutorials:  |http://service.sap.com/~sapdownload/011000358700006120622006E/]
    For application help on ICSS, you can find documentation at the following sites:
    http://help.sap.com/saphelp_crm50/helpdata/en/39/0e2bd4ed960f4384c6a1cb4e4903d9/frameset.htm
    on the SAP Service Marketplace under /instguides
    SAP Business Suite Applications  -> SAP CRM -> Here you can find all e-Commerce installation guides.
    I hope this helps.
    Deb

  • Item text inconsistency for multiple item text in CRM Billling document

    Hi Experts,
    I am facing problem in adding item text in CRM Billiing document in Web UI.There are 3 line items in my billing document and their item text gets determined from Billing due list items but there is a requirement to change the item text at billling documnet level also to populate it in the invoice.Here comes the problem when I change item text of first item system alllows me to change in text type Sales Text but when I am doing the same with suceeeding items it throws me a exception like this.
    Business Server Page (BSP) error
    What happened?
    Calling the BSP page was terminated due to an error.
    SAP Note
    The following error text was processed in the system:
    Entry parameter ES_KEY of method CL_CRM_GENIL_CONTAINER_OBJECT->GET_KEY contains value , which is not allowed
    Exception Class CX_SY_IMPORT_MISMATCH_ERROR
    Error Name CONNE_IMPORT_WRONG_OBJECT_TYPE
    Program CL_CRM_GENIL_CONT_SIMPLE_OBJ==CP
    Include CL_CRM_GENIL_CONT_SIMPLE_OBJ==CM007
    ABAP Class CL_CRM_GENIL_CONT_SIMPLE_OBJ
    Method IF_GENIL_CONT_SIMPLE_OBJECT~GET_KEY
    Line 18 
    Long text During IMPORT it was ascertained that the object in the dataset has a different object type to the target object, or the structure of the complex object is not compatible with the structure of the target object. The target object has either a different length, a different number of decimal places or a different data type to the object that is to be imported.
    Error type: Exception
    Your SAP Business Server Pages Team
    This change in item text only works for first item and gives exception for all below items,Is this a standard SAP functionality or what can be done as same thing can be done from back end.

    Hi,
    The above given thread is the perfect solution for your requirement.
    Defaulting some data in the text field means, either you can use the the Substitution / BTE.
    Using the substitution, system not allows you to change the text field in case of any modification you want. But with the BTE you can specify only at the time of the document posting.
    BTE is the best option in this case.
    VVR

  • CRM Billiing document not posted in Accounting

    Hi Experts,
    Issue:
    CRM Billing documents not posting to FI.
    We idenfied while debugging in middleware we identified that, Billing document header data doesn't contain value for  "Component for RW interface"(COMPO_ACC).
    Where we need to maintain/configure value for this field in CRM/ECC, please provide me details.

    Is this a case of data migration to new GL.
    FAGL_SPLINFO is the table which gets updated for the split information at the time of document posting. If its from migration, please check that the referred RV document is an open item and was migrated correctly.
    Thanks and Regards,
    Mamta Sarda

  • View CRM billing document from FB03 - Accounting document

    I am working with a client who creates some orders in R3 and now some in CRM.
    The orders are billed in their respective system.
    The CRM billing is then transfered via BDOC's into R3 which create an accounting document.
    However, in the environment tab, there is no original document.
    Does anyone know if you can access via some form of document flow or function module call from R3 to go direct to the CRM billing document?

    Hi Mark
    I noticed that your Forum has now been answered.  Could you please share how you resolved the issue of displaying a CRM billing document from FB03 as an "original document".
    Many thanks,
    Verity
    Edited by: Verity Watts on Aug 3, 2010 9:32 PM

  • Partners from a CRM service document

    Hi Guys,
    I have to extract the Partners assigned to a CRM Service document to BW. The way I have been doing it is calling the "CRM_ORDER_READ" function module in the User exit and using the "Partner function" trying to populate the additional field that I had created to enhance the datasource.
    But I believe there should be a better way of doing it. The issues with the way I am doing are
    1. If I have some new "Partner functions" defined, then I have to extend the "extraction structure" to include those additonal ones.
    2. If the same partner function is used more than once, e.g. a "resp employee" is used twice, then I cannot dynamically include the 2nd "emp resp" to be included in the extract strucuture.
    So if anyone has worked on this and knows a better way of extracting the data, please share.
    Appreciate your help.
    Doniv

    Hi
    I would suggest not to use CRM_ORDER_READ because of
    performance.
    Instead look at the function I use (below).
    Also, if you want to keep your partner at the same level as the Line or Header you will have to extend the struct.
    Other wise you can load all the BP's to a seperate ODS and link them to the other ODS's (Lines and Headers).
    Reg's
    Edan
    FORM fill_partner_info2
    Find additional partner data
    -->  L_STRUCT - structure of the enhanced transactional data source
    FORM fill_partner_info2 CHANGING l_struct STRUCTURE crmt_bw_complaints_i
                               p_modified TYPE c.
      DATA: v_so_guid     LIKE crmd_orderadm_i-guid,
            v_partner_no  LIKE crmd_partner-partner_no,
            v_partner_fct LIKE crmd_partner-partner_fct,
            v_partner     LIKE but000-partner.
      v_so_guid = l_struct-item_guid.
      select single partner_no into v_partner_fct
        from crmv_linkpartner where ( guid_hi = v_so_guid ).
      if sy-subrc ne 0.
        v_so_guid = l_struct-guid.
      endif.
      SELECT PARTNER_NO PARTNER_FCT
      INTO (v_partner_no, v_partner_fct)
      FROM CRMV_LINKPARTNER
      WHERE ( GUID_HI = v_so_guid ) and
            ( ( PARTNER_FCT = 'ZBOOKED' ) or ( PARTNER_FCT = 'ZRTP' ) or
              ( PARTNER_FCT = 'ZYAPLAN' ) ).
        select single partner
        into v_partner
        from but000
        where partner_guid = v_partner_no.
        case v_partner_fct.
          when 'ZBOOKED'.
            l_struct-zzbook_to = v_partner.
          when 'ZRTP'.
            l_struct-zzrevenue_to = v_partner.
          when 'ZYAPLAN'.
            l_struct-zzip_planner = v_partner.
        endcase.
        p_modified = 'X'.
      ENDSELECT.
      IF ( l_struct-zzbook_to is initial ).
        l_struct-zzbook_to = l_struct-sold_to_party.
      ENDIF.
      IF ( l_struct-zzrevenue_to is initial ).
        l_struct-zzrevenue_to = l_struct-sold_to_party.
      ENDIF.
    ENDFORM.                    "fill_partner_info2

  • CRM Middleware Documents Required

    Hi All ,
    Can u send CRM Middleware documents to me.My mail address is [email protected]
    Thanks and regards
    Santosh .

    Hi,
    Please do me the favour of sending across the documents.
    Forward them on the following mail account: -
    [email protected]
    Your help would be greatly appreciated.
    Thanks
    Khushboo

  • SAP CRM WebClient UI Cookbook

    Hi,
    as a CRM 2007 customer I am wondering when the SAP CRM WebClient UI Cookbook will be available to non RKT customers?
    /Elvez

    Elvez,
    Well you can buy the OKP materials for CRM 2006s and that will give you at least one version of the cookbook, along with some awesome training materials.
    You can use the url http://service.sap.com/okp.  You can buy this online or contact your SAP training rep.  You can purchase these with your SAP training card dollars(I believe).
    Take care,
    Stephen

  • CRM config document

    HI All
    Please can anyone send me crm config document i now the theory of crm for practice i need a config document
    please help me

    Check this link
    Link: [Links to CRM Documentation;

  • Need CRM Technical Document

    Hi All,
    I need CRM Technical Document. Anybody there to help me to get this.
    Thanks in advance.
    email ID: [email protected]
    Thanx & Regards,
    Santosh

    Yes.
    Try service.sap.com and help.sap.com and see this - Links to CRM Documentation - thread.
    Gareth.

  • Error while changing CRM Sales Document in R/3

    Hi All,
    I have done the download of customizing, condition & business objects in CRM 4.0.
    Now when I create a sales order in CRM, it gets replicated in R/3. I can see the order in tcode VA03.
    But when I try changing the same sale order in R/3 using tcode VA02, I get the following error:
    "Sales document &1 (5001169) is currently being processed (by user RFCUSER)"
    Would appreciate help from the group.
    Many thanks !

    Hi Krishna,
    The middleware user is locking the order so the document has not distributed through the system properly. 
    Try looking at the inbound queue (transaction SMQ2) and outbound queue (SMQ1) for errors.  Also look at the BDocs in error (SMW01).
    When CRM sends an order to R/3 it waits for a confirmation to be returned, looks like the problem is here, maybe in your delta downloads not being set correctly.
    Cheers
    Andrew

  • Mapping of CRM  Billing Document to GTS within Service Parts Management

    Hello,
    We are currently implementing Service Parts Management with GTS.
    We would like to map certain fields coming from CRM Billing to the GTS Customs Document.
    Does anyone know which BADI/user exit can be used to complete this mapping.
    We have seen that to be able to transfer billing documents to GTS we need to activate Service Parts Management.
    Further, how can we get the values for these fields into the customs documents , once these are mapped.
    Which BADI, structures, tables are used for this?
    Does anyone have a sort of data structuring model for the different fields in the customs document , on header and item level.
    How fields are triggered. This could be very useful to have this kind of documentation for doing enhancements etc...
    Now we are struggling with structures.
    Thanks in advance
    Regrds
    Frank

    Frank,
    The key tables for the customs document are:
    /SAPSLL/CUHD (header)
    /SAPSLL/CUIT (item)
    /SAPSLL/CORPAR (partners)
    You can find additional tables in SE16 by search for table names that start with /SAPSLL/CU* or /SAPSLL/COR*
    Unfortunately, I am not sure about the BAdi for document transfer from CRM but the available BAdi's should be listed in the IMG in CRM similar to ECC.
    Sascha

  • How do you view original CRM billing document from R3

    We have sales orders and billing now in CRM.
    We have a requirement to link the accounting document to the billing document in CRM.
    Does anyone know if there is a standard function module to get the document flow or link to the CRM document?

    Thats a cool idea.....but, it seems its not something that can be done, due to browser and word restrictions rather than robohelp else.
    Your browser is going to download the .dotx file, and open that rather than allowing the new-file-based-on-template macro thing to run.
    Only work around I could suggest would be to use the template to create a blank .doc or .docx and link to that rather than the template.
    some info I found...
    http://getsatisfaction.com/pbworks/topics/link_to_word_template
    http://en.allexperts.com/q/Microsoft-Word-1058/2008/7/template-link-webpage.htm
    good luck.

  • Creating attachments in CRM complaint documents

    Dear experts,
    CRM 5.0,
    We are using a complaints process which makes use of action profiles to send notifications. Is it possible to create pdf attachments for the notifications being sent out from the complaint document and attach them to the complaint document?
    Thanks & regards
    Ritwik Sharma

    Dear experts,
    CRM 5.0,
    We are using a complaints process which makes use of action profiles to send notifications. Is it possible to create pdf attachments for the notifications being sent out from the complaint document and attach them to the complaint document?
    Thanks & regards
    Ritwik Sharma

  • CRM Webclient 2007 CookBook

    Hi,
    Can someone please tell me when can I find a Cookbook or a training Material for CRM Webclient 2007?
    Thanks,
    Chaith.

    Hi ,
    Check out this thread where you can find all the Cook books etc...
    [Documentation for Interaction Center (IC) WebClient;
    Regards,
    Sijo

Maybe you are looking for