UOM and DNL_CUST_BASIS3 customizing Object

Dear SRMers,
System Information: ECC 6.0 and SRM 5.0
Can you please let me know if DNL_CUST_BASIS3 is obsolete in SRM 5.0. Because I am trying to load the Units of Measure from ECC 6.0 to SRM . In SRM, I am running the
R3AS tcode and did the initial load with DNL_CUST_BASIS3 object. But  I dont see any queues started in SMQ1 on the ECC side.
On the SRM side, the status in CRM monitor(SMWP)  says  running with a Yellow sign and block size is 0.
Please let me know if you have any information.
Thanks in advance,
Bob

Hi Bob,
Following OSS note 872533, DNL_CUST_BASIS3 is obsolete.
However, it seems to still work in SRM50...
As an alternative :
For ISO codes synchronisation, you can go to transaction CUNI -> ISO and then select "utilities" -> "adjustment".
A pop-up will be displayed to select the backend code
Kind regards,
Yann

Similar Messages

  • Mapping and querying Custom Objects for a Contact with REST Api

    Hello All,
    We are hoping to get some details on managing DataCard set through REST APIs. Our implementation goal is to create Contacts and add Custom object for each Contact, or to be precise, add a DataCard Set for each Contact.
    At the moment, to associate a DataCard Set (or Custom Object) to an existing contact, we are supplying following custom object fields during creation of Custom Object:
    new CustomObjectField 
                                                                    name = "MappedEntityType",
                                                                    dataType = Enum.GetName(typeof(DataType), DataType.numeric),
                                                                    type = "CustomObjectField",
                                                                    defaultValue = "0"
                                                             new CustomObjectField
                                                                    name = "MappedEntityID",
                                                                    dataType = Enum.GetName(typeof(DataType), DataType.numeric),
                                                                    type = "CustomObjectField",
                                                                    defaultValue = "<ContactId>"
    Is this the correct approach? This is Based on the information provided here: http://topliners.eloqua.com/community/code_it/blog/2012/05/31/eloqua-api-how-to-mapping-a-data-card-to-an-entity.
    Would the REST API allow us to query the CustomObjects using the MappedEntityId value for later updates? If so, any pointers on how we approach that?
    Thanks in ad.

    Either the MappedEntityID field is not available or I do it wrong, Eloqua is ignoring the field and does not map the custom record with the unique Contact ID
    {"type":"CustomObjectData","ContactID":"8829509","fieldValues":[{"id":"195","value":"[email protected]"},{"id":"220","value":"a0KJ000000387QvMAI"},{"id":"191","value":"001J000001OrL77IAF"},{"id":"193","value":"NowTV MPP"},{"id":"194","value":"8829509"},{"id":"196","value":"Andreas"},{"id":"197","value":"Wolf"},{"id":"198","value":"003J00000145lkBIAQ"},{"id":"210","value":"777666555"},{"id":"199","value":"gbp"},{"id":"200","value":"0"},{"id":"215","value":"0"},{"id":"201","value":"999111999"},{"id":"214","value":"111111"},{"id":"202","value":"222222"},{"id":"204","value":"now"},{"id":"203","value":"xmas"},{"id":"205","value":"no description"},{"id":"206","value":"test"},{"id":"218","value":"holidays"},{"id":"219","value":"PPV-0878545"},{"id":"213","value":"N"},{"id":"212","value":"myself"},{"id":"209","value":"now tv"},{"id":"192","value":"1417542120"},{"id":"207","value":"1417542120"},{"id":"216","value":"1417542240"},{"id":"217","value":"1417542240"},{"id":"211","value":"1417542240"}]},"MappedEntityID":"003J00000145lkBIAQ"}
    Response
    DEBUG|Response------{"type":"CustomObjectData","id":"81720","fieldValues":[{"id":"195","value":"[email protected]"},{"id":"220","value":"a0KJ000000387QvMAI"},{"id":"191","value":"001J000001OrL77IAF"},{"id":"193","value":"NowTV MPP"},{"id":"194","value":"8829509"},{"id":"196","value":"Andreas"},{"id":"197","value":"Wolf"},{"id":"198","value":"003J00000145lkBIAQ"},{"id":"210","value":"777666555"},{"id":"199","value":"gbp"},{"id":"200","value":"0"},{"id":"215","value":"0"},{"id":"201","value":"999111999"},{"id":"214","value":"111111"},{"id":"202","value":"222222"},{"id":"204","value":"now"},{"id":"203","value":"xmas"},{"id":"205","value":"no description"},{"id":"206","value":"test"},{"id":"218","value":"holidays"},{"id":"219","value":"PPV-0878545"},{"id":"213","value":"N"},{"id":"212","value":"myself"},{"id":"209","value":"now tv"},{"id":"192","value":"1417542120"},{"id":"207","value":"1417542120"},{"id":"216","value":"1417542240"},{"id":"217","value":"1417542240"},{"id":"211","value":"1417542240"}]}
    Eloqua:
    Name: PPV-0878545
    Unique Code: a0KJ000000387QvMAI
    Status Registered
    Created Date 12/22/2014 12:44:49 PM
    Mapped NO
    Any Idea how to map this to a contact
    Entity Type is Contacts
    Entity Field is SFDC Contact ID

  • Drag and Drop custom objects

    Hi guys.
    I just finished reading the Java tutorial on Drag and Drop at http://download.oracle.com/javase/tutorial/uiswing/dnd/index.html.
    Unfortunately, there is no note about how to drag and drop a custon object. There is something said on DataFlavor, but not enough to help me.
    So I would appreciate it if anyone could tell me the steps to follow when dragging and droping a custom object.
    Best regards.
    Edmond

    I think we can help you, but please post some example/code of what you are trying to achieve.
    I made D&D with custom objects, custom icons, etc. and is not so hard ... like I said, post some code ...
    RGV

  • How to export and import customized Object

    Hi All,
    I would like to communicate with system clipboard by importing and exporting the Objects.
    Assume that i have a RectangleBean object containing x,y,width and height properties and respective setters and getters.
    i am drawing the rectangle object by using the RectangleBean object values.
    now i want to export and import the RectangleBean object to system clipbord to draw a rectangle on other window when the user performed paste functionality. In other words communicating the RectangleBean objects between the two windows.
    Thanks in Advance
    Dorairaj M

    DoraiRaj wrote:
    Hi All,
    I would like to communicate with system clipboard by importing and exporting the Objects.
    Assume that i have a RectangleBean object containing x,y,width and height properties and respective setters and getters.
    i am drawing the rectangle object by using the RectangleBean object values.
    now i want to export and import the RectangleBean object to system clipbord to draw a rectangle on other window when the user performed paste functionality. That's not going to work: if you are talking past the bean object into the clipboard and have something like MS-Word use it as a way of recreating your graphic using your bean... no, that's just not going to happen.
    If you are saying you want to create another of your graphics on another Java window in the same JVM session, then just pass a reference of the window's graphic context to a setter and have at it.
    If you're talking about some JEE functionality, then you're going to have to use RMI or some other standard method to get your object over to the other box or it's effects.
    In other words communicating the RectangleBean objects between the two windows.Not by cutting and pasting to the clipboard.

  • Drag and drop custom object

    Hello,
    I am trying to create a GUI where the user will be able to drag an object (which I have created) from a toolbar button onto a JPanel. I have tried the sun tutorials to no avail. I am unsure exactly what code I should be writing to enable this functionality. I have written a dragmouseadapter which enables drag and drop from the button. I have also written a TransferHandler and Transferable for the object, but again I'm not sure how I should be using these. Can anyone advise me? Hopefully in a sort of step-by-step instruction for setting this up. Thank you.

    You wanted to drag and drop a custom component and you said its done using dragmouseadapter!
    TransferHandler and Transferable are used to transfer the data between the swing components.
    Now, what you want to do? So, we can help!

  • Linking a custom object to an activity and importing records

    I'm trying to create a link between an activity record and a custom object record. In essence, we will have 1 activity record with multiple associated custom object records linked to it. How do I import these multiple records to a specific activity record? I thought I could use the Activity: External Unique ID field but that field does not appear on the list of values available for importing to a custom object. Anyone have any ideas how to do this?

    Ken, at this time the import wizard does not support this type of functionality. However, this could be done using web services.

  • Need to Build the report on Campagins and custom object 01

    Hi All,
    I am building the report on campaigns and customobject 01 ,But wen i build the report i was not able to get all the project ID that are associated to the campaigns.
    The issue is when i pull the campaign id it wont fetches all the ID for customobject01 (becoz the relation is M:M)
    Can u please guide how to build the report.
    Regards
    Anu

    Hi,
    you can try to add the metric fields to your report for all involved objects, like # of Campaigns, # of Projects and # of Custom Object 1. Afterwards you can hide these fields from layout. For me this has always helped.
    Regards

  • Assets linked to Custom Objects

    Hi All,
    I'm trying to find a way to represent the link between a Custom Object and an Asset. I know I can create an Asset under a Custom Object as a related record, but if I look at the details for that Asset, there is no field I can locate that will indicate the link between the Asset and the Custom Object record.
    I'd appreciate any advice on how I can overcome this problem.
    Cheers,
    Cameron

    Thanks for your post Prakash.
    Unfortunately though I can't really use the vehicles record type as I'm somewhat restricted by my current system design.
    So does this mean that there is no field on the main Asset record type that can link to any of the Custom Object record types?

  • Export Custom Object search results

    I've selected my search criteria in one of my customer objects. The result is a set of records containing specific data items that I need. This data is not available in the contact record. I need to export just this set of records and not my entire Customer Object universe. Is that functionality available? Any help is appreciated.

    Method 1:
    Custom object > Reporting (drop-down from the top-right) > Custom Object Record Field Values (or percentages)
    Select your field, click "Select"
    Click into any field values that interest you
    Observe an exportable list of records
    (Limitation = cannot use wildcards)
    Method 2:
    Insight. This requires the analyzer license. Custom Object Record values are not subject to the normal 24 hour delay that almost all other data is. At most there is a ~30 second delay between CDOs and Insight.
    Ensure that the Custom Object Record and the fields from it you want are available in Insight. You want to include your unique field because the values are deduplicated in Insight otherwise. Build a report that includes the unique field and the field your value of interest is in. Filter on the column of interest and run the report. Export as desired.
    Method 3:
    API. From any open Eloqua window where you've already logged in, go to this URL: https://secure.eloqua.com/api/docs/dynamic/rest/1.0/reference.aspx
    (This is not for the tame and feint of heart.)
    More help here: Code It
    Specifically here: Building On The Eloqua Platform - A Resource Guide
    And here: Eloqua REST API - Create and Manage Custom Objects
    -Alexander Huzar

  • Custom Object assistance ....

    Here's the situation:
    I am using the Account Object, Custom Object 01 and then Custom Object 03 as the intersection between the Account and Custom Object 01. This seems to be working fine, however, there is something which I think is odd happening. When viewing the account which has a related object exposed for Custom Object 3 (the intersection table), if I select remove, it removed the record, however the relationship still exists under custom object 3. I would have expected the entire relationship (the record in the intersection component) to be fully removed.
    Am I doing something wrong or does this seem to be a flaw in the system ? Any thoughts ????

    What I'm trying to do is setup a many-to-many relationship between accounts and 'systems' (custom object). I have used a custom object to define all the 'systems' available. Then I am using another custom object to link the account and system together with additional custom fields to hold various pieces of information which applies to the relationship between the two. Doing this I can see the information from either the account or 'system' side.
    Are you saying I should not use Custom Object 3 since it is meant to function independently? I could use one of the custom 4-15 objects, but then the problem arises of not being able to WS or Import into them !! Maybe it's a catch-22!

  • Error creating a Custom Object via REST

    Hi- we're developing a third party app that will publish to Eloqua and may need to create and upsert to Custom Objects.  We whipped up a quick PoC using the sample code provided (thank you) but we're having trouble getting the create operation to be successful.  The code we're using is Java and works fine for: reading/writing contacts and reading Custom Objects.  Here's the wire info on the Create call that is failing:
    Request payload (authentication works fine - we're using it for other successful calls):
    POST: https://secure.eloqua.com/API/REST/1.0/assets/customObject/
    {"id":9987,"name":"rest test","fields":[{"name":"sample text field","dataType":"2","type":"CustomObjectField","id":1},{"name":"sample numeric field","dataType":"1","type":"CustomObjectField","id":2},{"name":"sample date field","dataType":"5","type":"CustomObjectField","id":3}],"page":0,"pageSize":0}
    Response:
    <Fault xmlns="http://schemas.microsoft.com/ws/2005/05/envelope/none"><Code><Value>Receiver</Value><Subcode><Value xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher">a:InternalServiceFault</Value></Subcode></Code><Reason><Text xml:lang="en-US">The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the &lt;serviceDebug&gt; configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.</Text></Reason></Fault>
    I'm assuming that we're just forgetting to set something in the header or payload of the call.  Can you provide some insight into what we're doing wrong here?
    Thanks!

    Fred,
    Thanks for the info above.  I retried the call with various combinations of IDs ranging from:
    - All different negative IDs
    - All the same negative IDs (-1)
    - Custom Object negative and fields positive (and vice versa)
    None of them worked.  I've attached the full HTTP envelope this time... I find it curious that the response is 404 (vs. 5XX)... am I calling the correct method/URL?
    Thanks,
    Dan
    ======================================================
    POST /API/REST/1.0/assets/customObject/ HTTP/1.1
    Content-Type: application/json
    Authorization: Basic [masked]==
    User-Agent: Java/1.6.0_37
    Host: secure.eloqua.com
    Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    Connection: keep-alive
    Content-Length: 303
    {"id":-100,"name":"rest test","fields":[{"name":"sample text field","dataType":"2","type":"CustomObjectField","id":-1},{"name":"sample numeric field","dataType":"1","type":"CustomObjectField","id":-2},{"name":"sample date field","dataType":"5","type":"CustomObjectField","id":-3}],"page":0,"pageSize":0}
    =============================================
    HTTP/1.1 404 Not Found
    Cache-Control: private
    Content-Length: 748
    Content-Type: text/html; charset=UTF-8
    P3P: CP="IDC DSP COR DEVa TAIa OUR BUS PHY ONL UNI COM NAV CNT STA",
    X-Powered-By: ASP.NET
    Date: Fri, 23 Nov 2012 13:36:37 GMT
    <Fault xmlns="http://schemas.microsoft.com/ws/2005/05/envelope/none"><Code><Value>Receiver</Value><Subcode><Value xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher">a:InternalServiceFault</Value></Subcode></Code><Reason><Text xml:lang="en-US">The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the &lt;serviceDebug&gt; configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework 3.0 SDK documentation and inspect the server trace logs.</Text></Reason></Fault>

  • Sharing Custom Objects

    Hello Guys,
    I'm sending custom objects using the "value" property of the ShareProperty class. However when i try to get this object after it has being sent through the network, it seems it was converted in a Array(HashMap). So, how can i send and receive custom objects using the ShareProperty class?
    Thanks
    Eduardo Dias

    Hi,
    When you send a complex object, it is converted into a ByteArray and when you get it back, it is reconverted back. What is the complex object that you are sending ? If its a class , have you called MessageItem.registerBodyClass(ClassName); for the class?.
    If you are sending a complexObject, you need to register that Class and all the Classes contained inside that.  If you could let us know, what is the composition of your class you are sending and what are you registering , then we can help you.
    For reference, you are look at ComplexObjectTransfer example.
    SharedProperty just contains a collectionNode like any model and calling a .value API publishes that object. If its not a simple Object, you may need to do all these registering before you use SharedProperty to publish you object.
    Thanks
    Hironmay Basu

  • Many to Many with Custom Objects 4 and up

    Hello,
    Pls. I need to define a new CO4 that will have a many to many relationship with Contact.
    From OD help pg.775 I understand that I should use another CO (f.ex. CO5) to be the intersection. Help file indicates how to rename the objects...and put them in the related info. section... but I don´t know what FIELDS (if any) I should define in the intersection CO5.
    Pls. Anyone could help ?
    Txs. a lot.
    Antonio

    Yes. You have to define them in CO5 Layout.
    You should see Name, Contact and Custom Object 04 (you may have renamed it). Not the Id field.
    Then when you add THE CO5 layout to Contact Related section, you can add new association between Contact and CO4.
    Don't forgot to enable the Access Profiles in Contact, CO4 and CO5.

  • How to find all those list of SAP standard and custom objects that are changed from a specific point of time

    Hi all,
    Please let me know the process to track or find all the SAP Standard and custom objects. that got changed from a specific point of time.
    Is there any function module or any table where this change log is maintained.?
    I just only need the details ,wheather that SAP standard or Custom object has got changed or not.
    Thanks in advance

    Hi RK v ,
    I really don't know what your actual requirement is , but if you want to know the objects as per the modification , then transport request will be much help to you .
    Have a look into table E070 and E071 .
    Regards ,
    Yogendra Bhaskar

  • How can i add an custom attribute and assign it to an existing custom object class in sun ds

    I need to add an attribute to sun ds schema and assign it to an existing custom object class.
    I know how to add an attribute but how can i add the attribute to an existing custom object class.
    Please help.
    Thanks

    The objectclasses attribute is multi-valued, so you can add several values to it as long as they are unique.
    For instance, I think you can add several declaration of the same objectclass as below (note the difference is the number of spaces in the value) howewer, from a schema perspective, only 1 will be taken into account:
    objectclasses: ( 2.5.6.6 NAME 'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword $ CustomAttr) X-ORIGIN 'RFC 2256' )
    objectclasses: ( 2.5.6.6 NAME   'person' DESC 'Standard LDAP objectclass' SUP top MUST ( sn $ cn ) MAY ( description $ seeAlso $ telephoneNumber $ userPassword $ CustomAttr) X-ORIGIN 'RFC 2256    ' )
    That's the reason why it is safe to delete previous value if you want to update an existing objectclass. No problem to add a new objectclass (new oid and new name) to the schema.
    -Sylvain

Maybe you are looking for