Problem in creating package

When I am creating the following package in Oracle then it gives error. Can any body tell me what is the problem and how can I rectify the error.
I am using the following version
Oracle8i Enterprise Edition Release 8.1.5.0.0 - Production
PL/SQL Release 8.1.5.0.0 - Production
CORE Version 8.1.3.0.0 - Production
TNS for Solaris: Version 8.1.5.0.0 - Production
NLSRTL Version 3.4.0.0.0 - Production
create or replace package aa_tt is
type SelCursor is REF CURSOR;
type AuErrCursor is REF CURSOR;
procedure a_ret(p_KeyWord IN VARCHAR2,
p_SelCursor               OUT      SelCursor,
p_ErrCursor               OUT      AuErrCursor);
end aa_tt;
create or replace package body aa_tt is
isACTIVE constant number(1):= 1;
isNOTACTIVE constant number(1):= 0;
p_returnVal number;
p_returnText varchar2(500);
p_Error_text varchar2(500);
p_ORA_Error_Num number;
p_Rowcount number;
p_ORA_Error_Text varchar2(500);
procedure a_ret(p_KeyWord IN VARCHAR2,
p_SelCursor               OUT      SelCursor,
p_ErrCursor               OUT      AuErrCursor)
IS
V_Cursor SelCursor;
E_Aucursor AuErrCursor;
p_RowNo NUMBER;
begin
OPEN V_Cursor FOR
SELECT ROWNUM,t.MSG
FROM (
SELECT a.title ||' by '|| initcap(a.athr_director) ||' Rs.'|| b.base_price_inr MSG
FROM oxf_cont_mgmt_disp_table a,
oxf_sku_vep_mstr b
WHERE a.sku= b.sku
AND a.sku_srl_no = b.sku_srl_no
AND a.category_id='B014'
AND a.displayflag='Y'
AND a.itemflag='MS'
ORDER BY a.pref_no) t
WHERE rownum<3
p_SelCursor:= V_Cursor;
p_returnText := ' Record successfully Fatched';
p_ReturnVal := 1;
p_ORA_Error_Num := SQLCODE;
p_ORA_Error_Text := SUBSTR(SQLERRM,1,255);
p_RowCount := SQL%ROWCOUNT;
OPEN E_AUCURSOR for
select p_returnval, p_returnText, p_RowCount,p_ORA_Error_Num, p_ORA_Error_Text from dual;
p_errCursor := E_AUCURSOR;
end a_ret;
end aa_tt;
/

also try to use dynamic cursor
SQL> create or replace package aa_tt is
2 type SelCursor is REF CURSOR;
3 type AuErrCursor is REF CURSOR;
4 procedure a_ret(p_KeyWord IN VARCHAR2,
5 p_SelCursor OUT SelCursor,
6 p_ErrCursor OUT AuErrCursor);
7 end aa_tt;
8 .
SQL> /
Package created.
SQL> create or replace package body aa_tt is
2 isACTIVE constant number(1):= 1;
3 isNOTACTIVE constant number(1):= 0;
4 p_returnVal number;
5 p_returnText varchar2(500);
6 p_Error_text varchar2(500);
7 p_ORA_Error_Num number;
8 p_Rowcount number;
9 p_ORA_Error_Text varchar2(500);
10 procedure a_ret(p_KeyWord IN VARCHAR2,
11 p_SelCursor OUT SelCursor,
12 p_ErrCursor OUT AuErrCursor) IS
13 V_Cursor SelCursor;
14 E_Aucursor AuErrCursor;
15 p_RowNo NUMBER;
16 strg VARCHAR2(200);
17 "ret V_CURSOR%TYPE;
18 begin
19 strg :='SELECT ROWNUM,t.ename
20 FROM (
21 SELECT *
22 FROM emp a
23 ORDER BY a.ename) t
24 WHERE rownum<3';
25 OPEN v_cursor FOR strg;
26 LOOP
27 FETCH v_cursor INTO ret;
28 EXIT WHEN v_cursor%NOTFOUND;
29 p_SelCursor:= V_Cursor;
30 END LOOP;
31 CLOSE v_cursor;
32 END;
33 END;
34 /
Package body created.Khurram

