Batching type for the connection (type 9i)

OracleConnection in Oracle 9i 9.0.1 JDBC Drivers has two new methods setAccumulateBatchResult() and isAccumulateBatchResult(). JavaDoc description is very brief but it mentions type 9i batching (accumulating premature batch flushing).
I have several questions regarding these methods:
Are these methods intended for public use?
If yes then why these methods are not available in the interface oracle.jdbc.OracleConnection but only in the (deprecated) class oracle.jdbc.driver.OracleConnection?
What is the difference between type 9i batching and pre-9i batching?
Thank you -- Maxim.

If you are trying to do this on the internal Superdrive they have problems writing to Dual Layer DVD disks of any make and or type.
IMHO the DVD drive Apple uses is not very good.
If this is a fairly new Mac system I suggest you take it to an Apple store and show them that it can't write to Dual Layer DVD discs of any make and maybe they will replace it with on e that will.

Similar Messages

  • Controlling JVM Args for the Connection Server?

    I'm looking to control the JVM Args for the Connection Server which is invoked from Web Intelligence.  Any idea how I would do that?  I'm primarily looking to control min/max memory and to set a debug port for a custom Open Data driver.  I saw this post which seemed like a similar question, https://forums.sdn.sap.com/click.jspa?searchID=26256895&messageID=5611756 , but the resolution doesn't seem to apply to Connection Server.
    Thanks!

    Hi Jin-Chong -
    Yes, by entering
    -Xmx1024m
    ...you will successfully increase the heap size of the default JVM used by connection server.  We do this in our product when data volumes become significantly large.  Make sure you don't forget the "m" or "-" - it must be exactly as shown above.
    Regarding the libjvm: You should use the classic version.  The alternate version is meant in most situations for debugging but does provide some additional features.  You should check w/ IBM DeveloperWorks online for more info. about that.
    I'm not sure how you mean by "logging" - if you have some custom code you're running through cs.cfg, I would output runtime settings from that code.  Otherwise, you should be able to profile cs.cfg if you attach a debugger as mentioned earlier in this post.
    Hope this helps.

  • Creating a batch job for the sapscript

    Hi folks,
    I have a question of how schedule a batch job in the background for the sapscript? I have the print program and I am using  the following FM to read the output device which I pick up printer device from the pop up dialog box. How can i do that?
    Here is the FM that I using in the print program.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
       EXPORTING
      ARCHIVE_ID                   = C_CHAR_UNKNOWN
      ARCHIVE_INFO                 = C_CHAR_UNKNOWN
      ARCHIVE_MODE                 = C_CHAR_UNKNOWN
      ARCHIVE_TEXT                 = C_CHAR_UNKNOWN
      AR_OBJECT                    = C_CHAR_UNKNOWN
      ARCHIVE_REPORT               = C_CHAR_UNKNOWN
      AUTHORITY                    = C_CHAR_UNKNOWN
         COPIES                       = 1
         COVER_PAGE                   = SPACE
         DATA_SET                     = 'LIST8S'
      DEPARTMENT                   = C_CHAR_UNKNOWN
      DESTINATION                  = C_CHAR_UNKNOWN
      EXPIRATION                   = C_NUM1_UNKNOWN
      IMMEDIATELY                  = C_CHAR_UNKNOWN
      IN_ARCHIVE_PARAMETERS        = ' '
      IN_PARAMETERS                = ' '
      LAYOUT                       = C_CHAR_UNKNOWN
      LINE_COUNT                   = C_INT_UNKNOWN
      LINE_SIZE                    = C_INT_UNKNOWN
      LIST_NAME                    = C_CHAR_UNKNOWN
      LIST_TEXT                    = C_CHAR_UNKNOWN
      MODE                         = 'CURRENT'
         NEW_LIST_ID                  = 'X'
      NO_DIALOG                    = C_FALSE
      RECEIVER                     = C_CHAR_UNKNOWN
      RELEASE                      = C_CHAR_UNKNOWN
    REPORT                       = 'ZSAPFORM'
      SAP_COVER_PAGE               = C_CHAR_UNKNOWN
      HOST_COVER_PAGE              = C_CHAR_UNKNOWN
      PRIORITY                     = C_NUM1_UNKNOWN
      SAP_OBJECT                   = C_CHAR_UNKNOWN
      TYPE                         = C_CHAR_UNKNOWN
      USER                         = SY-UNAME
       IMPORTING
      OUT_ARCHIVE_PARAMETERS       =
          OUT_PARAMETERS               = i_pri_params
         VALID                        = w_valid
    EXCEPTIONS
      ARCHIVE_INFO_NOT_FOUND       = 1
      INVALID_PRINT_PARAMS         = 2
      INVALID_ARCHIVE_PARAMS       = 3
      OTHERS                       = 4
      IF SY-SUBRC = 0 and w_valid ne space.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
       write: / 'Pri params ', i_pri_params.
    Thanks,
    SK

    Hi folks,
    I have a question of how schedule a batch job in the background for the sapscript? I have the print program and I am using  the following FM to read the output device which I pick up printer device from the pop up dialog box. How can i do that?
    Here is the FM that I using in the print program.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
       EXPORTING
      ARCHIVE_ID                   = C_CHAR_UNKNOWN
      ARCHIVE_INFO                 = C_CHAR_UNKNOWN
      ARCHIVE_MODE                 = C_CHAR_UNKNOWN
      ARCHIVE_TEXT                 = C_CHAR_UNKNOWN
      AR_OBJECT                    = C_CHAR_UNKNOWN
      ARCHIVE_REPORT               = C_CHAR_UNKNOWN
      AUTHORITY                    = C_CHAR_UNKNOWN
         COPIES                       = 1
         COVER_PAGE                   = SPACE
         DATA_SET                     = 'LIST8S'
      DEPARTMENT                   = C_CHAR_UNKNOWN
      DESTINATION                  = C_CHAR_UNKNOWN
      EXPIRATION                   = C_NUM1_UNKNOWN
      IMMEDIATELY                  = C_CHAR_UNKNOWN
      IN_ARCHIVE_PARAMETERS        = ' '
      IN_PARAMETERS                = ' '
      LAYOUT                       = C_CHAR_UNKNOWN
      LINE_COUNT                   = C_INT_UNKNOWN
      LINE_SIZE                    = C_INT_UNKNOWN
      LIST_NAME                    = C_CHAR_UNKNOWN
      LIST_TEXT                    = C_CHAR_UNKNOWN
      MODE                         = 'CURRENT'
         NEW_LIST_ID                  = 'X'
      NO_DIALOG                    = C_FALSE
      RECEIVER                     = C_CHAR_UNKNOWN
      RELEASE                      = C_CHAR_UNKNOWN
    REPORT                       = 'ZSAPFORM'
      SAP_COVER_PAGE               = C_CHAR_UNKNOWN
      HOST_COVER_PAGE              = C_CHAR_UNKNOWN
      PRIORITY                     = C_NUM1_UNKNOWN
      SAP_OBJECT                   = C_CHAR_UNKNOWN
      TYPE                         = C_CHAR_UNKNOWN
      USER                         = SY-UNAME
       IMPORTING
      OUT_ARCHIVE_PARAMETERS       =
          OUT_PARAMETERS               = i_pri_params
         VALID                        = w_valid
    EXCEPTIONS
      ARCHIVE_INFO_NOT_FOUND       = 1
      INVALID_PRINT_PARAMS         = 2
      INVALID_ARCHIVE_PARAMS       = 3
      OTHERS                       = 4
      IF SY-SUBRC = 0 and w_valid ne space.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
       write: / 'Pri params ', i_pri_params.
    Thanks,
    SK

  • Which table will get updated for batch characterstics for the MIGO trans?

    Hi all,
    As i am trying to post a goods receipt for 101/102 movement type in MIGO transaction.
    But it is giving error as 'Batch characterstics values are not classified'.
    If i give Batch Type- as  PRODUCTION(P)  in batch classification.
    It will get posted.
    Can any one help me out in which table this field will get updated.
    Thanks...

    HI ,
                 Try table MSEG.
    Regards,
    Mohan

  • Is there a fix for the connectivity problems with iPhone 5S and ISO 7.0.2?

    Is there a fix for the bluetooth connectivity problems with iPhone 5S and ISO 7.0.4?
    I am having problems connecting the BT Audio and the handsfree phone connectyion is unreliable in 2012 Mitsubishi Lancer XL.
    All worked OK with ISO 6.

    Hello CraigNicholson
    You would need to sync with iTunes to get that process to work for you. Check out the article below for more information on how to resolve that issue to get the proper token to use Push Notifications again.
    iPad and iPod touch: Unable to use YouTube or Push notifications
    http://support.apple.com/kb/ts3305
    Regards,
    -Norm G.

  • Request proProcessing failed. (XLS 000009) You do not have data access rights for the connection.

    Hello,
    I have created a universe UNX on top of a sql table. and i used this UNX via query browser to create a dahsboard. when i run this dashboard with "administrator" the dashboard runs but when i run with any other user it shows the below error. I have checked the connections user security and the i have given "full rights" to the user group and also the universe user security has "full rights" but still i get this error. How do i solve this issue. Couldnt find where the authorization is missing. Please help

    Hi Arjit,
    I have object level security set in universe security for my universe folder in which i have all universes as below. "Everyone" is the user group i am trying to access which is showing error and administrator works fine.
    I also have set some universe security on the particular universe i am using as below:
    User security is set to full control for user group "everyone"..

  • TS1363 I have tried to update my iPhone to the latest update, it is now asking to be connected to itunes and my phone will not connect to itunes at all. I cannot do anything with my phone as it is just locked to asking for the connection to itunes. PLEASE

    Also I have installed the latest version of itunes, i have uninstalled my antivirus. I have been trying to resolve this through the pages on apple for the past 3 hours

    Device not detected in iTunes for Windows

  • Standard report to see the Batch numbers for the materials

    Hi Gur's
    I am searching for a standard report that would give out details from the purchase order. The details that i need are as following fields 1. Purchase order batch, 2. Purchase order number 3. material
    can you any one help me on this
    regards
    AM

    Hi Teja
    You can use T-Code - MB51, here you can generate report material wise purchase order with batch numbers and here to see stock in so give movement type 101 to see all Batches received against purchase orders
    regards
    madhu

  • Batch detemination for the backflush by CO11N

    Hi,
    I would like to confirm a Production order but in the goods movements I get some error.
    The system doesn't find the bach automaticaly.
    I've looked in the PO CO02  in the component overview there is a field called Batch (this field is empty)
    How can I fiel it. I've maintained the bacht in the material master. In OPJ2 I've maintained the stock determination rule and the bacht determination is activated, no stock determination is not activated.
    Do I forget to do something?
    Thanks
    Dede

    Hello Dede,
    I have created material master XYZ ( raw material ) & maintained in BOM of finished material ABC.
    For material XYZ ( raw material) , Split valuation is activated with two different valuation types 01 & 02.
    To have valuation category automatically in CO11N i have already done below configuration changes in system.
    In transaction OSPX plant & stock determination group ( 0111 - 0002) & also created stock determination rule (0001)
    Further I Assigned plant , stock determination group & stock determination rule ( 0111- 0002- 0001) in stock determination Header table.
    Then in stock determination Item table I have made below entries .
    F(stock determination ind ) - Blank (storage location) - 1 ( priority indicator) - 01 ( valuation type).
    Then I made changes in OPJ2 as below .
    0111(plant) - PP01 (Order type) - Check during back flushing ( Operation) - Deactivate field ( No SD) - 0001 ( SDR) - Deactivate field ( BD).
    Then I maintained stock determination group in material master MRP 02 view.
    After doing all above settings also , system not defaulting valuation type in CO11N ( while confirmation of production order).
    I want to know is anything missed out ? or this is not possible to default valuation type in CO11N just by configuration , need any user exit for that ?
    Note :- For this material only split valuation is activated , no batch management is activated.
    Prashant Keluskar.

  • L_TO_PREPARE_ITEM_INT batch split for the same material

    Hello Gurus,
    I use L_TO_CREATE_MULTIPLE to create TO.
    if I leave empty charg number for one material line in FN VB_BATCH_DETERMINATION that is triggeredc in L_TO_CREATE_MULTIPLE  batches are determined (without quantities) but I thought it is prepared for eventual batch split
    But I suppose not as I have a problem when I put quantity greater that quantity on one batch the functionality L_TO_PREPARE_ITEM_INT does not split material into batches, does it mean that I need to split this quantity on batches before calling L_TO_CREATE_MULTIPLE or maybe something in customizing is missing?
    Bests Bogumila

    Hi,
    I had a also used this FM.
    When you pass the total quantity it will only return the batch which should be used first to fulfill your requirement.
    So you have to keep this FM in a Loop and keep subtracting the proposed quantity and store it in a Internal table till it is zero.
    Thanks
    Ajay

  • Do I need XI system for the connection to the integration builder

    Hi,
    I have a problem which i couldn´t manage to solve with the help of existing threads.
    I got the problem that I dont have a connection to the integration builder, I know thats not new, but i want to know if it is possible to create a connection without XI System Landscape, because our company doenst have this system?
    Hope there are possibilities.
    Thanks
    Volker Weckbach

    Okay, yes its not expressed clearly i think.
    I´ll explain my problem a bit nearer. I´ve worked with the Enterprise Services Builder. Now the Enterprise Services Browser in the TA se80 says that there is no connection to the integration builder, do I need this connection to have access to the work i have done in the ES Builder? I want to do Serviceimplementation.
    If this connection is necessary, is it only possible to realize that via XI?
    Are there ways to implement the service in an other way, maybe via NetWeaver?
    I´m sorry if it´s hard to understand me, but i have not much experience with ABAP programming, i have just started.
    Thanks Volker

  • Which type of V/A sensor suitable for the use of SCC -2345?

    Which type/brand of Voltage/current sensor suitable for the connection of SCC -2345?

    Hi TARC,
    There are a lot of options for measuring voltage or current in the National Instruments SCC series.  These are listed below, with the link to NI’s website where these modules can be found.
    SCC Analog Input Modules
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/10339
    2 Channel Voltage Input Module:
    ·         SCC-AI01, 2 Channel Isolated Analog Input (42V, 10 kHz)
    ·         SCC-AI02, 2 Channel Isolated Analog Input (20V, 10 kHz)
    ·         SCC-AI03, 2 Channel Isolated Analog Input (10V, 10 kHz)
    ·         SCC-AI04, 2-Channel Isolated Analog Input (5V, 10 kHz)
    ·         SCC-AI05, 2-Channel Isolated Analog Input (1V, 10 kHz)
    ·         SCC-AI06, 2 Channel Isolated Analog Input (100 mV, 10 kHz)
    ·         SCC-AI07, 2 Channel Isolated Analog Input (50 mV, 10 kHz)
    ·         SCC-AI13, 2 Channel Isolated Analog Input (10V, 4 Hz)
    ·         SCC-AI14, 2 Channel Isolated Analog Input (5V, 4 Hz)
    2 Channel Current Input Module
    ·         SCC-CI20 2-Channel Current Input Module, 0-20 mA
    2 Channel Voltage Attenuator Module
    ·         SCC-A10 2-Channel Attenuator Input Module, 10-to-1
    These modules will work with any standard transducer.
    Hope this helps!
    Ed Waxler | Applications Engineering |  National Instruments

  • Batch selection at the time of GR for Process Order

    HI experts,
    I have the following problem -
    I have got a process order of 51, at the time of order creation I have assigned/created 2 batches for the process order using some development and making use of user field. Now at the time of GR after final confirmation, I want to select the batch number for the required quantity, i.e I want to do the GR for both batches, and I want to select the specific batch from the assigned 2 batches. I am facing a problem that , the GR by default selects the first batch of the order and the batch number field greys out. I am not able to select the second batch if I go for second GR of the same process order.
    How can I make the field selectable , such that I can select the required batch at the time of GR.
    Regards
    A S K

    There is a possibility to use batch split- kindly check if you are able to do this
    Reg
    Dsk

  • Best External Monitor for the DV SE 500 and what connections are needed?

    Hello everyone.
    What do people think is a good LCD monitor for the slot loader iMac? (I'm here in UK with access to PC world and Currys, etc,)
    I've never looked but I'm sure from other posts that I will have a connector under a panel round the back somewhere.
    I've seen monitors for sale at various prices ranging from £120 to £250. I've also noticed that some come with a HDMI (?) cable that seems to big for the connection port on my Powerbook so I'm wondering if the iMac's port will also need some sort of adapter. Are there such things as mini HDMI's and normal HDMI's and can a cable/adapter be bought to solve the problem?
    I really wanted a Mac display but from posts elsewhere I find that these need digital connections and neither my iMac nor my 550 Powerbook has digital out.
    So - I'm assuming I need a monitor with an analogue connection - possibly together with an adapter cable.
    I'm thinking no bigger than 19".
    I'm also wondering if I should try to find one with a resolution that matches both my Macs - is this possible? I know the Powerbook will run displays of several resolutions (millions of colours) in display closed mode but I'm not sure what the iMac will support.
    I've seen monitors quoting 1280x1024 as something called a native resolution. Is this important?
    What do people think/advise? Many of you will have hooked up an external LCD monitor to your iMacs and will have cracked all these issues.
    Can you help with some info please?
    Cheers to all, Russ

    Russ, 
    1. The iMac G3 (>=400MHz) has a standard VGA port (15pin D-Sub) which is standard for analogue PC monitors.
    2. New LCD panels will either have a newer digital DVI connection (which current Apple Displays use) and/or use the older analogue VGA connection for wider compatibility.
    3. LCDs look sharpest in their native resolution. You can see this effect by changing the resolution down from the maximum on your TiBook. The display is still visible but less defined.
    4. As the iMac G3 can only "mirror" the internal display on to the external you may wish to look for an XGA (1024x768) panel. However, the Powerbook Ti can display a wide range of resolutions (see the full list in this link) in either "mirror" or "dual-display" mode.
    The issue here is that a display that makes full advanatge of your Powerbook's capabilties is overkill for an iMac G3's limited capabilites.
    5. FYI, HDMI is a digital connection for Digital TVs. It is similar to DVI technology but carries sound data too.
    6. Here's a large selection for well under £150 (link).
    regards
    mrtotes

  • Subcontracting PO - Batch number to be made mandatory for the components

    Hi All,
    I have a situation in Subcontracting PO. The components which are sent to vendor need to be updated with Batch number. Is there any User Exit  / Configuration available, which can provide a error message to the user when ever he tries to save the PO without the batch number entered for the components.
    SAP allows to save the SC-PO, if the batch numbers are not entered for the components which are batch managed. I have checked the PO Fields in Customizing, which has control of the Batch number for the header material in the material data tab & not for the components which will be available after the BOM icon is clicked.
    Appreciate if you experts provide a solution / work around for the above scenario, as the client is a pharma client & they need to exactly match the batch which has been sent out for making Finished product with the Sub contracting vendor.
    Thanks for your help & awaiting your reply at the earliest.
    Regards,
    Sathya Padmanabhan

    Hi,
    you shoudl definitively check out SAP best Practices for Pharmaceuticals, which can be foubnd in the helpportal:
    http://help.sap.com/bp_pharmav1600/Pharma_US/index.htm
    Go to the Business Information area....there are some subcontracting scenarios....
    Oliver

Maybe you are looking for