Extracting custom attributes for individual objects

CRM service maintain those custom attributes and set types. By checking the 'BW relevant', it generates all the custom data sources for BW. The data sources are in $tmp, but can be viewd in RSO2.
Those custom attributes can be added to 0crmp_prod and updated via flexible update from those generated datasource. My concern is that it creates a lot of maintenance depending on the number of set types maintained in CRM. Currently there are about 50 set types being maintained in CRM, which means additional 50 transfer rules for 0crm_prod.
My question is whether there is more efficient way to handle this situation.
Thanks for any suggestion.
Jennifer

It sounds as if your custom attributes may not have been created properly which is leading to your current problem. When creating a new attribute, one of the final steps is adding it to a specific 'Class'.  This is where you choose
Computer or User or any other specific need you have.  It sounds very much like this is the piece that has been missed.
To fix it you'll first need to clean out the User specific pieces that have gotten into the system.  Easier said than done, I understand, but it will be crucial going forward.  Once cleaned, add the attributes to the Computer class one at a time
using the Active Directory Schema admin tool.  You will need to be a member of the Enterprise Admins to add yourself into the Schema Admins and please remember to remove yourself after you are done (Best Practice). 
Refer to this for additional info:
http://social.technet.microsoft.com/wiki/contents/articles/20319.how-to-create-a-custom-attribute-in-active-directory.aspx
and: 
http://blogs.technet.com/b/isingh/archive/2007/02/18/adding-custom-attributes-in-active-directory.aspx
Hope that helps
Gary
Gary G. Gray
 MCP, MCTS, MCITP, MCT Alumni
Please remember to mark the replies as answers if they are helpful.
This posting is provided AS-IS with no warranties or guarantees and confers no rights.

