Workspace Customization

I want to costumize the Workspace Add/Modify Form and the Workspace View for the Project Management Workspace.
I already successfully added a new select box to the form and the view. I also added a text form element named "Auftragsnummer" ("Project Number"), which is a required field, to the form and the view. In the form it works very well but in the view i get a field named "Unknown definition element: text".
Is this a known bug?

Originally Posted by mramaker
Did you select "Auftragsnummer" as an element in the view definition of the form (instead of text)?
Yes I selected "Auftragsnummer" in the view definition. By the way I can't select "Text" in the view definition.

Similar Messages

  • 10gR3 Workspace customization

    We had done workspace customization in 5.7.3 version in the jsp pages. However, while upgrading to 10gR3 we are facing this issue for accesing request/application scope accessible objects for any kind of conditional logic that need to happen, to customize workspace.
    In 10gR3 we need to show the Actions Menu in the Worklist panel based on the participant role or the view name (associated to the role).
    In 5.7.3 we did it this way in workspace\albpm5.7\enterprise\webapps\portal\jsp\*detailContent.jsf*
    View view = (View) request.getAttribute(ApplicationConstants.REQUESTED_VIEW);
    String viewName = view.getId();
    if (viewName.startsWith("blah")) {
    // do something
    } else {
    // do something else
    In 10gR3 similar change need to be done in \ecet\oracle\wci103\OraBPMEnterpriseHome\webapps\workspace\jsf\view\viewPanelTemplate.xhtml
    however, the conditional logic is based on the being able to access the correct jsf object in request/application/session scope.
    Can anyone give valuable pointers as to which jsf request/application/session scope object to access in other to get the participant role information or the view name information?
    Is there a list documented somewhere that states jsf objects and their public attributes in request/application/session scope?
    thanks

    we are using role based view layout functionality.
    However, certain parts of the workspace is constant for all roles, such as the bulk actions and Actions Menu.
    These need to be hidden based on the user role or participant role's view name.
    I am looking for to do this conditional view changes.
    Do you know any other way to accomlish this?

  • Acrobat workspace customization

    In upgrading to Acrobat Pro 10 on a Mac running Mountain Lion, there seems to be two lines of toolbars at the top of the screen which take up about 3/4" of vertical screen real estate. You can hide them each time you open a document (can't seem to have them hidden by default), but there doesn't seem to be any way to combine them into one line, which would take up way less space. In Acrobat 9 there seemed to be much more control over workspace customization, and I was able to reduce the toolbars into a single line.
    On a Macbook Pro, vertical real estate is very valuable. Is there not some way to reduce this height?
    Greg

    Thanks Joel,
    Actually we were thinking of upgrading to the latest and i did have a check with version X lastnight but noticed the signatures options were exactly the same as 7.
    Regarding the signature fields. What you are saying is that we would have to create a form with these special fields on it and then from there things should be fine correct?
    But what if we cannot use these types of forms? Basically we are using just a document that someone scanned in and converted to PDF and signing from there.
    Please advise if it would be possible with our current scanned in forms.
    Much thanks.

  • OBPM workspace customization

    Hi, can anyone explain upto what level we can customize the OBPM worksapce, is it possible to add inbox, outbox etc in workspace. is it possible to have tabs
    in bpm worksapce? is it possible to change the menu items based on the user role's
    Thanks.

    You have many options to customize the workspace, there is documentation on how to do it:
    http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/workspace_customization/index.html
    HTH

  • Real world Workspace customization issues

    Background: We are creating a subset of workspace functionalities in a JSP application which will interact with LC Server over web services only without the use of Workspace APIs(which are combination of Flex UI APIs, Flex Domain APIs and Java Task Manager APIs). We want to directly use TaskManager APIs for that.
    ISSUE 1:  We are trying to invoke the Long-lived process from a JSP page
    using web  services but the process in not getting invoked.
    Here is the client JSP code.  Please also refer the attachment which has
    the web service proxy java  files:
    <%@ page import="com.adobe.idp.services.*" %>
    <%@ page  import="javax.xml.ws.Holder" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML  4.01 Transitional//EN"><%@page
    language="java" contentType="text/html;  charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <%@page import="org.w3c.dom.Document"%><html>
    <head>
    <title>index</title>
    <meta  http-equiv="Content-Type" content="text/html;  charset=ISO-8859-1">
    </head>
    <body>
    SUCCESFUl!!
    <%
    String remoteURL;
    AIServerProcessesOrderNewSuppliesService service =  new
    AIServerProcessesOrderNewSuppliesService();
    AIServerProcessesOrderNewSupplies  document =
    service.getOrderNewSupplies();
    // Holder<BLOB> finalDoc =  new Holder<BLOB>();
    Holder<String> outVar = new  Holder<String>();
    InvokeResponse responseFor =  new
    InvokeResponse();
    XML xml = new XML();
    //document.invoke("passed  something", finalDoc,
    outVar);
    try
    // get the image  from the database
    //BLOB blob = finalDoc.value;
    // remoteURL =  blob.getRemoteURL();
    document.invokeAsync(xml);
    System.out.println(responseFor.toString());
    catch (Exception  e)
    e.printStackTrace();
    throw e;
    %>
    </body>
    </html>
    I don't see any error in JSP and  it doesn't throw any error but the
    server process is not getting invoked.  Please refer the attachment
    (MyLongLivedProcess.JPG)
    ISSUE 2:
    I  don't want to use workspace. And we also don't want to customize  the
    workspace. Actually, we need a single JSP that will be able to  do
    following stuff:
    1. Show all the tasks assigned to the currently  loggedin user.
    2. On click of the task, open the form associated with the  current
    selected task in browser/jsp.
    So, please tell me what APIs  should I use in my JSP for above mentioned
    functionalities. Please share a  dummy jsp that will do that.
    ISSUE 3:
    When a user logs in the  workspace, then he gets the actions associated
    with the particular tasks  below the form. E.g. approve, submit,
    complete, deny etc.
    But I want these  actions inside my form. Reason for that is that we are
    not using the Flex UI  of workspace. Infact we are creating a simple JSP
    that will render the  form.
    If you can provide some eclipse java project with required jars, a  JSP
    with above functionalities and a PDF form that solve issue number 3  then
    it will be great way to start.

    Background: We are creating a subset of workspace functionalities in a JSP application which will interact with LC Server over web services only without the use of Workspace APIs(which are combination of Flex UI APIs, Flex Domain APIs and Java Task Manager APIs). We want to directly use TaskManager APIs for that.
    ISSUE 1:  We are trying to invoke the Long-lived process from a JSP page
    using web  services but the process in not getting invoked.
    Here is the client JSP code.  Please also refer the attachment which has
    the web service proxy java  files:
    <%@ page import="com.adobe.idp.services.*" %>
    <%@ page  import="javax.xml.ws.Holder" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML  4.01 Transitional//EN"><%@page
    language="java" contentType="text/html;  charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <%@page import="org.w3c.dom.Document"%><html>
    <head>
    <title>index</title>
    <meta  http-equiv="Content-Type" content="text/html;  charset=ISO-8859-1">
    </head>
    <body>
    SUCCESFUl!!
    <%
    String remoteURL;
    AIServerProcessesOrderNewSuppliesService service =  new
    AIServerProcessesOrderNewSuppliesService();
    AIServerProcessesOrderNewSupplies  document =
    service.getOrderNewSupplies();
    // Holder<BLOB> finalDoc =  new Holder<BLOB>();
    Holder<String> outVar = new  Holder<String>();
    InvokeResponse responseFor =  new
    InvokeResponse();
    XML xml = new XML();
    //document.invoke("passed  something", finalDoc,
    outVar);
    try
    // get the image  from the database
    //BLOB blob = finalDoc.value;
    // remoteURL =  blob.getRemoteURL();
    document.invokeAsync(xml);
    System.out.println(responseFor.toString());
    catch (Exception  e)
    e.printStackTrace();
    throw e;
    %>
    </body>
    </html>
    I don't see any error in JSP and  it doesn't throw any error but the
    server process is not getting invoked.  Please refer the attachment
    (MyLongLivedProcess.JPG)
    ISSUE 2:
    I  don't want to use workspace. And we also don't want to customize  the
    workspace. Actually, we need a single JSP that will be able to  do
    following stuff:
    1. Show all the tasks assigned to the currently  loggedin user.
    2. On click of the task, open the form associated with the  current
    selected task in browser/jsp.
    So, please tell me what APIs  should I use in my JSP for above mentioned
    functionalities. Please share a  dummy jsp that will do that.
    ISSUE 3:
    When a user logs in the  workspace, then he gets the actions associated
    with the particular tasks  below the form. E.g. approve, submit,
    complete, deny etc.
    But I want these  actions inside my form. Reason for that is that we are
    not using the Flex UI  of workspace. Infact we are creating a simple JSP
    that will render the  form.
    If you can provide some eclipse java project with required jars, a  JSP
    with above functionalities and a PDF form that solve issue number 3  then
    it will be great way to start.

  • BPM Workspace Customization & User Interface: Best Practice Question

    Hi All,
    This is our first BPM Project in house and we are on Oracle BPM 11g.
    The business process involves request for approval for a permit from a public user and internal users need to approve/reject the same. Pretty simple and straightforward so far.
    But we are now having lots of questions wrt to user interface.
    1. Work Space Changes.
    If we develop this application completely in Oracle BPM, the outside user (general public) will also see the 'workspace' with its current interface. It would be impossible to handle user training on this interface for a simple Joe Bloe, who may not be computer savvy) So the requirement documents demand that the look and feel of the outside users should be totally different than what the workspace provides. They want this to be customized in such a way that iit would strip all of the default lay out (left navigation bar, and get rid of the upper section completely. with its list of tabs) and also to modify the task list that appears below).
    We have figured out how to achieve this (by modifying the workspace .jar files and recompiling the same), but is this a good approach? What happens if we are developing a brand new application on the BPM in our shop? This change will affect that application as well, as the workspace is shared and common to all the apps? I want some of you experts to let us know, your thoughts on this. If this is not a recommended practice, what would be best way to achieve what we want using Oracle BPM? (Where we want a simple intuitive user interface, without the default add ons that comes with the work space)...
    2. What would be the best method to create a user registration page (where a user creates his own login and password and maintains his account) for an application using the BPM ? Right now we are thinking this should be in either a ADF page/ JSP page or (worst case a PL SQL cartridge) that can be launched on the browser, which will be open and does not require any kind of authentication to access. Is this a good practice or recommended one? Or are we missing out on something within BPM application itself, that we are not aware of and that would let us do this?
    3. Also, if we go with an external ADF application for the 'public' user interface developement, then how can we (or can we) leverage the BPM's internal storage for the submitted data from the payload? I understand that it stores this information currently on the server 'soa infra' tables some where? Thru an external ADF app, can we write into these tables (Is this recommended or just sounds plain ridiculous)???
    Knowing answers to these questions will help us decide, if this is the right tool for the job at hand.
    Appreciate your time and xpertise.
    Thanks
    SR

    Hi All,
    This is our first BPM Project in house and we are on Oracle BPM 11g.
    The business process involves request for approval for a permit from a public user and internal users need to approve/reject the same. Pretty simple and straightforward so far.
    But we are now having lots of questions wrt to user interface.
    1. Work Space Changes.
    If we develop this application completely in Oracle BPM, the outside user (general public) will also see the 'workspace' with its current interface. It would be impossible to handle user training on this interface for a simple Joe Bloe, who may not be computer savvy) So the requirement documents demand that the look and feel of the outside users should be totally different than what the workspace provides. They want this to be customized in such a way that iit would strip all of the default lay out (left navigation bar, and get rid of the upper section completely. with its list of tabs) and also to modify the task list that appears below).
    We have figured out how to achieve this (by modifying the workspace .jar files and recompiling the same), but is this a good approach? What happens if we are developing a brand new application on the BPM in our shop? This change will affect that application as well, as the workspace is shared and common to all the apps? I want some of you experts to let us know, your thoughts on this. If this is not a recommended practice, what would be best way to achieve what we want using Oracle BPM? (Where we want a simple intuitive user interface, without the default add ons that comes with the work space)...
    2. What would be the best method to create a user registration page (where a user creates his own login and password and maintains his account) for an application using the BPM ? Right now we are thinking this should be in either a ADF page/ JSP page or (worst case a PL SQL cartridge) that can be launched on the browser, which will be open and does not require any kind of authentication to access. Is this a good practice or recommended one? Or are we missing out on something within BPM application itself, that we are not aware of and that would let us do this?
    3. Also, if we go with an external ADF application for the 'public' user interface developement, then how can we (or can we) leverage the BPM's internal storage for the submitted data from the payload? I understand that it stores this information currently on the server 'soa infra' tables some where? Thru an external ADF app, can we write into these tables (Is this recommended or just sounds plain ridiculous)???
    Knowing answers to these questions will help us decide, if this is the right tool for the job at hand.
    Appreciate your time and xpertise.
    Thanks
    SR

  • BPM workspace customization

    Hi,i want to know suppose that i click withdraw button can i be able to see which java code it's calling so that i can add some code to it to customize it.
    Plz,help me out since i have a urgent requirement in my project.
    Thanks and regards,
    [email protected]

    Hi,
    I have created several protected flex-fields as an BPM administrator and then I have mapped all these fields to payload attribute in the workflow project.
    After that as an Administrator I created an public view and added all the flex filed label to the display column filed list also made this view available to all the groups.Now when I log in as an approver i could see the public view also some task in that view where i could see my additional columns with the payload mapped value , however when I click on the task its giving me "Details not available for this task" . However when I click this from my standard Inbox I am able to view the task details. Could any tell me what may have went wrong here.

  • Workspace Customization in OPBM Enterprise for WLS

    All,
    Has anyone modified the default workspace layout in OBPM on WLS? We have made a couple of small modifications based on the guide, but when these are deployed to the webroot foder in OBPM-HOME, and the engine re-started, the changes do not appear. Rebuidling the Workspace EAR and deploying it also shows hegative results. Any idea how we can invoke these changes?
    TUA,
    IGS

    Hi, you can modifiy directly the deployment in weblogic. In my case I use to apply my changes in the deployment path, in      
    / opt/ webserver/ bea/ user_projects/ domains/ bpm_domain/ Fuego-WebLogic-Deployer/ fuego_webapp_expanded/ 08-workspace-xafdids. ear. Then I update and I activate the changes. It works.

  • Workspace / Worklist Customization

    Hi,
    I want to manually customize Oracle BPM Workspace with my own css.
    The point is to change the Branding logos, login and workspace ones outside the Administration tab in Workspace.
    Does anyone know where can I find the directory afr that has the logo-oracle-red.png image?
    Url: <BPMHOME>/workspace/*afr*/logo-oracle-red.png
    I can't find that directory but I can upload images/files to the workspace directory that contains directories such as css, img, web-inf and so on! But no afr directory...
    I was following this tutorial without success: http://docs.oracle.com/cd/E13154_01/bpm/docs65/workspace_customization/index.html?t=modules/workspace/customization/t_Look_and_Feel_Changing_WorkSpace_Default_CSS.html
    I'm using Bpm Suite 11.1.1.5.0 With PS4 FP.
    Thanks,
    Julian

    Hi Julian
    1. You are referring WRONG and OLD Link for older version of BPM Workspace (BEAs original ALBPM stuff). Hence you will not see that folder structures etc. Do not refer that link.
    2. I am glad that you are on SOA/BPM 11.5 + FP (Feature Pack) applied. Because only on 11.5 + FP, Oracle gave some very nice options for customization. Below old post, will give some details like new features in Feature Pack. Also there is another link that has PDF File with some good stuff for Customization.
    Re: Any Possibilities to Customize Oracle 11g BPM Worklist
    http://www.oracle.com/technetwork/middleware/soasuite/documentation/oracle-bpm-user-guide-ps4fp-487863.pdf
    Thanks
    Ravi Jegga

  • Role based layout customization

    Dear experts,
    I need to customize and create 2 workspace layout, (1) First layout is for supervisor role (2) Second layout is for all other roles. I have followed the Oracle BPM Workspace Customization Guide 10g Release 3 (10.3.0), after i updated the workspace.properties, it doesn't look like everyone see the same layout. Meaning, the default layout didn't get overridden by the new layout (i.e.supervisor layout) that i've created. Please kindly advice, thank you!
    # customized look and feel
    fuego.workspace.preferences.defaultXml=/WEB-INF/supervisor_preferences.xml

    I've faced the same issue.
    I went throught document "Workspace Customization" steps, following page 30 recommendations. But nothing changed. Then issued a SR, and Support told me to export the layout from STUDIO workspace insted of doing it from ENTERPRISE workspace.
    The steps should be
    1. Start Studio Engine and log into Studio workspace using Admin as user
    2. Enable edition
    3. Add the panels you want to customize (or remove)
    4. Export the layout, (default name is preferences.xml), I've named it default_layout.xml following document's instructions
    5. Copy the default_layout.xml file to ENTERPRISE install dir: OraBPMEnterpriseHome/webapps/workspace/WEB-INF/
    6. Edit the workspace.properties files located in that dir
    7. Add the following property
    fuego.workspace.preferences.defaultXml=/WEB-INF/default_layout.xml
    (remember not to add it at the end of file, place it somewhere betweend other properties)
    8. Do the usual tasks to restart Tomcat (stop Engines, go to admin center, stop web apps, start again).
    That should work (it worked for me)
    THANKS SOWMIYA for your priceless help.
    Regards,
    GastonM

  • Workspace and Applications Frame - can we separate and group applications

    Hi,
    In the execution of our first BPM Project, i'm kinda worried about Workspace interfase, especially the Layuot and the content.
    As example, our workspace applications panels has this buttons (it´s kinda alphabetic order)
    Applications
    Process
    Indicators
    Applications
    Applications
    Reports
    Indicators
    etc,
    Our users has always more than one function associated.
    My need is to arrange the actual workspace and "sort" the applications, process and Indicators buttons in separated "layout" or in some way that looks like "clean" to the user.
    Has someone done this before? Is there an example?
    Or just using the ALBPM workspace customization doc is all what i really need?
    Regards,

    Welcome to the Apple Community.
    iTunes and iCloud are different accounts. You can both use the same ID for the store login and share your music etc., and use different ID's to log in to iCloud, thereby keeping your calendars etc separate.

  • Creating view to get instances to user in wich he has taken part

    hellow.
    I have a question. I should to create custom view inside Oracle BPM. This view should get only instances in wich current user has taken part, for a example, some user "test" has assigned in the instance to make some task. Part "Test" has done this task and he whant to look this instance after his task. But participant is not a initiator of the instance...
    This view is similar to another view, where participant create the instance and this participant - initiator. In this case, we should only add a condition in our view like "initiator is current user"....
    But what should I do in my case, when participat is not initiator of the instance but he whants to look tasks in the instance where he have taken part.
    Thank you very much.

    I have seen this requirement come up quite often but unfortunately it is not easily supported out of the box. The limitation is that you can only filter a view based on a project variable, and user defined project variables can only be primitive types. Because of this you cannot for example keep a list of participants as a project variable. The best you can get is a comma separated list of participant ids in a string, but this is still limited to 255 characters. The next limitation is that you can only compare the current user to a Participant project variable, so the initiator or current user, not against a string. The only way we have found to get the current user in to the filter against a string was to do some workspace customizations that were not all that straight forward.

  • Custom worklist decorator class not working

    hi , i was trying out the worklist customization as described in http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/workspace_customization/index.html. however it is not working. any ideas as to what might be wrong...
    my custom mworklist decorator class is almost the same as that described in the example -
    package customization;*
    import fuego.lang.Interval;*
    import fuego.lang.Time;*
    import fuego.papi.InstanceInfo;*
    import fuego.papi.Presentation;*
    import fuego.papi.VarDefinition;*
    import fuego.workspace.model.view.WorkListDecorator;*
    import java.util.Locale;*
    public class CustomWorkListDecorator*
    +implements WorkListDecorator {+*
    +public String getRowStyle(String viewId, InstanceInfo instanceInfo, int rowIndex) {+*
    return  "background-color:Red" ;*
    +}+
    public String getCellStyle(String viewId, InstanceInfo instanceInfo,*
    +Presentation.Column column, int rowIndex) {+*
    return null;*
    +}+
    public String getValue(String viewId, InstanceInfo instanceInfo, Presentation.Column column,*
    +Locale locale, String currentValue, int rowIndex) {+*
    String result = currentValue;*
    +if (column.getId().equals(VarDefinition.RECEIVED_ID)) {+*
    Time receptionTime = instanceInfo.getReceptionTime();*
    Time today = Time.now();*
    +if (receptionTime.getDate().equals(today.getDate())) {+*
    Interval relativeTime = Time.sub(today, receptionTime);*
    int relativeHours = relativeTime.getHoursOnly();*
    int relativeMinutes = relativeTime.getMinutesOnly();*
    String relativeTimeString = relativeHours > 0 ? relativeHours " h " + relativeMinutes + " m" :+*
    relativeMinutes " m";+*
    result = "<table><tr><td nowrap class=bpmWorkspaceNormalText>" +*
    +"<img src='/workspace/img/time.gif'/> Today " ++
    +"(" + relativeTimeString + " ago)</td></tr></table>";+
    +}+
    +}+
    return result;*
    +}+
    +}+

    my workspace.prop file content--\
    +#+
    +#+
    +#+
    +#--------------------+
    +# Directory Settings+
    +#--------------------+
    +# The directory ID that identifies the directory ALBPM WorkSpace connects to.+
    fuego.workspace.DIRECTORY_ID=default
    +# Specifies a remote location for the directory configuration file.+
    +#remote.config.url=http://forums/remoteConfig/directory.xml+
    +# The PRESET ID WorkSpace uses to authenticate against the servlet container.+
    fuego.workspace.container-auth.directory.preset=container-auth
    +#--------------------+
    +# WorkSpace Settings+
    +#--------------------+
    +# Not used in this version.+
    fuego.workspace.autoRefreshMenuOption=false
    +# Not used in this version.+
    fuego.workspace.refreshTimeMin=1
    +# Enables debug mode.+
    fuego.workspace.debug=false
    +# WorkSpace HTTP debugger port.+
    fuego.workspace.debuggerPort=9007
    +# WorkSpace bean helper. This class should implement the interface fuego.workspace.adapter.WorkspaceBeanHelper.+
    fuego.workspace.bean.helper.className=fuego.workspace.adapter.DefaultWorkspaceBeanHelper
    +# Enables Cookie Persistence for panel preferences+
    +# (Only supported for view selections)+
    fuego.workspace.cookie.persistence.enabled=false
    +# Specifies the timeout period in seconds, between client requests.+
    +# If not specified the default value is 45 minutes.+
    +#fuego.workspace.sessionTimeOut=2700+
    +#---------+
    +# Logging+
    +#---------+
    +# Specifies the level of detail of the information stored in the ALBPM logs.+
    fuego.log.workspace.severities=fatal,severe,warning,info,debug
    +# The detail level filters messages that correspond to the same severity. It can vary from 1 to 10.+
    +# The default detail level is 5.+
    fuego.log.workspace.detailLevel=10
    +# The location where the log files are stored.+
    fuego.log.workspace.file=E:/oracle_bpm/log/workspace.log
    +# Defines the format of the information of the first line of a log entry.+
    +fuego.log.workspace.format='[<{SEV}> 'MMdd HH:mm:ss.SSS'] {MOD} ({THR}): {INDENT}{MSG}'+
    +# Defines the format of the information of the lines that follow the first line in a log entry.+
    +fuego.log.workspace.continuationFormat='[     (cont)     ] {MOD}: {INDENT}{MSG}'+
    +# Enables OpenLog (PTSpy remote debugging)+
    fuego.workspace.enableOpenLog=true
    +#------------------------------+
    +# Process Execution Properties+
    +#------------------------------+
    +# If the current activity has the autocomplete property set to true, execute the next activity if the current user has+
    +# the required role to do so.+
    fuego.workspace.execution.performNextActivity=false
    +# Waiting time for Automatic activities in a screenflow in milliseconds. If an activity exceeds this time, the+
    +# screenflow is aborted.+
    fuego.workspace.execution.waitForAutomatics=3000
    +# Display external activities in a pop up window.+
    fuego.workspace.execution.external.newWindow=
    +#-----------------------+
    +# Process API Settings+
    +#-----------------------+
    +# Number of instances in PAPI cache.+
    +# If not defined the default value is 200.+
    fuego.workspace.papi.instancesCacheSize=10000
    +# Maximum number of participants that the API will return when performing a single query.+
    +# If not defined the default value is 500.+
    fuego.workspace.papi.maxParticipants=500
    +#----------------+
    +# Single Sign On+
    +#----------------+
    +# Enables Single Sign On (SSO).+
    fuego.workspace.enableSSO=false
    +# Custom SSO class full name. This class must implement fuego.workspace.security.SSOWorkspaceLoginInterface.+
    fuego.workspace.SSO.loginClassName=fuego.workspace.security.SSOWorkspaceLogin
    +#-------------------------+
    +# WorkSpace Customization+
    +#-------------------------+
    +# CSS file that defines ALBPM WorkSpace style.+
    fuego.workspace.stylesheet=bpmworkspace.css
    +# Image bundle file.+
    fuego.workspace.imageBundleFile=ImagesBundleSet1
    +# JSP bundle file.+
    fuego.workspace.jspBundleFile=JSPBundle
    +# Help bundle file.+
    fuego.workspace.helpBundleFile=HelpBundle
    +# Custom messages bundle file.+
    +#fuego.workspace.customMessageBundle=MyMessageBundle+
    +# Enables WorkSpace edition mode.+
    fuego.workspace.enableEditMode=true
    +# Enables WorkSpace listeners configuration.+
    fuego.workspace.enableConfigurableListenerMode=true
    +# Enables WorkSpace layout edition.+
    fuego.workspace.enableLayoutEdition=true
    +# Custom Work List Panel Decorator.+
    fuego.workspace.worklist.styleResolverClassname=customization.WorkListDecoratorImpl
    +# Custom Work List Bulk Operations.+
    +#fuego.workspace.worklist.customOperationClassname=fuego.workspace.example.MyWorkListCustomOperations+
    +# Length of the description and filename column in the Attachments table, in characters.+
    fuego.workspace.attachments.contentLength=12
    +# Theme used to display process images and activity icons.+
    +# Available values: Classic, BPMN, ColorBPMN, BusinessAnalyst and UML+
    fuego.workspace.processImageTheme=ColorBPMN
    +# Default execution type for Applications and Work List panels.+
    +# Possible values: DIALOG, POPUP+
    fuego.workspace.defaultExecutionType=DIALOG
    +# Specifies if execution dialogs are displayed maximized.+
    +# If set to false, it uses the defined width and height.+
    fuego.workspace.executionDialog.maximize=false
    +# Execution dialog width.+
    fuego.workspace.executionDialog.width=500
    +# Execution dialog height+
    fuego.workspace.executionDialog.height=600
    +# Execution popup width.+
    fuego.workspace.popupWindows.width=800
    +# Execution popup height.+
    fuego.workspace.popupWindows.height=600
    +# Defines the WorkSpace search scope policy.+
    +# Possible values: ALL, ALL_IN_ROLE, PARTICIPANT_ROLES, PARTICIPANT+
    +# Multiple policies should be separated with commas. The first value is WorkSpace default selection.+
    +# If not defined WorkSpace uses ALL policy.+
    +#fuego.workspace.search.rolePolicyScopes=ALL,ALL_IN_ROLE,PARTICIPANT_ROLES,PARTICIPANT+
    +# Enables AJAX execution for interactive components.+
    fuego.workspace.execution.ajax.enabled=true
    +# Enables Views edition.+
    fuego.workspace.views.editable = true
    +# Orientation of the audit trail process image.+
    +# Possible values: auto, vertical, horizontal.+
    fuego.workspace.auditTrail.processImageOrientation=auto
    +# Show bookmarks column+
    fuego.workspace.showBookmarksColumn=true
    +# Filters case sensitive property default value.+
    fuego.workspace.filter.caseSensitive=false
    +#-----------------------+
    +# RSS Feeds Application+
    +#-----------------------+
    +# Enables Feeds link in WorkSpace.+
    fuego.workspace.feedLinkEnabled = true
    +# Enables URL guessing for the RSS Feeds application.+
    fuego.workspace.feedUrlGuessing = true
    +# RSS feed URL. If guessing is not enabled this URL is used.+
    fuego.workspace.feedUrl=http://localhost:8080/feeds/
    +#------------------------------+
    +# WorkSpace Extension Settings+
    +#------------------------------+
    +#ALBPM WorkSpace Extension wizard uses the following properties to store configuration properties.+
    +# YOU MUST NOT MODIFY THEM MANUALLY.+
    fuego.workspace.imageServer=
    fuego.workspace.enableWE=false
    fuego.workslace.collaboration.supportedLanguages=af, sq, ar, eu, be, bn, bg, ca, zh_CN, zh_TW, kw, hr, cs, da, nl, en, eo, et, fo, fi, fr, gl, de, el, he, hi, hu, is, id, ga, it, ja, kl, ko, lv, lt, mk, mt, gv, mr, nb, nn, fa, pl, pt, ro, ru, sr, sk, sl, es, sw, sv, ta, te, th, tr, uk, vi
    +# DO NOT REMOVE THIS LAST LINE+

  • BPM 11g urgent questions

    Questions:
    1, we don’t want to have the “Bulk Actions” function. Is there a way to delete the select column and bulk action function?
    2, how to change a worklist table header? For instance, can we change the “Participant” to “Assigned to”?
    3, almost all the workspace customizations are done by modifying files in OraBPMStudioHome. These customizations will apply to all projects. Is there a way to make project specific customizations? If we have two projects running at the same time, how should we do the project specific customizations?

    Hi user586942,
    You can customize the columns by creating your own view of the inbox. You can select whichever columns you want. You can use flex fields to add columns with data from the form. These changes are process/user activity specific so you can have a different view for each process.
    Here is where you can read about flex fields
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e15175/bpmug_ws_admin.htm#sthref118
    For your question on bulk actions, which tool are you using?
    Heidi.

  • Setting the text color

    Hi
    Does anybody know the syntax for changing the text color for workspace customization ?
    like for backgorund color ,we have color = "background-color:IndianRed"
    Ritu

    Hi Ritu,
    If you're trying to change the color inside of the bpmworkspace.css (the default CSS for the Workspace) to Indian Red you could do this:
    .bpmWorkspaceHeaderUser {
         background-color:#cd5c5c;
         width:100%;
         text-align:right;
    . . .If you're trying to change the background or foreground color of a label or field on a BPM Object presentation, you could do this:
    // set the first label on a presentation to Red
    setForegroundColor this
       using componentId = "label0", 
          color = Fuego.Ui.Color.INDIAN_RED.rgb()
    // set the first text field's background color to Red
    setBackgroundColor this
       using componentId = "text0", 
          color = Fuego.Ui.Color.INDIAN_RED.rgb()This logic would be run from inside a BPM Object's method to dynamically change colors on a Presenation. This would set the first label's ("label0") foreground and the first text field's ("text0") background color to Indian Red. You'd normally have the method invoked either as an initialization method for the presentation (click the outer edge of a presentation -> click the "Properties" tab -> change the method invoked when the presentation initializes by changing the "Initialization method" property) or as the method invoked by a field's "On change invoke" property.
    Note that "label0" and "text0" are the names of the label and text fields on a specific BPM Object's presentation and not the name of an attribute inside the BPM Object. To uncover their specific names, open the BPM Object presentation -> click the label or field -> open the "Properties" tab on the right -> look at the value inside the "Name" field.
    You can see the other colors available if from the Project Navigator tab if you expand the "Catalog" -> expand "Fuego" -> expand "Ui". The upper case attributes listed are enumerations. The string's needed for the "setForegroundColor" and "setBackgroundColor" methods are returned using the catalog's Fuego.Ui "rgb()" method.
    Hope this helps,
    Dan

Maybe you are looking for