Reg : How to retrive Group User ID's and Task assigned to users?

Hi,
     Can anyone please help me out?
     I have a requirement like, In my process I have assigned a task to Group of Users. Now I need to findout All the User ID's as well as How many tasks assigned for that specific user. This is my requirement.
My uderstanding for this we need to implement specific API's. But I dont have idea which API have to use.
Please anyone having idea share with me and suggest me appropriate steps!
Thanks in Advance,
Anand.

How strange I answered (or at least helped) this very same question earlier today. Here the link to my previous answer then:
http://scn.sap.com/thread/3536135

Similar Messages

  • How to create a VI that detects and records responses from user

    Does anyone has experience in creating a VI that allows the user to e.g., watch a video or series of images, pause or rewind video etc. and the VI records the duration of all pauses or user responses.

    avenue wrote:
    How to create a VI that detects and records responses from user
    You definitely need to check what 'EVENT STRUCTURE' is and how to use it... because thats needed to write such code.
    I am not allergic to Kudos, in fact I love Kudos.
     Make your LabVIEW experience more CONVENIENT.

  • HT4878 How do i share my pictures, music and videos from one user to another on the same computer?

    How do i share my pictures, music and videos from one user to another on the same computer?

    lots of ways... you could use a thumb drive, you could drag files to the users public folder drop box, you could send it through email, you could use the internet servic called drop box (not to be confused with Apple's user public foldelr drop box).

  • Export 2 specific folders from users A mailbox and transfer them to user B Via Powershell

    Hi 
    i know there is a simpler method for the user to export the folder within outlook as a PST file and send it to the other user to import... but
    Is there a powershell command sequence i can use that will export folders from User A mailbox and import them into User B's mailbox remotely so they don't have to do anything.
    Many Thanks
    Gordon

    i made some progress with the following
    New-MailboxExportRequest -mailbox "User A" -includeFolders "User A\\TransferFolder" -Filepath \\server\serversubfolder\transfer.pst -verbose
    then using
    New-MailboxImportRequest -mailbox "User B" -FilePath \\server\serversubfolder\transfer.pst -TargetRootFolder "Inbox" -includefolder "Transferfolder" -verbose

  • How to apply group settings of UDF and UserDefinedValues to all documents ?

    I have made many User Defined Fields, category group settings of UDF, and User Defined Values (Formatted search) in a marketing document.
    And I want to apply them to all of the marketing documents, that is Sales and Purchase documents,,, all the same.
    Is there any way to achieve it?
    Thanks in advance...

    Thanks,,
    This thread it not about setting for different users but for different type of documents.
    And is there any way to configure the category settings of UDF for document types by SDK coding?
    Edited by: Sung-Su Beck on Nov 29, 2011 7:27 AM

  • How to erase all from a TX and use a new user name?

    I just got a used TX. It has all of the old info on it and of course the user name. I want to install my medical software etc and get rid of everything on the TX. I changed my user name on the desktop Palm software but it keeps reloading the information that was on the TX back to the TX when I do a hard reset and it keeps using the user name of the person I purchased the TX from. I want to wipe everything and start over. I am even having a hard time getting everything off of my Mac. 
    Any ideas? Thank you. John  
    Post relates to: Palm TX
    This question was solved.
    View Solution.

    Hello and welcome to the Palm forums.
    Here are the instructions you need for performing a hard reset on your palm, which will wipe off all the information.
    A hard reset is performed by holding down the power button while sticking something thin (your stylus, paper clip) into the back reset hole of your device. Keep your hand on the power button while you release the paper clip from the reset hole. The screen will now say "Palm Powered." Take your hand off the power button. You will now see a screen in 5 languages prompting you to erase all data from the palm. The screen will say "erase all data? Yes - up, no - down" and you need to click on the up arrow (silver button on the 5 way navigator on the bottom of the palm). This will erase all the info from your device.
    Post relates to: None

  • Report to see user type and roles assigned to users in EP?

    Hi,
    a) Is there any reporting mechanism in EP? Any specific report which throws up user types and roles assigned to the users? There is an option of 'Export' in the user management role but unfortunately it does not give information on User Type.
    b) If  the group is assigned a role, How can we see ( in any report) the roles assigned to a group? In the 'export' option of the 'User Management' this information does not come.

    By default Portal UME comes along with the installation of portal.
    Sometimes we may integrate external users using LDAP. At that time users come from ABAP stack or some active directories.  But you can also create users in the portal UME.  The purpose of using LDAP is to maintain the users centrally rather than creating again in portal.
    You can check them in user administration->identity management and search for the users.
    THere you can see some users will be from UME and some from LDAP.
    User Admin tool is nothing but User Administration only.
    Raghu

  • Human task assignment for users in Group1 and Role1

    Is there a way to make a Human Task assignment in Oracle SOA Suite BPM 11g for all the users in Group1 who has the Role1 role?.
    I don't want to assign the task to all the Group1's users plus all the Rrrole1's users. I only need the users who belong to both: Group1 and has Role1, but I don't know how to configure this in the HumanTask.
    Edited by: alfredozn on Feb 23, 2011 10:04 AM
    Edited by: alfredozn on Feb 23, 2011 10:06 AM

    repost.

  • How to retrive group list

    Hi all,
    How can we retrieve the information about the groups in which user belong to in WLS, when he logs in the portal application.
    Is there is anyway through which we can get this information in a bean class in portal application.
    Thanks
    Edited by: 938480 on Jul 6, 2012 5:31 AM

    Hi ,
    Very very basic code for this is as follows :
    public static void main(String[] args) {
    // Create a new IdcClientManager
    IdcClientManager manager = new IdcClientManager ();
    try{
    // Create a new IdcClient Connection using idc protocol (i.e. socket connection to Content Server)
    IdcClient idcClient = manager.createClient ("idc://<hostname>:<intradocserverport>");
    //for using the web connection - start
    // IdcClient idcClient = manager.createClient("http://<hostname>:<webport>/cs/idcplg");
    // IdcContext userContext = new IdcContext("weblogic", "<password>");
    //for using web connection - end
    // Create new context using the 'sysadmin' user
    IdcContext userContext = new IdcContext ("weblogic");
    // Create an HdaBinderSerializer; this is not necessary, but it allows us to serialize the request and response data binders
    HdaBinderSerializer serializer = new HdaBinderSerializer ("UTF-8", idcClient.getDataFactory ());
    // Databinder for excuting the service
    DataBinder dataBinder = idcClient.createBinder();
    dataBinder.putLocal("IdcService", "GET_USER_PERMISSIONS");
    This is code snippet that will list the entire set of data / result set for the IDC Service used .
    Hope this helps .
    Thanks,
    Srinath

  • How to get the group key, which an approval task assign to

    Hi,
    When a user is assign to OIM Group (i.e. from User Detail >> Group Membership form), I will call an approval process (using Access Policy).
    In that approval process, I have defined two tasks.
    1) Assign Approval to Group -> NOT conditional
    2) Remove OIM Group From User -> conditional
    So, from the 1) task, I will assign this approval to a OIM Group.
    If the user click "Approva", a provisioning process will be fired.
    If the user click "Deny" (Reject), 2) task will be run.
    What I want is this.
    From this 2) task, I need to get the "OIM Approval group" key or name (which this approval is assigned to)......
    Note: I need to get this group info in the "Approval Process Task" -> "Integration" -> "Map"
    Regards,
    Chaturanga

    Hi,
    Yes. I have done that.
    Now what I want is this. If the approver "Deny" (Reject) the approval task, I will call another task in the approval process. From that task, I need to run a code, which remove the user from OIM Group.
    So, to do it, I have written a java code and created a adapter. So, as a input parameter for that code, I need to give the approval group name(i.e. the OIM group, above approval task is assign to).
    How can I get the OIM approval group, which the person who Deny the approval belongs to, from this new approval process task???
    Regards,
    Chaturanga

  • How to set up Windows with Reader and certificate for all users

    Good afternoon (GMT),
    we're dealing with a Win XP (SP3) system that is set up by an Administrator. One task is to set up the system in a way that all users (w/o admin rights) become able to read a certified-protected PDF. Currently we know a way to install the "public key" for this certificate only for one known user. But how to proceed when not all users are known? The users shall later on never be asked to confirm the certification installation/registration.
    If it helps, here is the software version:
    Acrobat 8.12 to encrypt the PDF via certification. In near future I will switch to Acrobat 9.x
    Reader 7.x and/or 8.x on customer PCs.
    Thank you for ideas and hints.
    BTW: Next time we want to provide a solution for Win7 systems, too.
    Carsten

    Check
    Time Zone Specification from http://docs.oracle.com/cd/E12844_01/doc/bip.1013/e12187/T421739T481157.htm#4535403
    just in case https://blogs.oracle.com/xmlpublisher/entry/how_to_keep_your_dates_from_go

  • How do I compare two csv files and not disable the user if the username is found in the 2nd file using powershell?

    Hi Guys
    I have two csv files with the following headers and I need to import both files into the script to check whether the StaffCode is present in the Creation/Renewal of Contract csv in a DisableAccount Script so I can stop any action to disable the account as
    the staff has renewed the contract with the company so the account should not be disabled.
    However my accounts are still being disabled. I am not sure now to construct the query so that it detects that the account is to be left alone if the staffcode is present in both files
    I does recognize that the $staffcodeN in the renewal file matches the $staffcode in the termination file
    but still proceeds to disable or set an expiry date to the account anyway based on the termination file. 
    How do I stop it from doing that?
    1)In the Creation/Renewal of contract file the following headers are present
         -  TranCode,StaffCode,LastName,FirstName,SocialSecurityNo,DateJoin,Grade,Dept,LastUpdateDate,EffectiveDate
    2)In the Disable of contract file the following headers are present
        - TranCode,StaffCode,LastName,FirstName,SocialSecurityno,LastDateWorked,Grade,Dept,LastUpdateDate,
    My data is not very clean , I have a-lot of special characters such as = , ' ,/ and \ characters to remove first before i can compare the data
    Thanks for the help in advance.
    Yours Sincrely
    Vicki
    The following is a short snippet of the code 
    $opencsv = import-csv "D:\scripts\Termination.csv"
    $opencsv2 = import-csv "D:\scripts\RenewContractandNewStaff.csv"
    foreach ($usertoaction in $opencsv) 
    $Trancode = $usertoactionTranCode
    $StaffCode = $usertoaction.StaffCode.replace("=","").replace('"','')
    $LastName = [string]$usertoaction.LastName.Replace("/","\/").Replace(",","\,")
    $FirstName = [string]$usertoaction.FirstName.Replace("/","\/").Replace(",","\,")
    $socialsecurityno = $usertoaction.SocialSecurityNo.replace("=","").replace('"','')
    $DateJoin = $usertoaction.DateJoin.replace("=","").replace('"','')
    $LastDateWorked = $usertoaction.LastDateWorked.replace("=","").replace('"','')
    $Grade = [string]$usertoaction.Grade
    $Dept = [string]$usertoaction.Dept
    $LastUpdateDate = $usertoaction.LastUpdateDate.replace("=","").replace('"','')
    $AccountExpiry = [datetime]::Now.ToString($LastDateWorked)
    foreach ($usertoaction2 in $opencsv2) 
    $TrancodeN = $usertoaction2.TranCode
    $StaffCodeN = $usertoaction2.StaffCode.replace("=","").replace('"','')
    $socialsecurityNoN= $usertoaction2.SocialSecurityNo.replace("=","").replace('"','')
    $DateJoinN = $usertoaction2.DateJoin.replace("=","").replace('"','')
    $GradeN = [string]$usertoaction2.Grade
    $DeptN = $usertoaction2.Dept
    $LastUpdateDate = $usertoaction.LastUpdateDate.replace("=","").replace('"','')
    $EffectiveDate = $usertoaction.EffectiveDate.replace("=","").replace('"','')
    $LastName2 = [string]$usertoaction2.LastName.Replace(",", "").Replace("/","").trim()
    $FirstName2 = [string]$usertoaction2.FirstName.Replace("/","").trim()
    # Use DirectorySearcher to find the DN of the user from the sAMAccountName.
    $Domain = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
    $Root = $Domain.GetDirectoryEntry()
    $Searcher = [System.DirectoryServices.DirectorySearcher]$Root
    $Searcher.Filter = "(sAMAccountName=$samaccountname)"
    $doesuserexist1 = $Searcher.Findall()
    if ($doesuserexist1 -eq $Null)
    {Write-Host $samaccountname "account does not exist"}
    elseif ($StaffCodeN -match $staffcode)
    write-host "user has renewed the contract, no action taken"
    else
    if(($lastupdatedate -ne $null)-or($LastDateWorked -ne $null))
                        write-host "Setting Account Expiry to"$accountexpirydate
    #$ChangeUser.AccountExpires = $accountexpirydate
               #$Changeuser.setinfo()
    if ($UserMailforwarding -ne $null)
    #Set Account expiry date to Last Date Worked
    # $ChangeUser.AccountExpires = $accountexpirydate
    # $Changeuser.setinfo()
     write-host "staff" $displayname "with staff employee no" $samaccountname "has                          
    mailforwarding" 
    Write-host "Please disable the account manually via Active Directory Users & Computers and 
    Elseif ($accountexpirydate -lt $todaysdate)
    #disable the account

    Hi Vicki,
    This Forum has an insert-codeblock function. Using it will make your script far more readable
    Your script is missing some parts, it is impossible to follow the problem.
    You are performing the same string cleaning action on $opencsv2 for each element in $opencsv, when doing it once should suffice. Why not start it all by cleaning the values and storing the cleaned values in new arrays?
    The Compare-Object function is great, why not take it out for a stroll on these lists, it might just safe you lots of unnecessarily complicated code ...
    You are creating a new $Domain, $Root and $Searcher object each iteration, when doing it once should suffice. Probably not much of a time-saver, but every little thing contributes.
    Try pinpointing the problem by doing extensive logging, not only by writing which action was taken, but writing the inidividual information (variables, mostly) before evaluation occurs. Your if/elseif/else looks sound, so if it's still not doing what you
    want, the ingoing data must be different from what you think should be there.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • How to create Transaction code for ABAP and execution by other user

    Hi All,
    Could someone please let me know how to create transaction code in detail for ABAP program. Step by step procedure expected. I would like to know how other user can execute the report using same transaction code which I have created.
    More about authorization.
    Thanks in advance.

    Hello,
    You can create transaction code from se80 as well.In object navigator,right click on your program name and create->transaction code.You can create transaction and select if it is only a report,a report with selection-screen depending on your requirement.You can run your report directly by entering the transaction code in the command field.
    You can authorise the users who can use your transaction:
    <b>Authorisation objects</b> are used to restrict certain transactions to users.Critical data must be protected from unauthorised users.For example,the head has access to certain data.But it cannot be accessed by his subordinate.For this we need to define <b>roles</b>.
    •Create an authorization object with transaction SU21.
    An object usually consists of the ACTVT (activity) field and one other field,which specifies the data type to be protected.By ACTVT, we can decide if the data is accessible for change,display only etc.
    •Add authorization fields to the authorization object created.
    •Assign the authorization object to the transaction using SE93.
    Attach the authorization object to the role using transaction PFCG.
    If you want <b>to assign roles</b>,use transaction PFCG.Create a new role.In the AUTHORIZATIONS tab,you can get a self generated profile name and a profile text by clicking on the icon next to it.Then go to the "Change Authorization data" and choose an authorization template.Then you can choose to display/change/create an activity and after the selection,click on the red and white circle.The profile will now be created.
    In the user tab,you can give the user details who can use this role.
    <b>Also check this link:</b>
    http://www.*********************/r3_security/r3_security_tips.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/6716a6439b11d1896f0000e8322d00/content.htm
    <b>Very helpful guide:</b>
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c
    Regards,
    Beejal
    **Reward if answer is helpful

  • User settings reset and locked out of user folders ! How do I retreive?

    Hi everyone,
    I'm sure a number of people here on the forums have come across the problem with the blue tint that appears every now and then. It usually appears when connecting an external monitor after the you come back from the screen saver.
    Yesterday it happened for the first time without an external monitor connected. I have found a number of sites that have suggested using the command 'sudo chmod 664 *' within the Terminal. I have used it a couple of times to fix this problem but it did not work hence the reason it happened yesterday without a monitor connected. When I did use this command previously I first entered
    cd /library/colorsync/profiles/display
    When i did it for this occassion i forgot to enter the display folder first.
    After this I did a restart and all my user settings were reset and I was locked out of all my user folders. I lost all my desktop settings and everything was back to when I first started my computer.
    I did some hunting and found the command 'sudo chmod 777'. I tried this then did a reset and my desktop background returned and the folders were unlocked.
    What I want to know is if this is the correct command to bring everything back to normal?
    My user permissions in terminal are listed below
    Using the command sudo chmod 664 *
    drw-rw-r--+ 15 JoeBros staff 510 11 Jun 23:33 Desktop
    drw-rw-r--+ 19 JoeBros staff 646 22 May 20:44 Documents
    drw-rw-r--+ 46 JoeBros staff 1564 25 Jun 15:08 Downloads
    drw-rw-r--+ 45 JoeBros staff 1530 10 Jun 23:56 Library
    drw-rw-r--+ 4 JoeBros staff 136 1 Apr 19:19 Movies
    drw-rw-r--+ 38 JoeBros staff 1292 4 Apr 18:08 Music
    -rw-rw-r-- 1 JoeBros staff 92352512 29 May 18:20 Parallels-Desktop-5600-Mac-en.dmg
    drw-rw-r--+ 57 JoeBros staff 1938 25 Jun 16:02 Pictures
    drw-rw-r--+ 6 JoeBros staff 204 14 Jun 15:56 Public
    drw-rw-r--+ 5 JoeBros staff 170 26 Mar 00:59 Sites
    This is what is displayed after sudo chmod 777
    total 180376
    drwxrwxrwx+ 15 JoeBros staff 510 11 Jun 23:33 Desktop
    drwxrwxrwx+ 19 JoeBros staff 646 22 May 20:44 Documents
    drwxrwxrwx+ 46 JoeBros staff 1564 25 Jun 15:08 Downloads
    drwxrwxrwx+ 45 JoeBros staff 1530 10 Jun 23:56 Library
    drwxrwxrwx+ 4 JoeBros staff 136 1 Apr 19:19 Movies
    drwxrwxrwx+ 38 JoeBros staff 1292 4 Apr 18:08 Music
    -rwxrwxrwx 1 JoeBros staff 92352512 29 May 18:20 Parallels-Desktop-5600-Mac-en.dmg
    drwxrwxrwx+ 57 JoeBros staff 1938 25 Jun 16:02 Pictures
    drwxrwxrwx+ 6 JoeBros staff 204 14 Jun 15:56 Public
    drwxrwxrwx+ 5 JoeBros staff 170 26 Mar 00:59 Sites
    Does this look correct ??
    Any help would be great thanks

    I assume this access is open to everyone when I connecto any wireless network
    No necessarily, it depends whether you just changed your home folders and nothing else.
    But just your home folders present a problems as they should have extended attributes which are now removed. More on that later.
    Using one chmod to a directory affects all equally, though the files may have individually different permissions.
    I don't know how extensively you have altered the modes permissions, but from what you have shown in your first post your Home folders are incorrect.
    For your home folder, which is the default location when you start Terminal, and I dont think you have strayed from there, all the listings, except Parallels are folders, prefaced with the letter d. for folder.
    On my machine, for example, the pattern for the home folders all show
    drwx------@ 5 xxxxxx staff 170 25 Jun 06:07 Desktop
    normally that would be chmod 700 Desktop which will get you
    drwx------
    but note the @ which shows an extended attribute or ACL in Leopard.
    to write the ACL shown as @
    You will need to read
    man chmod about ACL MANIPULATION OPTIONS
    Personally, I think that playing around with chmod without a backup was not a good idea, and I wonder if your ambition has exceeded your knowledge. Sorry if that sounds tough, but a possible Archive and Install may be your safest path I think because what you have messed with was no small oops with a simple fix.
    You could just change those home folders to chmod 700 and see how it goes without the attribute, or bite the bullet and do an Archive and Install.
    I do not run parallels and so have no idea what is permissions should be.
    That Time capsule is starting to look pretty good now
    Message was edited by: roam2
    Message was edited by: roam2

  • How to retrive value of a Button that is assigned in the Button Dynamically

    Hi All,
    I am searching the user from LDAP on the basis of the first name ( eg. abc ) Entered of the user to be searched and on the click of the Search Button I have displayed the First_Name, Last_Name, & other Info also, & One Button Having the value as the "uid" for all the users having the First Name as ( abc ) in the Form inside a Table using a loop for loop. Now if there are 10 user having the First_name as abc then there are 10 Buttons which has been displayed Now I want that If I click on the Button corresponding to the 3rd User then his all the details which was displayed on the previous page will be passed in the different editable text fields.
    The major problen which I am facing in this is that as I am generating all these buttons dynamically & all the buttons have same name but all the buttons have the diffrent values, I am able the generate Different names to all the buttons dynamicall & pass their reference dynamically to the Workflow in a transiction condition dynamically.

    if you want some default value in LOV. you go to edit list of value wizard-> UI hint->include no selection Item checkbox -checked.use labeled item first of list- and beside that put the label. but when you try to get value, it will show null.but you can manipulate in ur java , if it default value

Maybe you are looking for