Similar Messages

  • Unexpected problem when creating package

    Hi Expert
    I have a big problem that just has been happened to me unexpectedly.
    I am tried to create package which contains inset into statement. Fields are composed of varchar2, objtype and nested ref obj.
    Before this, I was able to execute this statement through sqlplus from the win 98 client to linux server (oracle for linux is here).
    But now i cannot do it anymore, my linux server was shuted down automatically once I hit the enter key to execute the statement in sqlplus program.
    What 's a problem?
    ps: I am to execute a small statement such as create table or select statement.
    Pls suggest
    sasi

    Hi, Puce!
    I know that this solution can help.
    However it is unclear to me, how my component differs from standard JComboBox for security, as JComboBox doesn't require JAR signature.
    My question is: what should I do in order to make security allow my component, as it allows JComboBox.
    Thanks!

  • Problems with create package in Fireworks CS4

    I have two distinct folders that I'm trying to package and I'm not having any luck. Each has been created on one of my computers that is running Windows Vista. I'm trying to use both Windows 7 Beta (not surprised this wouldn't work) and Windows Server 2008. When I tell Fireworks which files to use, add my digital certificate, then choose Create Package, it seems everything is going well as I do not get an error message but when I look for the newly created package there is nothing. I am getting an XML file in the directory and the product is creating .txt files on my desktop with cryptic info. Anybody know what the issue is? Am I trying to do this on unsupported OS? I would think Win2k8 Server would work.

    "When using Select All, through the menu or the keyboard, the marching ants are off by one or two pixels to the right, meaning one or two pixels on the left appear not to be selected, and the right edge of the marching ants is off the keyboard canvas.
    Sorry, I meant to say that the marching ants on the right edge of the image are OFF THE CANVAS. The selection can easily be nudged into place with the left arrow."
    On my machine I have observed that the All selection is in fact correct...in that the entire image is indeed selected. The problem appears to be that the Window frame is short by 1 pixel when running Open GL. It looks like a Window resizing issue. I discovered that by drag/resizing the Window frame to the right, to expose a portion of the unused grey area border. The entire image could now be seen and showed that all of the image was selected.
    Nudging the original selection to the right will only result in deselecting a single pixel vertical strip on the left side of the image.

  • Problem with oracle packages CREATE PACKAGE some packagename in MaxDB

    Hi All,
    I am having Problems in Creating Packages from MaxDB ..Does MaxDB supports the CREATE PACKAGE <some packagename>concept ? if so please help me how to achieve in creating packages ..
    My sample Oracle package Creation is as follows:
    CREATE OR REPLACE PACKAGE BODY acs
    AS
      FUNCTION add_user (
        user_id     IN users.user_id%TYPE DEFAULT NULL,
        object_type     IN acs_objects.object_type%TYPE DEFAULT 'user',
        creation_date   IN acs_objects.creation_date%TYPE DEFAULT sysdate,
        creation_user   IN acs_objects.creation_user%TYPE DEFAULT NULL,
        creation_ip     IN acs_objects.creation_ip%TYPE DEFAULT NULL,
      ) RETURN users.user_id%TYPE
      IS
        v_user_id       users.user_id%TYPE;
        v_rel_id        membership_rels.rel_id%TYPE;
      BEGIN
        v_user_id := acs_user.new (user_id, object_type, creation_date,
                    creation_user, creation_ip, email, ...
        RETURN v_user_id;
      END;
    END acs;
    show errors Can you Please Explain me how to write the same Package in MaxDB?
    Thanks & Regards,
    Shanmukh
    Edited by: shanmukh babu on May 16, 2008 10:11 AM

    Hi Shanmukh,
    MaxDB does not have packages like you'll find them in Oracle.
    But you can define your own functions and procedures.
    From the code-example you posted, I would say that a procedure will do it ...
    I suggest that you first read the documentation on procedures [CREATE DBPROC Statement|http://maxdb.sap.com/doc/7_6/a7/41ee11605911d3a98800a0c9449261/frameset.htm]
    There you'll also find an example in the Tutorial section.
    Be aware that the procedural capabilities of MaxDB are far less enlarged as in Oracle - but they do exist and work in their realm.
    So porting a full PL/SQL application layer to MaxDB procedures may turn out to be quite difficult and/or not the best choice at all.
    KR Lars

  • Problem to create a package the download of the source faild

    I want to create package for php-gtk:
    http://gtk.php.net/
    http://www.kksou.com/php-gtk2/index.php
    http://www.kksou.com/php-gtk2/articles/ … -linux.php
    http://gtk.php.net/download.php
    I did this PKGBUILD:
    # Contributor: Nadav Vinik <nadavvin at gmail.com>
    pkgname=php-gtk
    pkgver=2.0.0a
    pkgrel=1
    pkgdesc="GTK+ binding to PHP"
    depends=('')
    source=(http://gtk.php.net/do_download.php?download_file=php-gtk-2.0.0alpha.tar.gz)
    url="http://gtk.php.net"
    build() {
    cd $startdir/src/$pkgname-$pkgver
    tar xvzf php-gtk-2.0.0alpha.tar.gz
    cd php-gtk-2.0.0
    ./buildconf --with-phpize=/usr/local/php-5.1.6/bin/phpize
    ./configure --prefix=/usr/local/php-gtk-2.01 --enable-sourceview --with-php-config=/usr/local/php-5.1.6/bin/php-config
    make || return 1
    make prefix=$startdir/pkg/usr install
    The problem that It failed:
    HTTP request sent, awaiting response... 416 Requested Range Not Satisfiable
    The file is already fully retrieved; nothing to do.
    ==> ERROR: Failed to download do_download.php?download_file=php-gtk-2.0.0alpha.tar.gz
    ==> Aborting...
    Before that it download, however it failed immediately after it download.
    What is the problem?

    Snowman wrote:
    Install pkgconfig and add it as a makedepends. That should fix the build problem.
    In the configure line, change --prefix=/usr/bin to --prefix=/usr
    The PKGBUILD is also missing an arch, licence and md5sums fields.
    thanks it work
    I found a list of dependencies here:
    http://www.kksou.com/php-gtk2/articles/ … -linux.php
    # Contributor: Nadav Vinik <nadavvin at gmail.com>
    pkgname=php-gtk
    pkgver=2.0.0alpha
    pkgrel=1
    pkgdesc="GTK+ binding to PHP"
    depends=('php>5.1.6' 'gtk' 'glib>2.6.0' 'libpng>1.2.8' 'freetype>2.2.1' 'fontconfig>2.4.0' 'cairo>1.2.4' 'pango>1.14.7' 'atk>1.9.1' 'libgnomeprint>2.12.1' 'gtksourceview>1.6.0' 'pkgconfig>0.21')
    source=(http://gtk.php.net/distributions/php-gtk-2.0.0alpha.tar.gz)
    url="http://gtk.php.net"
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./buildconf --with-phpize=/usr/bin/phpize
    ./configure --prefix=/usr --enable-sourceview
    --with-php-config=/usr/bin/php-config
    make || return 1
    make prefix=$startdir/pkg/usr install
    But I get:
    ==> Making package: php-gtk 2.0.0alpha-1 (Thu Mar 8 10:45:27 IST 2007)
    ==> Checking Runtime Dependencies...
    ==> Missing Dependencies:
    ==>
    requires: php>5.1.6
    requires: glib>2.6.0
    requires: libpng>1.2.8
    requires: freetype>2.2.1
    requires: fontconfig>2.4.0
    requires: cairo>1.2.4
    requires: pango>1.14.7
    requires: atk>1.9.1
    requires: libgnomeprint>2.12.1
    requires: gtksourceview>1.6.0
    requires: pkgconfig>0.21
    ==>
    I follow this explanation:
    * depends: This should contain an array of package names that need to be installed before this program can be run, separated by spaces. The names can optionally be enclosed in single quotes (apostrophes) to prevent possible shell quoting problems, and the array should be enclosed in round brackets. Sometimes a program requires a minimum version of a dependency; In that case, you might want to use the mathematical "larger or equal than" operator, and enclose the whole construct in quotes. Here's an example to add a dependency on the glibc package, and the slang library of at least version 1.8.0: depends('glibc' 'slang>1.8.0')
    From here
    What is the problem?
    Does GTK+ is part of the gtk package?
    I didn't found package of GTK+.
    Another problem.
    Although, it successfully comple and build, The tar.gz file contain only two files FILELIST and PKGINFO
    What is the problem?
    Last edited by nadavvin (2007-03-08 09:13:49)

  • Problem Running SSIS Package with a SQL Server Agent

    SQL Server: SQL Server 2012
    VS: Visual Studio 2012
    Hello,
          I have been having a problem running SSIS packages by using a SQL Server Agent job. I first created these SSIS packages in a separate IS project in Visual Studio. I imported the packages to the Integration Services (Package
    Store) instance on my SQL Server and tried to create a job that would run them from there.
          At first I read around about needing a proxy account to allow the agent/packages to access the file system since these packages are importing data from a flat file in the SQL database. So I created a temporary admin user to
    use as the user for the agent. I did this by going to Services.msc on the server and linked the account the agent's "logon as". Then arose another issue where I am getting an error about using the incorrect type for my connection managers.
    The connection manager "TestFile" is an incorrect type.  The type required is "OLEDB". The type available to the component is "FLATFILE". Source: Data Flow Task Flat File Destination [2]     Description:
    Cannot open the datafile "O:\*****\Success.txt"
    I am not sure what this even means as I am getting this error even with a test package that doesn't do anything with the database. I have just two flat file connection managers  in this test project one for grabbing the source file and one for
    creating the new test file.
    I am not sure what to do.
    Thanks in advance,
    Matt

    I accidently created two posts. The newest one has the details.
    I did not mean to.
    SQL Server: SQL Server 2012
    VS: Visual Studio 2012
    Hello,
          I have been having a problem running SSIS packages by using a SQL Server Agent job. I first created these SSIS packages in a separate IS project in Visual Studio. I imported the packages to the Integration Services (Package
    Store) instance on my SQL Server and tried to create a job that would run them from there.
          At first I read around about needing a proxy account to allow the agent/packages to access the file system since these packages are importing data from a flat file in the SQL database. So I created a temporary admin user to
    use as the user for the agent. I did this by going to Services.msc on the server and linked the account the agent's "logon as". Then arose another issue where I am getting an error about using the incorrect type for my connection managers.
    The connection manager "TestFile" is an incorrect type.  The type required is "OLEDB". The type available to the component is "FLATFILE". Source: Data Flow Task Flat File Destination [2]     Description:
    Cannot open the datafile "O:\*****\Success.txt"
    I am not sure what this even means as I am getting this error even with a test package that doesn't do anything with the database. I have just two flat file connection managers  in this test project one for grabbing the source file and one for
    creating the new test file.
    I am not sure what to do.
    Thanks in advance,
    Matt

  • A question about creating packages as local objects in ABAP

    Hi,
    I have a question about creating packages with SE80. Whenever I create a new package it is assigned a new transport request. After that, I can create new programs inside this package, and each time I can choose whether to assign the new program to a transport request or just save it as a local object (I often do this for test programs that I don't transport and I remove them once my tests have been done).
    What I would like to ask is that, is it possible to create a package (and not just programs inside a given package) as a local object? so that every new object created in this package will be considered as a local object?
    Thanks in advane,
    Kind Regards,
    Dariyoosh

    Thomas Zloch wrote:
    Please also check the F1 help for the package field e.g. in SE80, SAP standard is in range A-S and U-X, namespaces start with "/", so you should be save. I am using the T namespace for temporary stuff since a long time and did not have a problem so far.
    > Thomas
    >
    > P.S. this applies to the package name only, of course
    Thank you very much for this remark, I checked F1 help for the package field and in fact as you mentioned these ranges are for local objects.
    Once again, thank you very much for your help.
    Kind Regards,
    Dariyoosh

  • Problem in Creating Service contract Quote

    Hi,
    I have a problem while creating Service Contract Quote. The Problem is "No Items being created in Service Contract Quote."
    I am copying these line items from the Package Quote(Programatically). I am reading the Package Quote Lines Items using CRM_ORDER_READ and I am looping these one by one, and copying into one Item Table. Passed this table, to MAINTAIN_ORDERADM_I function module. And Then I am calling SAVE function module.
    But, for me service contract Quote is being created with no line items.
    Can you please let me know, how can I solve this problem.
    And let me know what are the necessary steps to be taken progrmtically,  for creating Service Contract Quote from a Package Quote.
    Thanks,
    Sandeep

    A standard way of doing this would be to create an action in service contract with method call processing type, and method COPY_DOCUMENT. For this you need to do the following:
    1) Create a new action called "SRV_CNTRCT_QUOTE_CREATE" in action pofile already attached to Package Quote. Use
        CRMC_ACTION_DEF Tcode for this.
    2) Choose processing type as method call and method as COPY_DOCUMENT.
    3) Choose parameter CRMD_ORDERADM_H, PROCESS_TYPE with initial value as transaction type of Serv Contract Quote.
    4) Institute start and scheduled conditions if required in CRMC_ACTION_CONF.
    Note: For this copying controls at transaction level, item category level and itemcat determination while copying should have been determined.
    Regds,
    Raghu

  • Creating Package

    hi sir,
    What is the t-code for creating package other than se80
    i got some problem with se80.
    thanks & regards
    prabhakar

    Moderator message - Welcome to SCN.
    You can learn a lot just by looking. If you need a transaction, go to the transaction builder (SE93) and look for transactions with the word package in the description.
    Rob

  • Problem to create jar with images

    Hello
    I have a project, it's a frame with a panel that contains a image, I want to create a Jar, but I have to problems, if create a Jar and execute out the project folder, I can't see the images, if I use getClass().getResource, I have other problems, I can't add panels.
    How it's difficult to say, I going to put a link from the project make with eclipse [My project|http://www.megaupload.com/?d=HBPHUWE9] , if someone wants have a look I would be grateful.
    http://www.megaupload.com/?d=HBPHUWE9
    Just look at the package com.constructor.interfaz
    To make the jar use the class InterfazFactoriaPaneles
    Thanks in advance !
    Edited by: Dav1d on Jul 10, 2009 6:11 AM
    Edited by: Dav1d on Jul 10, 2009 6:12 AM

    I explain better:
    I have a Class -> InterfazFactoriaPaneles, with this main
    public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        InterfazFactoriaPaneles application = new InterfazFactoriaPaneles();
                        application.getJFrame().setVisible(true);
    in the Frame I add a JPanel with an image, to load the image I override this method, where com.constructor.imagenes, it's the path where I've got my images :
    public void paintComponent(Graphics g){
              Dimension tamanio = getSize();                    
              ImageIcon     imagenFondo = new ImageIcon("./src/com/constructor/imagenes/patronConstructor.jpg");     
              g.drawImage(imagenFondo.getImage(),0,0,tamanio.width,tamanio.height,null);
              setOpaque(false);
              super.paintComponent(g);
    the with a menu, I remove the panel with the image I load other panel with components (JTextField, JTable, JLabel,...).
    If run the program from eclipse, everything it's ok, if I export into jar file, it works if the jar it's inside the project folder, but if I put the jar in other location, doens't load images, I google from answer and I read to put images path like that: new ImageIcon(getClass().getResource("/com/constructor/imagenes/patronConstructor.jpg")); , but if I do that, and run in eclipse, everything it's ok, but If I export into a Jar, I load the image, but when I try to change to other panel it doesn't work.
    So I do not what's the answer, if someone check my code, and try to make a jar, and the move the jar file into other location, will be able to see images doesn't appears.

  • Why a semi-colon is not enough when creating packages and package bodies?

    Hi,
    I'm struggling with a quite simple problem - when creating a package header and body in the same script, it does not work as expected. See for example this very simple package:
    CREATE OR REPLACE PACKAGE mypackage AS
    PROCEDURE test_proc(id INTEGER);
    END mypackage;
    CREATE OR REPLACE PACKAGE BODY mypackage AS
    PROCEDURE test_proc(id INTEGER) IS
    BEGIN
    NULL;
    END test_proc;
    END mypackage;
    When executed from JDeveloper (or sqlplus), the package is created but with a "PLS-00103: Encountered the symbol CREATE" error. It seems Oracle does not recognize the script contains header and body, and uses the whole script as a header (which is obviously wrong).
    If modified so that there are "/" everything works fine:
    CREATE OR REPLACE PACKAGE mypackage AS
    PROCEDURE test_proc(id INTEGER);
    END mypackage;
    CREATE OR REPLACE PACKAGE BODY mypackage AS
    PROCEDURE test_proc(id INTEGER) IS
    BEGIN
    NULL;
    END test_proc;
    END mypackage;
    Why is this necessary? Why Oracle does not recognize that "END mypackage;" actually ends package header definition, and combines it with the body definition into an invalid block? I've thought semicolon is a valid separator, so why is the "/" necessary?
    It does not work even when I try to run the statements separately (from the same worksheet in Jdeveloper) - first select the header block, hit F9 (execute statement), then repeated the same for body. In this case both header and body are created, but are invalid because the last semicolon is removed from them (so it's not possible to compile them).

    For that to work, the SQL engine would have to understand PL/SQL syntax. Only the PL/SQL compiler knows when all the END statements have matched up with their corresponding declarations, and it doesn't do CREATE statements. I guess it could detect that the compilation unit it started has finished and pass any text left over back up to SQL to have another shot at. I'm not sure that's reasonable. There is no other example in SQL where one CREATE statement can turn into two - e.g. you can't send a block of CREATE INDEX statements together and expect the database to parse them out into separate commands.
    Edited by: William Robertson on Jun 6, 2009 6:49 PM
    Edited by: William Robertson on Jun 6, 2009 6:51 PM
    Added example about indexes.

  • Problem while creating CAF project in NWDS workspace

    Hi Experts,
    We are facing a problem while creating CAF project in NWDS workspace. Even though we have tried in new workspace we are facing the issue. Find the below build error.
    We are not getting any error when we build from CBS.
    [javac] ERROR: C:\sap\test_VC_DC.jdi\0\DCs\test.com\ja\bl\journal\ejbmodule\_comp\src\com\test\ja\bl\journal\modeled\ModifyJournalLineItemRequestMessage.java:7: cannot find symbol
    [javac] ERROR: symbol  : class JournalLineItemDetail1
    [javac] ERROR: location: package com.test.ja.cm.util.modeled
    [javac] ERROR: import com.test.ja.cm.util.modeled.JournalLineItemDetail1;
    when we expand com.test.ja.cm.util.modeled there is no file with name JournalLineItemDetail1 and the actual file exists is JournalLineItemDetail but we are not able to understand why 1 is appending to the file JournalLineItemDetail. Can somebody throw some light on this?
    Regards,
    Pradeep

    Have you checked out the topics at the right in the More Like This section?
    OT

  • Problems while creating Web Services in development server

    Hello,
    We are facing problems while creating Web services . The transaction like WSADMIN, WSCONFIG are not there in development server. Its gives message u2018This transaction is obsoleteu2019.
    Due to this while creating Webservice, there is and error message . Kindly guide me whats needs to be done.
    We have also tried the transaction WSADMIN2 as suggested by SAP, but didnu2019t know wat needs to be done.
    Regards,
    Rachel
    Edited by: Rachel on Feb 3, 2009 9:15 AM

    Hi,
    With your help, we were configuring WEB Service through soamanger.Due to some problem, we couldn't proceed further.Kindly guide us with the further steps.
    *steps followed *
    Step 1 : Entered Service Registry Parameters in WSPARAM .
    Step 2 : In transaction SOAMANAGER->Technical Configuration -->System Global settings
    Step3 : From u2018SE80u2019 transaction, selected the package ZHR and then right clicked to create the enterprise service -> Client Proxy (Service Producer)
    We have followed steps in se80.Don't know how to proceed further.
    We are unable to find the service in soamanger .How to find the service name in soamanager?
    Regards,
    Rachel
    Edited by: Rachel on Feb 3, 2009 12:38 PM
    Edited by: Rachel on Feb 3, 2009 12:48 PM

  • Unable to create packaging material PO

    Hi Expert!
    Need your help again..
    I can't create packaging material PO.. The error is.."source not include in list despite source list requirement". Why am i having this error? How to fix it? Is it because of vendor has been blocked? How to check? Please anyone help me to solve this problem. Otherwise i can't create any PO for packaging material..
    Thanks..

    Hi
    Please maintain the source list for the material
    Or remove the soure-list req tick form the material master.
    Regards
    Niti Narayan

  • Problem allocating service packages to users via delegated admin

    I've created a custom service package using the sample templates. Upon assigning this newly created package to a user via Delegated Administrator I receive the following message "cannot create user - all service packages of this type have been allocated". Problem is I've made about 200 available and the stats for this package show 0 used. Please advice.
    Cheers

    Please post this question at Developer Forums > E-Mail, Calendar, & Collaboration

Maybe you are looking for

  • Function in a query causing a problem ................

    Hello Gurus I have a problem with my select statement which contains 2 function in it. These functions cause the query to run slow. I have cross checked with all the indexes, statistics and index used within the function they are all correct. Please

  • In need of an app developer?

    I was sitting down thinking one day and a random app idea popped in my head and I think it's a brilliant idea that I think would sell big if it was possible!! Now I don't know how this would happen but would it be possible to get an app developer and

  • Using the servlets with IIS

    hi, In a portal project using ASP and IIS server, i need to develop an application which connect to the web and retrieve documents from it. I choose a servlet technology to do this. I have two question : 1) If the portal uses IIS can i use Servlets w

  • Dev 6.0 Reports: Error when generating delimited output

    It seems there may be a problem when trying to use the generate delimited output command in Developer 6.0 Reports run-time. I have a report with a formula column that performs a simple calculation 'x is what percent of y,' where x and y are fields on

  • GPS Drive App

    I down loaded GPS Drive and it did not work, so I deleted the app.  Every time I delete the app it shows in the App Store as and update listing. The update for the app will not go away.