Download transport zone from crm to cdb (msa) ?

Hello,
I've customized new transportzone for country serbia.
Now I want to download this new transport zone into my mobile sales
client.
But which adapter object/download object do I need ?
Thanks Gerd

Hi,
the adapter object is DNL_CUST_CUST2.
The CRM table is TZONT, the CDB table is SMOTZONT.
Regards,
Wolfhard

Similar Messages

  • Download Sales Office from CRM to CDB

    Hi all,
    I am trying to download the replication object DNL_CUST_S_OFFI (sales office) from CRM to CBD. However, there is no such load object available when i try to run in R3AS. I got the error There is no object definition for object when load in R3AS. May i know what is the correct adapter object name for this replication object DNL_CUST_S_OFFI?
    Thanks

    Hi,
    Make sure Sbdoc DNL_CUST_S_OFFI is active and generate services for it using SMOGGEN. Then the data will be written into CDB tables like SMOTVKBT/SMOTVKBZ(I'm not sure about the exact one)
    Then do an extract of the object DNL_CUST_S_OFFI to download the data to the client.
    Goto smoeac : filter the mobile sites : Click the requisite mobile site and Start an extract : Select Customizing Objects (double click)
    Now you'll get a list of replication objects : Select the bulk Replication object DNL_CUST_S_OFFI and start extract.
    Tnx.

  • Download custom fileds from CRM to CDB

    Hi all,
    I want to download a few EEWB fields of BP and Orders to CDB (Mobile Laptop) solution. Can you suggest me how to go abt it?
    Regards
    Arun

    Hi,
    enhancing objects with the EEWB also enhances the related CDB tables and the sBDocs.
    Therefore the new fields should also be filled in the CDB after creating/changing data in CRM.
    What you need to do to bring the new fields to MSA is the following:
    - generate the changed table scripts on a particular MSA client using clientconsole tool
    - generate the meta data (tps.net) on a particular MSA client using clientconsole tool
    - run a full extract of the changed object
    If there are already MSA clients in the field the create an upgrade package containing these changes (tables changes, BDoc changes) and apply/send this package to the Clients.
    Regards,
    Wolfhard

  • Customizing not downloading from CRM to CDB

    Dear All
    Pl help/ guide on the direction to proceed further. Customizing (Domain Ranges DD Texts) are not downloading from CRM to CDB.
    Background:
    Activities and Campaigns are replicated from CRM to CDB (Mobile). For a particular new field which we have added through AET, the domain ranges are stored in the table DD07T. The task is do a customizing download to replicate these domain ranges to the corresponding CDB table SMODD07T. For this, We would need to create a BDoc type @ BDoc Modeler and then a customizing adapter object with that linked BDoc type. For distribution from CDB to mobile, we would have to create replication object and publication on this Linked BDoc in SMOEAC.
    Issue
    Now, when I am creating the Bdoc type in SBDM, it prompts that mapped table (SMODD07T) should have two key fields and only one Primary key for the segment and since this is not the case it is throwing the error. I have verified with various std customizing adapter objects and their corresponding sBDocs. In all the cases, the SMO table has exactly key fields, the MANDT client and the SFA GUID. Without generating the BDoc type, the adapter object Banega nahi and I experimented in many ways where I created a custom adapter object with any of the standard campaign and customizing related Linked BDoc types for the adapter object, Initial Load is successful and even huge blocks of data is transferred. But the required SMODD07T table is not getting populated.

    Hi,
    Ok the initial load is performed without errors.... But did you check the queues?
    Best regards,
    Caíque Escaler

  • Initial load from CRM to CDB

    Hi,
    I'm trying to do the initial download from CRM to CDB for a mobile scenario, using the transaction R3AS.
    In this transaction, I'm selecting the load object, Source site, but unable to select the destionation site as CDB. Is there any configuration needs to be done before we do the initial download?
    And important point is that there is an entry for CDB in the table SMOHSITEID.
    Please help me in this regard.
    Regards,
    Praveen

    HI
    Praveen you forgot the basic thing is you need to create a site in CDB also
    the site you created previously for crm data base not for cdb as u also know cdb is connected to crm data base through middleware first you create site, subscription, publication  in in cdm also later start down loading R3as before golive if your mobile clients are already live use R3AC4 delta again you have to set up filters and parallel processing for reduce the down loading time
    Reward with Points if Helpful
    Venkat

  • Possible transport zones from warehouse

    From a particular warehouse , I want to determine all the possible transport zones for which the material of a warehouse is shipped . Then I have to find all sales orders going to that zones.

    Hmmm.
    First of all, transport zones are not directly assinged to the warehouses.
    Warehouses are assigned to Plants and then shipping points are attached to the Plants. For every Shipping point, you would have a transport zone.
    Once you have done the above determination, next you can check all the sales orders which have the shipping points for the plants attached to the warehouse.
    I assume that you meant all sales order going out.
    Now all you need to do is check the revelant tables and put the logic together.
    Hope this is helpful
    Regards,
    Gauravjit

  • How transfer target group from CRM to CDB

    Dear all,
    i created a new target group.
    I would it's transferred in CDB and I thought that the system would have done it automatically.
    It appears that there is any kind of error (the target group is also in active status) but the situation is that the target group isn't in the CDB table and i don't find any adapter object or kind of report in CRM.
    I'm working with CRM 4.0
    Can someone help me?
    Thanks in advanced!
    Best regards,
    Giuseppe

    Hi,
    target gruop should be transferred into CDB automatically
    when it is assign to the marketing campaign or promotion and
    MSA user has active subscription for Promotions & Campaigns.
    regards, Robert

  • Download transport requests from server to GUI

    Hi All,
    Is there any FM or report that could download a released request (or a copy) on GUI.
    Any help is appreciated.
    KS

    Here is a program that I just whipped up.  It does pull the files from the application to the presentation, but I don't know if the files are not corrupted.  You will have to test them out.
    report zrich_0001.
    parameters: data type localfile
               default '/usr/sap/trans/data/R903289.TST'.
    parameters: co   type localfile
               default '/usr/sap/trans/cofiles/K903289.TST'.
    data: begin of idata occurs 0,
          rec type string,
          end of idata.
    data: xdata type string.
    data: begin of ico occurs 0,
          rec type string,
          end of ico.
    data: xco type string.
    data: stripped type rlgrap-filename.
    data: file_path type rlgrap-filename.
    data: fe_path type string.
    start-of-selection.
    * Download Data Files
      open dataset data for input in text mode.
      if sy-subrc = 0.
        do.
          read dataset data into xdata.
          if sy-subrc <> 0.
            exit.
          endif.
          idata-rec = xdata.
          append idata.
        enddo.
      endif.
      call function 'SO_SPLIT_FILE_AND_PATH'
           exporting
                full_name     = data
           importing
                stripped_name = stripped
                file_path     = file_path.
      concatenate 'C:' stripped into fe_path.
      call function 'GUI_DOWNLOAD'
           exporting
                filename = fe_path
           tables
                data_tab = idata
           exceptions
                others   = 22.
    * Download Co Files
      open dataset co for input in text mode.
      if sy-subrc = 0.
        do.
          read dataset co into xco.
          if sy-subrc <> 0.
            exit.
          endif.
          ico-rec = xco.
          append ico.
        enddo.
      endif.
      call function 'SO_SPLIT_FILE_AND_PATH'
           exporting
                full_name     = co
           importing
                stripped_name = stripped
                file_path     = file_path.
      concatenate 'C:' stripped into fe_path.
      call function 'GUI_DOWNLOAD'
           exporting
                filename = fe_path
           tables
                data_tab = ico
           exceptions
                others   = 22.
    Regards,
    Rich Heilman

  • Download customizing crm - cdb - msa ?

    Hello forum,
    where/which objects do I have to download in crm, so that my
    msa-client has the same customizing as my crm-online ?
    I use in msa bp/cp with activity-management.
    Hope someone can help !
    Thanks
    Gerd

    Hi Gerd,
    Below mention is list of adaptor objects to be downloaded from CRM to CDB:
    Object Name     Description
    BOTVAK_OBJECT     BOTVAK_OBJECT
    BOTVAPO_OBJECT     ATP Profile per Item Category
    CRM_DNLPRDOBJFA     Product Object Family
    CRM_DNLPRDSCHEM     Numbering Scheme for Hierarchy
    CRM_DNLPRODTYPE     Definition of Product Types
    CRM_DNLSUBJPROF     Subject Profile
    CRM_DNL_ACT_CAT     Activity Category
    CRM_DNL_ACT_H     Activity
    CRM_DNL_ACT_OBJ     Activity Objective
    CRM_DNL_ACT_PRI     Activity Priority
    CRM_DNL_BNKA     Banking Master
    CRM_DNL_CODEPRG     Code Profile
    CRM_DNL_CODEPRO     Code Profile
    CRM_DNL_COPYCU     Service Transaction Type
    CRM_DNL_CYCLE     Sales Cycle of the Opportunity
    CRM_DNL_CYCPHAS     Sales Cycle of the Opportunity
    CRM_DNL_ICATEG     Service Item Category Group
    CRM_DNL_ITMTYPE     Item Type
    CRM_DNL_IT_ASSG     Item Assignment
    CRM_DNL_OPPIPOR     Opportunity Class
    CRM_DNL_OPPORTH     Opportunity Header customizing
    CRM_DNL_OPPTYPE     Object/Opportunity Sub-Type
    CRM_DNL_ORGMAN     CRM_DNL_ORGMAN
    CRM_DNL_PAR_FCT     Partner Function
    CRM_DNL_PAR_PDD     Partner Determination Definition
    CRM_DNL_PAR_PDP     Partner Determination Procedure
    CRM_DNL_PHASE     Funnel Phase
    CRM_DNL_PPFTCON     PPF: Actions
    CRM_DNL_PPFTCU     PPF: Trigger Type
    CRM_DNL_PRDCT     Service Valuation Types
    CRM_DNL_PRDOBJF     Product Object Family
    CRM_DNL_PROCTYP     Process Type
    CRM_DNL_PRODUCT     Material Number Conversions
    CRM_DNL_PRT_PFT     MSE Partner Function Category
    CRM_DNL_QPC     Code
    CRM_DNL_QPG     Code Group
    CRM_DNL_SCAPPT     Date Type
    CRM_DNL_SLSITEM     Sales Item Customizing
    CRM_DNL_SOURCE     Opportunity Source
    CRM_DNL_SRVCUST     Service Header Customizing
    CRM_DNL_SRV_TY     Service Types
    CRM_DNL_STAREAS     Status Reason
    CRM_DNL_SUBOB     Service Object Types for BTH
    CRM_DNL_SUBOB_I     Service Object Types for BTI
    CRM_DNL_TAXCNT     TB070
    CRM_DNL_TAXCN_T     TB070T
    CRM_DNL_TEXT_O     Text Object Definition
    CRM_DNL_TEXT_P     Text Determination Procedure
    CRM_DNL_TG_TT     TB071
    CRM_DNL_TIMECTE     Date Set Profile
    CRM_DNL_TJ02     System Status
    CRM_DNL_TJ20     Status Profile
    CRM_DNL_TJ30     User Status
    CRM_DNL_TQ15     Code Catalog Type
    CRM_DNL_TTXID     Texts for Text IDs
    CRM_DNL_TTXOB     Defaults for Object Types
    CRM_DNL_VAL_TY     Service Valuation Types
    CRM_TTE_CNTDEP     Country-Dependent Customizing
    CRM_TTE_COMMUNI     Community
    CRM_TTE_INTDATA     Customer Interaction Data
    CRM_TTE_MAP     Customer Mapping
    CRM_TTE_SYSDATA     Customer System Data
    CRM_TTE_TAXABIL     Customer Taxability
    CUST_CHAN_WRITE     Campaign Channels
    CUST_CTYPT_WRT     Campaign Type
    CUST_PCAUT_WRT     Campaign Authorization
    CUST_PCOBJ_WRT     Campaign Objective
    CUST_PCTAC_WRT     Campaign Tactics
    CUST_PRCPROCDET     Determine Pricing Process
    CUST_PRCPROC_DE     CUST_PRCPROC_DET-SalesDoc
    CUST_PRIOR_WRT     Allocation Priority
    CUST_PRIOTX_WRT     Campaign Priority
    CUST_STUS_WRITE     Allocation Item Status
    DNLITEMSTATUS     Opportunity Item status
    DNL_CRM_IBA_CTY     IBase Component Type (Service)
    DNL_CRM_IBA_TYP     IBase Types
    DNL_CUST_ART_NO     Product: Categories
    DNL_CUST_AU_CON     Sales Document Types: Texts
    DNL_CUST_BNKA1     Banking Information CRM->CDB
    DNL_CUST_CLASS     Sales
    DNL_CUST_COUNTR     Business Partner: T005*
    DNL_CUST_CREDIT     Business Partner: TFACT
    DNL_CUST_CURREN     Currency
    DNL_CUST_CUST1     Business Partner: 151,188,189
    DNL_CUST_CUST2     Business Partner: TPRIT
    DNL_CUST_CUST3     Business Partner :TVGFT
    DNL_CUST_GLOBAL     Business Partner: TSAB, TSABT
    DNL_CUST_INDUST     Business Partner: T016T
    DNL_CUST_IT_CAT     Sales Document Item Categories
    DNL_CUST_LANGU     Business Partner: T002, T002T
    DNL_CUST_MAT1     Sales, Shipping
    DNL_CUST_MTART     Item Category Group
    DNL_CUST_PAFUNC     Partner Function Groups
    DNL_CUST_PERS1     Business Partner: TPKFT, SABT
    DNL_CUST_PERS3     Business Partner: TB010
    DNL_CUST_SD_CON     DNL_CUST_SD_CON
    DNL_CUST_SD_OR1     Business Partner: VAST
    DNL_CUST_SD_OR2     Business Partner : VFST
    DNL_CUST_STOCK     Process Type
    DNL_CUST_SYSMSG     Messages
    DNL_CUST_SYS_TB     Contains SMONRIV
    DNL_CUST_UNITS     
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • Where / how to download table  TVV1T from R3 to CRM to CDB into SMOTVV1T ?

    Hello everbody,
    does anybody know which object I have to download from R3 to
    CRM and from there to CDB in order to get the table SMOTVV1T   filled
    in CRM ?
    Thanks for reply ,
    Gerd

    Hi,
    I've found it:
    Synchronize object  DNL_CUST_CUST3 from crm to cdb.

  • How to distinguish Delta download from CRM to Mobile from Initial download

    Hi guys,
    I checked out that when downloading from CRM to CDB (for mobile), the inbound queue is always CRI_XXX..._CDBI.
    For data load from CRM to R/3, I remember that initial load and delta load, the inbound queue names would end up in differnet words (I for initial load, D for Delta load). But for load from CRM to CDB, it seems that only 'I' exists.
    My question is, how can we distinguish delta load from initial load via the queue name? saying that the queue name is
    CRI_CSA_BUPA_INIT_CDBI, can we simply judge that it's an initial load or delta one?
    Thanks and best regards,
    Raymond

    Yes, CRI_CSA_BUPA_INIT_CDBI is the queue created for BUPA initial load from CRM to CDB. Delta loads from CRM to CDB would create no queues - they would be handled in the objects queue itself (for eg. CSABUPA*) queues.
    Regards,
    Ankan

  • Relation ship from CRM to R/3?

    Hi Friend’s
    Can we send Business Partner Relation Ship? From CRM to R/3
    Can we Download Relation Ships from R/3 to CRM?
    Can we Download Relation Ships from CRM to R/3?
    Plz give me the solution with Example plz
    Regard’s
    Mahesh Kumar
    My mail id is [email protected]

    Hi,
    ->Can we send Business Partner Relation Ship? From CRM to R/3
    Ans: Yes. For this you need to have the subscription 'All Business Partner Relationships (MESG)' assigned to the site 'OLTP' in the transaction SMOEAC.
    ->Can we Download Relation Ships from R/3 to CRM?
    Ans: Yes. Use the adapter object CUSTOMER_REL . You can find this from the transaction R3AC1. Run this using the Tcode R3AS.
    ->Can we Download Relation Ships from CRM to R/3?
    Ans. This is same as Q1.
    It is tough to give examples for such questions. Let me know if you need any help.
    Hope this helps.
    Karuna.

  • CRM table for BPs, shippincg condition &transportation zone

    I want to get teh list of business partners with obsolete shipping conditions & transportation zones. Can anyone help me with the table in SAP CRM which has this info - BP, transportation zone & shipping conditions?
    Thanks,
    Jayasri

    Hi Jayasri,
    You can refer the table CRMM_BUT_SET0020 to get the Shipping conditions of a BP based on the Set guid which you can get from the table CRMM_BUT_LNK0011 by passing the BP guid.
    Also Transportation zone can be fetched from the table ADRC based on Address number of BP which you can get from table BUT020.
    Regards,
    PP

  • HT1657 I downloaded a movie from iTunes on my iPhone 4S, went out of the wifi zone and now my movie is no where to be found. I can't find it on my iPhone, Mac or iPad. Where is it?

    I downloaded a movie from iTunes on my iPhone 4S, went out of the wifi zone and now my movie is no where to be found. I can't find it on my iPhone, Mac or iPad. Where is it?

    Sounds like the movie didn't finish downloading before the Wi-Fi signal dropping ...
    Try re downloading. You won't be charged again.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Error while downloading Business Partners from R/3 to CRM in Inbound que

    Hi Experts,
    I am getting function module "PMPAY/P_CHK_MC" not found error in Inbound queue of CRM while downloading customers from CRM to R/3. I checked this FM is not exist in CRM.
    Why this is FM required in CRM, any way to skip this error?
    Regards,
    Kumar

    Go to IMG>CRM>Basic Functions>Payment Cards>Basic Settings>Maintain Payment Card Type> Here take out checking rule values example 1234 which is assigned to Type. If this dont resolve let me know I will check tomorrow in my system as I dont have access to system now.
    Hope this helps.

Maybe you are looking for