Equivalent of R3's KNVV_KONA (Priece_Group) in CRM

Hi to everybody,
I wanted to ask if somebody knows the equivalent table of KNVV in CRM, because i have to  make a target group in the segment builder of CRM on the basis of master data, especially on the base of the KONA field which is situated in the table KNVV. For this i have to make an Infoset query by joining tables...but how should i do if i can't find the equivalent in CRM. I found the BUPA_CRMC01, but it is not a table but a structure.
Some suggestions?
Thanks
Markus

Hi, Markus
Did you check the table SMOKNVV?.  If the field is not available in this table you may be add a ZKONDA in enhancement.  You have to enhance middleware also to update from R/3
Award a suitable points if it is useful
thanks
sridhar

Similar Messages

  • What is the equivalent table of SMOMARM in CRM

    Hi
    Would you please tell me the equivalent CRM table forSMOMARM which holds all the unit of measure conversion for products or any function module which I can use to get the conversion factors for products.
    Regards
    Javed

    I got the table name as COMM_PR_UNIT

  • CRM equivalent of VBPA-ADRDA (Address Indicator Field)

    Hi all-
    In ECC, the field VBPA-ADRDA is used to show that an address was changed on an order (e.g. the ship-to address was changed from the default to something else).
    Does anyone know if there is an equivalent field in CRM? I've looked in BUT020 and BUT021. BUT021-XDFADU looks like a possibility, the whole table BUT021 is empty in our system (whereas BUT020 has ~80K entries).
    Any help would be appreciated.
    Thanks-
    Tim

    Hi ,
    u have maintain address of  partner/Customer in XD02.
    regards
    Prabhu

  • Creating a target group based on the BP email address only in CRM

    Hi there,
    I am currently trying to create a target group based on the business partner email address only.
    I have a list of over 1000 email addresses - these email addresses equate to a BP in our CRM system, however I do not have a list of the equivalent business partner numbers, all I have to work on are the email addresses.  With these 1000 BP email addresses I need to update the marketing attributes of each of these 1000 BP records in CRM.
    What I need is a method to find the 1000 BP numbers based on the email addresses and then use the marketing expert tool (tx. CRMD_MKT_TOOLS) to change the marketing attributes on all of the 1000 BPs.
    The issue I am having is how can I find the list of BP numbers just based on the BP email address, I tried creating an infoset based on table BUT000, BUT020 and ADR6 but I after creating attribute list & data source for this I am stuck on what to do next. In the attribute list the selection criteria does not allow me to import a file for the selection range.  I can only enter a value but I have 1000 email addresses and cannot possibly email them manually in the filter for the attribute list.   I also looked at imported a file into the target group but I do not have any BP numbers so this will not work.
    Does anyone know a method where I can create a target group based on the email addresses only without having to do any code?
    Any help would be most appreciated.
    Kind regard
    JoJo

    Hi JoJo ,
    The below report will return you BP GUID from emails that is stored in a single column .xls file and assign the BP to a target group.
    REPORT  zexcel.
    * G L O B A L D A T A D E C L A R A T I O N
    TYPE-POOLS : ole2.
    TYPES : BEGIN OF typ_xl_line,
    email TYPE ad_smtpadr,
    END OF typ_xl_line.
    TYPES : typ_xl_tab TYPE TABLE OF typ_xl_line.
    DATA : t_data TYPE typ_xl_tab,
           lt_bu_guid TYPE TABLE OF bu_partner_guid,
           ls_bu_guid TYPE  bu_partner_guid,
           lt_guids TYPE TABLE OF bapi1185_bp,
           ls_guids TYPE  bapi1185_bp,
           lt_return TYPE bapiret2_t.
    * S E L E C T I O N S C R E E N L A Y O U T
    PARAMETERS : p_xfile TYPE localfile,
                  p_tgguid TYPE bapi1185_key .
    * E V E N T - A T S E L E C T I O N S C R E E N
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_xfile.
       CALL FUNCTION 'WS_FILENAME_GET'
         IMPORTING
           filename         = p_xfile
         EXCEPTIONS
           inv_winsys       = 1
           no_batch         = 2
           selection_cancel = 3
           selection_error  = 4
           OTHERS           = 5.
       IF sy-subrc <> 0.
         CLEAR p_xfile.
       ENDIF.
    * E V E N T - S T A R T O F S E L E C T I O N
    START-OF-SELECTION.
    * Get data from Excel File
       PERFORM sub_import_from_excel USING p_xfile
       CHANGING t_data.
       SELECT but000~partner_guid FROM but000 INNER JOIN but020 ON
    but000~partner =
       but020~partner
         INNER JOIN adr6 ON but020~addrnumber = adr6~addrnumber INTO TABLE
    lt_bu_guid FOR ALL ENTRIES IN t_data WHERE adr6~smtp_addr =
    t_data-email.
       CLEAR: lt_guids,ls_guids.
       LOOP AT lt_bu_guid INTO ls_bu_guid.
         ls_guids-bupartnerguid = ls_bu_guid.
         APPEND ls_guids TO lt_guids.
       ENDLOOP.
       CALL FUNCTION 'BAPI_TARGETGROUP_ADD_BP'
         EXPORTING
           targetgroupguid = p_tgguid
         TABLES
           return          = lt_return
           businesspartner = lt_guids.
    *&      Form  SUB_IMPORT_FROM_EXCEL
    *       text
    *      -->U_FILE     text
    *      -->C_DATA     text
    FORM sub_import_from_excel USING u_file TYPE localfile
    CHANGING c_data TYPE typ_xl_tab.
       CONSTANTS : const_max_row TYPE sy-index VALUE '65536'.
       DATA : l_dummy TYPE typ_xl_line,
              cnt_cols TYPE i.
       DATA : h_excel TYPE ole2_object,
              h_wrkbk TYPE ole2_object,
              h_cell TYPE ole2_object.
       DATA : l_row TYPE sy-index,
              l_col TYPE sy-index,
              l_value TYPE string.
       FIELD-SYMBOLS : <fs_dummy> TYPE ANY.
    * Count the number of columns in the internal table.
       DO.
         ASSIGN COMPONENT sy-index OF STRUCTURE l_dummy TO <fs_dummy>.
         IF sy-subrc EQ 0.
           cnt_cols = sy-index.
         ELSE.
           EXIT.
         ENDIF.
       ENDDO.
    * Create Excel Application.
       CREATE OBJECT h_excel 'Excel.Application'.
       CHECK sy-subrc EQ 0.
    * Get the Workbook object.
       CALL METHOD OF h_excel 'Workbooks' = h_wrkbk.
       CHECK sy-subrc EQ 0.
    * Open the Workbook specified in the filepath.
       CALL METHOD OF h_wrkbk 'Open' EXPORTING #1 = u_file.
       CHECK sy-subrc EQ 0.
    * For all the rows - Max upto 65536.
       DO const_max_row TIMES.
         CLEAR l_dummy.
         l_row = l_row + 1.
    * For all columns in the Internal table.
         CLEAR l_col.
         DO cnt_cols TIMES.
           l_col = l_col + 1.
    * Get the corresponding Cell Object.
           CALL METHOD OF h_excel 'Cells' = h_cell
             EXPORTING #1 = l_row
             #2 = l_col.
           CHECK sy-subrc EQ 0.
    * Get the value of the Cell.
           CLEAR l_value.
           GET PROPERTY OF h_cell 'Value' = l_value.
           CHECK sy-subrc EQ 0.
    * Value Assigned ? pass to internal table.
           CHECK NOT l_value IS INITIAL.
           ASSIGN COMPONENT l_col OF STRUCTURE l_dummy TO <fs_dummy>.
           <fs_dummy> = l_value.
         ENDDO.
    * Check if we have the Work Area populated.
         IF NOT l_dummy IS INITIAL.
           APPEND l_dummy TO c_data.
         ELSE.
           EXIT.
         ENDIF.
       ENDDO.
    * Now Free all handles.
       FREE OBJECT h_cell.
       FREE OBJECT h_wrkbk.
       FREE OBJECT h_excel.
    ENDFORM. " SUB_IMPORT_FROM_EXCEL
    Just copy paste the code and run the report select any local xls file with emails and pass the target group guid.
    snap shot of excel file:
    Let me know if it was useful.

  • Error while sending Bdoc data frm CRM to R3

    Hi All,
    We have created a BDoc containing a Ztable which is send from CRM to R/3 where it will update another Z table create for this in R3.
    We have tried here the follwoing steps:-
    a. Created the Z table in both systems.
    b. Created a new messaging BDoc in CRM and linked it to the R/3 Site Type.
    c. Created a new mapping function module in CRM that takes the data from the BDoc and maps it to the BAPI structure.
    d. Created a new Adapter Object that links to my BDoc, contains the Z table as the source table in CRM and contains the mapping function module mentioned above.
    e. Created a new Replication Object based on my new BDoc.
    f. Created a new Publication and assigned it to the Replication Object.
    g. Created a new Subscription and assigned to the Publication and Replication Object. Also assigned it to my R/3 site.
    h. Created a mapping function module in R/3 to map the data from the BAPI structure into the equivalent R/3 table.
    i. Created entry in table CRMSUBTAB.
    Error:
    When try to insert an entry in the customer table in CRM a BDoc is being created but fails to transfer with error message "Error in outbound processing".
    Trace: "Query error for site type SMOF_ERPSITE".
    please advice.
    Thanks & Regards
    Deb

    Hi Deb,
    Any reason why you have extended the Z fields both in R/3 and CRM manually.? This should have been a lot of effort. Did you try to do this via EEWB. ?
    In case you would use EEW to extend rather than the manual extension, the following memo will be helpful:
    EEWB doesn't support changes in the connected ERP system. For example it is unclear which object is of interest in ERP, the SD customer master or the BP. However, we provide note 864222 that explains some features regarding data exchange of extensions.
    Also note 831536 explains how to exchange table like extensions. For the data exchange of 1:1 extensions at the CI inlude for the main table BUT000 you could check note 725671, should be available in your system already, so just for information. First please create two CI_INCLUDEs CI_CUST as described in note 736595. Then your data are transferred and processed via module COM_BUPA_MAIN_BP_INBOUND. For debugging purposes please have a look at note 398925.
    Since it is possible to have independenT extensions on CRM and ERP side we mustn't map the two CI-includes directly but only via this additional CI_CUST feature.
    Best Regards, Adil
    (Note : The above notes/memo may help in troubleshooting the manual extensions)

  • T code for creating BP in CRM

    Can anybody help me with the transactions codes required to create BP and contract account, etc. using CRM. It will be replicated in IS-U.
    Thanks in advance.

    Hi,
    since SAP CRM 2007, the WinGUI for the business application is no longer officially supported. You create business partners and business agreements (equivalent to contract accounts in the backend) in the SAP CRM WebClient. There are several roles delivered in standard SAP to support different sets of business requirements, for example UTIL_IC for the utilities interaction center agent or UTIL_SALES for the utilities key account manager.
    Based on the pre-defined roles, you can customize your own roles.
    In SAP CRM, the WinGUI is supported only for customizing/development.
    Best regards,
    Franziska

  • Replication of Product Attributes from ECC to CRM

    Hi Experts - Is there any standard functionality in CRM which serves same as Product attributes of ECC.
    In ECC, Product attributes 1 to 10 can be used as an indicator to check whether the ship-to party accepts the attributes of a product. During sales order creation system will give a warning or error based on product attributes of ship-to party and material.
    Let us know, if this functionality supports in CRM.
    Thanks,
    Sree

    Hello,
    I have exactly the same question. Did you find out if it is possible?
    I haven't found anything in the standard doc , si I guess these ECC product attributes don't have an equivalent in CRM, meaning we should use customer specific  fields on ECC side and  product "attributes" (in the sense of attributes of customized set types) on CRM side.

  • Replication of Z table from CRM to R/3 - No mBDoc Created

    I need to transfer the contents of a bespoke customer table from CRM into R/3, off the back of delta changes being made to the CRM table.  To help us to achieve this we have performed the following steps so far:
    1. Created the customer table in both systems.
    2. Created a new messaging BDoc in CRM and linked it to the R/3 Site Type.
    3. Created a new mapping module in CRM that takes the data from the BDoc and maps it to the BAPI structure.
    4. Created a new Adapter Object that links to my BDoc, contains the new customer table as the source table in CRM and contains the mapping Module mentioned above. 
    5. Created a new Replication Object based on my new BDoc.
    6. Created a new Publication and assigned it to the Replication Object.
    7. Created a new Subscription and assigned to the Publication and Replication Object. Also assigned it to my R/3 site.
    On the R/3 side we have created a mapping module to map the data from the BAPI structure into the equivalent R/3 table. We also have an entry in table CRMSUBTAB.
    However when I insert an entry in the customer table in CRM no BDoc is being created. In fact I cannot see anything at all in the system that indicates that it has even tried to capture the change and invoke the Middleware process.
    What am I doing wrong?
    Do I need anything else (some sort of delta program?) that picks up the parameters from the table update and feed them into my process?  The literature that I have found (and it is not much) does not mention anything like this though.
    Any help would be greatly appreciated as this is now a very urgent requirement.
    Regards
    Ian
    Edited by: IAN HAWLEY on Aug 21, 2008 9:42 AM

    Ian,
    I do expected the follow up questions. Check my explanation below and hope it will answer your queries:
    1. I assume all of the activities performed to date are still valid to supplement your solution, e.g. the BDoc, Replication Object, Publication and Subscription details?
    2. The R/3 to CRM Mapping Module. Is this required to allow messages to be sent back from R/3 to update the BDoc, e.g. a sort of validation to prove that the posting has completed ok?
    FM ZMAP_BAPIMTCS_TO_MBDOC in CRM, to map the BAPIMTCS format data and build the BDoc. This BAPIMTCS format is a temporary one and is not the final data format, that is taken to ECC. This function module also takes care of receiving the response message from ECC, once the BDoc data reaches and updates in ECC. If there is any error occured during the updation, it is captured in the error table of the BDoc and the status of BDoc is set to 'Error'. If no error occurs, the status of BDoc is set to 'Confirmed'.
    3. The Extractor Module in CRM. Does this get the data out of the table and will it work for deltas?
    Yes , It should work for Delta too.The delta load makes use of the same program and flow for Initial load (SMOF_DOWNLOAD)
    4. CRMSUBTAB in CRM. I knew that we populated this in R/3, I did not realise we would need it in CRM as I assumed it was R/3 specific.
    5. You list the sequences of FM calls at the end. I was confused in the order. As we are initiating data to be sent from CRM to R/3 should some of these be in the reverse order, e.g. ZMAP_MBDOC_TO BAPIMTCS would be called before ZMAPBAPIMTCS_TO_MBOC as would pass data into the BDoc to send it to R/3 before we then received an update message back?
    Step 1: Z_EXTRACT_MODULE  will be called.( It calles ZPICK_DATA_FROM_CRM). This function module calls the standard function module CRS_SEND_TO_SERVER the one triggers the other function modules
    Setp 2: Creat function module ZDATA_TO_BAPIMTCS(missed to mention earlier) in CRM, to map the data in the final internal table to BAPIMTCS format. This format is temporary and will be used to build the BDoc data.
    Step 3: Created function module ZMAP_BAPIMTCS_TO_MBDOC in CRM, to map the BAPIMTCS format data and build the BDoc. This BAPIMTCS format is a temporary one and is not the final data format, that is taken to ECC. This function module also takes care of receiving the response message from ECC, once the BDoc data reaches and updates in ECC. If there is any error occured during the updation, it is captured in the error table of the BDoc and the status of BDoc is set to 'Error'. If no error occurs, the status of BDoc is set to 'Confirmed'
    Step 4: Created function module ZMAP_MBDOC_TO_BAPIMTCS in CRM, to build the final BAPIMTCS structure from the BDOC. This BAPIMTCS is the final data structure that goes to ECC. The table name, objectkey, relkey that is relevant for the BAPIMTCS, is filled in this function module..
    Step 5: Created function module Z_LOAD_PROXY_FINAL in ECC, to receive the data from CRM. The BAPIMTCS data is received and mapped to local internal tables and then updates to custom tables through the function module Z_UPDATE_ECC. The errors if any are captured in this function module and returned back to CRM using the standard function module CRS_SEND_TO_SERVER.
    To reduce the load on the interface, at the final stage, it was decided to fetch the data completely in ECC. So the incoming  data from CRM is ignored and is fetched completely from ECC tables.
    6. Is there a test FM available for the extract, e.g. is CRM_SAMPLE_EXTRACT_MODULE the one to copy?
        No, You have to develop this Extractor FM say ZPICK_DATA_FROM_CRM and should be called in Z_EXTRACT_MODULE.
    Apologize for any spelling errors, as I too running to meeting.
    Update me the status.
    Bobby
    Edited by: Bobby on Aug 22, 2008 2:13 PM

  • What is the Oracle equivalent of the Microsoft Access FIRST function?

    Using: Oracle 10gR2 RAC on SUSE Linux 9 (10.2.0.3)
    In the process of converting a Microsoft Access database to Oracle, an Access query is using the FIRST function.
    What is the Oracle equivalent of the Microsoft Access FIRST function?
    In the attempt to convert, the Oracle FIRST_VALUE function was used. However, the same results was not achieved.
    Thanks,
    (BLL)
    Query:
    h2. ACCESS:
    SELECT
         TRE.GCUSNO,
         UCASE([DCUSNO]) AS DCUSNO_STD,
         *FIRST(UCASE([DNAME])) AS DNAME_STD*,
         *FIRST(UCASE([DADDR])) AS DADDR_STD*,
         *FIRST(UCASE([DCITY])) AS DCITY_STD*,
         TRE.DSTATE,
         FIRST(TRE.DZIP) AS DZIP,
         TRE.DREGN,
         TRE.DDIST,
         TRE.DSLSMN,
         TRE.DCHAIN,
         TRE.MARKET,
         TRE.MKTPGM,
         TRE.EUMKT
    FROM
         TRE
    GROUP BY
         TRE.GCUSNO,
         UCASE([DCUSNO]),
         TRE.DSTATE,
         TRE.DREGN,
         TRE.DDIST,
         TRE.DSLSMN,
         TRE.DCHAIN,
         TRE.MARKET,
         TRE.MKTPGM,
         TRE.EUMKT;
    h2. ORACLE:
    SELECT DISTINCT
    TRE.GCUSNO,
    UPPER(TRIM(TRE.DCUSNO)) AS DCUSNO_STD,
    UPPER(TRIM(TRE.DNAME)) AS DNAME_STD,
    UPPER(TRIM(TRE.DADDR)) AS DADDR_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DNAME)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DNAME_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DADDR)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DADDR_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DCITY)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DCITY_STD,
    TRE.DSTATE,
    TRE.DZIP,
    FIRST_VALUE(UPPER(TRIM(TRE.DZIP)) IGNORE NULLS) OVER (ORDER BY TRE.DZIP ASC) AS DZIP,
    TRE.DREGN,
    TRE.DDIST,
    TRE.DSLSMN,
    TRE.DCHAIN,
    TRE.MARKET,
    TRE.MKTPGM,
    TRE.EUMKT
    FROM CRM.TREUP100R TRE
    GROUP BY
    TRE.GCUSNO,
    UPPER(TRIM(TRE.DCUSNO)),
    TRE.DNAME,
    TRE.DADDR,
    TRE.DCITY,
    TRE.DSTATE,
    TRE.DZIP,
    TRE.DREGN,
    TRE.DDIST,
    TRE.DSLSMN,
    TRE.DCHAIN,
    TRE.MARKET,
    TRE.MKTPGM,
    TRE.EUMKT;

    A slight correction to odie's post. I think you want min not max to replicate the Access first function, but see below to be sure. So:
    min(upper(trim(tre.dname))) keep (dense_rank first order by tre.gcusno) as dname_std
    user10860953 wrote:How does one ignore null values?The min and max functions will ignore nulls automatically, so if there is a null value in tre.dname, it will not be be returned, unless all of the values are null. For example:
    SQL> WITH t AS (
      2     SELECT 65 id, 'ABCD' col FROM dual UNION ALL
      3     SELECT 37, 'DEFG' FROM dual UNION ALL
      4     SELECT 65, 'DEFG' FROM dual UNION ALL
      5     SELECT 65, null FROM dual UNION ALL
      6     SELECT 70, null FROM dual UNION ALL
      7     SELECT 70, null FROM dual UNION ALL
      8     SELECT 37, 'ABC' from dual)
      9  SELECT id,
    10         MIN(col) keep (DENSE_RANK FIRST ORDER BY id) min_dname_std,
    11         MAX(col) keep (DENSE_RANK FIRST ORDER BY id) max_dname_std
    12  FROM t
    13  GROUP BY id;
            ID MIN_ MAX_
            37 ABC  DEFG
            65 ABCD DEFG
            70John

  • Sales Org Mapping in CRM and R3

    Hello,
    Please suggest a way to get the equivalent sales org of R3 when we have sales org of CRM.
    Is there any function module which does this.
    For Ex.  I have sales org. O 50003226
    and it gets stored in R3 as say 2316. Is there any table or function module from where if I give O 50003226, it will return 2316.
    Thanks,
    Gaurav

    Hi Gaurav,
    You can use static method MAP_HROBJECT_TO_R3_SALES_ORG of class CL_CRM_ORGMAN_SERVICES.
    Put as input parameter 'O 50003226' and you'll get the '2316' R3 value as a result.
    Alternativaly, you can also check table vision HRV5551A.
    Kind regards,
    Garcia

  • CRM ISA b2b Vs ECC ISA b2b - IPC and BADI

    Experts,
    1. In CRM ISA b2b - We use CRM_COND_COM_BADI to implement the userexit logics and to populate custom attributes. What is the equivalent BADI or procedure in ERP scenario assuming I am using IPC in both the scenarios.
    2.   in CRM ISA b2b scenario, we have item and header BADI's like crm_isa_basket_head...What is thew equivalent BADI/Procedure in ERP ISA b2b scenario.
    Thanks,
    Bala

    Hello Bala,
    Regarding your first question, AFAIK, the userexit logic of pricing should be developed in IPC pricing routines and uploaded to the SAP system with appropriate userexit assignment.
    About the second question, I am not very clear on what is the requirement? Do you want to modify certain data before a document is actually created/simulated in the SAP system? In this case, there are some enhancement points in the FM SD_SALESDOCUMENT_CREATE. This is what I used to modify/add/delete some data before the basket data is simulated or created as a quotation/order in the SAP ECC system.
    Pradeep

  • Condition Records in CRM 4.0

    Hi,
    I am new to CRM. can someone please tell me what the equivalent of R/3 (VK11/vk12/vk13) is in CRM 4.0. I need to be able to create and maintain condition records. The forum says that we can use t.code "/sapcnd/gcp/" for this but when i use this transaction, i get a msg that says....function not possible. can someone tell me the t.code for this for crm4.0 or a menu path?
    thanks

    Hi
    There are three  things you need to do
    1) Define the Condition group which you want to use in your scenarios . This can be done via the menu path in SPRO as follows
    Customer Relationship Management -> Master Data ->Condition Technique--> Create Condition Maintenance Group
    2) Assign this Condition group to either item category or Transaction Type . This will help in using this conditions in the transactions
    3) Then you can create your own condition records from the transaction as mentioned above by few people.
    /SAPCND/GCM
    You need to specifiy the Application area and  the Condition group for which you want  to maintain the records
    Regards
    Hemant

  • Attachments appear missing in CRM 7.0 after Upgrade from 6.0

    We use CRM for SSMS functionality to create help desk tickets which can have documents attached to them which are stored in and retrieved from content server.
    All was well in the land of CRM 6.0.
    Since the upgrade to CRM 7.0, when viewing an SSMS ticket, the link to an attachment does not appear on the screen.  Also, a new attachment can not be created.
    I am looking for help related to this from a couple different viewpoints.
    a) Has anyone experienced something like this and if so, what was the resolution or what have you learned so far.
    b) In our ERP system, we use transactions like CV04N to search for document information records and subsequently view the documents the DIRs are linke to in our content server.  CRM does not have a CV04N transaction.  Is there an equivalent / similar transaction or program in CRM that I can use to view DIRs and even display a document from our content server via CRM?
    James

    For the issue that the "Create attachment from template" is grayed out in an upgraded CRM system, the templates will need to be recreated in the new environment. 
    Login to CRM WebClient as the standard salespro role
    Navigate to Sales Operations -> Document Templates
    Click New and recreate all of the templates used in the previous version
    After this is done, the create attachment from template link will be enabled. 
    In CRM, when you add attachments through the regular "attachment" link, there is a section that allows you to browse the content management server and all the documents.  You should check if all the previous documents are still there.

  • Setting up webshop in CRM Internet Sales

    Hello
    I am using mySAP CRM 5.0.
    We are using Internet Sales component of CRM.
    We have the enviornment setup to launch ISA.
    I am doing Building blocks C14.But I am not getting the initial USER logon screen for WEBADMIN.So somthing seems to be missing.
    If someone who has done webshop setup in ISA please email me a step by step procedure on how to setup webshop right from initial steps with screens.
    I would really appreciate it.
    maximum points will be rewarded.
    please email to [email protected]
    Thanks

    Hello Bhupendra,
    Please check the following:
    1) You access the XCM tool at: http://<host>:<port>/<web app name>/admin/xcm/init.do
    2) Login using WEBADMIN or equivalent ID
    3) Create a Customer Application Configuration
    Once you have selected the configuration that suits your needs go to Edit mode.
    1. Enter a configuration Name and choose Create.
    2. Configure the application configuration by associating configuration data with the configuration parameters. There is a description for the scenario of each configuration parameter in the last column of the parameter table.
    Regards
    Message was edited by:
            Gopala Turaga

  • EWA: error message in CRM check for SAP Solution Manager system

    Hello!
    In EWA report for SAP Solution Manager system I have seen error message: Many CSA* inbound queues in error status were detected in your system. As a result of this BDocs have not been delivered. And then table
    Queue Name                                Status     Date of first entry             Entries
    CSABUPA0000000070           READY     03.12.2007                          45
    CSABUPA0000000934           READY     07.05.2008                          45
    CSAIBASE0000000000           READY     23.11.2007                          36
    CSA_ORDER_8000000000      READY     22.11.2007     5
    CSA_ORDER_8000000001      READY     22.11.2007     3
    and others.
    I looked transaction smq2. There are 11300 queues in it. Is it actual error or it is a normal situation? And that must I do, to remove an error?
    Edited by: Mariya Kurbatova on Jul 2, 2009 6:27 AM

    Hi,
    Usually problems with hanaging CSA* queues are caused because too many
    indiviaual queues are created for the qRFC resources to handle. You can
    limit the number of queues as described in note 763680.
    Note 763680 would be useful if all of your qRFC resourcesa are in use
    when you have a great number of queues. With a large number of dialog
    WPs on the system it would probably make sense to reduce the amount
    as described in the note.
    the casue when you have this problem would be to check SMQR -> GOTO ->
    qRFC resources. You can also see if most of your dailog WPs are in use
    in SM50.
    Also refer to note 758677.
    Please schedule report RSQIWKEX (Inbound) to run as described in the
    note.
    And since your title has mentioned that the EWA is on your CRM satellite system; this maybe a further good reference too
    When you replicate lots of data from CRM to R/3, there could be a qRFC
    resource problem. In this case, the numebr of queues created can be
    reduced by implementing the attached note 356228, particularly solution
    2.
    For CSA* queues is slightly different from the one decribed in note;
    this is because the CSA queues exchange data within the CRM system.
    The steps described should be followed, except that table SMOFQFIND
    must be used instead of CRMQNAMES. In this table, fields TR_SNAEMS and
    SEGM_FLD are equivalent to the CRMQNAMES fieds BAPISTRUCT and BAPIFLD
    respectively. It should be possible to follow the solution 2 in the
    note as long as you use SMOFQFIND instead of CRMQNAMES.
    Hope this helps
    Cheers,
    SH

Maybe you are looking for

  • Printing Date in Spanish language

    Post Author: amumahajan CA Forum: General I'm using Crystal Reports XI Professional. I'm printing the report generation date on top of the report. I want that date to be in Spanish. Does anyone know how to translate a date from English to another lan

  • Can not open .pst file in Outlook

    I can't open our Personal Folders file (.pst). The recovered by SacnPST folders are empty. How can I recover that files?

  • Open multiple reports in WEBI Through URL

    Hi All, We are working on BO XI R3.1 WebI reports. We are trying to open multiple reportparts using opendocument url. We tested with juts one report part and it worked fine, but so far, the attempt for multiple report parts using same url has never s

  • New US Skype number not working on iOS devices

    Hi, I just spent an hour or so with a very helpful support engineer on Live Chat trying to fix this but after trying many things (including updating iOS to latest version iOS 8.1.2 and deleting and reinstalling the Skype app etc etc) we did not reach

  • Can I buy final cut pro using windows OS?

    can I buy final cut pro using windows OS, then install it in a mac in other state?