Discoverer 11g functional on a 10g data base?

Can we function with Discoverer 11g and a 10g data base?

Thanks Michael!
I thought so but needed confirmation for management.
I hope things are picking up for you. But it might be a while for the recession to lighten.
Disco 11g is out as you have noted. Any word on the first update to it?
Thanks,
Jerre

Similar Messages

  • Error while connecting to oracle 10g data base

    Following is the code we used to connect to oracle 10g data base using symbian 7.1 series 80 SDK
    int CTest_S80AppUi::SetupODBC(void)
    RETCODE rc;
    char *DataSource = OD_DATA_SOURCE;
    char UserId = "system", Password = "manager";
    rc=SQLAllocEnv(&Henv);
    //if (TEST_CHECK_ERR(SQL_NULL_HSTMT, rc, "SQLAllocEnv", FALSE) < 0) return(-1);
    rc=SQLAllocConnect(Henv, &Hdbc);
    //if (TEST_CHECK_ERR(SQL_NULL_HSTMT, rc, "SQLAllocConnect", FALSE) < 0)
         //return(-1);
    rc = SQLConnect(Hdbc, (unsigned char *)DataSource, SQL_NTS,
              (unsigned char *)UserId, SQL_NTS,
              (unsigned char *)Password, SQL_NTS);
    bConnected = TRUE;
    //if (TEST_CHECK_ERR(SQL_NULL_HSTMT, rc, "SQLConnect", FALSE) < 0) return(-1);
    SQLAllocStmt(Hdbc, &Hstmt);
    //if (TEST_CHECK_ERR(SQL_NULL_HSTMT, rc, "SQLAllocStmt", FALSE) < 0) return(-1);
    return (1);
    } /* SetupODBC */
    iam getting the return code for SQLConnect as -1.
    Thanks in advance.

    Thanks for the reply.
    //syntax means comments.
    chk the following code.
    int SetupODBC(void)
    char *DataSource = "polite";
    char UserId = "system", Password = "manager";
    if ( SQLAllocEnv(&Henv) < 0 )
    return -1;
    if ( SQLAllocConnect(Henv, &Hdbc) < 0 )
    return -1;
    if ( SQLConnect(Hdbc, (unsigned char *)DataSource, SQL_NTS,
    (unsigned char *)UserId, SQL_NTS,
    (unsigned char *)Password, SQL_NTS) < 0 )
    return -1;
    if (SQLAllocStmt(Hdbc, &Hstmt) < 0 )
    return -1;
    return (0);
    As said earlier there is a problem in SQLConnect. It is returning -1.
    But the code should return 0 if successfully connected.
    The info regarding the arguments used in the above methods:
    HENV Henv; /* Handle to ODBC Environment object */
    HDBC Hdbc; /* Handle to ODBC Connection object */
    HSTMT Hstmt; /* Handle to ODBC Statement object */

  • Function module updating the data base table

    Hi,
      This post is regarding the function module not updating the data base table.
    I am calling the FM SD_SHIPMENT_HEADER_CHANGE inside the ZFM. It's returning success an changing the  table c_xvttk_new with the new TDLNR value. But it's not updating the Shipment table VTTK-TDLBR or VT02N Forwarding agent.
    When I directly updating Forwarding agent in VT02N it's updating fine.
    Please let me know what the extra step need to be included to update or COMMIT the FM for updating
    Forwarding Agent(VTTK-TDLNR).
    Best Regards,
    Mahesh

    hi friend,
    This link wont five u the complete help but if u ananyse it  then it might provide u some idea......
    BAPI change shipment doc
    regards
    kanishak

  • Discoverer 11g - How to get Sales Data in different periods?

    Good afternoon,
    I am currently using Discoverer 4.1 and I can run reports that display all of these different types of sales.
    I have a Cross tab and I want 5 columns showing the Sales below.
    2013 Month Sales, 2013 YTD Sales, 2012 Month Sales, 2012 YTD Sales, and 2012 Total Sales
    I installed Discoverer 11.1.1.3 and I copied my reports over, but no sales show up.
    Does the NEW Discoverer need different calculations or conditions?
    I couldn't find anything on it.
    I have all of these checked.
    My Conditions:
    Short Date Range = '2013' AND Month = 'FEBRUARY'
    My Calculations:
    2012 Total = CASE WHEN "Year" = '2012' THEN Net Selling ELSE 0 END
    2012 YTD = CASE WHEN YearMon IN ('201201', ‘201202’) THEN Net Selling ELSE 0 END
    2012 Mth = CASE WHEN YearMon = '201202' THEN Net Selling ELSE 0 END
    2013 YTD = CASE WHEN YearMon IN ('201301', ‘201302’) THEN Net Selling ELSE 0 END
    2013 Mth = CASE WHEN YearMon = '201302' THEN Net Selling ELSE 0 END
    Keep in mind, these conditions and calculations work perfectly in Discoverer 4.1.
    Any help is appreciated.
    Let me know if you require anymore information.
    Thanks,
    Andy Hoang

    Have a look at the following note:-
    Note 1573200 - How to restructure the statistic data of the sales information system (SIS)
    But before trying to carry out the process as detailed in the above note, first check with other SIS reports like MCTA etc., and no reports are showing correctly, then you can proceed.  Otherwise, you need to raise an OSS message with SAP.
    G. Lakshmipathi

  • I want to connect oracle 10g developer run time forms to oractle data base

    Hey,
    Would any body want to tell me, how come i can connect oracle dev 10g from its forms with oracle 10g data bases
    I am waiting
    bye

    Try asking this on the Oracle Forms forum:
    http://forums.oracle.com/forums/category.jspa?categoryID=19
    In any case you need to set-up a sqlnet connection from your client to your server. Use the Network Configuration Utility that comes with the Oracle Forms installation.

  • Synchronize with Data Base' bug

    JDeveloper Version : JDeveloper 11.1.1.1.0 , ADF BC
    Use Case :
    - we have DB Table with filed named "Flage" and type "Number"
    - Create EO
    - Change "Flage" ' data type from "Number" to "varchar2" in DB
    - Use "Synchronize with Data Base" option for EO .
    The result for "Flage" attribute is :
    - Column Type : changed to "varchar2 " --- same as DB
    - Attribute Type : still have old type "Number"
    AND XML :
    Name="Flage"
    ColumnName="Flage"
    SQLType="VARCHAR"
    Type="oracle.jbo.domain.Number"
    ColumnType="VARCHAR2"
    TableName="Test"
    IsNotNull="true"
    Precision="200"
    Error will raise if you try to insert Character into "Flage" field
    and to fix problem we should change Attribute Type for EO to "Number" manually
    so , it is function of "Synchronize with Data Base " to change
    Column Type and not change Attribute Type ??? or there is some thing missing ??
    Thanx
    Wael No'man
    Edited by: Wael No'man on Aug 16, 2009 11:05 PM

    Hi,
    Currently Jdev supports synchronizing the database column type & not the attribute type.
    An Enhancement Request already exists for this.
    Regards,
    Shantala

  • Discovere acess problem in data base 10g

    create user for discovere Data base access for one user.Now he is facing log in problem it shows
    A connection error has occurred.
    - Failed to connect to database - ORA-12154: TNS:could not resolve the connect identifier specified
    can anybody please help me.
    Thanks,
    Dave

    1.On client machine intall discoverer desktop
    2.copy the tnsname.ora file in %BI_HOME%/network/admin Directory
    3.copy the applicaitons .dbc file in %BI_HOME%/discoverer/secure directory. If the directory doesn't exist then create it.
    4.Create an evironment parameter FND_SECURE with value pointing to the %BI_HOME%/discoverer/secure path.
    5.In discoverer desktop change connection options to Oracle applciations and then provide username/password/sid and check the Oracle applications checkbox and connect to database.
    Sami Malik
    [email protected]

  • Functionality in Discoverer 11g to limit the users or reports that consume

    Experts,
    I am using Discoverer 10g(9.0.4) ... we are upgrading to Discoverer 11g Fusion Middleware . i want to know if there is any functionality in 11g where we can limit the resources for users or reports that they usually consume in 10g .......
    let me know if my question is not clear?

    Hello,
    If I understand your question correctly, no this is not possible. There is no tool or method to have Discoverer 11g review the 9.0.4 statistics/usage and then limit the resources based upon the 9.0.4 usage.
    You can limit the number of rows returned or set requirement to schedule worksheets that are estimated to take over specific time and other such settings. These same settings are available in 9.0.4 as well.
    Regards,
    Sharon

  • Call function from data base with clob input parameter.

    Hello,
    In this project I use Jdev 11g.
    I call function from database.
    create or replace function get_fa_list (
    p_fa_id_list in clob
    return sys_refcursor
    is
    vCursor sys_refcursor;
    begin
    put_msg ('begin');
    if p_fa_id_list is null then
    put_msg ('CLOB is null!');
    else
    put_msg ('size CLOB: ' || dbms_lob.getlength (p_fa_id_list));
    end if;
    put_msg ('Save');
    open vCursor for
    select rownum as id, s.*
    from (
    select f.latitude, f.longitude, count (distinct f.res_id) as res_count, count (*) as fa_count, 16711680 as color, res_concat_distinct (f.res_id) as station_list
    from mv_frequency_assignment f, table (SplitClob (p_fa_id_list, ',')) l
    where f.ext_system = 'BI' and
    f.ext_sys_id = l.column_value
    group by f.latitude, f.longitude
    ) s;
    put_msg ('Open and End');
    return vCursor;
    end get_fa_list;
    I use TopLink in ejb.
    i use follow code for call function and get result.
    public List<TmpResPoints> findAllPointsBI(String p_id){
    UnitOfWork uow = getSessionFactory().acquireUnitOfWork();
    uow.beginEarlyTransaction();
    StoredFunctionCall call = new StoredFunctionCall();
    call.setProcedureName("get_fa_list");
    call.useUnnamedCursorOutputAsResultSet();
    ClobDomain c = new ClobDomain(p_id);
    //System.out.println(c.toString());
    call.addNamedArgumentValue("p_fa_id_list", c);
    ReadAllQuery query = new ReadAllQuery();
    query.setReferenceClass(TmpResPoints.class);
    query.setCall(call);
    List<TmpResPoints> result = (List<TmpResPoints>)uow.executeQuery(query);
    uow.commit();
    uow.release();
    return result;
    But size parameter "p_fa_id_list" is 0. (geting from temp table in Data base). this code in function >>
    if p_fa_id_list is null then
    put_msg ('CLOB is null!');
    else
    put_msg ('size CLOB: ' || dbms_lob.getlength (p_fa_id_list));
    end if;)
    How I can call this function from dataBase and get result?
    thx,
    Demka.

    What is the SQL generated?
    The argument should just be the Clob value (a String) not the domain object.
    Also try addNamedArgument, and then pass the named argument to the query.
    James : http://www.eclipselink.org

  • Data base 1og and discovere performance

    I have a rdbms 10g on hpux11 even Ihave a the discoverer suite rel 10.1.2.1 desktop and adminitrate version on an client windows XP. When I execute and query by discoverer, the performance y very pool. Any idea about if this it a variable or config the data base to get a good performance
    regarding

    Hi there ...
    I have read the note - thats where I found the link to the trace note 286496.1 - on now to setup a trace
    But I still need an explanation for the methods (1,2,4 etc)
    regards
    Mette

  • Can any one help me to configure the mysql table to enable user expiration to function, I have tryed most things, but not dates are being passed back to the data base from the form

    Im trying to build  user expiration into my registration form, but I cant get the form to send back the date registering.
    in my data base i have tried every thing from timestamp to datetime. I can get a timestamp but it is not functioning with the expiration?

    just have a look at my tutorial Login tables: installation & configuration where the required column attributes are explained and where you can obtain a fully functional SQL dump for a typical ADDT "login" and (optionally) "login_stats" table.
    BTW, "expiration" will have to be an "int" column.
    Cheers,
    Günter

  • How we create new data base in oracle 10g express edition

    hello every body.. i student of B tech n new user of oracle so please help me how we creat new data base in oracle 10g express edition

    Hello, Oracle XE can not create more than one instance, the other editions yes, but like other editions XE allows you to create database schemas, schemas logically grouped objects like tables, views, indexes created by a user. By creating an Oracle user is associated with a schema of the same name.
    Using SYS or system accounts for creating user accounts.
    Syntax to create a user:
    create user Your_user
    IDENTIFIED BY password
    default tablespace users;
    grant connect, resources to your_user;
    Edited by: rober584812 on Jun 25, 2010 9:03 PM

  • Oracle BPM 11g Engine Data base

    Hi All,
    Could you please share Oracle BPM 11g Engine data base details like tables..etc..
    Thank you.
    Regards,
    Srinivas

    Were you able to achieve this . Maybe this can help -
    Check hbuelow's reply @ Unable to see the application in BPM Workspace for Sales Quote tutorial
    Edited by: Sudipto Desmukh on May 9, 2012 7:02 PM

  • Migrate existing data base to oracle 10g and cluster it

    hi
    we are currently using sql server 2000 and due to some servere dead locks in the application and due to some load issues we wanted to migrate it to oracle 10g.
    At the same time we wanted to have clustered environment in the same server
    That is windows server.
    Can any one suggest how migration can be done..easily ie..by oracle migration work bench or what...
    At the same time can any one suggest how to cluster data base in windows server
    Thanks
    vkumar

    This is re-engineering from one database platform to another.
    You will have to take into consideration several aspects of your application, from SQL comptability to the application performance (SQL) in the Oracle environment.
    There is no magic to this puzzle, the amount of task involved in moving from one database to another depends on complixity of the application and how many database operations will have to be changed. I would suggest /recommend that you should start with a POC on a specific module /area (probably the most complex) of your application and this should give you some idea in the efforts of doing so.

  • Problem In Data Base Creation... Oracle 10g server in windows server 2008

    I have installed Oracle 10g server in windows server 2008 and the domain & active directory r created now i am trying to create the databse i am getting usual error (tns protocol adapter error ) in the 2% i have removed the domain and the active directory from windows then i created but this is not a solutions i need to create the data base in the domain server...

    this is a forms forum.
    please post in Database Installation

Maybe you are looking for

  • Push mail not working with wifi but with 3g?

    Hello, anyone else also noticed that the push mail option is not working properly with wifi but works well with 3g internet connection? don't know why? if someone from Nokia could answer it would be nice. Thanks

  • Can't get album art up on Nano

    I seem to be having a problem with getting my album art up on my Ipod Nano, has somebody ran into this same kind of problem?

  • Key Press Anyone? SImple Q?

    Hi, and thanks in Advance!!! So i have a button that needs to be activated from the key board. Does anyone have a completed script that will allow the user to activate this button that has sound attached to it from hitting the letter "A" ? Also, the

  • How do i uninstall a security update?

    just did a securtiy update through automatic update and when i restarted the computer, all my stuff is gone, i am back to a blue desk top and no files, no itunes, no photos, just a blank hard drive?? i was on 10.4.6 i believe, now the computer says 1

  • Can't free up memory (from using as a hard drive)

    I sometimes use my new ipod nano as a flash drive to transfer large files from my boyfriend's computer to mine. Unfortunately, every time I delete these large files off the nano, it till says that memory is being taken up. I don't know what to do to