How to get DBMS_LOB standard package

Where can I get DBMS_LOB standard package?
and
how to use it in my FORM application?

Hi,
This standard package is included in the RDBMS $ORACLE_HOME/dbms/admin/dbmslog.sql file.
If you install it (check the file for howto install) you'll then be able to use it like any other package.
Yoann.

Similar Messages

  • How to get javax.servlet package

    Hi guys
    Does anybody know how to get javax.servlet package?
    Thanks in advance.
    Regards,
    Mark.

    I just moved the servlet jar into java_home/jre/lib/ext and I made some progress. Instead I recieved this error
    ---------- Javac ----------
    Note: C:\jdk1.3.1_04\bin\java\lang\ThreadGroup.java uses or overrides a deprecated API.
    Note: Recompile with -deprecation for details.
    Normal Termination
    Output completed (17 sec consumed).
    DOes anyone have an idaea of what would cause this when it had compiled normally before?
    THanks Bruce

  • How to get the standard Menu of Query Designer into Web Template

    Hi Experts,
    is there a way on how to put the standard menu within Bex Query Designer (after executing a Query with the Query Designer you get into ad-hoc reporting with a menu including several functions like print, show as..., properties, etc) into an individual Bex Web Template?
    Copy & Paste source code will not work I guess because of several javascript functions I don't have access to.
    Thanks & Best regards
    Tobias

    BEx queries are displayed on the web using standard web template 0ANALYSIS_PATTERN or some customized version base don your implementation.
    You can either include the 0ANALYSIS_Pattern web template in your custom template or use Save as to create a new template with 0ANALYSIS_Pattern  AS THE STARTING POINT.

  • How to get the standard texts available in a smartforms

    Hi Experts,
        How can we find out the standard texts that are exist in a particular smartform . is there any table/function module available to get those standard texts? I am finding the table STXFTXT, from that I am getting only textline. But I need the standard text names that are used in a smartform.
    Thanks & Regards,
    Suresh

    hi,
    1,Use SO10 Tcode to write standard text in Smartform.
    2.For long text
    method1
    Create TEXT node- general attributes change text type to include text
    then you can input text name/text object/text id/language
    method2
    create PROGRAM LINE node - use FM READ_TEXT to read it to a internal table
    then use LOOP or TABLE node to display it
    For TEXT module(For foreign language)
    Tr-code:smartforms -- choose Text module(not choose form)--create a text module object
    then enter smartform Create TEXT node- general attributes change text type to text module
    input the text module name which created by above
    3.
    1. take function module name of the smartform.
    2. goto se37 and type that fm name.
    3. goto attributes tab
    4. double click on either program or include .
    5. There u can find all the subroutines used inside smartform.
    6. search for "perform %move using %textkey-name".
    4.Standard Texts are created in SO10 Tcode and stored in STXH table with OBject ,ID and NAME parameters. We can use Read_Text FM to read the text.
    check the tables STXH & STXL.
    5.
    How to CAll Standard Text in Smart Forms
    In SFs you can insert the standard tests using the TEXT node. Create a TEXT NODE. Then in the GENERAL ATTRIBUTES of this TEXT node select INCLUDE TEXT in the TYPE option. Then you have to enter the text name, object , ID and language in the provided fields. Then if you dont want any error if there is no text in the corresponding text then CHECK the check box "No errors if no text available.

  • How to get no of packages in GTS

    HI Expert
    i need your help, i am facing issue in No of packages in GTS. Please let me know how i can configured or get the number of packages in GTS. When data are transfer from Proforma invoice to GTS the packing material line item also transfer to GTS with the result it is not having any net value and statistical value and it is giving erro.
    So please advise how i can configured my system so that i can get the No of packages in GTS.
    Please advice

    Hi Kevin,
    Step 1 .  Define Custom Code  list:
    SPRO path :  SAP customs Mgmt->General Settings> Customs Code List
    Three steps for custom code declaration :
    a) Define Procedure for Custom code list .
    b) Assign custom code list  object and procedure to legal regulation .
          Use codel iist object PGETY .
    c) Maintain code list for Legal Regulation. (  Here  you can add the value for package type.)
    Step 2 : Assign Packaging Material Type from FS to GTS Package type
    SPRO path :  SAP customs Mgmt->General Settings> Customs Code List-->Assign Packaging Material Type from FS to GTS Package type.
    Here assign the package material type from feeder system to Package type of GTS.
    Your package no wil get oushed when your peerforma goes to GTS.
    KInd Regards,
    Sameer

  • How to get a EAR package for deploying without local data-source setting in JDev9i?

    Hi all,
    I want to use pooled data-sources defined in OC4J's global configuration setting directory in JDEV_HOME\j2ee\home\config.
    But when I packaged my application to an EAR file,it contains it's local data-sources.xml file in the package.Each time the server was restared,the local data-sources.xml file was overwritten by the originally setting in the EAR package,thus I cannot use the pooled settings.
    So could let me know how to package a EAR file without containing it's local data-source setting,but use the global data-source setting?Or how to control the local data-source setting without changed after mannully defined.
    Your reply is greatly appreciated!
    Regards,
    Robbin Woo

    Mike,
    You don't need a File to do what you want. Even if you could, it would be wrong to use a file.
    It would be wrong, because the compiler might not by using a JavaFileManager that is actually backed by a filesystem. It could be backed by some form of repository such as a database, or it could be backed by a transient in memory file system ( An example of the latter is the [annotation processor test framework|https://hickory.dev.java.net/nonav/apidocs/index.html?net/java/dev/hickory/testing/package-summary.html] in hickory)
    But probably of more interest to you, you don't need to because you can simply [get an InputStream|http://java.sun.com/javase/6/docs/api/javax/tools/FileObject.html#openInputStream()] from the FileObject returned from [filer.getResource(...)|http://java.sun.com/javase/6/docs/api/javax/annotation/processing/Filer.html#getResource(javax.tools.JavaFileManager.Location,%20java.lang.CharSequence,%20java.lang.CharSequence)] and read it.
    You might also find the [Compiler Tree API|http://java.sun.com/javase/6/docs/jdk/api/javac/tree/index.html] useful. The Compiler Tree API is available to annotation processors running in Oracle's (Sun's) javac, but not in other compilers (possibly limiting portability).
    With this API you can [convert |http://java.sun.com/javase/6/docs/jdk/api/javac/tree/com/sun/source/util/Trees.html#getPath(javax.lang.model.element.Element)] the Element representing the annotation to a Treepath then [get the leaf node|http://java.sun.com/javase/6/docs/jdk/api/javac/tree/com/sun/source/util/TreePath.html#getLeaf()] and from that tree [obtain its offsets|http://java.sun.com/javase/6/docs/jdk/api/javac/tree/com/sun/source/util/Trees.html#getSourcePositions()] within the source file.
    Bruce

  • How to get PL/SQL package to execute in VB

    We have a PL/SQL reference cursor that returns values from Oracle table. we need to pass these values to MS Access tables using VB Code.
    We created ODBC connection and were able to retrieve records from Oracle table in MS ACCESS. but now we need to retrieve cursor values. For that we are using the following code:
    Option Explicit
    Public m_adoCnn As New ADODB.Connection
    Public Sub Command0_Click()
    Dim sSQL As String
    Dim m_adoRst As ADODB.Recordset
    Dim m_adoCmd As ADODB.Command
    Dim m_adoPrm As ADODB.Parameter
    sSQL = "emp_hist_refcur.empsearch"
    Set m_adoCmd = New ADODB.Command
    With m_adoCnn
    '.ConnectionString = "DSN=TGFSDBA_Test;Pwd=tgfsdba_ot35;UID=tgfsdba"
    .ConnectionString = "Provider=msdaora;Data Source=TGFSDBA_Test;" & _
    "User ID=tgfsdba;Password=tgfsdba_ot35;PLSQLRSet=1;"
    .CursorLocation = adUseServer
    .Open
    End With
    With m_adoCmd
    .ActiveConnection = m_adoCnn
    .CommandType = adCmdStoredProc
    .CommandText = sSQL
    ' .Parameters.Refresh
    ' Set m_adoPrm = .CreateParameter("pTest", adVarChar, adParamInput, 1)
    '.Parameters.Append m_adoPrm
    End With
    'm_adoPrm.Value = "x"
    Set m_adoRst = m_adoCmd.Execute
    End Sub
    Private Sub Form_Unload(Cancel As Integer)
    m_adoCnn.Close
    End Sub
    But when we run it, it gives us TNSNAMES.ORA could not be resolved error and it highlights ".OPEN" in the code? What could be wrong? Please help.
    When we run it using this connection string
    '.ConnectionString = "DSN=TGFSDBA_Test;Pwd=tgfsdba_ot35;UID=tgfsdba"
    Then we get error saying
    Wrong number or type of arguments in a call.
    Do we need to configure TNSNAMES, or install a driver or try a new connection string like OO4O instead of ADO?

    I worked on my code some and I have reached a point where I have created a msg box which shows that I am connected to Oracle. I am executing it step by step (step into). When I reach
    Set m_adoRst = m_adoCmd.Execute()
    I get an error message Microsfot ODBC for Oracle: Syntax error or access violation.
    We think that there is something wrong with the way we are passing the parameter.
    Can you tell how to pass an OUT refcursor parameter? There is no IN in the procedure.
    Option Explicit
    Public m_adoCnn As New ADODB.Connection
    Public Sub Command0_Click()
    Dim m_Cnn As ADODB.Connection
    Dim sSQL As String
    Dim m_adoRst As ADODB.Recordset
    Dim m_adoCmd As ADODB.Command
    Dim m_adoPrm As New ADODB.Parameter
    Dim emp_cursor As String
    sSQL = "call emp_hist_refcur.empsearch(resultset 1000, fname)"
    Set m_adoCmd = New ADODB.Command
    With m_adoCnn
    .ConnectionString = "DSN=TGFSDBA_Test;UID=tgfsdba;Pwd=tgfsdba_ot35"
    .Open
    .CursorLocation = adUseServer
    MsgBox ("connected")
    End With
    With m_adoCmd
    .CommandText = sSQL
    .CommandType = adCmdStoredProc
    .ActiveConnection = m_adoCnn
    Set m_adoPrm = .CreateParameter("pTest", adVarChar, adParamInput, 1)
    .Parameters.Append m_adoPrm
    ' .Parameters.Refresh
    End With
    Set m_adoRst = m_adoCmd.Execute()
    Do While Not m_adoRst.EOF
    Debug.Print m_adoRst(0)
    m_adoRst.MoveNext
    Loop
    ' Close the recordset.
    m_adoRst.Close
    'Print m_adoRst.Fields.Item
    ' End With
    ' m_adoPrm.Value = "x"
    End Sub
    Private Sub Form_Unload(Cancel As Integer)
    m_adoCnn.Close
    End Sub

  • How to get Cumulative Update packages for SQL Server Compact v3.5 SP2 for use on a Windows Mobile device

    There are links on the pages for various Cummulative Updates for SQL Compact v3.5 SP2 which look to relate to the desktop version, but are these also available for Windows Mobile devices?  If so, what is the process to get hold of them?
    We are seeing intermittent problems with corrupted databases on devices which are using SQL Compact v3.5 SP2 and have seen that some of the Cumulative Updates do relate to corruption and would like to see if these can help to solve the issue.

    Just select the KB article, at the top of each there is a link to request a hotfix, you will then get a email with a download link. The 8088 and 8109 hotfixes also apply to Windows Mobile.
    http://erikej.blogspot.dk/2010/08/sql-server-compact-35-sp2-downloadable.html
    Please mark as answer, if this was it. Visit my SQL Server Compact blog http://erikej.blogspot.com

  • How to get Material standard price: MBEW-STPRS?

    Hi BW experts,
    I am wondering what is the best way to extract data for <u>material standard price</u> in Material master data - Accounting view (<b>MBEW-STPRS</b>)?
    I checked existing extractors for material master, but I didin't find one which could be used.
    Any help and feedback will be awarded.
    Thanks and regards.
    Sally

    Hi Sally,
    Check if 0CO_PC_ACT_05 helps here.
    http://help.sap.com/saphelp_nw04/helpdata/en/22/1b383fdb800804e10000000a114084/content.htm

  • Ipod touch 4th, running OS5, boots up with very large icons, impossible to navigate, how to get back standard sized homepage?

    Ipod touch 4th, running OS5, boots up with very large icons, impossible to navigate, need to return to standard sized homescreen?

    Triple click the Home button and then go to Settings>General>Accessibility and turn Zoom off. If problems see:
    iPhone: Configuring accessibility features (including VoiceOver and Zoom)

  • How to get standard view or table for the standard inforsource

    Hi all:
          According to business reqirement, we are going to use standard inforsource 0CO_OM_CCA_10,
    we need to know the standard view or table in order to corresponding DataSource?
    could you please tell me how to get  the standard view or table or DataSource?
    Couldn't thank you more!

    Hi Sony,
    Goto RSA1>BI content installation>goto objects>double click on the Infosource>then a pop-up comes search for that infosource-->select it and click on transfer
    Before that in the right side of the tab select the grouping as "Before and afterwards of the dataflow" and collection as automatic.
    then you get all the datasource/cubes and all the object related to the infosource.
    OR another option is-->
    Goto RSA6 in the R/3 and search for the datasource with the name "0CO_OM_CCA_10" (don't forget to expand all the tree structure in RSA6)
    then goto that datasource and double click on the datasource then you will get the Extract structure of that datasource.
    double click on the extract structure then you may get the View name also.
    hope this helps...
    Regards,
    Ravi Kanth

  • How to find available standard reports  for SD module

    hello folks,
    can any one please guide me how to find the standard reports available for
    the ssd module

    hi cnu,
    here r some steps to find the standard reports
    goto SE81 and click on the corresponding application like sd
    You will get the standard packages for SD with the programs available
    Please check out this link
    http://www.sap-img.com/financial/useful-reports-tcode-in-sap-financial-accounting.htm
    or
    Check this Transaction: SAP1
    U will have reports based on the area.
    or
    Look at the table TADIR --> see only the programs, even you can look at based on the Development class wise
    If you find it useful mark the points
    ~~Guduri

  • How to print a standard text of 3 pages in the script output?

    Hi all,
    I want to print a standard text as an include in the script output.
    But the standrad text is of 3 pages conataining continuous (some terms and condtitions) text.
    But while executing driver program, I am getting a STOP messgae pop-up saying 'Output is continuous or contains too many pages (>4)'.
    How to get the standard text of 3 pages in the output. The standard text is to be printed at the bottom of the output.
    Thanks,
    Sachin

    Hi ,
    To display standard texts you have to create a include in your script below is the syntax for that:
    INCLUDE name OBJECT name ID name PARAGRAPH name LANGUAGE   name
    Include command is used to include standard text in a form.the text 
    should be already defined by using transaction SO10.
    Here name is the name of text
    ID is used to classify text e.g. SDVD (SD related text) , ST (Standard text)
    OBJECT is used to specify type of object it an be TEXT , DOKU
    LANGUAGE is used to specify language like EN ,if ommited than logon
      language is used
    PARAGRAPH is used to specify the paragraph like C
    e.g. /:INCLUDE mytext OBJECT TEXT ID ST LANGUAGE EN
             Here the standard text created in SO10 with name mytext is
             included in the form in language EN (English)
    Please let me know if you have still any confusion.
    Thanks
    Narendra Vikram Vishwakarma

  • How to get standard oracle API or Interface package in oracle apps

    Hi guys,
    Need ur help........plz tell me how to find the standard oracle API or other package on server. Actually I need standard Interface package of Requisition Import program API plz give me exact path to finding standard API or interface pkg.......ASAP and also give the interface pkg name of Requisition Import in purchasing.
    it's urgent plz do needful...........................................
    Thanks,
    abh...................
    Edited by: 811373 on Jun 4, 2011 12:54 AM

    I want to find all API related to PO Requisition special Requisition Import conc. program API ...plz tell how can get it.
    Actually I want to design custom interface on the basis of standard Requisition Import api so, plz give me sql script for find those api.From iREP website, navigate to the PO module and check the list of APIs.
    Or, you could enable trace/debug for the concurrent program and generate the TKPROF and this will show you the API used by this program.
    FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]
    How To Trace a Concurrent Request And Generate TKPROF File [ID 453527.1]
    Another option is to open the report using reports builder and check the code.
    Thanks,
    Hussein

  • How to get attribute value from standard page ?

    Hi,
    How to get attribute value from standard page ?
    String str = (String)vo.getCurrentRow().getAttrbute("RunId");
    But this value is returning a null value ....
    Can anyone help me to get this attribute value which is actually having a actual value .

    getCurrentRow() would always return null if no setCurrentRow() is used.
    Please check the page design and understand how many rows of VO are there. You can also use the following to get the row:
    vo.reset();
    vo.next();
    Regards
    Sumit

Maybe you are looking for

  • My extremely disappointing experience with Apple's service

    I have been a loyal customer of Apple since the first iPhone, however, my recent experiences have started to make me reconsider that relationship. Here's what happened: I am living in Asia now and as an avid apple fan, I bought an Iphone plus 64gb in

  • Font smoothing, font sizing, sub-pixel tuning, OS X vs Windows

    I have a query regarding font the font smoothing implementation in OS X. Having just come from the Windows world (using ClearType) naturally comparisons will be made. I am trying to get fonts looking as readable as possible on my Mac. I have 19" LCD

  • Z4 report Foreign trade regulations SCB indicator (central bank key)

    hello all, i was wondering what is triggering the Z4 report Foreign trade regulations report? Is it the SCB indicator (central bank key)? If an invoice is missing that indicator, could it be that the report shows no output? You can find the indicator

  • Trying to load new itunes & ios6

    I've even trying to load the new iTunes update for a long time.  It freezes up my computer. I even tried uninstalling but it freezes. I also tried taking my virus protection off. Any ideas?

  • Cost of Dynamic Query

    Did we can write a Query which have Bind Variables, If variable is null than all rows other wise selected rows, But cost of Query is still same. When i do it my cost of query increased because table full scanned. Give me some trick to avoid full tabl