BO2007 Method Release

Hello!
I want to create  a new ZBO2007 with Method Release (for put in my workflow) maintenace orders but, I put this BAPI BAPI_ALM_ORDER_MAINTAIN (method: Release) and program in the attachment, I don´t know about ABAP code and I don´t know the correct code.
Please, help me
Thank in advance

hai,
When we invoice item (manage serial No. on release only), system ask select serial No. (Window u2013 serial No. selection) u2013 select the raw of item u2013 right click the mouse u2013 select serial no. management selection criteria press OK- serial no. management selection complete-select automatic creation in right bottom, if u have huge no of items u2013 set no. format & manufacturing serial no. in Automatic serial no. creation window- string (alphabet)-enter no next raw (select Number +increase) then OK
Select the serial no. from available list, press u201C>u201D then automatically transfer to selected serial no. list u2013 update and returned to invoice.try this way this may be help u
Regards
Janeesh

Similar Messages

  • Unable to release item recieved with management method release only

    hey i received few quantity from good receipt which is serial managed and management method is release only so sap didn't asked for serial no but when i issue that item out of sap through good issue it ask for serial no but actually there is no serial no. so how to release that  quntity of item out of inventory.

    hai,
    When we invoice item (manage serial No. on release only), system ask select serial No. (Window u2013 serial No. selection) u2013 select the raw of item u2013 right click the mouse u2013 select serial no. management selection criteria press OK- serial no. management selection complete-select automatic creation in right bottom, if u have huge no of items u2013 set no. format & manufacturing serial no. in Automatic serial no. creation window- string (alphabet)-enter no next raw (select Number +increase) then OK
    Select the serial no. from available list, press u201C>u201D then automatically transfer to selected serial no. list u2013 update and returned to invoice.try this way this may be help u
    Regards
    Janeesh

  • Method to use for release of PO

    Hi Balaji,
    Which method can i use for release of Purchase Order
    Regards,
    Chow.

    Hi Chow,
    I hope we can answer your question tool
    BO  BUS2012 method Release for complete release of PO
    and BO BUS2012 method SingleRelease for individual PO items.
    Regards
    Ajay

  • Release of proccess order with 'BAPI_PROCORD_RELEASE'

    I am trying to release a proccess order via the following
    method, by calling function odule 'BAPI_PROCORD_RELEASE'.
    in debug mode it works, and in runtime mode
    it fails to release.
    Can sombody help.
    METHOD release.
      DATA lt_ordnum TYPE TABLE OF bapi_order_key.
      DATA ls_ordnum TYPE bapi_order_key.
      ls_ordnum-order_number = i_ord_num.
      APPEND ls_ordnum TO lt_ordnum.
      COMMIT WORK AND WAIT.
      DO.
        IF sy-subrc = 0.
          EXIT.
        ENDIF.
      ENDDO.
      CALL FUNCTION 'BAPI_PROCORD_RELEASE'
        IMPORTING
          return = os_return
        TABLES
          orders = lt_ordnum.
    ENDMETHOD.
    best regards,
    Itzik Eshed

    Dear Itzik,
    I understand that I am really late in replying to this post. Wish I knew ABAP in 2008
    Had I known ABAP then, I would have certainly helped you.
    Coming to your question, there are two ways of making your BAPI work. I have used it and it works fine for me in real time now.
    Method 1:
    Method 2:
    Please try doing it in one of these ways and I am sure it will work. If it does not, lets make it work
    All the very best!!
    Regards,
    Ram

  • Need help with agent determination for release workflow

    Hi,
    I am trying to perform a release in the contract(FS-contract management) by using the framework for principle of dual control. When i create a contract, i get a message that says contract created, not yet released. But i am not able to get the work item in my inbox to release the contract. The SWI1 transaction shows 'no agent' for the triggered workflow. I am using the template WS50100021 as there is only one release step. By default there is a rule '50100017' given for the template. But in the customizing settings i have the section called 'assign rule to release steps'. Do i need to assign a rule here for agent determination. If so, what about the rule in the WS50100021 template? Which one should i use? I am able to execute the method 'release' of object BUSISB001 from SWO1 and release or reject the contract creation. But i am not able to get the workitem in my inbox in SBWP transaction

    Hi Suhas,
    The rule used in workflow template WS50100021 is a standard one. So try to find out that on what basis it is fetching the agents. It could be the case that the logic specified in the rule does not fulfill your requirement.
    The other reason could be that you have not specified the task as general. Please check if the agents tab is activated(green) in the task or not. If it is not you need to set the task as general.
    SOLUTION : if you want to get the workitem in your own SAP Inbox for testing purpose, you can set the WFINITIATOR as agent instead of that standard rule. This setting will send the workitem in your own SAP Inbox.
    Regards,
    Guddan

  • Ejb2jsp bug? (super.release)

    This is the error using ejb2jsp of Weblogic 8.1 SP2:
    compilation failed:
    C:\ejb\AccessoDb\WEB-INF\classes\ejb\jsp_tags\_ScArticoliHome_finderAllTag.java:143:
    cannot resolve symbol
    symbol : method release ()
    location: class java.lang.Object
    super.release();
    ^
    1 error
    java.io.IOException: Compiler failed executable.exec
    The java file is created by ejb2jsp tool!
    Usually the tool extends TagSupport or BodyTagSupport when it create java files.
    But in this case, the class ScArticoliHomefinderAllTag implements IterationTag
    and therefore it is subclass of Object which hasn't the release method!!!
    super.release() is impossible for Object subclasses!!!
    Help me!
    P.S.: sorry for my bad english! ;)

    thanks for your reply Shay
    It is just that it is not always easy to get clear view on "the release thing" at Oracle,
    e.g. see Brian Duff's remarks on this at:
    Re: JDeveloper and CVS
    But I suppose a "bug-fix release" is not a "preview release" or "production release".
    greetings
    Jan Vervecken

  • How to make a dalog process custom events when blocked by modal dialog

    Hi,
    I would like to understand the way modal dialogs block other dialogs so that I can properly solve an issue I'm having with two modal dialogs, one blocking the other.
    I have an application, netbeans platform based, that opens a JDialog, NewDiskDlg, with it's modal property set to true. This dialog is responsible for starting a thread that will process a given number of files, from time to time, depending on some conditions, this thread will send events to the NewDiskDlg.
    When this thread is started, the NewDiskDlg creates a new JDialog, also with the modal property set to true. Both dialogs have the same parent, the main window. And this works as I expected, the second dialog, ActiveScanningDlg, opens on top of the NewDiskDlg and, until the thread stops, the dialog stays visible.
    When the thread stops an event is sent to this two dialogs signaling that the job has been completed, and here is my problem. The second dialog, the one that is visible when the event arrives, receives the event and executes the dispose() method, releasing control to the NewDiskDlg in the back, but the NewDiskDlg does not receive the event and does not process it correctly.
    I understand the no input can be sent to a blocked window, but does that include calling upon the window's methods?
    I've been looking for some help on this but my search terms are not good enough to provide me with any useful information. I've also read the topic on the focus system that is present in the Java Tutorial but I feel that that is not what I should be looking at.
    The following code is a snippet of the important parts that I described:
    NewDiskDlg has the following methods to process the events
        public void readingStarted(ReadingEvent evt) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    scanningDlg.showCentered();
        public void readingFile(ReadingEvent evt) {
            //DO NOTHING
        public void readingStopped(ReadingEvent evt) {
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
            if (!showAgain) {
                dispose();
        public void readingAborted(ReadingEvent evt) {
            JOptionPane.showMessageDialog(this, "", "", JOptionPane.ERROR_MESSAGE);//TODO: i18n on the error messagens
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
        }ActiveScanningDlg processes the events like this:
        public void readingStarted(ReadingEvent evt) {
            //DO NOTHING
        public void readingFile(ReadingEvent evt) {
            jpbReadingProgress.setString(evt.getCurrentFileName());
        public void readingStopped(ReadingEvent evt) {
            Lookup.getDefault().lookup(MediaReader.class).removeListener(this);
            dispose();
        public void readingAborted(ReadingEvent evt) {
            readingStopped(evt);
        }This is an example on how the events are sent:
        private void fireReadingFile(ReadingEvent evt) {
            for (ReadingListener l : listeners) {
                l.readingFile(evt);
        }

    Hi,
    You have to check the Tolerance limits set for the following tolerance keys. In case if any where the limit is breached the systems blocks the Invoice as 'R - Invoice verification'. Please check the limits set for all these keys.
    AP - item amount variance (if you have activated the item check)
    DQ and DW - for Quantity variance
    PP - price variance with the order price
    ST - date variance
    VP - Moving average price variance
    Regards,
    Kathir

  • What is Wrong with My html-el:reset Tag?

    In my JSP, I used <html-el:form ...>, <htim-el:checkbox ...>, <html-el:hidden ... >, <html-el:submit ... > without any problem.
    But, I got Error 500:(class: org/apache/strutsel?taglib/html/ELResetTag, method: release signature: ?V) Illegal use of nonvirtual method call
    when I used:
    <html-el:reset accesskey="C">Clear</html-el:reset>And the reset button does not get displayed when I
    <html-el:reset>Clear</html-el:reset>Would anybody point out what is wrong with the way I used the reset tag? Thank you.

    In my JSP, I used <html-el:form ...>, <htim-el:checkbox ...>, <html-el:hidden ... >, <html-el:submit ... > without any problem.
    But, I got Error 500:(class: org/apache/strutsel?taglib/html/ELResetTag, method: release signature: ?V) Illegal use of nonvirtual method call
    when I used:
    <html-el:reset accesskey="C">Clear</html-el:reset>And the reset button does not get displayed when I
    <html-el:reset>Clear</html-el:reset>Would anybody point out what is wrong with the way I used the reset tag? Thank you.

  • Display parked vendor invoice and scanned invoice in same screen

    Hi,
    When a user from his business workplace, displays a parked vendor document, they need to choose
    "Services for Object-> AttachmentList" to display the scanned document connected.
    I have a request to make this scanned document being displayed directly in a split screen together with the
    parked document.
    In workflow method RELEASE is being called when user from his business workplace enters a document.
    Method RELEASE is calling screen 700 to display the parked document.
    If I make a new method ZRELEASE, I could make my own screen displaying parked document and scanned invoice in a split screen.
    That would be possible right?
    But I have no idea how I get the scanned document, is there any methods or function modules for this ?
    Anyone have an idea ?
    Br
    Andreas

    Hi  ,
    Please see this link for the retrieval of scaaned copy.
    they are using FM to retrieve  scanned document  ARCHIVOBJECT_DISPLAY to display the associated file
    [url] ArchiveLink buffer issue
    Regards,
    GIrish

  • BLANKET PURCHASE ORDER로부터 ASL과 SOURCING RULE을 생성하는 방법

    제품 : MFG_PO
    작성날짜 : 2005-11-08
    BLANKET PURCHASE ORDER로부터 ASL과 SOURCING RULE을 생성하는 방법
    =================================================================
    PURPOSE
    Blanket PO로부터 ASL과 Soucing Rule을 생성하는 방법을 알아본다.
    Explanation
    1. Site level로 아래의 profile options이 setting 되어져 있는지 확인한다.
    PO: Allow Auto-generate Sourcing Rule = CREATE AND UPDATE
    PO: Allow autocreation of Oracle Sourcing documents = Yes
    2. User level로 하나의 assignment set을 아래의 profile option에 attach
    한다.
    MRP: Default Assignment Set
    3. Blanket Purchase Order를 생성한다.
    ASL과 Sourcing rule이 필요한 item이 입력되야 하며,BPA를 위한
    Effectivity date는 지정되어야 한다.
    4. Blanket Purchase Agreement를 저장하고 approve 한다.
    Enable Automatic Sourcing : Checked
    Update Existing rule and assigment : Checked
    Select the release method: Release using Autocreate
    5. 현재 BPA의 header status는 'Approved'이어야 한다.
    6. Workflow background process를 아래의 parameter와 함께 실행한다.
    Item Type : PO Approval
    Deffered Activity: Yes
    7. Supply Base > Approved Supplier List 화면으로 이동하여 Item을 조회
    하고 ASL이 생성되었는지 확인한다.
    8. ASL 화면의 Attributes로 이동하여 특정한 Release method를 가진
    Document가 첨부되어 있는지 확인한다.
    9. Supply Base > Assign Sourcing Rule 화면에서 MRP: Default Assignment
    Set profile option에 지정되어 있는 Assignment set을 조회한다.
    10.BPA에서 사용한 item을 Assign Sourcing Rule 화면에서 조회하고,item에
    대해 지정된 sourcing rule을 적어 놓는다.
    11.Supply base--> Sourcing rule
    Query the Sourcing rule
    ASL과 Sourcing Rule 둘 다 생성되었음을 확인할 수 있다.
    Reference Documents
    Note 246085.1

  • Prob in BDC

    Hi Friends,
    I am doing bdc call transaction method.Releasing delivery block from sales order at header level n item level.
    I am getting all sales order which r having block order.The output is constructed like when i select 1  sales order n click on release that sales order should release...
    Each sales order is having 1 to 3 item so the output is displaying 3 times each sales order with different item. means 3 coloums ...
    But what the problem is each sales order is having more then 1 item so when i am selecting each sales order it is releasing the whole document....
    suppose 3000000234 is having item 10,20,30 i want to release onlt sales order 3000000234 with item 10.but is realising whole document..
    now how to solve the problem plzzz any one help me..

    Hi
    Use the BAPI. Instead of BDC.
    data:
    it_atg_delcreate LIKE vbap OCCURS 1 WITH HEADER LINE,
    order_item TYPE TABLE OF bapisditm WITH HEADER LINE,
    order_itemx  TYPE TABLE OF bapisditmx  WITH HEADER LINE,
    returnmsg
        LIKE bapiret2       OCCURS 1 WITH HEADER LINE,
    schdulelines           
       LIKE bapischdl      OCCURS 1 WITH HEADER LINE,
    schedulelinex LIKE bapischdlx     OCCURS 1 WITH HEADER LINE,
    atg_orderheader         LIKE bapisdh1x,
    atg_orderheader-updateflag = 'U'.
      LOOP AT  it_atg_delcreate.
        order_item-itm_number = it_atg_delcreate-posnr.
        APPEND order_item.
        CLEAR:order_item.
        order_itemx-itm_number = it_atg_delcreate-posnr.
        order_itemx-updateflag = 'U'.
        APPEND order_itemx.
        CLEAR:order_itemx.
        schdulelines-req_dlv_bl = space.
        schdulelines-itm_number = it_atg_delcreate-posnr.
        schdulelines-sched_line = '0001'.
        APPEND schdulelines.
        schedulelinex-req_dlv_bl = 'X'.
        schedulelinex-itm_number = it_atg_delcreate-posnr.
        schedulelinex-updateflag = 'U'.
        schedulelinex-sched_line = '0001'.
        APPEND schedulelinex.
        CLEAR: schedulelinex, schdulelines.
        AT END OF  vbeln.
          CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
            EXPORTING
              salesdocument    = it_atg_delcreate-vbeln
              order_header_inx = atg_orderheader
            TABLES
              return           = returnmsg
              order_item_in    = order_item
              order_item_inx   = order_itemx
              schedule_lines   = schdulelines
              schedule_linesx  = schedulelinex.
          IF sy-subrc = 0.
           Clearing the values
            REFRESH : order_item,
                      order_itemx,
                      schdulelines,
                      schedulelinex.
            CLEAR  : order_item,
                     order_itemx,
                     schdulelines,
                     schedulelinex.
          ENDIF.
        ENDAT.
      ENDLOOP.
      Commit the database
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
    The above is exactly suits u r requirement.
    If it is helpful rewards ponits.
    Regards
    Pratap.M

  • Memory Management Questions

    Hello All!
    I read the Memory Management Programming Guide for Cocoa - several times. But some things are still not really clear.. I would like and need to have a deeper understanding. So, I hope someone could help me The problem is that I had to get rid of several (..) memory leaks in my app, and now I am a bit confused and unsure about my skills at all..
    1.
    What is the difference between sayHello1,sayHello2,getHello1,getHello2,getHello3 and which one is "better" (and why) - please dont try to interprete the logic/sense of the methods itself
    - (NSString *) sayHello1{
    return [[[NSString alloc] initWithString:@"Hello"] autorelease];
    - (NSString *) sayHello2{
    return [[[NSString alloc] initWithString:@"Hello"] retain];
    - (void) getHello1{
    NSString *hello = [self sayHello1];
    [hello release];
    - (void) getHello2{
    NSString *hello = [self sayHello2];
    [hello release];
    - (void) getHello3:(NSString *)hello{
    [hello retain];
    NSLog(@"%@", hello);
    [hello release];
    Concerning this, there are several questions:
    2.
    If I have to release everything I retain/alloc, why then do I have a memory leak, if am returning an object (which was allocated with alloc and init) from a method without autorelease. The object is still in memory. But the following method wont work. What I accept. But the object is, if returned, not reachable, but also not released. Why then is it not automatically released? (i dont mean autorelease)
    - (NSString *) sayHello1{
    return [[NSString alloc] initWithString:@"Hello"]];
    - (void) getHello{
    NSString *hello = [self sayHello1]; //wont work. the object is not there, but also not released. WHERE is it?
    [hello release];
    3.
    When is a delegate method released, if I have no variable I can use to "release"? So, if I have nothing to access the delegate like a NSURLConnection delegate?
    should I, for example, call a [self release]?
    - (void)startParser{
    Parser *parser = [[Parser alloc] init];
    [parser start];
    //should I use a [parser autorelease or retain] here?
    - (void)parserDidEndDocument:(NSXMLParser *)parser{
    //do somethings with the parserstuff
    [self release];
    4.
    *And the last question:*
    Where can I see in instruments, which elements have retain counts > 1 and potential leaks? I was reading the instruments guide but there is only theoretical stuff. No practical guides like: your app should not have/use more than x megabyte ram.. for example: my app gets slower and slower the longer a i use it. -> this indicates memory leaks..

    A Leak is only a leak if the reference to the object is lost.
    https://devforums.apple.com/message/189661#189661

  • Creating AppModule in a background user thread (NPE)

    Hello!
    The application uses a user thread (OC4J is running with -userThreads option) which used for perform some background tasks.
    We want the thread creates an application module, fires some methods, releases the module and exit.
    So, we have a code fragment like this in run() method:
    service =
    (AppModule)Configuration.createRootApplicationModule(SERVICE, SERVICE_CONFIG, null);
    service.doSomething();
    Ihe following error is occurring:
    06/12/12 20:44:06 java.lang.NullPointerException
    06/12/12 20:44:06      at com.evermind.server.http.EvermindHttpServletRequest.unprivileged_getSession(EvermindHttpServletRequest.java:2609)
    06/12/12 20:44:06      at com.evermind.server.http.EvermindHttpServletRequest.getSession(EvermindHttpServletRequest.java:2592)
    06/12/12 20:44:06      at oracle.jbo.http.HttpSessionCookieHelperImpl.generateSessionId(HttpSessionCookieHelperImpl.java:175)
    06/12/12 20:44:06      at oracle.jbo.http.HttpSessionCookieFactory.createSessionCookie(HttpSessionCookieFactory.java:113)
    06/12/12 20:44:06      at oracle.jbo.common.ampool.ApplicationPoolImpl.createSessionCookie(ApplicationPoolImpl.java:452)
    06/12/12 20:44:06      at oracle.jbo.client.Configuration.getApplicationModule(Configuration.java:1540)
    06/12/12 20:44:06      at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1504)
    06/12/12 20:44:06      at ut.ThreadWorker.run(ThreadWorker.java:48)
    06/12/12 20:44:06      at java.lang.Thread.run(Thread.java:595)
    Please, anybody have access to sources, what you can say about this trace or do you have another ideas how to launch module from user thread?
    Thanks in advance!
    Ilya.

    Repost.
    Now I am trying to solve this issue by investigating, why module is running without errors if launched from console. In this case ApplicationPoolImpl.createSessionCookie is also fired, but don't try to obtain HttpSession from web container. When module is launched from background thread the pool ans session factory trying to do it (and error in EvermindHttpServletRequest.java occurs because there is no any requests).
    Ilya.

  • How to use CRM_ISX_BTX_API_CONT_CHANGE?

    Anyone can tell me how to use FM CRM_ISX_BTX_API_CONT_CHANGE?
    I want to change technical resource from an order.
    Thank you

    Hi Chris,
    Thank you for your response. I already read the documentation, but I still confuse how to use this FM, especially field "PROCESS_ATTRIBUTES". Any other advice?
    Below is the documentation:
    FU CRM_ISX_BTX_API_CONT_CHANGE
    Short Text
    Remote Function Module for API "Contract Change"
    Functionality
    The provider Application Programming Interface (API) provides additional functionalities in provider order and contract maintenance in addition to the interaction center UI and back office. The main use cases are:
    Order capturing in the pre-system, for example external CRM, mobile client, WebChannel
    Migration
    With this function module, you can execute a change process on a provider contract like in IC WebClient or back office.
    Notes
    Before you can execute a change process, maintain the following data in the system:
    Define your change processes for BTMF Framework in customizing under Customer Relationship Management  -> Cross-Industry Functions -> Provider Order and Contract Management -> Transactions -> Define Provider-Contract-Specific Process Profiles
    Implement the classes for these change processes
    Parameters
    IS_CHANGE_DATA
      IS_CONTROL
      ET_RETURN
      ES_CHANGE_ORDER
    Exceptions
    Function Group
    CRM_ISX_BTX_API
    IS_CHANGE_DATA
    Data for Provider Contract Change RFC
    Description
    This Parameter with the structure CRMT_ISX_CONTRACT_CHANGE_RFC contains the following fields:
    ITEM_GUID: item GUID for a provider contract.
    PROCESS: name of the change process as defined in customizing for BTMF framework.
    ACTIVATION_DATE: time stamp for activating the changes.
    TIMEZONE: timezone for activation date.
    PROCESS_ATTRIBUTES: table of name or value pairs for passing to process implementation.
    Note
    To get attribut values from the table PROCESS_ATTRIBUTES, you can call the following method in the process implementation:
    cl_crm_btmf_container=>get_container_value( EXPORTING item_guid = <Contract Item GUID>  process = me->if_crm_btmf~process  name = <NAME> IMPORTING value = <VALUE>).
    IS_CONTROL
    Control Flags for Provider Contract Change API
    Description
    Control indicators are used to control the change process. For example, if the change order has to be saved to the database, you must set the Save and Commit indicators.
    The control structure CRMT_ISX_CONTROL_CHANGE_API has the following indicators:
    SAVE_ORDER: called to save the change order (test mode, if not requested).
    RELEASE_ORDER:  releases the change order (BTMF method RELEASE is called).
    COMMIT_AFTER_SAVE: called in the API. Choose this checkbox to save the changes to the database.
    NO_INIT: check this field to keep the order in WebUI.
    Note:
    You can only save the order or contract to the database when the fields SAVE_ORDER and COMMIT_AFTER_SAVE are defined.
    ET_RETURN
    Table with BAPI Return Information
    Description
    This table includes the list of errors that come up during process execution.
    ES_CHANGE_ORDER
    Return Structure: Saved Objects
    Description
    This structure includes the GUID and the transaction ID of change order document.

  • DBCP questions

    Hi,
    I'm developing a Java application that queries an Oracle 8.1 database.
    This application is executed through command prompt and will receive requests for information through TCP connections. When a request comes, the Oracle database will be queried to check the status of the request.
    Currently, I'm using Jakarta Commons DBCP to do Connection Pooling. Currently the application is being developed on a Windows machine but will need to be running on a Linux machine. What I'm wondering is if the Jakarta Commons DBCP is supported on a Linux platform?
    Also, I'm a bit confused to how the Connection Pool works with my application.
    I have a DBConnPool object that has two methods:
    retrieveConnection() - returns a Connection object from the pool
    releaseConnection() - closes the Connection (conn.close());
    The Connection object is obtained through a PoolingDataSource object.
    I'm wondering:
    1. Will conn.close() in the releaseConnection method release the Connection to the pool?
    2. How should other objects interact with the DBConnPool object? I'm assuming that there should only be one DBConnPool (in main?)
    Sorry for so many questions.
    Thanks in advance!

    Why not. Java is for all platforms. DBCP doesnt force you to use a web server. For a standalone application using a connection pooling, you just need a JDBC driver for oracle, and DBCP libraries. If you want samples code, you will have plenty at : http://cvs.apache.org/viewcvs/jakarta-commons/dbcp/doc/ . Check the samples from this site. They shows how to setup a DBCP pool for standalone applications. It is terrifically simple to setup . Only three or four lines of code. Thats all
    thanks
    boolee

Maybe you are looking for

  • 10g XE + Windows Server 2008

    Hi!!! I have a problem with oracle 10g Express Edition. My customer has Windows Server 2008 and oracle runs on this Os. But every day oracle stops run and i get this type of error. In alert_xe.log: 1. Tue Nov 17 09:53:55 2009 Warning: skgmdetach - Un

  • Saving from Office with Intel Macs

    We have a problem when saving Office-documents from Intel-machines to public sharepoints on an OS X-server. The clients are using AFP. This is what happens: When browsing the folders on the server, the save dialog will suddenly become non-responsible

  • I Can't Open my iPhoto? HELP PLEASE

    I can't open iPhoto and how can i get all the photos that i uploaded in iPhoto without opening iPhoto?

  • Prob in finding Joins....Read complete

    Hi friends...    i've to fetch a field to my report...    the flow is....    open TCODE CJ20N..    click on 'open' button and enter any 'project definition'....(press Enter) -->   I just want to fetch 'Project Definition' number to my Purchase Order.

  • HT201317 How do i delete imported photos in my ipad?

    I had imported photos from my computer to my iPad before. Now, i have decided to remove them. But it seems that i couldn't find the "trash bin" icon on the upper right corner. I would like to remove it using my computer but it was newly fixed. The ne