Can we use BPM inside ESR in SAP PO Java Stack?

Hi All,  I had worked in dual stack SAP PO 7.3 also where I've used ccBPM. Now, I'm working in SAP PO 7.31 single stack environment. In ESR, under Process Integration Scenerio Objects -> i'm seeing 'Integration Process' and 'Monitoring Process'. Is it true that whatever we could do it in ccBPM(PO 7.30 dual stack) can be also done under the option Integration Process in SAP PO 7.31 single stack? 
If the answer is true, then why do we need SAP NW developer studio to do BPM?
Thanks,
Raj

Hi Raj,
Please go through below document. It may help you in understanding the difference between ccBPM & NW BPM.:
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90308598-4b8d-2f10-4a9a-b78973859665?QuickLink=index&overridelayout=true&55357833497094
Regards,
Akshay

Similar Messages

  • How can i use JSTL inside custom tag attribute

    Hi,
    I have one button tag which displays the button with round corner. I will show the button like this:
    <ep:button key="buttons.submit" name="submitBtn" styleClass="But"
              onClick='submitPage(''<c:out value='${buttonName}' />)' />
    I am getting the problem with the above code. how can i use JSTL inside the custom tags.
    Thanks in Advance,
    LALITH

    No. The details are given below:
    I have included the follwing line in web.xml file:
    <taglib>
        <taglib-uri>/tags/button</taglib-uri>
        <taglib-location>/WEB-INF/button.tld</taglib-location>
      </taglib>button.tld file
    <taglib>
         <tlibversion>1.0</tlibversion>
         <jspversion>2.0</jspversion>
         <shortname>button</shortname>
         <tag>
              <name>button</name>
              <tagclass>com.ksi.ep.web.taglib.ButtonTag</tagclass>
              <bodycontent>empty</bodycontent>
              <attribute>
                   <name>name</name>
                   <required>true</required>
                   <rtexprvalue>false</rtexprvalue>
              </attribute>
              <attribute>
                   <name>key</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
              <attribute>
                   <name>onClick</name>
                   <required>true</required>
                   <rtexprvalue>true</rtexprvalue>
              </attribute>
    </taglib>ButtonTag.java :
    public class ButtonTag extends TagSupport {
       private static final long serialVersionUID = 6837146537426981407L;
         * Initialise the logger for the class
        protected final transient Log log = LogFactory.getLog(ButtonTag.class);
         *  holds the Value of the button tag
        protected String onClick = null;
         *  holds message resources key
        protected String key = null;
         * The message resources for this package.
        protected static MessageResources messages =
                             MessageResources.getMessageResources
                                       ("ApplicationResources");
          *  (non-Javadoc)
          * @see javax.servlet.jsp.tagext.TagSupport#doStartTag()
         public int doStartTag() throws JspException {    
            StringBuffer label = new StringBuffer();         
            HttpServletRequest request = (HttpServletRequest)pageContext.getRequest();
            try {             
                   log.debug("in doStartTag()");
                   Locale locale = pageContext.getRequest().getLocale();
                 if (locale == null) {
                     locale = Locale.getDefault();
                 log.info("");
                 label.append("<a border=\"0\" style=\"text-decoration:none;color:#FFFFFF\" href=\"JavaScript:");
                 label.append(onClick);
                 label.append("\" >");
                   label.append("<table  onClick=\"");
                   label.append(onClick);               
                   label.append("\" ");
                   if(onmouseout!=null && !"".equalsIgnoreCase(onmouseout))
                    label.append(" onmouseout=\"");
                    label.append(onmouseout);               
                    label.append("\" ");
                   if(onmouseover!=null && !"".equalsIgnoreCase(onmouseover)){
                    label.append(" onmouseover=\"");
                    label.append(onmouseover);               
                    label.append("\" ");
                   if(title!=null && !"".equalsIgnoreCase(title)){
                    label.append(" title=\"");
                    label.append(title);               
                    label.append("\" ");
                   label.append("style=\"cursor:hand\" tabindex=\"1\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" background=\"");
                   label.append(request.getContextPath());
                   label.append(System.getProperty("file.separator"));
                   label.append("images");
                   label.append(System.getProperty("file.separator"));
                   label.append("background1.jpg\" > ");
                 label.append("<tr><td width=\"10\"><img  border=\"0\" src=\"");
                 label.append(request.getContextPath());
                   label.append(System.getProperty("file.separator"));
                   label.append("images");
                   label.append(System.getProperty("file.separator"));
                 label.append("leftcorner.jpg\" ></td> ");
                 label.append("<td valign=\"middle\"  style=\"padding-bottom:2px\"><font color=\"#FFFFFF\" style=\"");
                 label.append(styleClass);
                 label.append("\">");
                 label.append(messages.getMessage(key));
                 label.append("</font></td>");
                 label.append("<td width=\"10\" align=\"right\"><img src=\"");
                 label.append(request.getContextPath());
                   label.append(System.getProperty("file.separator"));
                   label.append("images");
                   label.append(System.getProperty("file.separator"));            
                 label.append("rightcorner.jpg\" border=\"0\"  ></td>");
                 label.append("</tr></table></a>");
                 pageContext.getOut().print(label.toString());
              } catch (Exception e) {               
                   log.error("Exception occured while rendering the button", e);
                   throw new JspException(e);
            return (SKIP_BODY);
         * Release all allocated resources.
        public void release() {       
            this.name=null;
            this.key=null;
            this.onClick=null;
    }In my JSP I have mentioned the taglib directive as
    <%@ taglib uri="/tags/button" prefix="ep"%>and
    <ep:button key="buttons.submit" name="submitBtn" styleClass="But"
         onClick='overwritePreApprovals('<c:out value='${transactionalDetails['inPrepList']}' />')' />Servlet.service() for servlet action threw exception
    org.apache.jasper.JasperException: /pages/pms/coordinator/Dashboard.jsp(325,48) Unterminated <ep:button tag
    Thanks,
    LALITH

  • Can i use single database connection in a hole java application?

    can i use single database connection in a hole java application?.I have so many forms to use database connection.

    Theoretically you can. Not only theoretically. I've seen lots of application which only uses one database connection (they were using, oracle or mysql)
    The first reply given here assumed that the answer to
    your question depends only on the design of your
    application. That is not true.Yes it's true. Nothing in the original questions says that you aren't allowed to open or close the single connection that you have. It's looks more like the OP is interested in sharing a connection (i.e having a singleton or a connection pool with only one connection)
    It does also depend on the behaviour of the database
    in the background.
    Most databases have a time out for connections that
    are idle Not a problem. Most implementations of connection pools and applications which keeps a connection open have a timer which calls e.g. select * from dual (if you are using oracle) when the connection has been idle for X minutes.
    (some, like db2 on z/OS, even cancel
    connections, that are not idle, if they are open a
    certain amount of time or have reached a given limit
    of cpu seconds.)You would also have that problem if you had a connection pool with several connections.
    In essence: If you have no control over the time
    your application runs (and therefore your connection
    is open) or over type or the configuration of the
    database you are accessing, you can't do it.See above.
    The closest thing to what you want would be using
    PooledConnections, iif those are supported for the
    database you want to access.Not true.
    Kaj

  • How can I using functions implicit in dll file in java code ?

    How can I using functions implicit in dll file in java code ?
    I'm developing a program that interfacing with fingerprint hardware.
    I have the finger print already, and I have to the SDK that have all functions for managing this fingerprint.
    These SDK functions are represented in dll files.
    I want to know how can I use these functions in java code .
    I looked on this link of sun forums :
    http://forum.java.sun.com/thread.jspa?threadID=305171&messageID=1215613
    but I don't Understand the meaning of native code.
    Thanks for help.

    please please please please please please please please help me:
    After reading a lot of articles, tutorials, and overviews about JNI (Java Native Interface)
    I found that these steps
    1.     Develop the Java code
    2.     Compile the Java code to a class file
    3.     Generate the header file
    4.     Implement the native method
    5.     Create the shared library or DLL
    6.     Run the Java program
    Is the common steps in JNI development
    The most powerful link was
    http://java.sun.com/docs/books/jni/html/start.html
    and
    http://www.netbeans.org/kb/55/beginning-jni-part2.html
    and the pdf oh this link
    http://www.ibm.com/developerworks/edu/j-dw-javajni-i.html requiring IBM registration to download it.
    But I have already the DLL, and want to the stright forward way to use its functions by java code only.
    I don not to write any C++ code .
    Is this possible???????????????????????????????
    The name of these dll is �zkemsdk.dll�
    It developed by ZKSOFTWARE company for managing a finger print �NP1500A�of
    http://www.napcogulfsecurity.com/finger_print.asp
    thanks for help

  • Can I use "Adobe X Pro" to debug the java code in adobe forms?

    HI,
    Can I use "Adobe X Pro" to debug the java code in adobe forms?, if not how do i debug the java code written in the adobe form.

    I have the adobe acrobat x evaluation version installed, please find the print shot attached, I have pressed CTRL+J in the preview mode, but nothing came up.
    Am I doing something wrong..

  • What PM work order can be used for improvement work in SAP PM?

    We have the following work orders in PM:
    PM01- preventive maintenance order
    PM02-breakdown maintenance order
    PM03-general maintenance order
    PM04-refurbishment order
    PM05-calliberation order
    PM06-predective maintenance order
    We need  a work order that can be used against all tasks related to improvements, performance enhancements.
    Does any existing work order holds these charasteristics?

    Hi
    In my opinion any work which will enhance the life of the equipment/asset then it should be under capital investment order and for other enhancement/performance you can define another order type like Upgradation/Alteration of Machinery.
    Regards,
    Anupam Sharma

  • How can i use or embed  the ' C'  language in java

    thanks a lot friends for your suggestion on using 'c' language to implement the control of the keyboard ie. to prevent a key stroke of : ctrl+alt+delete keys from closing a running java application. i was advised that it won't be possible to implement this with java language, the use of 'C' language was suggested. i then wish to ask the following:
    1. how can i use 'C'language in a java program and be able to compile to program so that the resultant program can help me prevent the closing of my java-application when the user of the application presses the following keys : ctrl+alt+delete. i don't even know the c language at all. how can i start and how can i combine the resultant code with java.
    2. i'm thinking of creating an application that retrieves information from a database, like microsoft sql or oracle, and displays the resultant data from a table, say STUDENT TABLE, in a java application using the JTable class. i don't even know how to use this JTable but i've seen it used and know it will suit what i have in mind.
    3. how can i make the table dynamic, ie. how can i make the table to immediately register / show the result of an update to the 'STUDENT' table in the database.
    4. THANKS FOR YOUR HELP IN ADVANCE. i will most appreciate it if you can give me a sample code or a site where i download one. once again thanks.

    Good luck disabling Ctrl+Alt+Del! I've read quite a bit about it, and at least on Windows 2000 (not sure about NT) or higher, disabling it is next to impossible. Problem is CAD is a system command, and the OS doesn't even send the keys to the active program. Ctrl+Alt+Del is handled by the GINA (Graphical Identification and Authentication) DLL installed on the system. You'll have to write and export the functions you need and change the GINA DLL used by the system to your own. Bear in mind that any small mistake in the dll can cause you to lose access to your computer if you haven't taken precautions!
    On Windows 95/98, disabling Ctrl+Alt+Del is fairly easy as you just have to write some simple native code to fool the system that a password protected screensaver is running.
    I've provided a link regarding winlogon and GINA here, but you've been forewarned!
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/security/security/winlogon_and_gina.asp

  • Install SAP BW Java Stack on SolMan server

    Hi.
    Regarding the single stack requirement coming in with SAP BW 7.4 my customer ask me if it is possible to move the Java Stack to the SolMan server because it has more or less nothing to do. But regarding the actual definition I am not sure if it is possible.
    I am not an infrastructure guy so I like to identify if this can be handled like this in line with the SAP guideline only and then start an internal discussion.
    Thanks in advance,
    Nils

    Hi Nils,
    Installing a second Java stack on the same machine with a different SID is perfectly fine. Personally I don't recommend it as two different SAP products (different NetWeaver versions) will be running on the same Windows, definitely requires more maintenance effort than managing two instances on different servers. The downtimes will effect both servers, one of them may encounter a server-related problem while the other working fine etc.
    Also make sure you have enough resources for both of them.
    BR,
    Alper Somuncu

  • Can I use PDK on a non SAP Platform

    Hi Everyone,
    We have SAP ECC available with us with certain modules. I am not too sure which ones. Now, we are brainstorming if we can develop a plain normal web application using JSP/Servlets but connect to SAP ECC using JCO protocol. We will import the netweaver PDK jar files in our plain web application in the lib folder and that application will be deployed on Apache Tomcat 6.0 web server. Other than these jar files they wont be any other SAP libraries on this tomcat server.
    Is this a feasible approach? Does anyone have any experience on such a kind of application? Are there any kind of documentation that we can use?
    If this is not a feasible approach, does anyone know what is the correct way of going about it without the JCO connectors. Do I need to expose the exisiting ECC functionality using web services and then call those web services from the tomcat web application.
    Your insight will be of great help.
    Nikhil
    Edited by: nikhil.gonsalves on Feb 10, 2010 5:54 PM

    Hi,
    >Do I need to expose the exisiting ECC functionality using web services and then call those web services from the tomcat web >application.
    I think that this would be the more sensible choice.
    Keeep RFC and JCO for SAP client products.
    Use non propriatary standards for non SAP tools.
    You may have a legal problem using the PDK with Tomcat ?
    This is just my opinion.
    Regards,
    Olivier

  • Can i use function inside sql in a form ?????

    Here SERIAL_NUM is a function, this sql work fine in TOAD and SQLPLUS but inside the form iam getting error saying "function serial_num cannot be used in a sql" Why is it like that ?? Is there anyother way to execute this sql ?
    cursor c1 is
    SELECT msn.ATTRIBUTE7 Order_No,
    SERIAL_NUM(i.SERIAL_NUMBER) Serial_No,
    msn.ATTRIBUTE5 Firmware,
    msn.ATTRIBUTE15 Site_Pref
    FROM atrd.INSTALLER_INFO i,
    mtl_serial_numbers msn
    where SERIAL_NUM(i.SERIAL_NUMBER)=msn.SERIAL_NUMBER

    hi,
    yes of course you can use the functions in sql as well as in forms( within sql statements).
    here i think you are not connected to the Specified user which is having the function Serial_num
    or other thing may that ur syntax
    just check both of them that may help you.
    enjoy
    Tehzeeb Ahmed

  • Can i  use B1DE v1.2 for SAP 2004.B ?

    Hi,
    I have installed B1DE v1.2 but dont know it supports SAP 2004.B.
    Regards ,
    Ganesh

    Hi Ganesh,
    B1DE supports SDK 2004, 2005 and 2005 SP01 versions. You have to download the setup corresponding to your version.
    If you are working in 2004B version it should not be a problem, you will have the standard SDK features provided by B1DE. Inside your addon will be included the DI and UI API references corresponding to your installation.
    Please let me know if you find something strange, I haven't heard about any problem with 2004 B version.
    Regards
    Trinidad.

  • How can i use $$context inside my code

    hi
    my client need to get information from the server and i want it to use the ip address. how can i get it?
    thanks

    WRiting the JSP is as simple as adding the hostname into a HTML file and calling it JSP. The only tricky bit is setting up a JSP server.
    There are millions of examples of JSP pages on the web. This page is a JSP page.
    If you find another way of determining which server a JNLP install came from, let me know (no one I know has found another way)

  • How can I use the database default time rather than Java supplied time

    I've searched over and over and nobody seems to have this issue so maybe its just me!
    When inserting a record I would like the a create_date column to automatically use the database time rather than a supplied time via JPA. That was all times a relative to the database which makes sense.
    The trouble is I cant figure out how to do this in a sensible manor.
    If I specify an column like :
         @Temporal(TemporalType.TIMESTAMP)
         @Column(name = "CREATE_DATE")
         private Date createDate;
    and IDL
    CREATE_DATE TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_DATE NOT NULL
    If I leave createDate null I get an exception. If modify the column to allow Nullable then column is set as Null.
    If I leave the column out of the entity bean and then and create a row then the database current time is inserted. The trouble then is that if I want to read the date I'm going to have to create a copy of the bean but with the CREATE_DATE in it, and this doesn't make sense.

    I should also mention that TopLink has always supported the ability to retrieve the current time from the database for use in optimistic locking. The TimestampLockingPolicy offers the ability to configure the next value being retrieved from the database instead of using the local time from the JVM. Our extended optimistic locking configuration does not currently support setting this option but it could be done using a descriptor customizer which can be configured in your persistence unit properties.
    Using optimistic locking may be a good solution for the last modified date since it will also ensure that you do not corrupt the database if someone else has incremented this value since your last read.
    Doug

  • How to use BPM in PI7.3 which is ABAP Stack

    Hi Experts,
    Come to know that PI7.3 have only one stack (JAVA), then how to do BPM's which are ABAP Stack, in PI7.3?
    Thaks & Regards
    Anil

    hi,
    refer below links: :
    Regarding PI7.3 version
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4096a6b3-3dc3-2d10-bf87-f63d5340a916?QuickLink=index&overridelayout=true
    thanks,

  • SAP BW 7.4 on HANA ABAP & JAVA stack

    Hello,
    We have requirement for SAP BW 7.4 on HANA ABAP & JAVA stack integration.
    Please clarify the doubts.
    1. Is there any possibility to install ABAP & JAVA stack same SID?
    2. If install different with SIDs, How can we do integration? Any restriction is there to integrate?
    3. Can we use same HDB SID for both ABAP & JAVA stack?
    4.We plan to configure the JAVA stack as UME data source from ABAP stack, Is it good practice?
    Any one share the better ideas & solutions for this issue.
    Regards,
    V Srinivasan

    Hi Experts,
    Great for viewers.
    But still expecting some ideas above questions kindly answer.
    Also i got some important points.
    Java Stack for BW on HANA
    At least any one answer the purpose of BW Java Stack.
    Regards,
    V Srinivasan

Maybe you are looking for

  • Tax in Purchase Order

    Hi, In City of San Diego, the Non Deductable tax is required to be calculated on certain condition types and certain condition types do not attract the taxes. Example Suppose the pricing of material is as follows. a.     Gross Price PBXX - $100.00 b.

  • My iphone 5 is showing the network and 3G logos but has no signal bars and I cannot make or receive calls or use the internet

    Hi, I recently bought my iPhone5 second hand off a friend.  Having inserted my sim the O2 network logo and 3G symbols appear in the top left although there is no signal registered.  I am also unable to make or receive calls as well as use the mobile

  • Problem while using olap cwm2 by pl/sql objects

    Dear all: I want to build an olap multidimension model by oracle cwm2 api. I created the multidimension model successfully by call the cwm2 api directory. however, when I try to write objects to encapsulate the cwm2 apis, it was not work. here is my

  • How do i choose what GB ipad to buy

    I want to buy an ipad and have a few questions. 1)  What GB should i get?  i would mostly use it to surf the web and also download some music and pictures 2)  Is the retinal display on the newer ipad worth the money for it? 3)  What GB would you reco

  • Can apple restore my photos even though my iphone 4s is broken?

    My Iphone fell on to a road and a car crushed it. It is completely nonfunctional and i was wondering if apple can restore photos if i can provide serial number of phone. the phone has all the pictures of the first year of my daughters life. they are