Standard Customer Maps

Hi All,
Where can we find the Standard Customer Maps to download for MDM 5.5
Thanks in Advance ,
Nikhil

Hi Nikhil,
You can downlaod the Stantard business content, import export maps from
https://service.sap.com/swdc -> Installations and Upgrades ->Entry by Application Group ->SAP NetWeaver -> SAP MDM ->  SAP MDM 5.5
It will come with the whole installables.
You would need a market place ID for that.
Regards,
Vijay

Similar Messages

  • Is it possible to adding a "standard" custom approver?

    Hi forum,
    We have a requrement that the user needs to approve the last stage. I've been experimenting with custom field and adding  <virsa_ae_wrkflapvr ID="ZTRAINEE" APPROVER="ZTRAINEE" wftype="AE"/> to the init_clean_snf_insert_data file. As far without success. Is it possible to adding a "standard" custom approver?
    These users will be registred in UME through LDAP.
    Kind Regards,
    Vit Vesely
    Edited by: Vit Vesely on May 17, 2010 9:22 PM

    Hi VIt,
    it is possible to create a custom field that automatically fetches the user id by using LDAP mapping concept.
    What you can  do this bycreate a custom fields in CUP of field type as text. Then Go to Configuration-> fields mapping-> LDAP mapping.
    Now in additional field  select the custom field in AC field and user id ( "sAMAccountName" in case of active directory ) in LDAP field.
    Now when user login from end user form its information will come to CUP application userid will be also populated in the custom field that you have created.
    If you want provisioned user to be the approver it is difficult to achieve but can be done by one solution  In CUP apart from the standard approvers , you can create custom approver determanator. Configuration->Workflow->Custom Approver Determinator. It can be created on the basis of various CUP.attributes like request type, priority, role, custom fields etc. But you have define clearly in this if request has this value for this attribute than this will be the approver. So above created custom fields will have userid right. So you can create CAD for this custom fields. and than can define if User id is this then this is the approver. In you case if Custom field has values USER_NAME that Apprvoer is USER_NAME. All users in this case should exist in UME. Also CAD needs to be maintain for every user this will be tedious task. you can upload this by excel sheet also.
    Hope that it would be helpfull..
    Kind Regards,
    Srinivasan

  • Report with Standard price / MAP price

    Hi
    Is their are standard report where i can run the MAP / Stand price. No extraction from table please.
    Thanks
    N

    Thank you guys . I am looking for a report where i can view the standard cost / MAP for a single material. , I want to know what is my MAP if my price is standard and i want to know my standard cost if my  cost is MAP ..
    Your help will be highly appreciated .
    Thanks
    N

  • R/3 u2013 XI u2013 MDM integration scenario - Standard import Maps problem

    Hi Data Masters,
    We are working on R/3 u2013 XI u2013 MDM integration scenario for Vendor Object. We have extracted main table Data using u201CMDM_CLNT_EXTRu201D program. Now while importing the data in MDM we want to use u201CStandard business content i.e. Standard Import Maps (Name u2013 cremdm - 03 u201D but this maps are not mapping all the fields. So do we need to extend this maps..??
    OK. Second, To create own maps we are facing following problems,
    1)     In source section many fields are reflecting twice means in two segments i.e. LFA1 and ADRMAS like Name, City, Street, country etcu2026 whereas in Target section we have one field for the same so how to maps this fields.
    2)     In source, There are few fields like ADRNR which have values but in target we donot have any fields to map for the same, so how to handle thisu2026
    Helpful answers will be rewarded,
    Cheers
    RC

    closed

  • Performance of an UDF v/s standard graphical mapping functions

    Hello Experts,
    I would like to get your opinion/comments on the performance issues with respect to speed of execution when using graphical functions for doing the date conversion requirement given below:
    Requirement is to convert input date u20182008-12-03u2019 from the source side to u201820081203u2019 on the target side.
    We have used the standard graphical mapping functions 'substring' & 'replacestring' for doing this conversion as explained here: The u2018substringu2018 function is used to capture the part of the string from the source. A u2018constantu2019 with value u2018u2013u2018 is replaced by u2018constantu2019 (empty value) by using the standard text function u2018replaceStringu2019 in the target side.
    We did the same using the following UDF too:
    public String convertDate(String dateStringInOriginalFormat) {
                SimpleDateFormat originalFormatter = new SimpleDateFormat("yyyy-MM-dd");
                SimpleDateFormat newFormatter = new SimpleDateFormat("yyyyMMdd");
                ParsePosition pos = new ParsePosition(0);
                Date dateFromString = originalFormatter.parse(
                            dateStringInOriginalFormat, pos);
                String dateStringInNewFormat = newFormatter.format(dateFromString);
                return dateStringInNewFormat;
    From a critical performance point of view, which approach will fare better?
    Thanks in Advance,
    Earnest A Thomas
    Edited by: Earnest Thomas on Dec 4, 2008 6:54 AM

    Hi,
    Not only in this case but in general it is always better to use the functions available in MM and only if your requirement is not satisfied with the standard mapping functions then go for UDF.
    Also for your requirement no need of going for substring....you can directly use the DateTransform function available.
    Source --> DateTransform --> Target
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Dec 4, 2008 11:25 AM

  • Custom mapping is obviously not reflected in the Entity Framework designer

    Hi,
    I use the Oracle Data Provider for .NET 11.2.0.2.50 Beta 3 with the Entity Framework. I added a custom mapping to the app.config that maps NUMBER(1,0) to bool:
    <oracle.dataaccess.client>
    <settings>
    <add name="bool" value="edmmapping number(1,0)" />
    </settings>
    </oracle.dataaccess.client>
    When I create an Entity Framework model from my Oracle database the EF designer uses Int16 for NUMBER(1,0) fields instead of bool. If I run the program I then get an exception (as expected):
    "Schema specified is not valid. Errors:
    EntityFrameworkTest.msl(7,12) : error 2019: Member Mapping specified is not valid. The type 'Edm.Int16[Nullable=True,DefaultValue=]' of member 'ISVIPCUSTOMER' in type 'EntityFrameworkTestModel.CUSTOMER' is not compatible with 'OracleEFProvider.number[Nullable=True,DefaultValue=,Precision=1,Scale=0]' of member 'ISVIPCUSTOMER' in type 'EntityFrameworkTestModel.Store.CUSTOMERS'."
    Okay. Assuming it's an error in the EF designer, I set the type Boolean in the model myself for the NUMBER(1,0) fields. But that gives me a compilation error:
    "Error 2019: Member Mapping specified is not valid. The type 'Edm.Boolean[Nullable=True,DefaultValue=]' of member 'ISVIPCUSTOMER' in type 'EntityFrameworkTestModel.CUSTOMER' is not compatible with 'OracleEFProvider.number[Nullable=True,DefaultValue=,Precision=1,Scale=0]' of member 'ISVIPCUSTOMER' in type 'EntityFrameworkTestModel.Store.CUSTOMERS'."
    Is this a bug in the provider? Or am I missing something?

    Are you using model first or database first? If you're using database first, make sure you update the model from the database after adding that configuration.
    Also, if your model is in a different assembly (ie a different project) from your executable, your executable project's configuration file also needs the mapping section.
    Finally... there's been a LOT of threads about this not working properly in beta 3. I'm still on beta 2 and except for some incorrect error messages in the designer it works fine (I get fake errors). If nothing else works, I might suggest trying beta 2 as a last resort.

  • How to create a custom mapping operator.

    Any idea on how to create a custom mapping operator.
    An example: When i insert records in a table, i need to populate some columns like "created by" and "Created date" which are constant across many tables. Untill now i created a constant operator with attributed "Created by" and "Created Date" and put it on to a map. I'd like to know if there is a way in Oracle Warehouse builder to created such custom operator.
    puli.

    Hi,
    As per next major OWB release (OWB10gR2 a.k.a. Paris) it will become easier to share 'blocks of objects', so then it would be easy to define you Constant only once, and use it in the same configuration all over your project(s).
    Right now this is not possible.
    I guess you could try to build a table with all these default values, and use this to populate your audit columns.
    Good luck, Patrick

  • JAXB 2.0, XMLAdaptor and HashMap for customized mapping

    I have a requirement to implement a custom mapping of HashMap in JAXB. Basically I want to be able to use a HashMap structure to represent key/value pairs instead of the default List. So I need to be able to store (marshal) a HashMap structure into XML, and then be able to read (unmarshal) the XML back into a HashMap.
    I've discovered the XMLAdaptor class and I think this is the way to do it:
    https://jaxb.dev.java.net/nonav/jaxb20-pr/api/javax/xml/bind/annotation/adapters/XmlAdapter.html
    However, my knowledge of generics and annotations in 5.0, and XML schemas are somewhat elementary - so I'm a bit stuck.
    If someone has a complete working example of the HashMap example they show in the API doc linked above, I would greatly appreciate it if you could post it here.
    Otherwise, perhaps you could answer a couple of questions for me.
    1) I tried using the XSD directly from the example in the API doc (Step 2).
         <xs:complexType name="myHashMapType">
           <xs:sequence>
             <xs:element name="entry" type="myHashMapEntryType"
                            maxOccurs="unbounded"/>
           </xs:sequence>
         </xs:complexType>
         <xs:complexType name="myHashMapEntryType">
           <xs:simpleContent>
             <xs:extension base="xs:string"/>
           </xs:simpleContent>
           <xs:attribute name="key" type="xs:int"/>
         </xs:complexType>xjc complains when I generate the classes and says that the 'xs:attribute name=key' shouldn't be there. If I move it up into the 'xs:extension' node it works. But then I get strange XML when I create some key/value pairs and marshal them. The first XML node looks okay, but the rest of the List items start with '<xsi:entry ...', e.g.
    <entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="myHashMapEntryType" key="key0">value0</entry>
    <xsi:entry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="myHashMapEntryType" key="key1">value1</xsi:entry>
    ...So my first question is, what is the proper XSD to represent a HashMap with XML like the following:
         <hashmap>
             <entry key="id123">this is a value</entry>
             <entry key="id312">this is another value</entry>
          </hashmap>2) Now for the HashMap part of it; you need to create a class that extends XmlAdaptor<HashMap, MyHashMapType> with marshal and unmarshal methods. This is where I get a little fuzzy on exactly what these methods need to do. The example in the API doc doesn't show this.
    3) And finally; once I have all this in place, how do I actually marshal and unmarshal, presumably using the value types that I created instead of the value types that were auto generated by xjc? At least I think that's what I'm supposed to do.
    Thanks.

    Download the javaeetutorial5
    Under this path is a working example.
    \examples\jaxb\j2s-xmlAdapter-field
    I've tried following the bad example you sited, and even with a great deal of work it still fails to work.
    I think the example will help clarify how marshall and unmarshall methods are to be implemented. What would be really nice is for whoever wrote the example you sited to finish the job instead of expecting the reader of their documentation to figure it out.
    I fail to understand why JaxB has failed to directly support a collection so prevalent in its use as a HashMap. I also don�t know why they can�t support a Map interface that by default maps to a HashMap.
    Best of luck to you,
    Robert

  • Load data from BW 7.0 DSO into a ECC 6.0 SD standard/Custom pricing table

    Gurus,
    We have a scenario, where we need to load data from a BW DSO to SD standard/Custom pricing table in ECC 6.0. That data will be few thousand records.
    Per my knowledge, in BPS, retractors are available to update data from BW to ECC and OpenHub also can be used to handle similar scenarios.
    Any one of you came across similar scenario?
    If you have any third option (not BPS rectors or OpeHub) as a solution to handle this kind scenario, and share the knowledge, it will be greatly appreciated.
    Thanks in advance,
    Vittal

    Hi Yogesh,
    Thanks for your reply.
    We have large data volumes for Billing datasource and hence moving flat files using PI is not an option and also as i mentioned a part of requirement is monitoring of the whole process as well. What i mean by this is if a 1000 billing document items were passed on to CRM7 to create a member activities and because of some reason a member activity was not created for one of the billing doc items, we should know the problematic record and reason why member activity was not created in CRM7 (reason code). And then be able to fix it.  All this requires an end to end monitoring capability and also guaranteed delivery of data to CRM7.
    Hence i was trying to explore the enterprise web service option.
    What i am not sure of is how to expose BW DSO delta request to CRM7 using a web service ? or any other method that gives end to end monitoring capability and also guaranteed delivery of data to CRM7.
    Any other suggestions ?
    Thanks
    CK

  • Reg: copying standard message mapping

    Hi,
    Can any one suggest me how to copy the standard message mapping..
    I have copied it in normal way...but its not getting executed...
    when i try to execute the standard map with same payload, then it works fine...
    << Moderator message - Please do not offer points >>
    << Moderator message - Everyone's problem is important >>
    Thanks,
    Madhu
    Edited by: Rob Burbank on Oct 22, 2010 3:51 PM

    Stefan,
    I have copied the SAP delivered standared map. When I run the copied map, it is giving an error "Cannot create target element /ns1:envelope/catalogueRequest/document. Values missing in queue context". But same getting executed in original SAP map.
    here in the map node "document" occurences is 1 to 1000. For mapping logic it has been duplicated 3 times.
    ex : document(1..1000), document[1](1....1000), document[2](1...1000).
    according to payload we can able to create node document(first occurence) once. That should be enough. and standard SAP map is working accordingly.
    But when we ran copied map its giving an error. we desabled the occurence 2 then its working.
    no look ups are used.
    Any suggestion....

  • Custom Mapping: Storing embedded objects to column of Oracle Object type

    Hello,
    How hard in your opinion it would be to write custome mapping to store an
    embedded object which only have simple fields in it (no references to other
    persistent classes) to oracle object column. What superclass is the best for
    the job?
    Simplest approach I see is to define "none" mapped class for my embedded
    object and use transformation mapping to do the job
    What if I need to reference other persistent objects in my embedded one - do
    you think it will make any difference?
    Thank you for your assistance
    Alex

    overriding loadProjection() took care of this issue
    "Alex Roytman" <[email protected]> wrote in message
    news:cjslsb$uo6$[email protected]..
    Looks like transform mapping would not work - Kodo does not support object
    mappings (use stream instead) or I am missing something?
    "Alex Roytman" <[email protected]> wrote in message
    news:cjshqv$ref$[email protected]..
    Hello,
    How hard in your opinion it would be to write custome mapping to store an
    embedded object which only have simple fields in it (no references to
    other persistent classes) to oracle object column. What superclass is the
    best for the job?
    Simplest approach I see is to define "none" mapped class for my embedded
    object and use transformation mapping to do the job
    What if I need to reference other persistent objects in my embedded one -
    do you think it will make any difference?
    Thank you for your assistance
    Alex

  • Customized Maps for the Studio Application

    Hi All,
    We have a requirement where we need to use customized maps instead of the map provided out of the box by the OEID tool. Is there any document or set of instructions available to use customized maps? What are the things to consider before using customized maps? Could you please provide me some pointers on this?
    Thanks,
    Mahesh

    Hi All,
    We have a requirement where we need to use customized maps instead of the map provided out of the box by the OEID tool. Is there any document or set of instructions available to use customized maps? What are the things to consider before using customized maps? Could you please provide me some pointers on this?
    Thanks,
    Mahesh

  • Standard/Custom program to set deletion flag for Purchase Requistions

    Hi all,
    If any of you know the Standard/Custom program to set deletion flag for purchase requistions, please let me know. It would be of great help.
    Thanks in advance,
    Karthik

    Hello
    Bapi BAPI_REQUISITION_DELETE will help you.

  • Cisco Router Forwarding External, up to 4 servers Standard & Custom MIBs

    Dear Members,
    One of my client need a Router and having following requirement. Other requirements meet with Cisco 2951 router.
    Management/ Logging: CLI, WebUI, SNMP (v1, v2), Syslog, Forwarding External, up to 4 servers Standard & Custom MIBs, Ping, Traceroute, MPLS License included.
    Please guide me what does it required saying "Forwarding External", "up to 4 servers Standard & Custom MIBs".
    Regards,
    Uzair Hussain

    This question would be better placed in one of the Network Infrastucture sections of the focums where these things are more actively discussed than in the TelePresence section you have posted in.  I'd suggest that you move your discussion to get answers from the experts in that area.
    Wayne
    Please remember to rate responses and to mark your question as answered if appropriate.

  • Code for setting KM Folder properties(standard & custom)

    Hi,
    How do I programatically set the KM Folder properties(standard as well as custom defined) ?
    Also, how do I programatically set KM Document properties(standard & custom) and its Permissions ?
    (I have NWDS setup to do the development)
    Any API references or code samples or documentation would be of great help
    thanks
    Ashish

    You could do something like this...
    path is the location of the resource in KM.
    namespace is the namespace of the property you would like to set.
    name is the id of the property you would like to set.
    value is what you want to set it to.
    public static boolean setPropertyValueOfResource(String path, String namespace, String name, String value)
            try
              RID file = RID.getRID(path);
              IUser user = WPUMFactory.getServiceUserFactory().getServiceUser("cmadmin_service");
              IResourceContext rContext = new ResourceContext(user);
              IResource fileResource = ResourceFactory.getInstance().getResource(file, rContext);
              IPropertyName pName = new PropertyName(namespace, name);
              IProperty prop = new Property(pName, value);
              fileResource.setProperty(prop);
              return true;
         catch(NullPointerException E)
         catch(UserManagementException e)
         catch(ResourceException e)
    You can also get the property value of a resource.
    public static String getPropertyValueOfResource(String path, String namespace, String name)
         try
              RID file = RID.getRID(path);
              IUser user = WPUMFactory.getServiceUserFactory().getServiceUser("cmadmin_service");
              IResourceContext rContext = new ResourceContext(user);
              IResource fileResource = ResourceFactory.getInstance().getResource(file, rContext);
              IPropertyName pName = new PropertyName(namespace, name);
              IProperty property = fileResource.getProperty(pName);
              return property.getValueAsString();
         catch(NullPointerException E)
         catch(UserManagementException e)
         catch(ResourceException e)
    You can also get the available values for the property
    public static String[] getAllowedPropertyValues(String propertyId, String namespace)
         try
              IPropertyConfigurationService propConfigService =(IPropertyConfigurationService)ResourceFactory.getInstance().getServiceFactory().getService("PropertyConfigurationService");
              IMetaModel metaModel = propConfigService.getMetaModel();
              IPropertyName propertyName = new PropertyName(namespace, propertyId);
              IMetaName metaName = metaModel.searchByPropertyName(propertyName);
              IMetaValueListIterator iterator = metaName.allowedValueIterator();
              String values = "";
              while(iterator.hasNext())
                   IMetaValue m = iterator.next();
                   values += m.getValue() + ";";
              return values.split(";");
         catch (ResourceException e)
         catch (PropertyConfigurationServiceException e)

Maybe you are looking for

  • RSS Feed Issues

    I built a blog in iWeb which is hosted by MobileMe on my personal domain. I use Feedburner for the RSS Feed. Here is my raw feed address: http://www.ryanfirpo.com/filmmaker/Blog/rss.xml Here is my Feedburner feed: http://feeds.feedburner.com/ryan918F

  • Issues with FTP adapter

    Hello, I m facing issues using the FTP adapter. I am using 10.1.3.1 standalone installed in my desktop. 1) The FTP adapter doesnt poll continuously for the files. It dies off as soon the folder is empty. If there are incoming files after sometime, th

  • How can i see the containts of Raw datatype

    hi friends, I have an application in which some raw datatype is given i wanted to see through sql or plsql ,is any conversion function is there in oracle to see it,if no then how to see it . raj

  • Sales Order-Shipping Conditions from Sold-to-Party

    Hi Guys When sales order created, shipping conditions copied from Sold-to-Party.  At that time, in SP, shipping conditions maintained wrongly.  After creating Sales Order, shipping conditions modified in SP, but system not allowing to modify shipping

  • Upto previous period data

    Hi how to get upto previous month data if select aug-11 then i get upto jul-11 data for the aug-11 how to do this i have gldate,startdate,enddate