Sending manual remediation Request to multiple administrators

Hi,
I have a workflow (Access Review Remediation) which is having an Manual action that sends Remediate request to the 'Owner' , specified in that action. I can give only one value for the "Owner" field, now my problem is, i need to send this remediation request to multiple owners. can any one help me in this.
If I iterate in my administrators, the IDM creates multi workflows. I need ONE workflow with multiple recipient.
thanks,
Attila

im getting
java.lang.NullPointerException
while doing the above.My multi approval xml is
<Action id='2' process='Configuration:Multi Approval'>
<Argument name='singleApprovalProcess' value='Approval'/>
<Argument name='approvers'>
<List>
<String>100200300</String>
<String>200200200</String>
</List>
</Argument>
<Argument name='approvalForm' value='New Profile Request'/>
<Argument name='style' value='first'/>
<Argument name='approvalTemplate' value='E-mail to administrator'/>
</Action>
Pls help me

Similar Messages

  • Sending manual Approval Request to multiple administrators

    Hi,
    I have a workflow which is having an Manual action that sends Approval request to the 'Owner' , specified in that action. I can give only one value for the "Owner" field, now my problem is, i need to send this approval request to multiple owners. can any one help me in this.
    thanks

    im getting
    java.lang.NullPointerException
    while doing the above.My multi approval xml is
    <Action id='2' process='Configuration:Multi Approval'>
    <Argument name='singleApprovalProcess' value='Approval'/>
    <Argument name='approvers'>
    <List>
    <String>100200300</String>
    <String>200200200</String>
    </List>
    </Argument>
    <Argument name='approvalForm' value='New Profile Request'/>
    <Argument name='style' value='first'/>
    <Argument name='approvalTemplate' value='E-mail to administrator'/>
    </Action>
    Pls help me

  • [svn] 949: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 949
    Author: [email protected]
    Date: 2008-03-27 07:12:59 -0700 (Thu, 27 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - try again with legacy-collection true and false.
    Doc: No
    Checkintests: Pass
    Details: Another try in fixing this bug. When legacy-collection is false, Actionscript Array on the client becomes Java Array on the server and my fix yesterday assumed this case. However, when legacy-collection is true, Actionscript Array becomes Java ArrayList on the server. So added code to handle this case.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • [svn] 931: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 931
    Author: [email protected]
    Date: 2008-03-26 11:31:01 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - we need automated tests for this basic case.
    Doc: No
    Checkintests: Pass
    Details: RequestFilter was not handling multiple headers with the same name properly.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • Sending Approval Request to multiple Approvers

    Hi All,
    I'm facing problem in sending Approval request to multiple approvers.I have List of accountid's to which approval Requet has to be sent.I tried giving multiple id's in the "Owner" field of mannual action, which is not working.can any one let me know how to implement this.
    Thanks

    Hi,
    I used multi approval subprocess, this is the code that i have used
    <Action id='0' process='Configuration:Multi Approval'>
    <Argument name='approver'>
    <ref>$(approver)</ref>
    </Argument>
    <Argument name='approvalForm'>
    <ref>New Profile Request</ref>
    </Argument>
    </Action>
    but im unable to get the approval request in the corresponding Administrator approval list.

  • Problem in sending mail to multiple administrators

    Hi,
    I have a requirement to send mail to multiple administrators.
    The flow is as follows:
    The user submits feedback form then the mail should be send to all the administrators with the feedback provided by user.
    The code is as follows:
    DECLARE
    lc_body_html varchar2(4000);
    P_TO VARCHAR2(50);
    P_FROM VARCHAR2(50);
    P_BODY_HTML VARCHAR2(250);
    P_SUBJ VARCHAR2(10);
    lc_usernames VARCHAR2(100);
    CURSOR lcu_username IS SELECT user_name FROM emea_pmr_users WHERE is_admin='Y';
    lr_username_rec lcu_username%ROWTYPE;
    BEGIN
    OPEN lcu_username;
    LOOP
    FETCH lcu_username INTO lr_username_rec;
    EXIT WHEN lcu_username%NOTFOUND;
    lc_usernames :=lc_usernames||lr_username_rec.user_name||',' ;
    END LOOP;
    CLOSE lcu_username;
    lc_usernames :=RTRIM(lc_usernames,',');
    lc_body_html := :P34_FEEDBACK_TEXT;
    HTMLDB_MAIL.SEND(
    P_TO => lc_usernames,
    P_FROM => :APP_USER,
    P_BODY => lc_body_html,
    P_BODY_HTML => lc_body_html,
    P_SUBJ => 'Test Mail');
    END;
    The problem here is only for the last record in table the mail is going successfully.
    If I hard code p_to as '[email protected],[email protected],[email protected]'
    then the mail is being send to all the 3 users successfully.
    Where I am going wrong can anyone let me know?
    Thanks in advance.
    Sarvani.

    Sarvani,
    1) What do you mean by "the problem here is only for the last record in table the mail is going successfully."
    2) For an e-mail which doesn't work, what is the value of APEX_MAIL_QUEUE.MAIL_TO in the mail database view?
    Joel

  • Send a request to multiple approvers in a stage?

    Dear forum,
    I was in the impression that Distribution Lists could be used generally for approval, but it seems to work only for role approvers.
    Is there a way to send a request to multiple approvers in a stage?
    Kind Regars,
    Vit Vesely

    Hello
    If you want the request be sent to several approvers you can set into the Custom Approver Determinator all approvers you want to check the request.
    However the CAD that you created from before must be linked to the stage. In this stage you can configure: "Anyone approver" it is enough to pass throug the next stage that only one of this several approvers has approved. And I guess "Everyone approver" is a necessary condition that every approver from the list has approved the request.
    Hope to be useful.
    Margarita.

  • My apple I'd has been discarded for security reasons. The site asks me to give my email and they would send me the further instruction. But no Emil has arrived so far. Since January. And I did requested help multiple times. :( any ideas where can I solve

    My apple I'd has been discarded for security reasons. The site asks me to give my email and they would send me the further instruction. But no Emil has arrived so far. Since January. And I did requested help multiple times. :( any ideas where can I solve

    Who discarded the Apple ID? Apple? or You?
    Did you answer the Security Questions? Is the backup email accurate? Have you tried contacting them?

  • How to send request to multiple page in a page

    i have a whole.jsp. and there is a frame inside it. there is a part.jsp that should go in the frame.
    i want to send same request to both whole.jsp and part.jsp. both whole and part will process the same request and display different results.
    the question is how can i send the same request to both pages, and let part.jps display in whole.jsp at the same time.
    thanks in advance, nian

    If you have JSP A and B, where JSP A includes JSP B using the <jsp:inlude> directive...
    // code for JSP A
    <jsp:include page="..path to JSP B.." flush="true"/>
    ...then JSP A and B will have access to the same request.
    -S-

  • Create a change request for multiple customers from spreadsheet

    Hello Experts,
    1.We have a spreadsheet with 100's of Customer data maintained in it , can we create a change request by downloading data from spreadsheet directly instead of manually entering the data in the CR. Also can we create a single change request for multiple Create customers.
    2.Can we create CR's automatically , lets say we have 100's of customer data loaded into MDG hub by Data Services using DEBMAS Idoc , can this create automatic CR's , is this possible.
    Thanks.

    Dear Collins,
    1.We have a spreadsheet with 100's of Customer data maintained in it , can we create a change request by downloading data from spreadsheet directly instead of manually entering the data in the CR. Also can we create a single change request for multiple Create customers.
    Answer:there are various options are available in MDG to process multiple material as shown below
    you can down load the customers using file down load funcationality and same change,upload the customers using the file Upload process.
    you can create a single CR for muntiple customers options are shown below.
    2..Can we create CR's automatically , lets say we have 100's of customer data loaded into MDG hub by Data Services using DEBMAS Idoc , can this create automatic CR's , is this possible.
    Answer:Yes you can create CR automatically using DTIMPORT tcode and some configuration needs to be done further reading go to the link SAP Master Data Governance - SAP Library
    regards
    shankar

  • Is anyone able to send a support request to Ovi?

    Whenever I do, I get this bounce back:
    The original message was received at Wed, 3 Jun 2009 22:47:21 +0300
    from esebh102.ntc.nokia.com [172.21.138.183]
      ----- The following addresses had permanent fatal errors -----
    <[email protected]>
       (reason: 554 5.4.6 Too many hops)
      ----- Transcript of session follows -----
    554 5.4.6 Too many hops 26 (25 max): from <email address removed> via localhost, to <[email protected]>
    Reporting-MTA: dns; mgw-da02.ext.nokia.com
    Arrival-Date: Wed, 3 Jun 2009 22:47:21 +0300
    Final-Recipient: RFC822; [email protected]
    Action: failed
    Status: 5.4.6
    Diagnostic-Code: SMTP; 554 5.4.6 Too many hops
    Last-Attempt-Date: Thu, 4 Jun 2009 02:39:00 +0300 
    This message and no other way to contact Ovi makes it very difficult to deal when purchased apps fail and they make you rebuy it to try again!
    Yes, I'm making multiple threads to someone will take notice of these issues! 
    Message Edited by concordia on 04-Jun-2009 03:26 PM
    Lumia 920/N9
    Previous Life: N8, N95, 8600, 8800 Sapphire Arte, N97, N97-Mini, 5800 and a few older ones

    That's what one would think... When I send in a request, I get this emailed to me:
    The original message was received at Thu, 4 Jun 2009 02:53:04 +0300
    from vaebh102.europe.nokia.com [10.160.244.23]
      ----- The following addresses had permanent fatal errors -----
    <[email protected]>
       (reason: 554 5.4.6 Too many hops)
      ----- Transcript of session follows -----
    554 5.4.6 Too many hops 28 (25 max): from <[email protected]> via localhost, to <[email protected]>
    Reporting-MTA: dns; mgw-da02.ext.nokia.com
    Arrival-Date: Thu, 4 Jun 2009 02:53:04 +0300
    Final-Recipient: RFC822; [email protected]
    Action: failed
    Status: 5.4.6
    Diagnostic-Code: SMTP; 554 5.4.6 Too many hops
    Last-Attempt-Date: Thu, 4 Jun 2009 03:56:59 +0300 
    Lumia 920/N9
    Previous Life: N8, N95, 8600, 8800 Sapphire Arte, N97, N97-Mini, 5800 and a few older ones

  • I get a question mark next to email addresses when I try to send a meeting request and it fails

    Outlook 2010, standard Win 7 setup.
    I am trying to send a meeting request and when I bring up the address book to insert email addresses it seems to insert the address but it has a gray question mark next to it.  Sending then fails. Even an email address manually typed in gets the question
    mark.
    Odd thing is that from a regular email I can insert the same address from the same contact list and it works fine.
    Why does it fail in meeting invites by not in email?

    Hi,
    When you hover your mouse pointer on the mark, or click on it, do you see any hint?
    When sending the meeting request fails, do you see any error message?
    If you are an Exchange account user, try to send a request to the people in your organization, I suppose it works.
    Just a guess, try to clear the nickname and the automatic completion caches to test the result:
    http://support.microsoft.com/kb/287623/en-us
    Regards,
    Melon Chen
    TechNet Community Support

  • Why Mozilla sends 2 more requests if the respond is an PNG image ?

    Hi,
    I have a Java Servlet which returns an image for each request.
    But when I use mozilla to access that Java Servlet, it also sends 2 more requests after it get the respond image back (png type).
    Can you pleae tell me why?
    Here is the http log from live http header extension?
    http://localhost:8080/myWAR/MyServlet?a=1
    GET /myWAR/MyServlet?a=1 HTTP/1.1
    Host: localhost:8080
    User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    HTTP/1.x 200 OK
    Server: Apache-Coyote/1.1
    Content-Type: image/png
    Content-Length: 45542
    Date: Mon, 03 Apr 2006 02:43:13 GMT
    http://localhost:8080/myWAR/MyServlet?a=1
    GET /myWAR/MyServlet?a=1 HTTP/1.1
    Host: localhost:8080
    User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text
    Accept: image/png,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    HTTP/1.x 200 OK
    Server: Apache-Coyote/1.1
    Content-Length: 0
    Date: Mon, 03 Apr 2006 02:43:13 GMT
    http://localhost:8080/myWAR/MyServlet?a=1
    GET /myWAR/MyServlet?a=1 HTTP/1.1
    Host: localhost:8080
    User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    HTTP/1.x 200 OK
    Server: Apache-Coyote/1.1
    Content-Length: 0
    Date: Mon, 03 Apr 2006 02:43:13 GMT
    ----------------------------------------------------------

    webweave,
    Welcome to the Apple discussions!
    Generally, as discussed above, having 2 mount points for the same disk in the volumes folder won't prevent a successful backup. But in your case (#15!), that's a problem. More often than not, they are being created by Time Machine because you already have one or more instances of the Time Capsule disk mounted on your desktop. Ejecting the TC disk when it is not needed is the best way to avoid creating multiple mount points.
    If you have any further questions, please post them in a new thread. You can refer back to this discussion with a link if necessary.
    Cheers!

  • Error while sending a soap request from XML SPY to a webservice in XI

    Hi ,
    I published a webservice om the XI end and testing it with consuming the WSDL file in XML SPY and sending a soap request from there.
    I am getting the following error .
    <b>com.sap.aii.af.mp.module.ModuleException: either no channelID specified or no channel found for the specified party, service, and channel name</b>, MessageServlet(Version $Id: //tc/xi/645_VAL_REL/src/_adapters/_soap/java/com/sap/aii/af/mp/soap/web/MessageServlet.java#4 $)
         at com.sap.aii.af.mp.soap.web.MessageServlet.doPost(MessageServlet.java:380)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Is this error due to the user authentication or due to some other issue .
    Please do let me know soon .
    Thanks a lot
    Nikhil

    Hi Ricardo ,
    I have the correct port now.
    the url looks like
    http://<host>:50000/XISOAPAdapter/MessageServlet?channel=:SIEBEL_DEV:SOAP_CUST
    when I am testing it in the XML spy. and send a soap server request. I am getting the popup for user authentication . once i put my user id it gives me a error saying
    <b>HTTP operation 'POST' could not be performed on URL
    '/XISOAPAdapter/MessageServlet?channel=:SIEBEL_DEV:SOAP_CUST&amp;version=3.0&amp;Sender.Service=SIEBEL_DEV&amp;Interface=http%3A%2F%2FOFCOM%2FUNIFY%2FCustomerMaster%5EMI_CUST'  due to an error :
    The connection to the server was terminated abnormally</b>
    Any Idea as to why is such a error is coming
    Thanks for the help
    Nikhil

  • How to use rule and send the same email to multiple recipents

    Hi,
    My requirement is to send the workitem to the multiple recipents. one of my reiend suggest me to use the rule but i don't know how to use that .
    can any one of you suggest me how to use rule in workflow.
    Also i want to send the same email to multiple recipent .how can i do it by using the multiline variable...please advice me with example if possible..
    Note :- Is it necessary to saparate the email id with comma or i will add all the email next one another..
    Please suggest.
    Thanks in advance ,
    Anand

    Hi Anand,
    I would suggest you first follow the guidelines of the forum and a little searching. One of your questions has been asked just a few threads below.
    Regards,
    Martin

Maybe you are looking for

  • How do I overlap text in a Div Tag over an Image

    Hi, I have a large image which I would like to set as as border around the page. Please see www.touchw1.com, it is the grey border with the 3 archways on it that I would like as a border.  At present, everything on this screen apart from the contact

  • VHS TO FCP TO QT NOW NEED AVI HIGH QUALITY

    We have a two minute segment given to use in vhs format (poor quality) to begin with. I imported into FCP 4 and exported high qual quicktime and it plays & looks okay on both mac and pc. However, we need to insert video into powerpoint on pc. I'm hav

  • How do i transfer downloaded alerts from itunes to sounds

    Hi, I have seen other posts from people so reckon this must be a bug that needs fixing. what's the point of selling things to customers and not allowing us to use them as they are intended. Money back please apple.

  • Oracle forms and jinitiator in ebusiness suite

    I want to use sun plugin for forms in oracle ebusiness suite 11.5.10.2. I don't want to use jinitiator. what would be the step. Regards,

  • Two Dimension Hierarchys based on one Logical Table

    Is it possible to have two dimesion hierarchys based on one logical table? Suppose we have the following case: Accounts Table Code Name Category Subcategory Level 1 Level 2 Level 3 I would like to have one dimension Total > Category >Subcategory > Co