Searching: Hana XS based workflow application

Dear Colleagues,
i´m searching for small webbased application for a mini approval process.
1) User opens webpage and click apply button
2) Email to approver
3) Approver open webpage with requests and can confirm or cancel
4) If confirm --> procdure and email confirmation
5)If cancel --> email notification
Does some of you have something similar just on your computer?
Thanks kristian

Hi Fernando,
Thanks for the suggestion. That seemed to work, though it is strange that it is not one of the *.xs.* application privileges. So, just to be clear, here are the application privileges I have now in order to use the web based IDE:
Thanks,
Kevin

Similar Messages

  • BC E-commerce integrated with Subscription Based Web Application

    I am considering using BC for my company's corporate website as well as the online store.  We sell a subscription based web application which will have 3 or more flavors (products) and will need to bill customers on a recurring monthly or annual basis.
    For the monthly subscriptions, we want to bill the customer based on the "highwater" mark with regards to user quantity for that given month.  This gives the users the flexibility to add/remove users freely without the fuss of having to contact a sales representative to adjust their account/recurring order. 
    I would imagine this would happen one of two ways:
    The user signs up creating their account both in our web application and the ecommerce site and is billed for the first time.  In the ensuing months, either: the e-commerce site communicates with our web application to get the high water mark quantity for that billing cycle or
    Our web application sends a new order each month to the e-commerce site, including the highwater mark quantity, giving the illusion to the user that it is indeed a recurring order but behind the scenes they are actually individual orders.
    Annual subscription customers are a bit more challenging.  We still want the users to have the flexibility to add/remove users with minimal effort. However, since they are being billed on an annual basis, prorating additional users will be necessary.  So if customer who previously purchased 5 licenses, adds 5 more licenses during month 6 of their annual subscription term, we would need the e-commerce solution to bill them once immediately for the 50% prorated 5 licenses, then bill them 6 month's later for the total 10 license subscription renewal.
    At a bit of higher level, we would prefer the customer to manage all their billing/account info within our web application rather than going to an external store to do so.
    One other caveat, we would prefer not to store credit card info on our site.  Preferably that would be stored in our payment gateway (Auth.net).  This may or may not affect the workflows described above.
    My Questions:
    Can the BC e-commerce solution support the workflows above?If so, is there any documentation/resources available to research this further?
    Are there any BC customers that currently do something similar?  If so, who and how similar?

    Hi Greg,
    From what you have described it seems to me that you need some complex server side logic which BC doesn't allow. In any case you'd have to develop an app that communicates between BC and that other application through our API, which will control the orders as per your requirement. In particular, there's no easy way for end user to control their recurring monthly or annual subscription, there's no way to apply immediate discounts according to earlier purchases that will satisfy this requirement "if customer who previously purchased 5 licenses, adds 5 more licenses during month 6 of their annual subscription term, we would need the e-commerce solution to bill them once immediately for the 50% prorated 5 licenses, then bill them 6 month's later for the total 10 license subscription renewal", you can't build in this functionality into BC " the e-commerce site communicates with our web application to get the high water mark quantity for that billing cycle" and there are few more things there which suggest to me that you need something custom.
    Cheers,
    -mario

  • How to use Crystal report viewer in a portlet based web application

    I am using JRC to view crystal reports in porlet based web application. Following is the code in JSP
    <%@ page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase" %>
    <portlet:defineObjects />
    <%
         // This sample code calls methods from the CRJavaHelper class, which
         // contains examples of how to use the BusinessObjects APIs. You are free to
         // modify and distribute the source code contained in the CRJavaHelper class.
         try {
              String reportName = "ProactiveEventsSummaryData.rpt";
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   //clientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString);
                                  clientDoc.setReportAppServer("inproc:jrc");
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
              // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
                   // Create the CrystalReportViewer object
                   CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
                   String reportSourceSessionKey = reportName+"ReportSource";
                   Object reportSource = session.getAttribute(reportSourceSessionKey);
                   if (reportSource == null)
                        reportSource = clientDoc.getReportSource();
                        session.setAttribute(reportSourceSessionKey, reportSource);
                   //     set the reportsource property of the viewer
                   crystalReportPageViewer.setReportSource(reportSource);
                   // Apply the viewer preference attributes
                   // Process the report
                   crystalReportPageViewer.processHttpRequest(request, response, application, null);
              // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
         } catch (ReportSDKExceptionBase e) {
             out.println(e);
    %>
    With this code , report gets displayed in the portlet but none of the actions on thre report like next page click , search button , opening subreport , clicking on drill-downs are working . The error in the explorer console is as shown below
    Error: CrystalViewerCrystalEvent is not defined
    javascript:CrystalViewerCrystalEvent('CrystalViewer',%20'tb=next')
    PageSource of the web page shows the CrystalViewerCrystalEvent javascript function defined but for somereason its not recognized by the portlet. Has anyone worked on displaying crystalreports in a portlet ?

    Code attached
    <%@ page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase" %>
    <portlet:defineObjects />
    <%
         // This sample code calls methods from the CRJavaHelper class, which
         // contains examples of how to use the BusinessObjects APIs. You are free to
         // modify and distribute the source code contained in the CRJavaHelper class.
         try {
              String reportName = "ProactiveEventsSummaryData.rpt";
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   //clientDoc.setReportAppServer(ReportClientDocument.inprocConnectionString);
                                  clientDoc.setReportAppServer("inproc:jrc");
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
              // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
                   // Create the CrystalReportViewer object
                   CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
                   String reportSourceSessionKey = reportName+"ReportSource";
                   Object reportSource = session.getAttribute(reportSourceSessionKey);
                   if (reportSource == null)
                        reportSource = clientDoc.getReportSource();
                        session.setAttribute(reportSourceSessionKey, reportSource);
                   //     set the reportsource property of the viewer
                   crystalReportPageViewer.setReportSource(reportSource);
                   // Apply the viewer preference attributes
                   // Process the report
                   crystalReportPageViewer.processHttpRequest(request, response, application, null);
              // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
         } catch (ReportSDKExceptionBase e) {
             out.println(e);
    %>
    Edited by: teethoma on Nov 30, 2009 10:06 AM

  • Configuring Dynamic drop down in ABAP Function Module based VC application

    Dear Expert,
    Can someone help me in configuring Dynamic Drop down list in ABAP function module based
    VC application, so that all the backend data like material description list should display in drop down list followed by * search.
    Thanks & Regards,
    Kundan

    Hi Anja,
    As you suggested i design a combo box with dynamic entry list. But it not displaying any item for selection. Combo box is showing empty. Can you please help me in this so all the backend list should display in combo box dynamically?
    Thanks,
    Kundan

  • Error when accessing a struts based JSP application

    Hello
    I have a JSP based web application, based on the struts framework. When I deploy this on a Sun ONe application server 7 , on s SunOS 5.8 machine, I get the following errors when I try to access the starting page. Is there something special which needs to be done for struts to work with the application server. ANy help is appreciated
    Regards
    - Aniruddha
    [07/Jan/2003:14:53:48] SEVERE ( 54): ApplicationDispatcher[acweb1] Servlet.se
    rvice() for servlet jsp threw exception
    javax.servlet.ServletException: Cannot find bean under name com.actuate.locales
    at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContext
    Impl.java:471)
    at jasper.private._login_jsp._jspService(_login_jsp.java:1187)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.j
    ava:552)
    at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:368)
    at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:287)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatch
    er.java:723)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispa
    tcher.java:444)
    at org.apache.catalina.core.ApplicationDispatcher.access$000(ApplicationDisp
    atcher.java:123)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedForward.run(Appl
    icationDispatcher.java:138)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatc
    her.java:355)
    at org.apache.struts.action.ActionServlet.processActionForward(ActionServlet
    .java:1759)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1596)
    at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:492)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.StandardWrapperValve.invokeServletService(Standa
    rdWrapperValve.java:720)
    at org.apache.catalina.core.StandardWrapperValve.access$000(StandardWrapperV
    alve.java:118)
    at org.apache.catalina.core.StandardWrapperValve$1.run(StandardWrapperValve.
    java:278)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve
    .java:274)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:50
    5)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve
    .java:212)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:50
    5)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve
    .java:212)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:50
    5)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:
    203)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:50
    5)
    at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor
    .java:157)
    at com.iplanet.ias.web.WebContainer.service(WebContainer.java:598)
    ----- Root Cause -----
    ----- Root Cause -----
    javax.servlet.jsp.JspException: Cannot find bean under name com.actuate.locales
    at org.apache.struts.taglib.html.OptionsTag.getIterator(OptionsTag.java:383)
    at org.apache.struts.taglib.html.OptionsTag.doEndTag(OptionsTag.java:222)
    at jasper.private._login_jsp._jspService(_login_jsp.java:942)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.j
    ava:552)
    at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:368)
    at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:287)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatch
    er.java:723)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispa
    tcher.java:444)
    at org.apache.catalina.core.ApplicationDispatcher.access$000(ApplicationDisp
    atcher.java:123)
    at org.apache.catalina.core.ApplicationDispatcher$PrivilegedForward.run(Appl
    icationDispatcher.java:138)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatc
    her.java:355)
    at org.apache.struts.action.ActionServlet.processActionForward(ActionServlet
    .java:1759)
    at org.apache.struts.act

    Hi Experts,
    Please give me a solution for this.
    I am accessing the function like this in Webdynpro java
    wdComponentAPI.getMessageManager().reportSuccess("Inside MAT Search");
    Zmm_Bapi_Ptip_Search_Input input = new Zmm_Bapi_Ptip_Search_Input();
    wdContext.nodeZmm_Bapi_Ptip_Search_Input().bind(input);
    Zptip_Mat inputMat = new Zptip_Mat();
    inputMat.setMaktx(wdContext.currentVn_InputElementsElement().getVa_MatDesc());
    inputMat.setMatnr(wdContext.currentVn_InputElementsElement().getVa_MatNo());
    inputMat.setWerks(wdContext.currentVn_InputElementsElement().getVa_Plant());
    inputMat.setSearch("MCRS");
    wdComponentAPI.getMessageManager().reportSuccess("B4 Execution");
    wdContext.currentZmm_Bapi_Ptip_Search_InputElement().modelObject().execute();
    wdComponentAPI.getMessageManager().reportSuccess("After Execution");
    } catch (Exception e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    wdComponentAPI.getMessageManager().reportSuccess("Error in Material Search"+e.getMessage());
    wdComponentAPI.getMessageManager().reportException(e.getLocalizedMessage(),true);
    Please leet em know, if anywhere i am going wrong.
    Thanks & Regards,
    Palani

  • Migrating Oracle WorkFlow Applications to BPEL SOA 11G

    Hi Gurus,
    I am a SOA developer working on SOA 11g projects , My client has a requirement to migrate the existing Oracle WorkFlow Applications to get migrated to 11G , On Googling i got http://www.oracle.com/technetwork/middleware/ias/owf2bpel-132189.pdf which was much informative , since i have no knowledge of Oracle WorkFlow Product , i am finding it hard to migrate these applications.
    It would be great if some one can post a conversion of OWF to Bpel tutorial or direct me to location where i can find some , which would save a lot of time for me .
    Thanks in Advance
    Vamsi .

    Hi,
    While configuring the Oracle Apps Adapter, select the database connection, give the JNDI, then the Oracle Applications Module Browser will appear, make sure you select the correct module here (there will be many like Financials..etc). My suggestion would be, ask the EBS experts as under which module will that API be there ?
    If you can get to know under what module it will be there, you need to select that module, and look inside it, it should be there under something like concurrent API's. I have implemented the Oracle Apps adapter many times, so even if you dont find the API, first get to know the container module, then you should be good to go. Also in the step of Module Browser, on the top; you have an option of searching for API's like wild card search etc...
    Hope this helps,
    N

  • Font Anti-Aliasing Issues in HTML/Ajax based Air Applications

    It seems that the font-renderer in HTML/Ajax based Air Applications is using some kind of sub-pixel font renderer that is overriding and vastly inferior to the standard Windows ClearType, or any Apple based option as well.  This problem is particularly noticable with light text on a dark background, and made worse the smaller the text is.  I've put together an example image explaining exactly what I mean at: http://regator.com/fontRendering.png   (it's a large image 1126 x 1500 px)
    My example shows two fonts at four different sizes rendered in an HTML Air App vs the default Windows Cleartype, as well as using Safari to show the Font style anti-aliasing.  In all cases the HTML Air App rendering is far more difficult to read, and in many cases severely distorts the color of the text in a way that other subpixel algorithms do not.  As far as I can find after literally hours of googling and searching there's no way to override this in HTML based applications.  Is there any solution to this, or a planned fix for the renderer?  Other than this rendering issue, the HTML interface for creating Air apps is absolutely brilliant, this is just making my finished product look significantly less polished than it otherwise would if the text were more readable.
    Thanks.

    Dear caturner81, dear Adobe,
    is there a solution to this problem? I'd really love to fix the aliasing thing in Air/HTML!

  • Re: I : Workflow applications -Reply

    Daniela,
    We at Claremont Technology Group are in the implementation stage of a
    Forte/Workflow system for Public Employee Retirement systems. We are using
    Action Technologies' "Action Workflow" to handle the workflow portion of the
    application. Action has an API set that allows you to build a custom workflow
    system with any development tool. Integration with Forte is fairly complex as
    all API's need to be wrappered. Action is very expensive, and their technical
    support staff has not been real helpful to date, as they aren't familiar with
    Forte. If you have any questions, feel free to email me.
    To: forte-users @ Sagesoln.com (forte user group) @ Internet
    cc: (bcc: Michael George/Central Region/Claremont)
    From: Daniela.Chiaberto @ CSI.IT (Chiaberto Daniela) @ Internet @ WORLDCOM
    Date: 09/18/96 09:09:37 AM CDT
    Subject: I : Workflow applications -Reply
    I forward this reply to the list because I think it can be of general
    interest.
    Dear Forte users,
    we have to develop applications based on workflow concepts, having to to
    manage the flow of administrative documents in the Public Administration
    world.
    Has anyone had any experiences of developing such applications using Forte
    technology (by itself or integrated with some workflow or groupware
    specific products)?
    Do you have any ideas?
    Any suggestions would be very appreciated.
    Thanks
    Daniela
    >>--------
    Chiaberto Daniela
    CSI-PIEMONTE
    Cso Unione Sovietica 216
    10134 Torino ITALY
    tel: +39 11 4618332
    fax: +39 11 4618471
    e-mail: [email protected]
    Hi, Daniela
    This spring I evaluated and tested more than 20 the most
    wide-spread workflow packages. The idea was not to develop
    this part of our Forte Application by ourselves, but try to
    incorporate into it COTS software. The only package that
    was very close to be incorporated (through using OLEGEN),
    and I was able to create classes in Forte and run very simple
    application, was ViewStar.
    Unfortunately, the real implementation of workflow part in our
    system was postponed till the next phase, so we just keep
    this in mind. And ViewStar costs a lot of money.
    If You need details, please, drop a e-mail.
    Pavel
    Pavel Ryzhkov
    Price Waterhouse LLP
    BDM Integration Team
    [email protected]

    Hi
    You should turn the unit upside down and should wait until the unit dried.
    In best case the unit should power up properly but it could be possible that your motherboard or another part like RAM module or keyboard could be affected.
    Something similar happened to my girlfriends notebook. In my case the RAM module was dead and notebook could not boot up I replaced the RAM and was happy to see the Toshiba splash screen

  • Error in IAC based workflow through UWL

    Hi ITS Gurus,
    I was using WS20000081 leave request service in ITS 620 and SAP Inbox(BWSP) and it was working fine. Now we have upgraded the R/3 system to ECC 6.0 and published all the services to Integrated ITS 7.00 and the Kernel patch level is 55 and Basis support package is 7.
    a. I understand from a note 841785 that BWSP cannot be used in Integrated ITS. IS it true? is there any workaround to use BWSP in integrated ITS.
    b. I started trying it with UWL. In the UWL i can see the leave request task for approval. When i click the task, i can see the approval screen. When i click approve or reject, the screen does not close and the work item does not get completed and the workflow is strucked. I tested other workflows in UWL which are not ITS based, and they are working fine, only the Integrated ITS based workflows are not working in UWL. I dont know where the problem lies, whether at UWL or at Integrated ITS.
    Would appreciate your advice to solve the problem.
    Regards
    Sundar

    Hi Sundar,
    From my point of view this is definitely no ITS problem.
    Let me explain why.
    The IAC sbwp creates a frameset which controls the complete process chain of a workflow. This means there is application (programming) logic which controls the starting, executing and ending of a workitem.
    ITS provides the technique but not the programming logic.
    The UWL is an application which can start a workflow but doesn't take care of the result and that seems to be the problem. UWL should control the execution and ending of a workitem to update his list of workitems (according to user decisions).
    It was not the decision of the ITS team to stop support for IAC sbwp with Integrated ITS. You might adress a developemnt request on the relevant component (BC-BMT-WFM) to urge them to support bwsp with Integrated ITS as well.
    Thanks and regards,
    Dieter

  • SAP HANA Web-based Development Workbench Privileges

    I can get into and use the SAP HANA web-based development workbench as the SYSTEM user, but I cannot as other users.
    http://localhost:8005/sap/hana/xs/ide/editor/
    Currently as any other user, I get the following error: "Request execution failed due to missing privileges"
    What are the appropriate privileges that need to be set in SAP HANA Studio to access the web based IDE?
    Currently, just messing around with the privileges in SAP HANA Studio, if I set the following application privileges, I can at least log in as another user besides SYSTEM.
    However, I cannot get any of the files to display in the editor portion of the SAP HANA web-based development workbench. A possibly related error in the log console: "13:10:12 >> Error in WebSocket Connection to backend."
    I found this thread discussing the same issue I believe, but the solution I would imagine is not correct: HANA XS Administration | SAP HANA
    Thanks,
    Kevin

    Hi Fernando,
    Thanks for the suggestion. That seemed to work, though it is strange that it is not one of the *.xs.* application privileges. So, just to be clear, here are the application privileges I have now in order to use the web based IDE:
    Thanks,
    Kevin

  • Custom search for Catalog based on UDF fields combination

    Can we customize in OIM 11g R2 PS1 to search catalog items based on multiple fields (similar to User search scenarios). If someone has to search based on combination of 2-3 custom attributes e.g. UDF fields , is it possible ? do we need to do complex changes in code through Catalog APIs ?
    Edited by: Shashi kiran on May 15, 2013 9:45 AM
    Edited by: Shashi kiran on May 15, 2013 9:49 AM

    In my scenario , i have to customize catalog search with combination of 2-3 attributes including UDF attributes with standard attributes (Application Instance, Role and Entitlement). As, these 3 attributes (Application Instance, Role and Entitlement) are by default out of box ,present for catalog search we can use their combination for catalog search.
    But, what if along with these standard attributes ,if there are other custom attribute like UDFs (e.g. : Sub application,Domain,etc) in combination ?
    Is this customization for catalog search is possible through UI or do we have to make changes in Source Code exposing catalog APIs to work this scenario out ?
    Edited by: Shashi kiran on May 16, 2013 12:06 PM

  • Design pattern for role based workflows

    Hello,
    I'm new to APEX and I am wondering whether it is easily possible to design a multi role workflow application without creating a new page for each workflow step.
    I'll try to explain what I mean:
    Assume we have 2 roles and a workflow with several steps. The 2 roles work on one single document, and they complete it step by step. In each step, additional information is added to the document by one of the roles while information already entered is visible, but cannot be changed any more (except if the user goes one step back to a state where the information can be edited).
    Is there an easy way to define such a flow of steps (which can be modeled by a state machine) ?
    Is there an easy way to define which fields in a page are visible or editable depending on the current step (i.e. on the state of the document) ?
    Is there an easy way to define which fields in a page are visible or editable depending on the role of the user ?
    Maybe you can point me to some documentation or give me some APEX specific key words as a hint.
    Thank you,
    Markus

    I am wondering whether it is easily possible to design a multi role workflow application Depends on your definition of easily ;-)
    >
    I'll try to explain what I mean:
    Assume we have 2 roles and a workflow with several steps. The 2 roles work on one single document, and they complete it step by step. In each step, additional information is added to the document by one of the roles while information already entered is visible, but cannot be changed any more (except if the user goes one step back to a state where the information can be edited).
    Is there an easy way to define such a flow of steps (which can be modeled by a state machine) ?
    >
    Not clear on what's really involved here. Could you expand on what you mean by "document"? What's involved in completing a step? Do you have an existing implementation of a "state machine"?
    without creating a new page for each workflow step.Can you clarify this requirement? All steps in a workflow are shown on one page? Or you want a generic workflow application (based on an underlying flexible data model/"state machine"?) rather than an APEX application that automates one particular workflow?
    Is there an easy way to define which fields in a page are visible or editable depending on the current step (i.e. on the state of the document) ?Yes. See Conditional Rendering and Processing and Displaying Read Only Page Items.
    Is there an easy way to define which fields in a page are visible or editable depending on the role of the user ?Yes. See Authorization.

  • SSO from portal to Java based web application not happening

    Hi,
    We are trying to configure SSO from SAP Enterprise portal with Java based
    web application(Solaris on SPARC 64 bit).
    Then we downloaded library files for "Solaris on SPARC 64 bit" from
    service market place from the path "Support Packages and Patches"
    Additional Components" SAPSSOEXT".
    We are successful in sending the portal side cookie to the application.
    But while loading the library files we get the following error
    INFO | jvm 1 | 2009/04/13 04:47:00 | java.lang.UnsatisfiedLinkError:
    /usr/local/blackboard/apps/tomcat/lib/libsapssoext.so: ld.so.1: java:
    fatal: /usr/local/blackboard/apps/tomcat/lib/libsapssoext.so: wrong ELF
    class: ELFCLASS64 (Possible cause: endianness mismatch)
    Can you please suggest us what went wrong in this whole process.
    But when i tried with the 32 bit library files i was able to load libsapssoext.so file but when I
    tried to initialize libsapsecu.so i got the below message
    java.lang.Exception: MySapInitialize failed: rc= 14
    Also do we require to take"SAPSECULIB" from Support Packages and Patches" ...>Additional Components" ...>SAPSECULIB" ...>SAPSECULIB 5.4  for this SSO activity.
    Please get back on this ASAP as we are nearing the golive date.
    regards
    Bharath

    hi,
    am facing similar issue... i.e.
    java.lang.Exception: MySapInitialize failed: rc= 14
            at com.mysap.sso.SSO2Ticket.init(Native Method)
            at com.mysap.sso.SSO2Ticket.<clinit>(SSO2Ticket.java:27)
            at org.apache.jsp.index_jsp._jspService(index_jsp.java:92)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
            at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
            at java.lang.Thread.run(Thread.java:619)
    static beendet.
    java.lang.Exception: MySapEvalLogonTicketEx failed: standard error= 9, ssf error= 0
    CustomeSSO: Object is null.
    pls. help me in resolving it.
    rgds,
    santosh malavade

  • I want to create a Ajax based Chating application using java .

    hi . I want to create an chating Application , and ajax based chatting application using java as my server side language ..i have some idea about it .. but one thing that i m not understanding is that how i will communicate with other users because each user has its own session so what i will do to send one messge to all the users ???? . i m new to JavaEE and i have chosen this as my semester project .. i need some help regarding this .

    First get it working without AJAX.

  • Problem with Hierarchies in BPS- Web-Based Planning Applications

    Im trying to use a Web-Based Planning Application in BPS. The Datacolumns consist of a charecterisitc with a hierarchy. this hierarchy is time dependend. The timeframe is set correctly but i still receive an the following error message in my web browser:
    "Hierarchy 'Hierarchy_name' is not valid for date 26.06.2004"
    Does this error message look familiar to anybody? In the moment I have no clue what went wrong

    Hello Tobias,
    I assume you are talking about error message UPC 413 (it always helps to mention the message class and number). Please check table RSHIEDIR. The hierarchy you are using is not valid for the key date you specified (RSHIEDIR-DATEFROM > KEYDATE or RSHIEDIR-DATETO < KEYDATE). If you do not enter a key date in the planning area, the system will always use the system date. So either use a different hierarchy or maintain it differently to be valid on keydate (26.6.2004).
    Regards,
    Marc
    SAP NetWeaver RIG, US BI

Maybe you are looking for