Issue: workitem getting forwarded to all users sap inbox

hiiii sap gurus
i have created  workflow for PO RELEASE using the sap Standard workflow given,
my problem is that the workitem is getting forwaded to all users. i have used custom Rule for agent determination and made the task as general task.
Is this problem because the task is general task. please respond as this porblem is in Prd .
Thanks ,
Pradeep

Hi Pradeep,
I guess when you are already using a rule to determine the agents then you should not make the task as a General task.
Change the task agent assignment to general forwarding not allowed. Then assign the rule to the task to determine the agents for the task.
Now if the correct agents are not determined by the Rule then the workflow would result into error but not go to other users.
You can check if the rule is working well using the Simulate button in PFAC.
Also mark the 'Terminate If Rule Resolution Without Result' flag to stop the workflow there is an error occurs.
Hope this helps¨!
Regards,
Saumya

Similar Messages

  • Hi am having issues with getting the list of users from the Active Director

    Hi am having issues with getting the list of users from the Active Directory, can anyone help me with this!

    Hi Jason,
    Try this:
    1.  In Ultiboard select Tools>>Netlist Editor>>Pins, press the Delete button
    2.  Select all nets in the Select the Net to Delete dialog and then press the Delete button.  This will clear all nets in the layout, don't worry all traces, parts are still on the design.
    3.  Go to Multisim and select Transfer>>Forward annotate to Ultiboard.    This will add all nets that you removed back and it should fix the pin problem
    Tien P.
    National Instruments

  • Getting list of all users present in SIM

    Hi,
    I would like to update all the users (attributes of users) in SIM .
    Right now I am thinking to get list of all users present in SIM and get the view of each user and then update the particular attribute and chekin the view. and imp point to note here is I am having around 100,000 users present in SIM.
    I am thinking there could be a better solution than this...
    But I do not know which way can be used to accomplish the task.
    Can any one reply immediately with any thought on this.
    Thanks in advance.

    Run a bulk update actions you can easily get a list of all accountids by running select name from userobj;
    and in your field or in your input area specify the values u wanna update

  • Send Workflow email to User SAP Inbox with a Popup and cproject link

    Hi,
    I am working SAP portfolio and project management workflow.
    Requirement: Trigger workflow when Portfolio Execution Decision Point status changes,
    We have to send two email notifications as part of the requirement;
    First notification should go to user’s (Only one user) SAP Inbox, Containing two links
    Popup link (It will contain list of question which the user has to confirm) if he
    confirms we have to send second  email notification. (Pop-up layout is attached)
    Link for the user to navigate to SAP PPM cProject to upload the documents. (NWBC)
    The second notification should go to Outlook of the users (via group email) with Link for the user to navigate to SAP PPM cProject.
    We can trigger the workflow using event DECISION_POINT_STATUS_CHG in Class CL_RPM_DECISION. My question is how should design the pop-up and incorporate the Pop-up and cproject link in first notification email sent to user SAP Inbox.
    Please let me know if you need more details.
    Thanks & Regards,
    Amit Singh

    We use transaction NWBC to login to netweaver business client. Then from there we navigate to Project management view and double click to select the project. It opens project element --> Collaborations tab. There we select the folder link. (screenshot attached)
    Regarding addition of multiline container element (Table) let's say 'A'; I create multiline container element A in Workflow element list, Populated  element A using a utility class/method assigned to a background task.
    Then, I created a user decision task, inside the task container another multiline container element 'B' with same type and I did binding b/w workflow container element 'A' and task container element 'B'.
    Now, I am passing &B& in the decision task description. If I execute the workflow, The user decision task description is blank.
    Secondly, I did not get any pop-up asking how to display it (all lines with line break).
    PS: My internal table also has only one field.
    Am I doing something wrong here?

  • RESUBMIT FM is making disappear from all user's inboxes!

    Hello,
    I one sent work item to multiple user's inboxes, say users are A, B and C.
    I placed some validation function behind the ACCEPT button, the moment user clicks the ACCEPT button then my validation will trigger
    Say, user B clicked the ACCEPT button and my validation got triggered and returned the FAILURE output for this work item for this user B, hence now programitically I need to make disappear / delete this work item from user B's inbox, but still should remain in other rest of the user's (A and C) inboxes, so that they hv a chance to accept it
    I tried FMs of *RESUBMIT* and *DELETE*, but they are resubmitting / deleting from all user's inboxes!
    Pls. let me know how can I achieve my requirement
    Thank you

    I agree, we don't have a dedicated / workflow expert in our company, hence we disigned wrongly.
    But, its close to move to PRD, hence we don't want to change design & their dependency other ABP objects
    Hence, we do it in this way that, if user_B validation fails, we want disppear WI only from current B user's inbox.
    So, what i understood from your suggestion is that, if my validation fails, then in next routine, I need to add B user ID in exclude list by using a CONTAINER change FM, right
    if not, pls. help us step by step, also let us know FM for excluding the B user
    Thank you

  • Workitems getting stuck at expired users

    Hi,
    We have a case where workitems get stuck because the assigned users have expired validity.
    At the time of assignment, one user is set as agent. Then that user gets set to expired, however the Workitem still is assigned to that one user.
    This will create an issue where invoices are not handled at all.
    I'm thinking that this must be a common workflow issue, or that there must be a common solution - that you guys know how to solve
    BR
    Lasse

    As Rick said, definately some kind of escalation process should take place in invoice handling process. If approver does not approve the invoice in time, it will be escalated to approver's manager or whatever (or the invoice will return to accounts payable clerk, etc.).
    Now since you already have the problem, you need to somehow monitor the situation. You can for example try monitor the work items with SWIA (look for all invoice approval tasks that are in status READY in In PROCESS).
    Regards,
    Karri

  • Getting tasks for all users in a role

    Hi,
    We need to get all users in a Role, and out of those, find out which one has the least tasks in their UWL using a WebService. Saw some example codes and here's my attempt at it. Doesn't quite work, I'm getting the Logged in users context or session doesn't exist Exception. Any help on this will be GREATLY appreciated.
    public class LeastTasksBean implements LeastTasksLocal {
         public String getUserLeastTasks( String sRole )
              try{
                   Map<String, String> users = new HashMap<String, String>();
                   Map<String, String> tasks = new HashMap<String, String>();
                   final int sessionIdleTimeout = 60;
                   String Users[] = UMFactory.getRoleFactory().getUsersOfRole( sRole, true );
                   if( Users != null ){
                        for( int i = 0; i < Users.length; i ++ ){
                             UWLContext  uwlContext      = new UWLContext();
                             IUWLService uwlService      = findService();
                             uwlContext.setAllowBackEndConnections( true );
                             IUser uwlContextUser        = UMFactory.getUserFactory().getUser( Users[0] );
                             uwlContext.setUser            ( uwlContextUser );
                             Locale loc                  = new Locale( "ES" );
                             uwlContext.setLocale          ( loc );
                             HttpServletRequest request  = getHttpRequest();
                             uwlContext.setOriginRequest   ( request );
                             IUWLSession session         = uwlService.beginSession( uwlContext, sessionIdleTimeout );
                             uwlContext.setSession         ( session );
                             IUWLItemManager itemManager = uwlService.getItemManager( uwlContext );
                             QueryResult result          = itemManager.getItems( uwlContext, null, null );
                             users.put( String.valueOf( i ), uwlContext.getUserName() );
                             tasks.put( String.valueOf( i ), String.valueOf( result.getItems().size() ) );
                             uwlService.endSession( uwlContext );
                        int userTasks = 0;
                        int leastTasks = Integer.valueOf( tasks.get( 0 ) );
                        int userKey = 0;
                        for( int i = 0; i < Users.length; i ++ ){
                             userTasks = Integer.valueOf( tasks.get( Integer.toString( i ) ) );
                             if( userTasks < leastTasks ){
                                  leastTasks = userTasks;
                                  userKey = i;
                        return users.get( Integer.toString( userKey ) );
                   else{
                        return "No users exist for this role";
              //Exception Handling
         private IUWLService findService() throws NamingException
              Properties properties = new Properties();
              properties.put( InitialContext.INITIAL_CONTEXT_FACTORY, "com.sapportals.portal.prt.registry.PortalRegistryFactory" ); 
              InitialContext ctx = new InitialContext( propiedades ); 
              IUWLService uwlService = ( IUWLService ) ctx.lookup( IUWLService.ALIAS_KEY );
              return uwlService;
         private HttpServletRequest getHttpRequest() throws Exception
              Properties properties = new Properties();
              properties.put( "domain", "true" );
              ApplicationWebServiceContext wsContext =
                   (ApplicationWebServiceContext) new InitialContext( propiedades ).lookup( "/wsContext/" + ApplicationWebServiceContext.APPLICATION_WSCONTEXT );
              HttpServletRequest request = wsContext.getHttpServletRequest();
              return request; 

    Hi David,
    I have a similar requirement on our project. I need to get a count of pending workitems for all user but I'm getting similar message when I try to access UWL context of any other user.
    Did you find any solution for this? Is it possible to get the workitems for all users using webservice or wendynpro?
    I would appreciate if you can provide some inputs on this.
    Thank you in advance.
    Regards,
    Seema Rane

  • Getting list of all users and their group memberships from Active Directory

    Hi,
    I want to retrieve a list of all the users and their group memberships through JNDI from Active Directory. I am using the following code to achieve this:
    ==================
    import javax.naming.*;
    import java.util.Hashtable;
    import javax.naming.directory.*;
    public class GetUsersGroups{
         public static void main(String[] args){
              String[] attributeNames = {"memberOf"};
              //create an initial directory context
              Hashtable env = new Hashtable();
              env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.PROVIDER_URL, "ldap://172.19.1.32:389/");
              env.put(Context.SECURITY_AUTHENTICATION, "simple");
              env.put(Context.SECURITY_PRINCIPAL, "[email protected]");
              env.put(Context.SECURITY_CREDENTIALS, "p8admin");
              try {
                   // Create the initial directory context
                   DirContext ctx = new InitialDirContext(env);     
                   //get all the users list and their group memberships
                   NamingEnumeration contentsEnum = ctx.list("CN=Users,DC=filenetp8,DC=com");
                   while (contentsEnum.hasMore()){
                        NameClassPair ncp = (NameClassPair) contentsEnum.next();
                        String userName = ncp.getName();
                        System.out.println("User: "+userName);
                        try{
                             System.out.println("am here....1");
                             Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should be returned
                             System.out.println("am here....2");
                             Attribute groupsAttribute = attrs.get(attributeNames[0]); // memberOf
                             System.out.println("-----"+groupsAttribute.size());
                             if (groupsAttribute != null){
                                  // memberOf is a multi valued attribute
                                  for (int i=0; i<groupsAttribute.size(); i++){
                                  // print out each group that user belongs to
                                  System.out.println("MemberOf: "+groupsAttribute.get(i));
                        }catch(NamingException ne){
                        // ignore for now
                   System.err.println("Problem encountered....0000:" + ne);
                   //get all the groups list
              } catch (NamingException e) {
              System.err.println("Problem encountered 1111:" + e);
    =================
    The following exception gets thrown at every user entry:
    User: CN=Administrator
    am here....1
    Problem encountered....0000:javax.naming.NamingException: [LDAP: error code 1 -
    000020D6: SvcErr: DSID-03100690, problem 5012 (DIR_ERROR), data 0
    ]; remaining name 'CN=Administrator'
    I think it gets thrown at this line in the code:
    Attributes attrs = ctx.getAttributes(userName, attributeNames);
    Any idea how to overcome this and where am I wrong?
    Thanks in advance,
    Regards.

    In this sentence:
    Attributes attrs = ctx.getAttributes(userName, attributeNames); // only asked for one attribute so only one should
    It seems Ok when I add "CN=Users,DC=filenetp8,DC=com" after userName, just as
    userName + ",CN=Users,DC=filenetp8,DC=com"
    But I still have some problem with it.
    Hope it will be useful for you.

  • Can we keep Decision workitem in two users SAP inbox after canel action ?

    I have a requirement like "  Decision workitem is going to two SAP Users Inbox , when one user opens the work item and choose the cancel and keep workitem in inbox in that case also its disappering in other user's SAP Inbox"
    is there any way to keep the work item in both users inbox when one person selects CANCEL AND KEEP WORKITEM IN INBOX ?
    Please give me your input.
    Thanks and Regards,
    veerabrahmam

    Rick Bakker wrote:
    Hello,
    >
    > Is this in SBWP or UWL?
    >
    > This seems to be the SAP standard in some scenarios. You could have the workflow test for Reserved and unreserve it but then what happens if it was reserved on purpose.
    >
    > regards
    > Rick Bakker
    > hanabi technology
    Hi Rickk ,
    it is SBWP
    it is intresting to see that case if one of approver reserves it for the purpose of evaluating later.
    the thing is our onsite  consultant asked like  is it possible to keep the decision in the two approvers SAP Inbox  after selecting cancel and keep workitem in the inbox.
    is that possible ?

  • Notification with exapnd role check box - get feedback from all users

    Hi ,
    I have to implement the following Case :-
    Send a Notification to an AD hoc Role consisting of many users , wait for a Yes/No Result from each User and an additiona comment ,
    register the yes / no reply + coment  of each individual user on a follow up table .
    After all users have replied , Proceed to next activity where I'll check the results on the Follow up table .
    I Think this could be implemented using the Expand Role check box on the Notifification but I do not know how to exactly implemet it .
    Thanks
    Rafi Farchi

    Regarding long mp3 bookmarks. (my experience with 9780).
    I had the requirement that when playing long MP3s (audiobook/podcast) I don't loose my place within the MP3. I am able to update the list of MP3s without loosing my place in the currently playing one. I don't loose my place when connecting the BB to a PC with the USB cable and using USB synch to copy files to the SDCard.
    All of these are accomplished by playing MP3s via File Manager/Play Folder feature.
    If you use play lists or other methods directly through the BB media player, you will loose your place as soon as you switch off the BB, escape the player, or connect the USB cable.
    If instead you use the file browser to go to the folder with the MP3s you wish to play (I have all my podcasts in one folder that I update manually) and select "Play Folder" from the context menu, the media player will open.
    If you escape the media player that is opened as per above, the last point in the played MP3 is remembered. This even survives any synchronization I do to the folder via USB or a soft power reset (ALT CAPS DEL). It remembers the spot in multiple MP3s to boot.
    This is a great handy feature. I'm glad it works with the 9780/OS6.

  • Error Idocs automatically transffered to users SAP Inbox

    Hi,
    I need to configure, such that Idocs with certain error messages will be automatically transffered to the users inbox (SAP inbox) based on the plant in the Idoc.
    Understand that to achieve this, will have to maintain the org plan in transaction PPOME. But what are the other  things that need to be done?
    Would greatly appreciate step by step instructions to achieve this.
    Regards,
    Mick

    Hi Mick,
    Rajeev Kasturi uses almost 10 pages in his book SAP R/3 ALE and EDI TECHNOLOGIES to explain.
    You have to do a complete workflow basic config including not only org plan but also org usnits, positions, assignments.
    Activate event triggering and linkage
    Acticate workflow generally
    configure partner profile parameters for receiver of notification
    Set ALEAdmin in EDI system table.
    God luck!
    Regards,
    Clemens
    P.S.
    On HELP.SAP.COM you will find lots of helpful hints searching for keywords IDOC WORKFLOW
    Message was edited by:
            Clemens Li

  • How get report of all user assigned tcode & object activety wise

    Dear All,
    We need to get report of user assign tcode & assign tcode wise activety.
    Regards
    jitendra Singh

    Hi Colleen,
    but we are checked all below table related to authorization & user
    1. USR02 --> User Name
    2. AGR_USERS --> User Name & Role Name
    3. AGR_TCODES --> Role Name & Transaction Code
    4. AGR_PROF --> Role Name & Profile Name
    TSTCA
    Also,
    5. AGR_DEFINE --> For more detail role information
    USR01 contains the runtime data of the user master records
    USR02 is the table containing logon information such as the password
    USR03 includes the users' address information
    USR04 contains users' authorizations
    USR05 is the users' parameter ID table
    USR09 contains user menus
    USR10 is the table for user authorization profiles
    USR11 contains the descriptive texts for profiles
    USR12 is the user master authorization values table
    USR13 contains the descriptive short texts for authorizations
    USR14 contains the logon language versions per user
    USR30 includes additional information for user menus
    USH02, USH04, USH10 and USH12 contains Users and profile and
    authorization change history data.
    Tables related with authorizations objects and authorization fields are as follows:
    TOBJ is the authorization objects table containing the authorization
    fields for each.
    TACT contains the list of standard activities authorization fields
    in the system.
    TACTZ is the table which defines the relationship between the
    authorization objects and the activities in those objects containing
    the Activity authorization field.
    TSTC is the transaction code table where authorization objects
    and values can be defined.
    but not getting any fruit full result.
    we are try to create SQVI query but not find the corresponding table.
    created user against role & role against Tcode  but not getting tcode against activity file value for particular user
    please help me for the same

  • How to access data of all users in a page?

    Hi all, I am new to APEX and have a query.
    I have installed APEX on my local machine, created a workspace, and added a few users with roles.
    I am creating an application, similar to a Library app, where I have a table that stores Books information (BOOK_ID, BOOK_NAME, etc). I'd like to create another table BOOK_USER with two columns, BOOK_ID and USER_ID. BOOK_ID would refer to the BOOKS table, and I want USER_ID to refer to the table that stores user details of the workspace that I am using. The data entry would happen from a page that has two LOVs, one for book name (using BOOK_ID as the value) and another for user name (USER_ID, or whatever field APEX uses to store user's ID). Can I do that in APEX? I've found ways to access and authenticate a user for a page, but how to get data of all users in the workspace? In other words, how to get all usernames in a LOV?
    As I am new to APEX, I'd appreciate if someone can guide me through the steps, or post links to tutorial, etc.

    Assuming that you are using the Application Express User Accounts for authentication, in that case you have to use built-in apex views
    selet * from APEX_WORKSPACE_APEX_USERSAnd use USER_NAME column instead of user_id
    See http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/priv_public001.htm#HTMDB25949

  • Report all activations of Office 365 ProPlus for all users

    Hello:
    I know that I can open my Office 365 Settings, Software, and see how many devices I have activated Office 365 Pro-plus on.
    What I am looking for is a way for an Admin to run a Powershell script (or command) to retrieve the activations for ALL users in a tenant.
    Thanks
    Tim

    Hi Tim,
    As far as I know, this is not possible. We can use Get-msoluser command to get the license status. But we can’t get details of all users’ activated computer name list for the Office 365 tenant with a Powershell script.
    By the way, this forum focuses on questions and feedback for Microsoft Office Client. There is not so much about Office 365
    console/hosted/cloud aspects here. For your case, I would suggest you to post in the forum of Office 365 Community, where you can get more experienced responses:
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Get items in all Outlook folders using EWS (PowerShell)

    Hi All,
    I'm trying to figure out how to search all items in Outlook mailbox using EWS. I have a script that currently search "Sent Items" only. See script below. I just need to modify it to search all folders instead. Any help is appreciated. Thank you
    $Report = @()
    #Provide text files for all users in the legal department
    $Law = cat law.txt
    #Set Date to 1 Year Ago
    $Date = (Get-Date).AddYears(-1)
    #Logon to Exchange Web Service with default credentials
    Add-Type -Path "C:\Program Files\Microsoft\Exchange\Web Services\1.2\Microsoft.Exchange.WebServices.dll"
    $sid = [System.Security.Principal.WindowsIdentity]::GetCurrent().User.Value
    $user = [ADSI]"LDAP://<SID=$sid>"
    $service = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService -ArgumentList ([Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2010_SP2)
    $service.AutodiscoverUrl($user.Properties.mail)
    Write-Progress -Activity "Preparing" -Status "Retrieving mailbox list" -PercentComplete 0
    #Get Mailboxes for all users in the text file
    $Mailboxes = $law | Get-User | Select WindowsEmailAddress, Company
    $Count = $Mailboxes.Count
    #Go through each users found and process accordingly
    ForEach ($Mailbox in $Mailboxes){
    $DisplayName = $Mailbox.DisplayName
    $i = $i + 1
    $pct = $i/$Count * 100
    Write-Progress -Activity "Collecting mailbox details" -Status "Processing mailbox $i of $Count - $DisplayName" -PercentComplete $pct
    Try {
    $Ok = $true
    $Mailbox = (Get-Mailbox $mailbox.WindowsEmailAddress -ErrorAction Stop ).PrimarySMTPAddress}
    catch [System.Exception]{
    $Ok = $false
    if ($Ok){
    #Set EWS up to impersonationate user
    $ImpersonatedUserId = New-Object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId -ArgumentList ([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress),$Mailbox
    $service.ImpersonatedUserId = $ImpersonatedUserId
    #Open user folder and bind SentItems folder to the EWS service.
    $folderid = new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::SentItems,$Mailbox)
    $SentFolder = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service,$folderid)
    #Specify Search Filters: Specify Date and Message Class Type
    $Sfir = new-object Microsoft.Exchange.WebServices.Data.SearchFilter+IsGreaterThanOrEqualTo([Microsoft.Exchange.WebServices.Data.EmailMessageSchema]::DateTimeSent, $Date)
    $Sfir2 = new-object Microsoft.Exchange.WebServices.Data.SearchFilter+IsEqualTo([Microsoft.Exchange.WebServices.Data.EmailMessageSchema]::ItemClass, "IPM.Note")
    #Add search filters together to form one search
    $sfCollection = new-object Microsoft.Exchange.WebServices.Data.SearchFilter+SearchFilterCollection([Microsoft.Exchange.WebServices.Data.LogicalOperator]::AND);
    $sfCollection.Add($Sfir)
    $sfCollection.Add($Sfir2)
    #Create PropertySet to make it possible to retreive all properties of email content
    $psPropset = new-object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::FirstClassProperties)
    $SentItemsview = new-object Microsoft.Exchange.WebServices.Data.ItemView(1000)
    $fiItems = $null
    #Loop through all all items in 1000 page increment until all items are processed
    Do {
    #Find Items based on folder Id, search filter and page view
    $fiItems = $Service.FindItems($SentFolder.Id,$sfCollection,$SentItemsView)
    #Create PropertySet to make it possible to retreive all properties of email content
    [Void]$service.LoadPropertiesForItems($fiItems,$psPropset)
    #Loop through each email item and retrieve recipients info.
    ForEach ($item in $fiItems)
    $AllAttendees = $item.ToRecipients | Select -Expand Address
    $AllAttendees += $item.CCRecipients | Select -Expand Address
    $AllAttendees += $item.BCCRecipients | Select -Expand Address
    $sender = $item.From.Address
    $subject = $item.Subject
    $TimeSent = $item.DateTimeSent
    Write-Host "$Sender --- mailbox --- $TimeSent"
    for ($index = 0; $index -lt $AllAttendees.count; $index++) {
    Write-Progress -Activity "Looping" -Status "Going through all recipients list" -PercentComplete 0
    $Attendees = $AllAttendees[$index]
    #Filter invalid users, external users and users in Legal department
    If ($Attendees -like "*domain.com"){
    If ($Law -notcontains $Attendees){
    $a = Get-User $Attendees -filter {Company -ne $null} -ErrorAction SilentlyContinue
    if ($a){
    $Obj = New-Object -TypeName PSObject
    $Obj | Add-Member -MemberType NoteProperty -Name Subject -Value $subject
    $Obj | Add-Member -MemberType NoteProperty -Name Sender -Value $sender
    $Obj | Add-Member -MemberType NoteProperty -Name Sent -Value $TimeSent
    $Obj | Add-Member -MemberType NoteProperty -Name Recipients -Value $Attendees
    $Report += $Obj
    $SentItemsView.Offset += $fiItems.Items.Count
    While ($fiItems.MoreAvailable -eq $true)
    #Export report to CSV
    $Report | Export-Csv "C:\Users\user\Dropbox\Script\LawData.csv" -NoTypeInformation -Encoding UTF8
    Tunde

    It seems the answer is here:
    http://gsexdev.blogspot.com/2011/08/using-allitems-search-folder-from.html.
    I'll go through it and let you if successfully.
    Thanks
    Tunde
    Tunde

Maybe you are looking for

  • I updated my itunes, and now it won't launch.

    i click on the itunes shortcut on my desktop, or the button in my programs list, and it just makes the hourglass thing for like two seconds, and then nothing happens. so in otherwords, itunes doesn't open, i've tried uninstalling it and re-installing

  • Amendment of Purchase Order

    Dear All, Please let me know can i amend the purchase order after release. Because i have no rights to unreleased the purchase order & i want to change something in purchase order but i don't know how can i change. Please suggest me. Regards Vimal La

  • Missing parts list shows only the first material.

    in case of MTO cycle, when i create a plnd order to prod order,in material availability check, system is not displaying all the materials for which shortages are there, instead its showing only the first material. any help

  • Can I really trust in Muse?

    It's very long to explain. Witgets not working in Firefox. Images appering in wrong places, etc., etc. I'm very desapointed with Muse. Did I make a mistake suscribing for 1 year? Is Adobe selling a product prematurely?. Have I to wait for more reliab

  • Zen v manual needed

    I just was given a "new" refurbished zen v, still in the sealed box, and for some reason there is no disc included. I downloaded the Creative Media Explorer from this site, so I can use the player but the only manual I have been able to find is the q