Creating Customized Views in bpm/workspace

Hi All,
I'm going to create a customized view in http://<host>:<port>/bpm/workspace ..
I was able to create one view for the first user and that Human task user are defined in the 'Organization' Lane Users.
Then next user comes based on the output of the first user.
Human task is created and and opened the <secondUser>.task file in bpm jdeveloper project and went to the 'Assignment' section and Edit the user as below,
Type - Single
Build a list of participants using - Names and Expressions
Add the user variable using Expression ..
Once I assigned to a task for a user(2nd Level) , I can see instance in his Inbox.
But not in his view. (Customized view.. )
Once I remove above configurations and assign the Lane Users it populates.
What will be the Problem ???
Where to assign the user and how can I populate tha customized view with this scenario??
Thanks,
nir
Any suggestions PLEASE ....
Edited by: Nir on May 14, 2013 9:38 PM

Hi 814056
Thanks for your reply..
Yes. The problem is all these users are belongs to same group but they should not see each others tasks.
i.e. Managing Directors of different subsidiaries in one organization.
They should not see each others tasks, but they are having same interface. Having separate groups for each SBU is impossible since we are having more than 50 subsidiaries.
Thanks,
Nir

Similar Messages

  • Is it possible to create relational view on Analytic Workspace in Oracle 9i Release1

    Hi All,
    We are in the initial stages of Oracle 9i OLAP prototype. Since the current version of BIBeans 2.5 does not work with Release 2 of Oracle 9i OLAP, we are planning to use Oracle 9i OLAP Release 1. So can you please answer the following questions.
    1. Is it possible to create relational view on Analytic Workspace(like in Release 2) and populate the OLAP catalog, if so can you give me guidance to get the appropriate user guide. The OLAP DML guide in Release 1 talks about creating OLAP catalog metadata for Analytic Workspace using a metadata locator object.
    2, Is it advisable to use Oralce 9i OLAP Release 1? Does the Analytic Workspace and the corresponding BIBeans work in Release 1?
    Thank you,
    Senthil

    Analytic Workspaces (Express/multidimensional data objects and procedures written in
    the OLAP DML) are new to Oracle9i OLAP Release 2, you cannot find them in Release 1.
    BI Beans will soon (within a week) introduce a version on OTN that will work with Oracle9i OLAP Release 2.

  • Digital Publishing Suite Help | Creating custom viewer apps for the iPad and iPhone

    This question was posted in response to the following article: http://helpx.adobe.com/digital-publishing-suite/help/create-custom-viewer-app-ipad.html

    The Approval Status section is no longer in DPS App Builder, but this reference wasn't removed. You can submit your app to the gallery using this form:
    https://adobeformscentral.com/?f=ozjJFvlBionBofBtd-wjbQ#

  • Creating Custom Views

    Good Morning Experts,
    I'm having an issue creating custom views for my custom class. I exported the MP the incident class views are stored in (ServiceManager.IncidentManagement.Configuration.XML) and tried to mimic the code, but I seem to be having issues.
    I have an RMA class, but I only have one view for it. Basically when a user clicks on my RMA view it shows ALL RMA tickets created. I need some separate sub-views within RMA the way there are sub-views on the other OOB classes. The first one I tried copying
    was the "Active Tickets" view (show only tickets that do not have status set to "Resolved" or "Closed").
    I added a category as follows:
    <Category ID="Category.RMA.Subviews.OpenStatusView.Category" Target="RMA.Subviews.OpenStatusView" Value="Console!Microsoft.EnterpriseManagement.ServiceManager.UI.Console.ViewTasks" />
    The view is defined as follows:
    <View ID="RMA.Subviews.OpenStatusView" Accessibility="Public" Enabled="true" Target="COMPANY.RMA.Class" TypeID="SMConsole!GridViewType" Visible="true">
    <Category>NotUsed</Category>
    <Data>
    <Adapters>
    <Adapter AdapterName="dataportal:EnterpriseManagementObjectAdapter">
    <AdapterAssembly>Microsoft.EnterpriseManagement.UI.SdkDataAccess</AdapterAssembly>
    <AdapterType>Microsoft.EnterpriseManagement.UI.SdkDataAccess.DataAdapters.EnterpriseManagementObjectAdapter</AdapterType>
    </Adapter>
    <Adapter AdapterName="viewframework://Adapters/AdvancedList">
    <AdapterAssembly>Microsoft.EnterpriseManagement.UI.ViewFramework</AdapterAssembly>
    <AdapterType>Microsoft.EnterpriseManagement.UI.ViewFramework.AdvancedListSupportAdapter</AdapterType>
    </Adapter>
    <Adapter AdapterName="omsdk://Adapters/Criteria">
    <AdapterAssembly>Microsoft.EnterpriseManagement.UI.SdkDataAccess</AdapterAssembly>
    <AdapterType>Microsoft.EnterpriseManagement.UI.SdkDataAccess.DataAdapters.SdkCriteriaAdapter</AdapterType>
    </Adapter>
    </Adapters>
    <ItemsSource>
    <AdvancedListSupportClass DataTypeName="" AdapterName="viewframework://Adapters/AdvancedList" FullUpdateAdapter="dataportal:EnterpriseManagementObjectAdapter" DataSource="mom:ManagementGroup" FullUpdateFrequency="1" Streaming="true" IsRecurring="true" RecurrenceFrequency="{x:Static s:Int32.MaxValue}" xmlns="clr-namespace:Microsoft.EnterpriseManagement.UI.ViewFramework;assembly=Microsoft.EnterpriseManagement.UI.ViewFramework" xmlns:av="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib">
    <AdvancedListSupportClass.Parameters>
    <QueryParameter Parameter="TypeProjectionId" Value="$MPElement[Name='COMPANY.RMA.Class.Projection']$" />
    </AdvancedListSupportClass.Parameters>
    </AdvancedListSupportClass>
    </ItemsSource>
    <Criteria>
    <QueryCriteria Adapter="omsdk://Adapters/Criteria" xmlns="http://tempuri.org/Criteria.xsd">
    <Criteria>
    <FreeformCriteria>
    <Freeform>
    <Criteria xmlns="http://Microsoft.EnterpriseManagement.Core.Criteria/">
    <Expression>
    <And>
    <Expression>
    <SimpleExpression>
    <ValueExpressionLeft>
    <Property>$Context/Property[Type='COMPANY.RMA.Class']/Status$</Property>
    </ValueExpressionLeft>
    <Operator>NotEqual</Operator>
    <ValueExpressionRight>
    <Value>$MPElement[Name="WorkItem!IncidentStatusEnum.Resolved"]$</Value>
    </ValueExpressionRight>
    </SimpleExpression>
    </Expression>
    <Expression>
    <SimpleExpression>
    <ValueExpressionLeft>
    <Property>$Context/Property[Type='COMPANY.RMA.Class']/Status$</Property>
    </ValueExpressionLeft>
    <Operator>NotEqual</Operator>
    <ValueExpressionRight>
    <Value>$MPElement[Name="WorkItem!IncidentStatusEnum.Closed"]$</Value>
    </ValueExpressionRight>
    </SimpleExpression>
    </Expression>
    </And>
    </Expression>
    </Criteria>
    </Freeform>
    </FreeformCriteria>
    </Criteria>
    </QueryCriteria>
    </Criteria>
    </Data>
    <Presentation>
    <Columns>
    <mux:ColumnCollection xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:mux="http://schemas.microsoft.com/SystemCenter/Common/UI/Views/GridView" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:datebinding="clr-namespace:Microsoft.EnterpriseManagement.UI.Extensions;assembly=Microsoft.EnterpriseManagement.UI.Extensions" xmlns:data="clr-namespace:Microsoft.EnterpriseManagement.UI.Extensions;assembly=Microsoft.EnterpriseManagement.UI.Extensions" xmlns:appCommon="clr-namespace:Microsoft.EnterpriseManagement.ServiceManager.Application.Common;assembly=Microsoft.EnterpriseManagement.ServiceManager.Application.Common" xmlns:toolbox="clr-namespace:Microsoft.EnterpriseManagement.UI.WpfToolbox;assembly=Microsoft.EnterpriseManagement.UI.FormsInfra" xmlns:slaBinding="clr-namespace:Microsoft.EnterpriseManagement.ServiceManager.SLA.Common;assembly=Microsoft.EnterpriseManagement.ServiceManager.SLA.Common">
    <mux:Column Name="DisplayName" DisplayMemberBinding="{Binding Path=DisplayName, Mode=OneWay}" Width="100" DisplayName="DisplayName.b5b3fbef168d40d785d95907d6b0944a" Property="DisplayName" DataType="s:String" />
    <mux:Column Name="Description" DisplayMemberBinding="{Binding Path=Description, Mode=OneWay}" Width="100" DisplayName="Description.9b1cd4850abe4bbeaa4446a29f9fa3dc" Property="Description" DataType="s:String" />
    <mux:Column Name="Backend_Case" DisplayMemberBinding="{Binding Path=Backend_Case, Mode=OneWay}" Width="100" DisplayName="Backend Case" Property="Backend_Case" DataType="s:Boolean" />
    <mux:Column Name="Old_Part_Num" DisplayMemberBinding="{Binding Path=Old_Part_Num, Mode=OneWay}" Width="100" DisplayName="Old Part #" Property="Old_Part_Num" DataType="s:String" />
    <mux:Column Name="Old_Serial_Num" DisplayMemberBinding="{Binding Path=Old_Serial_Num, Mode=OneWay}" Width="100" DisplayName="Old Serial #" Property="Old_Serial_Num" DataType="s:String" />
    <mux:Column Name="Vendor_RMA_Num" DisplayMemberBinding="{Binding Path=Vendor_RMA_Num, Mode=OneWay}" Width="100" DisplayName="Vendor RMA #" Property="Vendor_RMA_Num" DataType="s:String" />
    <mux:Column Name="Source" DisplayMemberBinding="{Binding Path=Source.DisplayName, Mode=OneWay}" Width="100" DisplayName="Source List" Property="Source.DisplayName" DataType="s:String" />
    <mux:Column Name="New_Serial_Num" DisplayMemberBinding="{Binding Path=New_Serial_Num, Mode=OneWay}" Width="100" DisplayName="New Serial Number" Property="New_Serial_Num" DataType="s:String" />
    <mux:Column Name="StartDate" DisplayMemberBinding="{Binding Path=StartDate, Mode=OneWay}" Width="150" DisplayName="RMA Start Date" Property="StartDate" DataType="s:DateTime" />
    <mux:Column Name="sDisplayName" DisplayMemberBinding="{Binding Path=Status.DisplayName, Mode=OneWay}" Width="100" DisplayName="Status" Property="Status.DisplayName" DataType="s:String" />
    <mux:Column Name="Customer_List.DisplayName" DisplayMemberBinding="{Binding Path=Customer_List.DisplayName, Mode=OneWay}" Width="100" DisplayName="Customer" Property="Customer_List.DisplayName" DataType="s:String" />
    <mux:Column Name="Destination_FSL_List" DisplayMemberBinding="{Binding Path=Target_FSL.DisplayName, Mode=OneWay}" Width="100" DisplayName="Destination FSL" Property="Target_FSL.DisplayName" DataType="s:String" />
    </mux:ColumnCollection>
    </Columns>
    <AdditonalProperties />
    <ViewStrings>
    <ViewString ID="Description.9b1cd4850abe4bbeaa4446a29f9fa3dc">$MPElement[Name="Description.9b1cd4850abe4bbeaa4446a29f9fa3dc"]$</ViewString>
    <ViewString ID="DisplayName.b5b3fbef168d40d785d95907d6b0944a">$MPElement[Name="DisplayName.b5b3fbef168d40d785d95907d6b0944a"]$</ViewString>
    </ViewStrings>
    </Presentation>
    I also added a FolderItem (not sure if this is needed):
    <FolderItem ElementID="RMA.Subviews.OpenStatusView" ID="FolderItem.OpenStatusView" Folder="WorkItem1!ServiceManager.Console.WorkItem.Root" />
    An image reference, and the appropriate DisplayString...
    What have I done wrong / missing?
    Thanks in advance!

    I doubt that the System.WorkItem base class has a Status enumeration.
    The Status enumĀ of the Incident class is defined in the System.WorkItem.Incident class.
    If your RMA class is usig System.WorkItem as the base class as far as I know the Status enumeration can't be from the Syste.WirkItem.Incident class.
    How did you create the new RMA class?
    Andreas Baumgarten | H&D International Group

  • Restrict creating custom view(Worklist Views) for end user

    Hi,
    We need to restrict user other than weblogic(Administrator) creating Custom Views(Worklist Views).
    Is there any configuration available?
    Thanks,
    Bhaskar Pola

    Excel 2010 - no way that I am aware of.
    Excel 2013 - no way that I am aware of if they have a version of Excel that includes Power Pivot.
    SharePoint - I think you might be able to restrict download access to a workbook hosted on SharePoint.
    Realistically, your best bet is to make a Tabular model and point your pivot table reports at that model.

  • BPM Process Creation Error While Viewing in BPM Workspaces

    Hi,
    I am working in creating workflows in BPM according the Organizational need. I just have started to do so. But, While i have create and deploy a simple Process in JDeveloper 11.1.1.6.0, the process is deployed successfully. When, I login into BPM/Workspaces User, Application which, i have developed earlier is shown there but when i open this application, there is nothing to display in Browser Only empty window is open. Can anybody provide useful suggestion to resolve this issue. I will waiting for your response. Thanks.

    See the last post in this thread (adding application URL to the composite)-
    Re: Binding ADF Components in Task Form
    Also as mentioned earlier check your logs if any other error is causing the blank page

  • Is there any way to create custom views, like in Thunderbird & Evolution?

    Hi Folks,
    I have recently switched to Mac. Before this I was using Linux. For mail I used Thunderbird (TB) for many years, and then eventually switched to Evolution Mail (EM) for its smoother integration into Linux.
    On both TB and EM I revolved my work flow around custom folder views. As new email came in I would label it (on EM, or tag it on TB). I have numerous inboxes (email accounts) so I would generally be starting out in a smart folder that displays all mail in each inbox. I would most of the time view that smart folder with a Custom View filter in place. The filter would simply display ONLY mail with NO tags/labels.
    Once my filter inbox showed NO messages it meant I had labeled everything. I would them use other smart folders to display mail with certain labels AND NO "Completed" label. That way I could go to my "Reply ASAP" folder and see what needed my immediate attention. Each email I replied to I would then add the label COMPLETED and it would vanish from my view.
    I explain the above in case someone has specific suggestions on how to achieve a similar workflow on Mail.
    In short, what I am wondering is this:
    - Is there a built in way to filter a folder on the spot (with a drop down list of predefined and custom Views) --- I have looked and so far did not find this feature
    - Is there a way to do this with a script or add-on? I have looked at many and not found a suitable one yet.
    I am appealing to the knowledge of those with more experience in Mail. It is new to me.
    I am currently using TB on my Mac because it gives me the above feature. BUT it does not have the same degree of integration with the OS and other Mac specific apps that Mail has. Thus I am keen to stick with Mail.
    With thanks,
    Jonathan

    In addition to above:
    I have installed a trial of Mailtags. It certainly improves the tagging capability of Mail.
    I have also looked at the Smart Mailboxes and Smart Mailbox Folders.
    As far as I can tell, however, there is no option to set up a smart mailbox that ONLY shows message with NO LABEL or NO MAILTAG (as the case may be). I can display messages with particular TAGS but not NO tags.
    Is there any way to add more options to the Smart Mailbox filter system?
    Cheers,
    Jonathan

  • How can i mark as default a user view for bpm workspace 11g

    Hi,
    well i got this issue, in my workspace i made a new view with a flexfield and i would like for that view to be the default one for one particular user
    thanks for watching, i would appreciate any question :)

    There is a document about customizing the inbox available here: http://java.net/downloads/oraclebpmsuite11g/Samples/bpm-CustomizingWorkspace/BPM-CustomizingWS.pdf
    You need to implement getColumnNames and getColumnDisplayName on your implementation of IBPMUICustomizations. If you only want it for a single user you would either need to hard code that user in there or look to an xml file or something to map users to columns.

  • Oracle BPM 11g -  Custom view  - Design Phase

    Hi,
    Does anyone know if you can create a custom view during the design phase (the way you do it in ALBPM 6.0 and oracle bpm 10g) so that users meeting the filter criiteria can then see the view in the BPM workspace. I don't want all users to create a custom view in the workspace, that will be a waste of time and moreover, it would be unfair on them to ask and create a custom view.
    Thanks
    Raj
    Edited by: user588394 on 11-Feb-2013 05:59

    Hi Raj,
    If you log in as an administrator in the Workspace, when you create a view you can click the "Add to Standard Views" checkbox. If you do this, everyone will be able to use the view you create as one of the standard views in their list as well.
    OOTB the "weblogic" user has been assigned to the "Administrators" group in the weblogic administration console. As a result, if you log in as the user "weblogic", you'll be able to create these standard views.
    Dan

  • BPM Worklist: Searching in custom views does not work for protected flexfields !

    Hello,
    Have mapped few protected attributes in my .task file. Also created the corresponding labels on target SOA server. I am able to create custom views using these protected flex fields.
    But what I have observed is keyword based search is not working for custom views using protected fiexfields.. however it works fine with public fiexfields.
    Any pointers on this? Am I missing something in the configuration?
    Thanks..

    Can anyone help me?

  • Protected Flex field and Custom Views

    Hi,
    I have created some project variables in oracle bpm 11.1.1.6.0 project.After deployment, these variables are coming as Protected flex field but for some reason these are not visible when I define custom views.
    I also tried creating Protected flex field on BPm workspace, mapped these variables to human task payload, yet again when creating custom view i cannot see them.
    This problem is only happening with protected flex field and not public flex field.
    Please let me know how to add protected flex fields in custom view.
    Regards...

    why do you think it's an apps question?

  • Project Server Creating database views

    Hi All,
    We are using project server 2013. We need to create some database views to generate some complex report, what is the best way to create. I think if we create any custom views inside the project server databse, will be removed while applying the service pack.
    Thanks in advance, Taj

    Assuming you are talking for an On premise installation,
    You won't have problem if you create custom views within database as long as its referencing reporting objects, it is supported andĀ documented on
    Technet
    Excerpt from Technet
    Schemas are documented only for the reporting tables and views.
    For an
    on-premises Project Server installation, you can add reporting tables
    and views for entities that are not defined in the Project database
    schema. You can also create separate databases for custom on-premises
    applications. Modification is not supported for the draft, published,
    and archive tables and views. Because the Project database is not
    directly accessible in Project Online, reporting tables and views cannot
    be modified. However, if you have a SQL Azure account, you can create
    separate databases for custom use with Project Online.
    Thanks | Sunil Kr Singh | http://epmxperts.wordpress.com

  • Using a customizable field on a custom view

    Hello everyone,
    I am creating custom view. The main table has a field that can either contain a customer or a vendor based on a field.
    The field identifier is Inbound is vendor and outbound is customer. They are using the same field to store the customer or vendor. Is there a way in a view, based on the field identifier, to have a "generic" NAME1 field that contains the customer name or the vendor name?
    Thanks for your help and I can clarify if I made it confusing.

    Hi,
    You need write an exit for this.
    Regards
    Prasenjit

  • BPM Workspace - New Page

    How Can i create a Page into BPM workspace which is generically application to all process users instead of a single user, from whom i created the page.

    Assuming you use 10g you can create a layout, to create a layout you can access to the workspace with the administrator user, the one you use to log in the webconsole.
    In this document you have information on how to create a layout:
    http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/pdf/OracleBPM-WorkSpaceCustomizationGuide_10.3.pdf
    HTH

  • Custom Views in APPS Schema

    I am looking for your opinions/best practises on the above subject.
    We have all our custom views (for custom apps that are defined as an extension of the oracle app - for instance $XXMAR_TOP as an extention of the $AR_TOP)
    defined in the APPS schema.
    Does it matter whether these views are defined in the APPS schema or is it a best practice to define custom views in the custom schema with grants to APPS?
    Thanks

    It is recommended to create custom views in APPS schema (with an XX prefix).
    For more details, refer to Customization Standards at http://docs.oracle.com/cd/E18727_01/doc.121/e12897/T302934T458264.htm
    Sandeep Gandhi

