How can we replicate UOM from ECC to SRM.

Hi ,
In ECC I have assign ISO code against the UOM.
I have replicate ISO code from ECC to SRM. But unable replicate UOM.
How can we replicate UOM from ECC to SRM?
Thanks with regards
Sachin

Hi Sachin,
UOM are uploaded in SRM through object DNL_CUST_BASIS3. It's part of master data replication.
You should refer following link, it will give you idea how to load mentioned object in SRM:
MASTER DATA REPLICATION: SETTINGS
I hope it helps.
Regards,

Similar Messages

  • Can't replicate vendors from ECC

    Hi,
    We are setting up a new EBP environment where I can't replicate vendors from ECC to SRM via BBPGETVD. In the application log I get the error message no BBP_VENR005. It says that there is an error in the PD-org structure; only one organizational unit permitted per beckend - purchase org.
    I have of course specified the backend system as well as the purchase organization.
    We have created a root and one node in the org structure of the vendors.
    Can anybody help with this issue?
    Best Regards
    Ulf Gewers

    Hi
    Did you influence any error message there BBP_VENR ?
    or Are now the vendor is available in PPOSV_BBP ?
    red or yellow in slg1.Did you select internal no range or r/3 number range.
    Are you transfering from multiple backend sytem with srm.
    Hope that your organisation is consistent with green.
    regards
    Muthu
    Edited by: Muthuraman Govindasamy on Sep 29, 2008 11:59 AM

  • Mandatory fields to replicate vendor from ECC to SRM

    Hi all,
    I created a vendor in ECC with all mandatory fields. But when I tried to replicate the vendors to SRM from ECC, I am getting errors like mandatory fields are missing. Can you please tell me what are the mandatory fields in SRM when we replicate vendors from ECC to SRM. Its Urgent.
    Regards,
    Balaji.S

    Hi Balaji,
    When you create Vendors properly in ECC it should not give such an error. You have to maintain basic data, Accounting data and purchasing data. Rest all are optional.
    For replicating vendors from R/3 to SRM you should have a Vendor root org / group in SRM. BBPGETVD is used to replicate vendors to SRM by mentioning the logical system and Vendor Group ID.
    Hope this makes you clear. Please explain the error clearly for further help.
    Award points for helpful answers.
    Rgds,
    Teja

  • How can we synchronize UOM between ECC and APO?

    Hi,
    We have configured new UOM (unit of measurement) in ECC. How can we synchronize UOM in APO with UOM in ECC (table T006)?
    Thanks and regards, Jose Oyon.

    Jose,
    Synchronizing the config is simple.  Run program RSIMPCUST in SCM.
    Synchronizing changes to affected master or transactional data (if required) is much more complex.  The best method by far is to create the new UOM config in ECC, and synchronize the config into SCM.  Only then do you begin to use the new UOMs in ECC Master data and ECC transactional data.  Existing transactional data, depending on what is is, will be very difficult to change UOMs and have the UOMs in SCM synch, without quite a bit of manual effort.
    Rgds,
    DB49

  • How to deactivate nterfaces triggering from ECC to SRM (Plan driven scenario)

    Hi SRM Friends,
    If I check in SXMB_Moni, I could see outbound interfaces  which are triggering from from ECC to SRM.
    Please guide me how to deactivate these XML messages.
    We are not using EPRTRANS table, not maintaining V_T160 tables.
    I don't know where to check further to deactivate this Plan driven scenario. Please suggest
    Best Regards,
    BV Babu

    Dear Rahul,
    Thanks very much  for the reply.
    Would like to inform you that we had to maintain an internal custom table entry to solve this issue.
    This is related to a workflow issue. WF triggered unnecessarily... this caused triggered XMLs.
    Regards,
    Babu
    Email : [email protected]

  • How can I replicate table from a user to another user?

    I want replicate a table from a user to another user, I use DBMS_STREAMS_ADM.RENAME_SCHEMA, but it didn't work.
    who can tell this reason?
    scripts as following:
    create user strmadmin IDENTIFIED BY strmadmin;
    grant dba to strmadmin;
    BEGIN
    DBMS_STREAMS_AUTH.GRANT_ADMIN_PRIVILEGE(
    grantee => 'STRMADMIN',
    grant_privileges => TRUE);
    END;
    connect strmadmin/strmadmin
    --queue
    BEGIN
    DBMS_STREAMS_ADM.SET_UP_QUEUE(
    queue_table => 'STREAMS_QUEUE_TABLE',
    queue_name => 'STREAMS_QUEUE');
    END;
    --capture
    BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
    schema_name => 'SCOTT',
    streams_type => 'CAPTURE',
    streams_name => 'S_CAPTURE',
    queue_name => 'STREAMS_QUEUE',
    include_dml => true,
    include_ddl => true,
    include_tagged_lcr => false,
    source_database => 'ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    inclusion_rule => true);
    END;
    --instantiation
    DECLARE
    iscn NUMBER;
    BEGIN
    iscn := DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER();
    DBMS_APPLY_ADM.SET_SCHEMA_INSTANTIATION_SCN(
    source_schema_name=>'SCOTT',
    source_database_name => 'ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    instantiation_scn=>iscn);
    DBMS_APPLY_ADM.SET_TABLE_INSTANTIATION_SCN(
    source_object_name=>'SCOTT.DEPT',
    source_database_name => 'ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    instantiation_scn=>iscn);
    END;
    --apply
    --transformation
    DECLARE
    s_dml VARCHAR2(30);
    s_ddl VARCHAR2(30);
    BEGIN
    DBMS_STREAMS_ADM.ADD_SCHEMA_RULES(
              schema_name => 'SCOTT',
    streams_type => 'APPLY',
    streams_name => 'S_APPLY',
    queue_name => 'STREAMS_QUEUE',
    include_dml => true,
    include_ddl => true,
    source_database => 'ORCL.REGRESS.RDBMS.DEV.US.ORACLE.COM',
    dml_rule_name => s_dml,
    ddl_rule_name => s_ddl);
    DBMS_STREAMS_ADM.RENAME_SCHEMA(
              rule_name => s_dml,
              from_schema_name => 'SCOTT',
              to_schema_name => 'TEST',
              step_number => 0,
              operation => 'ADD');     
    END;
    --start
    BEGIN
    DBMS_APPLY_ADM.SET_PARAMETER(
    apply_name => 'S_APPLY',
    parameter => 'DISABLE_ON_ERROR',
    value => 'N');
    END;
    BEGIN
    DBMS_APPLY_ADM.START_APPLY(
    apply_name => 'S_APPLY');
    END;
    BEGIN
    DBMS_CAPTURE_ADM.START_CAPTURE(
    capture_name => 'S_CAPTURE');
    END;
    /

    select * from dba_streams_rename_schemaWhat do you have there?

  • Replication of hierarchical levels labels from ECC to SRM

    Hi Gurus!
    I am working on SRM 5.0 in Classic scenario and ECC 6.
    We are trying to replicate data from ECC to SRM in order to retrieve the same organisational structure as the one existing in ECC in SRM.
    We succeed in replicating hierarchical levels from ECC to SRM, indeed we retrieve data of infotype 0001 employee subgroup in table HRP5581-PERSK. But we did not retrieve labels of those subgroups?
    Have we missed to customize a filter in tx BD64 in ECC? Or the problem is just that data replication does not send hierarchical levels labels from ECC to SRM?
    Please help!!
    Thanks a lot.
    Regards,
    Morgane Chevallier

    Hello all!!
    Any idea on the subject??
    Please help!
    Regards,
    morgane

  • How to generate CCMS report from ECC system

    Hi,
    I have implemented CCMS between my SAP ECC system 6.0 and SAP SRM7.0. How can i generate CCMS report for my SRM system from ECC system. Can any one please tell me the steps to configure CCMS between my ECC (CEN) system and SRM 7.0 ABAP system.
    Regards,
    Pradeep J

    Pradip_jag12 wrote:
    > I have implemented CCMS between my SAP ECC system 6.0 and SAP SRM7.0.
    >Can any one please tell me the steps to configure CCMS between my ECC (CEN) system and SRM 7.0 ABAP system.
    Hi,
    Contradicting statements.
    However check the link for CCMS Configuration:
    http://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/30237989-0901-0010-70a4-944691eb5e52 [original link is broken]
    Ideally the CEN system should be a double stack i.e. best if its a solution manager.
    Regards,
    Srikishan

  • How to get G/L account and cost centres from ECC to SRM...

    Dear All,
    How to get G/L account and cost centres from ECC to SRM...
    Please let me know the steps...
    Thanks
    Ravi

    Hi
    GL account - You can define in SPRO- Cross application settings--Account assignment ->Define GL account for product category and account assignment category.
    or you can use BADI BBP_DETERMINE_ACCT.
    In Organisation Strucute - You can Map the backend cost center via KNT  cost center attribute .
    Regards
    Muthu

  • How can i replicate this images drop shadow exactly

    How can i replicate this images drop shadow exactly from scratch
    http://i52.tinypic.com/2u41t7n.jpg
    If this sort of thing is not covered on this forum please direct me to an off site forum that would help me with this graphics question

    Trial and error, putting both the reference image and your new experimental image up side by side, is the only way I know.  I'd probably use the Info panel as well, to see that I'm getting the same or very similar color numbers from the new drop shadow.
    You can probably use the Magic Wand set to a very low tolerance value to select and copy the light colored object, then make a new document with a white background, paste in the copied object, then start experimenting with drop shadow.  Alternatively you could just redraw a portion of it.
    -Noel

  • How can I move apps from one computer to the other?

    How can I move apps from one computer to the other?
    (preferably without iCloud)

    Backup your iTunes library to an external drive and onto the other computer
    http://support.apple.com/kb/ht1751

  • How can I transfer work from one computer to another?

    How can I transfer work from one computer to another?

    Welcome to the forum.
    I can think of three basic ways to accomplish what you wish to do:
    Use the Project Archiver to archive your Project (and check the box to gather the media files), to an external HDD. Probably the easiest way to do it.
    Copy the Project and ALL media files to an external HDD, but be prepared to relink the media files to the Project, as the drive letter (part of the Absolute Path) will have changed.
    Edit loosely, and Share to an AV file, which will be Imported into a New Project on that second computer. Or, edit VERY tightly, and do the same. I like the first, as removing, replacing Transitions, etc., can be much more difficult, unless that "tight edit" is 100% done.
    Good luck,
    Hunt
    Message was edited by: Bill Hunt to correct formatting

  • How can I transfer information from one ipad to another?

    how can I transfer information from one ipad to another ?

    What kind of information? You can sync things like Contacts and Calendars by using iCloud. You can backup one iPad to iTunes on a computer and then sync the backup to the other iPad. You can configure your iTunes content and sync the same content to both iPads.
    It is based on what you want to do. Or are you looking for a way to send files from one iPad to another wirelessly? There are apps to do things like that, as well as cloud services, such as DropBox.

  • How can I transfer songs from one computer to another

    How can I transfer songs from one computer to another

    Type "move itunes library" or similar into the Google search bar.

  • Home computer crashed.  How can I move stuff from iPod Touch to a new computer?

    Our home computer crashed.  How can I move stuff from iPod touch to a new computer?

    - Transfer iTunes purchased by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    - Transfer other stuff via the third-party programs discusses in this prevous discussion:
    Best iPod to PC

Maybe you are looking for