Route WorkItem based on custom Attributes/ Metadata

On my current project we have a requirement where scanned whitemail will be stored in DMS (Documentum), along with meta data. Then the DMS will create a work item in CRM for futher porcessing.
1> where is this meta data stored in crm once the work item is created?
2>  Is it possible to route the work item to specific teams interaction center (IC) Inbox  based on the metadat using standard config?
I'm new to this WF area so a detailed step by step answer will be appreciated.
Regards,
Sam

Hi,
1) If you know the work item ID, you can get the "metadata" (=container) with function SAP_WAPI_READ_CONTAINER. Or you can see it in workflow log. The container data is stored as XML and you cannot read it with SE16 similarly to normal tables.
2) Yes. There are lot of different possibilitites for this. You can create a custom rule, for which you can give the "metadata" as a parameter, and inside the rule you can have your own custom logic to get the needed agents. You can either code or configure this depending on the requirement.
In overall these are really basic WF functionalities. You should just first get yourself familiar with WF basics (tutorials, courses, etc.) and then ask more specific questions. Nobody here will probably start teaching you the basics step by step.
Kind regards,
Karri

Similar Messages

  • Sets based off custom Attribute

    So I am provisioning Security Groups to FIM based on a custom attribute, there are some other groups also located in the FIM portal. I am trying to create a Set for the groups based on the custom attribute, but I am not finding it my list of available attributes
    to make a criteria.
    I probly am missing something simple. The attribute is already binded to the group and they are provisioning FIM into the portal.
    Thanks
    Russell Lema

    1. Make sure that this new attribute is in the Filter configuration as attribute allowed to be used in filters. 
    2. If it is not visible in drop-down you can always just provision a group and set this directly as XPath - either through script or through "advanced view". I know not a perfect solution but works 100% time :) 
    Tomek Onyszko, memberOf Predica FIM Team (http://www.predica.pl), IdAM knowledge provider @ http://blog.predica.pl

  • IFS and security based on custom attributes??

    Is it possible to control the access to documents stored in iFS by cross checking the user's permissions and custom attributes values of files stored in iFS??.
    Thanks
    Sankar

    Hi,
    You can use tables AUSP, CRMD_MKTBP_AUSP.
    Function modules:
    CRM_MKTBP_READ_AUSP_EX_DB
    CRM_MKTBP_READ_AUSP_GUID
    CRM_MKTBP_READ_BP_SEL_AUSP
    Regards,
    Anup

  • Report on document based on document attributes (custom or standard)

    Hi All,
    Got a requirement to create a custom report in Solman to display document details under a project based upon the attributes (Custom or standard) of the document eg- Doc attribte phase 1 would result in a set of documents, phase 2 in another set.
    Please help me from where I can get the required data.
    Regards,

    I think i should have asked my question in a seperate thread...since it is considered as a reply to this thread....No indication/tool bar for rewardings points is found.....
    May be next time will reward more than expected..
    Thanks for all your service.
    Regards,
    Murali.S

  • Custom routing agent based on sender's security group and subject

    I made a custom routing agent that routes mails contains the word [encrypt] in the subject and sent from domain test.com
    The part of the code is
    if (e.MailItem.FromAddress.DomainPart.Contains("test.com")
                    && e.MailItem.Message.Subject.Contains("[encrypt]"))
    now what i need is to route mails based on the membership of a certain security group like "securemail" not the whole domain. ie if the sender is a member in security group (securemail) and the subject contains the word [encrypt] route the mail
    Thanks

    Thanks for your answer Glen
    The following  code is on exchange 2010 but i need it to check for a security group membership if possible
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.Exchange.Data.Transport;
    using Microsoft.Exchange.Data.Transport.Email;
    using Microsoft.Exchange.Data.Transport.Smtp;
    using Microsoft.Exchange.Data.Transport.Routing;
    using Microsoft.Exchange.Data.Common;
    namespace RoutingAgentOverride
        public class SampleRoutingAgentFactory : RoutingAgentFactory
            public override RoutingAgent CreateAgent(SmtpServer server)
                RoutingAgent myAgent = new ownRoutingAgent();
                return myAgent;
    public class ownRoutingAgent : RoutingAgent
        public ownRoutingAgent()
            //subscribe to different events
            base.OnResolvedMessage += new ResolvedMessageEventHandler(ownRoutingAgent_OnResolvedMessage);
        void ownRoutingAgent_OnResolvedMessage(ResolvedMessageEventSource source, QueuedMessageEventArgs e)
            try
                // For testing purposes we do not only check the sender address but the subject line as well
                // If the subject contains the substring "REDIR" then the default routing is overwritten.
                // Instead of hard-coding the sender you could also perform an LDAP-query, read the information
                // from a text file, etc.
                if (e.MailItem.FromAddress.DomainPart.Contains("contoso.com")
                    && e.MailItem.Message.Subject.Contains("[encrypt]"))
                    // Here we set the address space we want to use for the next hop. Note that this doesn't change the recipient address.
                    // Setting the routing domain to "nexthopdomain.com" only means that the routing engine chooses a suitable connector
                    // for nexthopdomain.com instead of using the recpient's domain.
                    RoutingDomain myRoutingOverride = new RoutingDomain("nexthopdomain.com");
                    foreach (EnvelopeRecipient recp in e.MailItem.Recipients)
                        recp.SetRoutingOverride(myRoutingOverride);
            catch // (Exception except)

  • Issue with Sorting by Custom Attributes

    In our custom SES query application, I am trying to implement sorting at the custom attribute level. I am having difficulty in understanding exactly how to set the options on doOracleOrganizedSearch() to achieve the desired result.
    We have a table based content source and allow a user to search via custom search attribute. We are also going to allow them to sort by custom attribute.
    For example, say we have a Project content source and one of the attributes is "Client Name". Users are going to be able to sort by client name (A-Z and Z-A). I have a prototype working but it only seems to work if I set topN to a very high number.
    I want to bring back the first 10 documents sorted by Client Name A - Z and allowing paging to the next set of sorted results. My prototype works if I set topN to 1000 (more than the # of results) but does not work if I set it to 10 (# of results I want to display per page).
    Below if my code. Note I am not setting the group attribute or the cluster list. Perhaps this is the issue?
    Many thanks in advance!
    OracleResultContainer results = service.doOracleOrganizedSearch
    (this.m_query, // query
    this.m_docsRequested, // topN
    this.m_startIndex, // startIndex
    new Integer(10), // docsRequested
    this.m_dupRemoved, // dupRemoved
    this.m_dupMarked, // dupMarked
    this.m_searchDataGroup, // groups
    this.m_queryLang, // queryLang
    this.m_docLang, // docLang
    this.m_returnCount, // returnCount
    this.m_filterConnector, // filterConnector
    filters, // filters
    this.m_fetchAttributeNames, // fetchAttributeNames
    null, // searchControls
    null, // groupAttr
    this.m_sortAttributes, // sortAttrList
    null); // clusterList

    Hi Nikola,
    in 9.0.1 even if you rewrite the web interface you can't sort files by custom attributes setting a SortSpecification to a Folder. You can only sort by base attributes with getItems(). To get item sorted on custom attributes you must perform a search (a lot more codelines).
    Regards, Alessandro

  • How do I access the name of the file stored in a custom attribute?

    I have created a custom attribute based on a file type and am using it in a custom page type. However, the value stored in wwsbr_folder_attributes is a sequential number rather than the name of the jpg file entered into the attribute. How do I access the true filename, as this seems to be what I need in order to reference it in an <IMG SRC=> tag?

    Hi Francis -
    You should be able to use this relatively use this sequential number in an image tag in the following way:
    <img border="0" src="docs/1/211800.GIF" width="470" height="108">
    Hope this helps,
    Candace

  • Using Rich Text Editor with a Custom Attribute

    Hello All,
    Can anyone please tell me as how can I use the Rich Text Editor with a Custom Attribute?
    I want to create a custom attribute based on text datatype, but when entering the value for this attribute in a Custom Item, portal shows a normal textarea. I want that the user should see the Richt Text Editor.
    Thanks for help.
    Regards

    Hi,
    Can you tell me what steps you are using to produce this, and which Portal version you are using. When I tried it, I wasn't able to reproduce it. Here are my steps:
    1) Created Custom Item Type, based on Text, under
    Page Groups > Shared Objects > Item Types
    2) Selected Three attributes (Description, Name, Publish Date). Note Text and Display Name were already selected
    3) In Add Item Wizard, configured list to allow for my
    custom item type selection.
    4) Then I was able to see the Rich Text Editor when editin
    my custom item type.
    Regards,
    J.

  • Add Additional Attributes/Metadata to a Question to Enable Deeper Segmentation Analysis?

    In Captivate, is it possible to add additional attributes/metadata to a quiz question, to allow for more flexible and effective reporting?  For example, I want to categorize questions in two different buckets: Difficulty (Easy, Medium and Difficult) and Concept/Subject (Math, Verbal and Science etc..).
    That way, I can analyze a students performance by not only their aggregate score, but also where their strenghts and weaknesses lie - if I see that a student is struggling with all Easy Math questions, I'll know what to focus on during our next lesson?
    Any assistance would be much appreciated.

    Hi,
    We can create Question Pools with Questions of different difficulty level called directly to the slides.
    But this would not give the advantage on LMS end, this would simply filter questions and would present them in the order you like, attaching meta data to a specific question would not be possible from Captivate, neither would you be able to call it on LMS report directly. You can assign a unique Interaction ID to each question item though capture the questions corresponding to the ids. If you LMS can refine the resuklts based upon the pre-assigned id, that should be great.
    Meanwhile, this would be in a different line, but have you checked the pre-test quiz, can that fit somehow, in you requirements?
    http://help.adobe.com/en_US/captivate/cp/using/WS6029a80579ffffcd5a87e66f135bd55f8cc-7ffc. html
    Thanks,
    Anjaneai

  • AD Import using Custom Attributes?

    by default when you run AD import in UC, it fetched whole AD domain accounts which contains service accounts and a lot other stuff which one don't want to import.
    So choice is to search using a particular Base DN which query only one OU.
    But this simple query is not adequate in a organization which has a very complex and large OUs structure, users which needs to be UC enabled are distributed among many separate OUs.
    Is there some kind of filters or other method during AD import which can query users from AD based on security group membership or CustomAttributes. The best approach will be CustomAttributes based query, because we already published CustomAttribute15 with values "STAFF","Faculty" and "Students".
    The whole purpose which we want to achieve is to exclude STUDENTS category in AD import. Help me friends to achieve this task.

    Hi
    You can edit the LDAP filer used by CCM; with that you could filter on your custom attributes. See this post for a discussion of a similar modification; it's just a matter of putting together a new LDAP filter string to return the results you want.
    https://supportforums.cisco.com/message/3042759#3042759
    Regards
    Aaron
    Please rate helpful posts...

  • Custom Attributes, Fields in Folders

    Hi,
    I have a Folder where I am uploading documents etc. I need to capture additional fields - 'Speaker' etc. when I upload the document. Is there any way of doing this?
    Thanks.

    yep, at item level though... Create a custom item type based on File and add your custom attributes such as Speaker there. it should work fine, but you must remember to use the new item type to upload the docs.
    To minimise confusion you can restrict the list of available item types at the content area level in its edit properties, i.e, get rid of File but keep your new ones based on File.

  • Adv. Pricing: Custom Attribute mapped to Std. Volume's ITEM_QUANTITY field

    Advanced Pricing: A Custom Attribute is mapped to Std. Volume's ITEM_QUANTITY field, to be able to capture a user-defined volume onto the Standard Quantity field via. Attribute Mapping. However the expected behavior is not achieving. Still the PTE prices if off the OM/ASO's Quantity field, and not based on the number that goes into the attribute field.
    PTE= 'Order Fulfillment', Context Type = 'Pricing Context', Context = 'VOLUME', Code = 'ITEM_QUANTITY'.
    Attribute Mapping Method = ATTRIBUTE MAPPING.
    Click on Attribute Mapping button
    Application Name=Advanced Pricing
    Line Level User Source Type=PL/SQL API
    User Value String= OE_ORDER_PUB.G_LINE_REC.ATTRIBUTE10
    When I create the Sales Order in OM, at the line level after entering the item, I entered a number in attribute10, then
    also a value in the standard quantity field, and Save. The item had price
    breaks defined in the pricelist. But the price returned was based on the value
    in the standard Quantity field, not the value in attribute10. Even when I
    reprice the line (Actions-->Price Line), there is no change.
    Expected behavior is to get the Price off the Attribute that mapped to the 'ITEM_QUANTITY' field (which is a standard/seeded attribute).
    Does anyone made such expected behavior to work (without being used with a Customer Price API)?

    can someone pls reply?
    Thanks!

  • Exporting/Sharing Custom XMP metadata schema not possible?

    I've written a Python script which automatically encodes Quicktime files which I've mastered out of Premiere Pro CC with embedded custom XMP metadata (created using "New Schema" in the Metadata Display panel). I'm using the embedded custom metadata to drive the Python script (e.g. "Spot Title", "Client Name", fields etc etc), which encodes the source QT file to several different formats, based on the delivery specifications of various local TV broadcasters which the encoded files will go to.
    Everything about the XMP metadata entry/writing/parsing is fantastic. My only hitch is in the exporting/sharing of the custom metadata schema which I created for this purpose. I would like to roll the schema out to the other editors in our facility, so that they can also enter the XMP metadata on their own systems when they export out master timelines from Premiere.
    But unless I'm missing something, I can't figure out a way to "share" or export my custom schema for use on another system. Is this not possible in Premiere Pro CC?

    There's no feature for exporting and importing custom schemas, but it's entirely doable. Here are the path to the custom schemas
    MAC: Macintosh HD ▸ Users ▸ <username> ▸ Library ▸ Application Support ▸ Adobe ▸ XMP ▸ Custom File Info Panels ▸ 4.0 ▸ custom
    WIN: C:\Users\AppData\Roaming\Adobe\XMP\custom file info panels\4.0\panels [I can't vouch for this path as I'm on Mac at the moment and it's been ages since I poked around for custom schemas, but this should at least be the right neighborhood.]
    You might also be interested in sharing your custom metadata display profiles. They in Documents ▸ Adobe ▸ Premiere Pro ▸ 8.0 ▸ Profile-mapes ▸ Metadata Preferences.

  • Multiple instance of custom attributes ACS 5.x

    Hello,
    is there a way to have multiple instances of user custom attributes and
    insert those as multiple instances of the A/V Pair in the authorisation profile in ACS 5.2/5.3 ?
    Background:
    We have to migrate a ACS 4.2 to 5.3.
    In ACS 4.2 our client used the multiline attribute
    Number
    Name
    Description
    Type of Value
    Inbound/Outbound
    Multiple
    22
    Framed-Route
    Routing  information to configure for the user on this AAA client. The RADIUS  RFC (Request for Comments) format (net/bits [router [metric]]) and the  old style dotted mask (net mask [router [metric]]) are supported. If the  router field is omitted or zero (0), the peer IP address is used.  Metrics are ignored.
    String
    Outbound
    Yes
    to specify multiple routes to various networks in the RADIUS reply spcific for every single PPP username of routers dialing in.
    Using the internal user database, extended by a string attribute and using that attribute as source of a dynamic value
    in the access-policy works basically.
    But as I have only ONE single line instance of the attribute for every user, I can only return ONE framed-route.
    We have lots of cases where multiple routes have to be assigned to one router.
    I 'd like to avoid defining a seperate access profile for every remote RAS router for external PPP Dial-In...
    I Think Jack here https://supportforums.cisco.com/thread/2032506 has a simmilar issue...
    Any idea?
    Thanks, Frank

    I had to do this once and I created several custom attributes
    -Route1   (String)
    -Route2 (String)
    -Route3 (String)
    etc ...
    And in the authorization profile you return all those custom attributes as Framed-route. I was actually sending up to 10 Framed-Routes contained in 10 different attributes.

  • Create/Edit "Custom Attributes" in Dynamic Distribution Groups

    Hi,
    I wanna create a Dynamic Distribution Group based on the users "title" and "company".
    I've noticed that there are 15 "Custom Attributes" that I can edit in someway, I guess via PowerShell?
    So what is the easiest way to accomplice this?

    Hi,
    Agree with the above suggestion, you can also bulk change the custom attributes:
    Get-Mailbox -ResultSize Unlimited -Database Execs | Set-Mailbox -CustomAttribute1 “title”
    http://dougg.co.nz/2012/05/01/bulk-setting-exchange-2010-custom-attributes/
    to Edit Custom Attributes:
    get-mailbox -filter {customattribute1 -eq ""} | set-mailbox -customattribute1 = "<value>"
    And here is a reference about Create/Edit "Custom Attributes" in Dynamic Distribution Groups:
    http://windowsitpro.com/exchange-server-2010/exchange-2010-sp2-value-custom-attributes
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best regards,
    Angela Shi
    TechNet Community Support

Maybe you are looking for

  • "Name Dictionary" not found in "document catalog" of PDF

    Hi All, I am working with a PDF parser and while parsing a PDF file I found that while reading document catalog of PDF, the "Name Dictionary" which I got is not present in PDF file but When I updated to Adobe Reader X it seems to be working fine. So,

  • Path app was closed every time i opened the camera

    Hi .. I has one issue in my new Z2. in Path application, every time i want to open the camera to post a picture, the application was closed. it was not alway like that, but often. i don't know if this because of the app or because of the camera. than

  • Data in JSP and servlet

    Hi all, Now i have a jsp page for register when user summit at form. I would like to go to the another jsp page that show user data. After that if user confirm data the form will throw data to servlet. What should i do in this solution.How can i pass

  • NW 7.3 coud not found Technical configuration of BI-Java

    Hi, i installed a new Netweaver 7.3 and want to configure BI via the template installer. But in Template Installer there is no entry like in the old Version NW 7.0 (BI-Java / Technical configuration of BI-Java (repeatable, reproducible). I only see "

  • How can i enlarge the toolbar?

    can i enlarge the toolbsar in Safari?