Maybe you are looking for

  • All My Files are missing in Finder

    It seems that I've made something and now I can't see my files in the All My Files Finder ... Is it possible to restore the Finder Preferences to Default ? Or , How can I see all files again ? See Pic... Thanks

  • Why is there a restriction on window size in Pages 5.0? And is there a way to make the window smaller anyway?

    I like to work with multiple windows open on the same screen at once. Now the smallest allowed width of the window takes up over half the screen (I have a 13 inch macbook)! This restriction is here whether or not I am zoomed in or out. Can I get arou

  • Fault encountered in running a Java Swing Appl on a Linux Platform

    hello friends, problem: Whenever i aim to run any of the Java AWT/ Swing Applications (that produce a graphical o/p), on a RED HAT LINUX 9.0 platform i get the error as attached (error.txt)..the programs get compiled but doesnt get executed and do no

  • OBXT : Error when create special G/L indicator

    Hi, When I want to create SGL indicator with Tcode OBXT I get the following error : Message no. F4097 ' Mark special G/L indicator P as noted item ' I won't mark noted item for this SGL indicator, please how to solve this ? Regards.

  • RoboHelp X5 and Windows 2003 server

    Does enyone know if I have to change some robohelp settings when robohelp is installed on a windows 2003 server? I'm working on merged htm help files and since we moved all files to a windows 2003 server, I noticed that the index and the search funct