Similar Messages

  • Attributes for Individual Fees

    Hi
    Could YOU help me with " Attributes for Individual Fees".
    In IMG I have defined Attributes for Individual Fees, I have done individual fee STCD - duplicate for student card for 30 euro.
    My question is where can I use it. How can I charge student for Individual Fee - duplicate for student card ?
    Is there any transaction to calculate this fee for student ???
    Thank YOU !!!

    Grzegorz, I think the best way to deal with this extra charge is creating a surcharge for the "duplicate of student card", set that surcharge at the fee calculation master data for the student, and place that surcharge in the fee calculation process.
    To do this, you have to:
    1) Create a Discount/Surcharge  at the Student Master data for the Students. There are six possible different discount/surcharges types you can create, at IMG>Campus Management>Campus Management master data>Student> Fee calculation -->Discount/Surcharge (from 1 to 6)
    2) At IMG>Campus Management>Student Accounting>Fees> Pricing-->Pricing procedures:
         a) create a condition table related to the Discount/surcharge you have created
         b) Define an access sequence for that condition table
         c) Define condition type and account key for that access sequence
         d) Maintain pricing procedures and add this new surcharge to the Pricing procedures where it has to be calculated
         e) Create a condition record for the condition table, with the value of the surcharge
    3) At IMG>Campus Management>Student Accounting>Posting> FI-CA Documents you have to define G/L account and Contract Object type for the account key related to the new surcharge
    4) Set the "duplicate of student card" at fee calculation student master data for the students to be charged
    Then you can run fee calculation .
    Hope this may help you.
    Diego

  • Quantity Unit for individual objects missing.

    Hi,
    i have the following problem using mobile service.
    We need to enter individual objects in the service confirmation. I can select one, but the dropdown for the quantity unit is empty. Because of this beeing a mandatory field, i can not save the service confirmation. The select statement coming from the corresponding comboengine is using the SFAMARA key to search the SMOMARM for this information. This table is empty for individual objects.
    Each equipment has a back reference to it's original material wich has got the information, even in SMOMARM.
    so my question: In CRM-Online the back reference is used, in Mobile its using the individual object key. I would identify this as a bug. We are using Mobile 5.0 SP7, CRM 5.0 .
    Has anybody experience with this and can support me? i found nothing in OSS! Maybe some customizing in CRM-Online or MSY. I don't know.
    Thanks a lot,
    Andreas Rose

    Hi,
    IObjects cannot be entered as items for service confirmations or orders as it makes no sense at all.
    The reference to one or more IObjects will be done in Tileset <Subject/Objects> or <Item Subject/Objects>, Tile <Reference Objects>.
    Regards,
    Wolfhard

  • Language attributes for business objects ERC_CDCY

    Hello,
    I need to activate TREX index ERC_CDCY from our e-recruiting system using SES_ADMIN transaction.
    When I activate it, I receive error message UNCAUGHT_EXCEPTION (CX_SY_OPEN_SQL_DB) at the
    relational index level (Relation of candidacy).
    I opened a message with SAPnet and got the following answer:
    Indexes are only created in english compared to others systems that contains indexes in both languages (EN, FR). We could not find any french attributes for business objects ERC_CDCY which is required (at least 7 words) to index it in french language.
    Do you know which transaction or SPRO menu path I could use to maintain de language attributes and the 7 words?
    Thanks for you help
    Hugo

    Hello Huga,
    About maintaining the language in E-Rec  you can have a look at the table
    V_T77RCF_SELANGU, there you can maintain the different language.
    The exception you are getting might be coming from the TREX side. please check the following notes:
    1260684  SQL statement terminates: "Too Complicated SQL
    1249465   TREX 7.1: Installing TREX for Embedded Search
    Best Regards,
    Deepak.

  • Set XML-Attributes for multiply objects

    Hi everybody,
    this is my situation. I have a document with several pages and several objects on each page.
    now I want to get the coordinates and the dimensions of a object and write down the datas as a XML-attribute.
    The script should do this for every object in my document.
    That's what i got so far:
    function creatAtt(){
        for (var i = 0; i < app.selection.length; i++){
        var myObject     = app.selection[i];
        var myXMLobject = myObject.associatedXMLElement;
        var ycoords     = myObject.geometricBounds[0];
        var xcoords     = myObject.geometricBounds[1];
        var width         = myObject.geometricBounds[3] - myObject.geometricBounds[1];
        var height         = myObject.geometricBounds[2] - myObject.geometricBounds[0];
        myXMLobject.xmlAttributes.add ("Y-Koordinate", ycoords.toString() + " px");
        myXMLobject.xmlAttributes.add ("X-Koordinate", xcoords.toString() + " px");
        myXMLobject.xmlAttributes.add ("Width", width.toString() + " px");
        myXMLobject.xmlAttributes.add ("Height", height.toString() + " px");
    creatAtt();
    When I select a object and run the script it only writes the data for the selected object, not for all objects. Somebody a tip how to fix it???

    Hi,
    I have tried the script. And it only writes down the attributes for one object. Directly in the root. I have attached a screenshot. But i want to write the attributes in the hotspot Tags of the selected object.
    I hope you know what I mean .
    I dont know where he gets the datas bot that are not the datas of one of my three objects.
    I changed the scrip a little bit:
    var myDoc     = app.activeDocument; 
    var myPages = myDoc.pages;
    for (var i = 0; i < myPages.length; i++){
        var myActualPage = myPages[i].pageItems;
        for (var j = 0; j < myActualPage.length; j++){
            var myObject     = myActualPage[j];
            var myXMLobject = myObject.associatedXMLElement;
            var ycoords     = myObject.geometricBounds[0];
            var xcoords     = myObject.geometricBounds[1];
            var width         = myObject.geometricBounds[3] - myObject.geometricBounds[1];
            var height         = myObject.geometricBounds[2] - myObject.geometricBounds[0];
            myXMLobject.xmlAttributes.add ("Y-Koordinate", ycoords.toString() + " px");
            myXMLobject.xmlAttributes.add ("X-Koordinate", xcoords.toString() + " px");
            myXMLobject.xmlAttributes.add ("Width", width.toString() + " px");
            myXMLobject.xmlAttributes.add ("Height", height.toString() + " px");
    But then I get a error message:
    Errornumber: 21
    null is not an object.
    Row 60 --> He means this part of the script: myXMLobject.xmlAttributes.add ("Y-Koordinate", ycoords.toString() + " px");

  • External no range for individual object

    hello,
    still have confusion in creating external no range for individual objects.
    i have created to two subgroups i'e 01s & 01 C. & a $$$$ is alo der...in $$$$ ext range is 1-499999 & for 01S it is 201 -300 & for 01 C its 101-200..
    but system is taking any no for positions & jobs with out restrictions..i think tht is because of $$$$ range..
    thst wat my confusion is..can any one let me know wat to do for this...with an example...
    do reply..
    thanks & regards
    Vinita

    Self solved

  • Custom Attributes for Scheduled Transactions (Background Jobs)

    Hi,
    I am trying to fetch the custom attributes for scheduled background jobs. Since we are not using the XAcute Queries to run the automatic jobs, we can't use the AUTOBIND property for custom attributes and hence can't fetch them in the scheduled transactions. Is there any way to retrieve the attributes while scheduling a transaction ?
    Thanks,
    Amit Rath

    Hi Amit,
    a way that works: inside your transaction you can call a XML query that reads out the property list for a given user. In the URL of the XML query you can add the user by using the IllumLoginName parameter.
    - create a XML query with the following URL:
    http://<server>:<port>/XMII/PropertyAccessServlet?mode=list&Content-Type=text/xml&IllumLoginName=<User>&IllumLoginPassword=<Password>
    - in your transaction, call the query. You can retrieve the value of the attribute with a XPath expression like this:
    XML_propertyAccessServlet_0.Results{/Rowsets/Rowset/Row[Name='MyAttribute']/Value}
    Interestingly, adding a User / Password in the Scheduler Editor of the job does not work (MII 12.0.2). Maybe this would be also an option for you to try.
    Michael
    Edited by: Michael Otto on Nov 9, 2010 8:27 AM

  • Custom attributes on endpoints objects in ISE 1.3 ??

    Hi,
    I would like to create custom attributes on an endpoint object - just as it is possible to do on user object.
    How do I do that ?
    Can I use the REST API for that - or is that not supported ?
    Best regards
    Tue

    From what I was able to gather, the two primary  reasons were:
    1. Customers complaining that it was too complex to get even a basic customized portal going
    2. TAC was getting way too many case related to troubleshooting custom HTML portal issues
    Not too long ago I completed a deployment where the customer provided the custom HTML portal which was causing the BYOD flow to break (randomly). As soon as we uploaded a portal that was created in Cisco Portal Builder, the issues went away. 

  • Extracting custom attributes problem

    Dear all,
    i have created custom characteristic with custom attributes, i need to fill that master data. i have selected this char as info provider and created transformation and  dtp. When i load data into psa it has 80 records, however when i load that master data, it gives success message saying 80 records read, 4 records updated into master data.
    I have no delta update or anything else. What is wrong?
    Thanks

    Hi,
    Did you loaded the records for the first time in the master data??
    Was this object already used in some cubes or DSO and you are adding attributes now??
    It is possible that depending upon the master data key...that is key of the P table the records got overwritten.
    The manage option does shows wrong records added sometime and you should check the detail in the moitor to check how many records got added.
    Also it will show added records onlyy for the new values of the key....if already the key values was stored in the SID table...then it will not show them as added but only new values will show up as added.
    Thanks
    Ajeet

  • Business partner in Fact Sheet for Individual object

    Hi Folks,
    I am unable to see the assigned business partners on the Fact Sheet for an Individual object.  I have created the iObject in the portal.  Here, I could not assign any BP's during the creation as the system does not have this option.  I then went ahead and created an Installed Base and assigned this iobject to it in the CRM system in transaction [IB51] "Create Installed Base".  I then went ahead and assigned the Business Partners to this iObject. 
    The situation is that I can see the assigned Business Partners in the Portal for this iObject/Component for the Installed Base in the "Installed Bases/Components" tab but when i go to the "Fact Sheet for Installed Bases" tab I am unable to see the assigned BP's.
    I haven't been able to find any documentation on it either.  Can someone please help.
    Thanks.

    Hi,
    Did you ever solve this issue? 
    I too am having the same problem and cannot display the factsheet or summary using the 'Go To' button in EP.
    Any help would be much appreciated.
    Regards
    Jo

  • Simple report that extracts marketing attributes for contact persons

    HI
    I want to extract the marketing attributes for contact person and to have certian output fields ,
    Can anyone help by finding an existing report that i may make some changes in it.
    Thanks ,

    ..

  • What is Attribute for assigned object in IMG activity?

    Hi Experts,
    I am adding a new IMG step by changing IMG structure and create a new activity under one existed node.
    In the Change IMG activity page, there are 3 tabs-Document, Attribute and Maint. objects for assigned objects.
    In Attribute tab, there are attribute ID and name, assigned application components. What are their function? How can I get their value?
    Thanks!
    Regards,
    Ying

    i got the answ

  • RZ20: how to create status attribute for monitoring object ?

    Hello,
    I am brand new into RZ20 maintenance and my question may be silly.
    Anyway, SAP supplies monitoring objects customized with performance attribute (such as MTE class SAPconnect Error). Instead of having such performance attribute, I would prefer to have a MTE class with status attribute in order to trigger an alert each time a there is a SAPconnect message with error.
    Is it possible to define such status attribute ? If so, how could it be achieved ?
    Thank you for your help.
    Regards,
    Fabrice

    Hello Fabrice,
    the monitoring object and its attributes are defined by the data collector. This means the attributes are hard coded (in the function module or report in case of data collection method (a passive data collector) of directly in the kernel (an active data collector).
    And as long as the data collector is delivered by SAP, changing the coding is not a good idea
    So only way would be to create your own monitoring objects using your own data collector. A documentation how to do this is available in the Service MarketPlace: "<a href="http://service.sap.com/~sapidb/011000358700001752571999E/SUPPLIER_46A_EN_Neu.pdf">How to Write a Data Supplier for the Alert Monitor</a>".
    Regards, Michael

  • Data attributes for PO objects

    Hi Guruus,
    I'm trying to find in all the PO objects where the screen data are filled in the data attributes. For instance, the attribute PO_ITEM_HASH_TABLE from CL_PO_ITEM_HANDLE_MM seems to hold the data. But I'd like to find exactly where it's filled in, and I can(t find out. It's just used in methodes GET_DATA and SET_DATA, and the constructor seems not to explicitly fill it.
    Actually, my requirement is to get a custom Account Assigment element from stocked orders. That's mean that FI account assigment elements are not displayed, just FM's if you've set them in customizing. (the Account Assigment category in PO line is blank).
    Note that I have created a new account assignment element within structure CI_COBL using FI customizing.
    I've found a way to display my element somewhere near the display of the FM account assigment elements, but the value user enters is not sent to PAI. It looks like because it's not in the PO_ITEM_HASH_TABLE attribute.
    If anyone has a clue,
    N.H.

    Well, none answered, but I've solved my issue. Thanks to some Customer Structure Appends and some enhancements, now I have my new account assignment element in PO, without any standard modifications
    N H

  • Change Sequencing Policy for individual objects? V9.0.4.9

    Our TOPLink projects us using by default the sequence table model for its sequencing policy.
    There are a few individual tables where native sequencing is being used, and I need to map these tables and be able to insert into them.
    Can I change the sequencing policy for these few tables only in version v9.0.4.9? I believe this may be possible via a Descriptor Amendment, but cannot find the method(s) that allow me to change this...
    Thanks in advance..
    Greg

    Our TOPLink projects us using by default the sequence
    table model for its sequencing policy.
    There are a few individual tables where native
    sequencing is being used, and I need to map these
    tables and be able to insert into them.
    Can I change the sequencing policy for these few
    tables only in version v9.0.4.9? I believe this may
    be possible via a Descriptor Amendment, but cannot
    find the method(s) that allow me to change this...
    Thanks in advance..
    GregIn 9.0.4.* you can do this in a descriptor amendment method by invoking the following API -
    descriptor.setSequenceNumberName(String name). For Oracle native sequencing this needs to be the name of the Oracle sequence object.

Maybe you are looking for

  • Acrobat Pro 9 - Conversion Error from Word 2007

    I do not want to hijack the thread or question raised by another poster a short time ago but I cannot figure out how to correct the below. Office 2007 fully updated Vista 32-bit Acrobat Pro 9.3.4 I have to provide data for someone else to assemble an

  • DELETE Querey in JDBC SENDER

    Hello all, I am trying the JDBC to file Scenario. There are 5 records in a table, i can see the records in the MONI being successfully picked by the sender jdbc adapter, after being picked up i want those records to be deleted. So i write a DELETE st

  • Fxstruts and xml example needed

    Hello, I'm using fxstruts to bridge to a new flex app. I am using secure http and am using the HTTPService request on the client. The request goes through successfully (i.e. a logon). Once that succeeds on the server I forward to a page which returns

  • Creating function in a loop

    hello -- my problem is that i am dynamically creating a bunch of buttons in a loop, and want to include a different "onRollOver" function for each button. However, the variables I am setting in the functions are all being overwritten with the value f

  • Time to difference in seconds

    Hi, im implementing a reminder function whereby a user can input a time in format HH:MM:SS and the program will prompt them with a reminder at that time. I have already used the Calender.getInstance() method to obtain the current HH:MM:SS and i need