Creation of application in designer 2000 ver 6

Following messgae is shown while try to create new appliocation in designer 2000.
ORA-6502 PL/SQL numeric or value error.
The detail error is follows.
RME-00222: Failed to dispatch operation to Repository
RME-02124: Failed to execute SQL statement: declare
pl1 CIOAPPLICATION_SYSTEM.data;
utility varchar2(3);
begin
rmmes.clear;
savepoint rm_dispatch;
pl1.i.NAME := true;
pl1.v.NAME := :p3;
pl1.i.DATAWAREHOUSE_FLAG := true;
pl1.v.DATAWAREHOUSE_FLAG := :p4;
pl1.i.APPLICATION_TYPE := true;
pl1.v.APPLICATION_TYPE := :p5;
CIOAPPLICATION_SYSTEM.INS(:p1,pl1);
:p2 := pl1.v.id;
:errcnt := 0;
exception when others then
rmmes.get_error_state(utility,:excode);
rmmes.get_product(utility,:exprod);
:exutil := utility;
:errcnt := rmmes.getsize;
:sqlcod := SQLCODE;
:sqlmsg := SQLERRM;
rollback to savepoint rm_dispatch;
end;
RME-02105: Oracle error occurred...
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 22
ORA-06500: PL/SQL: storage error
ORA-06512: at "DES.RMMES", line 38
ORA-06512: at "DES.CIOAPPLICATION_SYSTEM", line 193
ORA-04031: unable to allocate 1036 bytes of shared memory ("large pool","unknown object","session heap","pliost struct")
ORA-04088: error during execution of trigger 'DES.CDI_EL_CREATE_AUDIT'
ORA-06502: PL/SQL: numeric or value error.
Please help.
Madhukar
null

I had a similar problem which was resolved by increasing the LARGE_POOL_SIZE to 2 MB
Good Luck!
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Madhukar Srivastava ([email protected]:
Following messgae is shown while try to create new appliocation in designer 2000.
ORA-6502 PL/SQL numeric or value error.
The detail error is follows.
RME-00222: Failed to dispatch operation to Repository
RME-02124: Failed to execute SQL statement: declare
pl1 CIOAPPLICATION_SYSTEM.data;
utility varchar2(3);
begin
rmmes.clear;
savepoint rm_dispatch;
pl1.i.NAME := true;
pl1.v.NAME := :p3;
pl1.i.DATAWAREHOUSE_FLAG := true;
pl1.v.DATAWAREHOUSE_FLAG := :p4;
pl1.i.APPLICATION_TYPE := true;
pl1.v.APPLICATION_TYPE := :p5;
CIOAPPLICATION_SYSTEM.INS(:p1,pl1);
:p2 := pl1.v.id;
:errcnt := 0;
exception when others then
rmmes.get_error_state(utility,:excode);
rmmes.get_product(utility,:exprod);
:exutil := utility;
:errcnt := rmmes.getsize;
:sqlcod := SQLCODE;
:sqlmsg := SQLERRM;
rollback to savepoint rm_dispatch;
end;
RME-02105: Oracle error occurred...
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 22
ORA-06500: PL/SQL: storage error
ORA-06512: at "DES.RMMES", line 38
ORA-06512: at "DES.CIOAPPLICATION_SYSTEM", line 193
ORA-04031: unable to allocate 1036 bytes of shared memory ("large pool","unknown object","session heap","pliost struct")
ORA-04088: error during execution of trigger 'DES.CDI_EL_CREATE_AUDIT'
ORA-06502: PL/SQL: numeric or value error.
Please help.
Madhukar
<HR></BLOCKQUOTE>
null

Similar Messages

  • Can Designer 2000 (ver. 1.3)  Connect to ORACLE 8i

    Hello Everybody,
    I have installed ORACLE 8i on Windows XP Home Edition Build (2600).
    I have also installed DESIGNER 2000 (version 1.3) on the same machine(Compaq Presario Model 5410US). How do I get Designer 2000 to connect to my ORACLE 8i database. My listener is running with two default handles ORCL and EXTPROC_CONNECTION_DATA. But when I enter my user name and passworld and ORCL as a connetion string, I get an error message "ORA-12154: TNS:COULD NOT RESOLVE SERVICE NAME". Could someone please tell me what to do. Many thanks.
    Emmanuel

    Paolino Censi (guest) wrote:
    : It is possible to run developer 2000 1.3.2 (Forms 4.5) using
    : sql*net of Oracle 8 client ?
    : May I set some parameter in regedit file ?
    : My Operating system is Windows95/NT.
    : Thank you in advance.
    : Paolino
    I think if you follow the steps you can connect --
    1. First check whehter TCP/IP has been installed and
    you can connect using the protocol. You can do this
    using simple command like ping. So on the DOS command
    prompt type following--
    ping 127.0.0.1 and enter.
    This will give you a series of messages and in the end
    OK. If you get OK in the end that means TCP/IP is
    properly working.
    2. Then configure the tnsnames.ora for the database sid you have
    chosen. You can do it through SQL Net Easy configuration.
    Configure it for TCP/IP and remember the sid name e.g. ORCL.
    3. Go to DOS prompt and change the directory to your
    ORACLE_HOME. Start the database giving command
    svrmgr30 (enter)
    4. It will give you prompt as SVRMGR. Type follwing
    connect internal; (enter)
    It should show message as connected. Then quit out of server
    manager.
    5. You are now again on to DOS prompt. Type the following
    lsnrctl80 start (enter)
    It will give the message as Listener Started Successfully.
    6. Now minimize the Dos window and start Forms application.
    While connecting type username, password and database name also.
    e.g. scott, tiger, ORCL.
    It should get connected. Because I followed the same procedure
    and now I am working suceessfully on it.
    null

  • DB LINK Problem in Designer 2000 ver 2.0

    Hi,
    Description:
    I have re-engineered a database into designer. The database name say is TEST. I have created another database called say TEST2 in TEST2 I have created a snapshot definition from one of the tables re-engineered from TEST.
    Problem:
    As soon as I try to generate the snapshot down to table level I can't see the db link to the remote database TEST in the DDL statement that was generated. I tried looking for a place in the database design but can't find a place to specifically define a database link.
    In the database design I have specified that a db link extist but
    there is no plcae to define the links name.
    Code Exp:
    PROMPT Creating Snapshot 'S_TABLE_OPPORTUNITY'
    CREATE SNAPSHOT S_TABLE_OPPORTUNITY
    STORAGE
    INITIAL 310K
    NEXT 310K
    TABLESPACE TEST_GENERAL_DATA
    REFRESH FORCE
    WITH ROWID
    AS
    SELECT
    NULL OBJID
    FROM TABLE_OPPORTUNITY????looking for db link here
    Please assist.

    Hello
    When you Use DAtabase Desing Transformer, check the options for generating the columns, its Key and related entities are chosen. U can find it in more options or any other button. then start genetaion
    u should get the tables.
    If still u are facing problem, delete the already generated table from DESIGN EDITOR.
    regds
    sai
    null

  • Error and crash durring creation of Designer 2000 repository

    I am a student learning to use Oracle and have run accross a problem when I tried to generate a Designer 2000 repository.
    I have installed Oracle 8i Personal Edition Release 8.1.5 on Windows 98.
    I logged on to Oracle using the internal id and began generating a repository, at the point in the process when it reaches these details:
    Stage Details
    CKTRIG
    Creating the repository triggers
    Object Details
    TRIGGER
    CDI_EL_CREATE_AUDIT
    Staus Information
    Submitting Definition/Statement..
    cdapitrg.sql
    I get the following error message:
    ora-04089: Cannot create triggers on objects owned by SYS
    I have tried skipping the step until it reaches one it accepts and then received a fatal error which closed the whole program down. I have also tried uninstalling and reinstalling and starting the process from the beginning and ended with the same results.
    Does anyone know why this is happening and more importantly how I can get around it?
    Thanks.

    Am not sure if you were able to resolve the issue but below are some points:
    a. I think the dlls sfabol and msa are not any more registerable, since they are more of VB.NET components and here assembly is registered and not the dll.
    b. For logging into the application just ensure that you have user id in table SMOUSER and the employee for that user in SMOMITABT table.
    c. If this is fine, then ensure that you have the latest BDOC metadata information on your laptop. I think in 5.0 also you need to use Clientconsole to download this information.
    d. If this is all okay, then try running SQL profiler and check if the query to the ides db is being executed by the framework. If the query is fired then it means application seems to behave properly but the query is not retrieving relevant details.
    For further details feel free to contact me..
    thanks,
    Piyush

  • DFD balancing using FHD in Designer/2000 rel 2.1 ver

    How do I perform DFD balancing using functional heirarchy diagram (FHD) in Designer/2000 rel 2.1 ver

    If you mean by balancing of DFD the complexity (that is the number of (sub) functions), then the FHD is the only option to show this complexity.
    Open the FHD and create a new diagram. Choose as the root function your highest level DFD-function (that should be the complete system).
    Now you get a overview of your functions and subfunctions and you can see the complexity.
    But what is important is that you have made DFD's on all levels, not just the lowest (elementary) level. Otherwise you can not use the FHD, because there will not be an full hierarchy of functions under a single root function.
    null

  • Upgrade design 2000 v1.3.2 to v 2.1

    Dear Sir/Madam,
    I'm using Oracle Design 2000 v1.3.2 with personal Oracle data
    ver 7.2.2.3.1. How can I upgrade to new version of Design 2000
    (v2.1)?
    Can I backup data ,reinstall design v2.1 and then restore data ?
    Thanks very much for your help.
    BACH
    null

    Hi Nguyen,
    I have done something similar (migrating from Des1.2/Oracle7.2
    to Des2.1/Oracle8.0) but in a NT environment and this is how I
    went about it.
    1. First you have to export the current repository on using the
    Des1.3.2 RAU (Repository Admin. Utility) facility.
    2. Then install the new version of your Des2.1 (on server
    and client in my case).
    3. Create a new repository using Des2.1.
    4. Import back using the export file from Des1.3.2 and the
    Des2.1 RAU.
    Usually the Des2000 booklet from Oracle gives a detailed step by
    step procedure to migrate from one ver to another. You might be
    better off if you have that book with you too.
    Hope this info could at least help you to get started.
    Headstart Team (guest) wrote:
    : Nguyen Pham Bach (guest) wrote:
    : : Dear Sir/Madam,
    : : I'm using Oracle Design 2000 v1.3.2 with personal Oracle
    data
    : : ver 7.2.2.3.1. How can I upgrade to new version of Design
    2000
    : : (v2.1)?
    : : Can I backup data ,reinstall design v2.1 and then restore
    data
    : : Thanks very much for your help.
    : : BACH
    : This is a Headstart-only discussion group. Please address your
    : question to Oracle Customer Support, or visit the Support
    : web-site: metalink.oracle.com.
    null

  • Installing Developer 2000 ver 2.1 on Windows 2000

    I'm facing lot of problems with my Developer 2000 ver 2.1 on Windows 2000. Most of the time it gave me illegal operation error and closes the Designer or Runtime. How can i solve this problem. Is there any patch for D2k for installing in windows 2000

    I have installed Oracle Develoepr/2000 2.1 on Windows2000 and it works.You better install the latest Oracle Installer and then run this Installer to Install D2K .
    Thiru

  • Designer/2000 v2.1 with Rdbms 8.0.5 ,OAS 4.0 on NT

    Hi,
    I installed Oracle server v8.0.5( enterprise edition) and
    Application server 4.0 on Win NT. It works fine. But when I try
    to install designer/200 v 2.1 or developer/2000 v2.1( server
    edition) on top , the installation stops in the middle by giving
    the message "Internal Error ".
    Any help ??
    Thanks
    Chandra
    null

    Chandra (guest) wrote:
    : Hi,
    : I installed Oracle server v8.0.5( enterprise edition) and
    : Application server 4.0 on Win NT. It works fine. But when I
    try
    : to install designer/200 v 2.1 or developer/2000 v2.1( server
    : edition) on top , the installation stops in the middle by
    giving
    : the message "Internal Error ".
    : Any help ??
    : Thanks
    : Chandra
    dear chandra,
    I faced the same problem too. Are you using the beta version?
    If not try to install designer/2000(this will install the
    developer/2000 also) first and then the database and application
    server. the beta version tries to modify some MFC*dll files. It
    does not work in any combination of installation.
    Hope this will help
    thanx
    Ranjan
    null

  • Developer 2000 ver 5 connecting problem with 10g

    Is it possible to work developer 2000 ver 5 with 10g database? When I connected in Form Designer it worked after a long time But when in runtime both form and report gives network error. So, Please give a solution for developer 5 to work with oracle 10g.
    Thanks & regards.
    Jamil

    Hi,
    We use forms 6 and had the same problem and at this time upgrade to a new version is not possible; so we found two ways to handle this (Note we have form 6 to this may not work for you):
    a) Compile your forms using a database 8 or 8i, and the fmx should be able to connect to a 10g database. this means a daily backup from to 10g to 8i or at least make sure you have the same db structure.
    b) Perform a partial forms upgrade of procedure builder:
    from the help menu on forms open "About form builder" and check the version of installed products.
    Download forms 6i and upgrade only "Procedure builder" with this:
    Oracle Procedure Builder V6.0.8.21.0 Build #1459 - Production
    option b has been working for us, we are able to connect to a 10g database without problems.
    Of course, this is a work-around, not supported by Oracle or anyone for that matter, so make sure you test it in a couple of machines before using in a production envrionment.
    Regards,
    Hugo.

  • Excel file creation on application server

    Gurus,
    I have seen a lot of threads on excel file creation in application server, but failed to see if anyone had a solution.
    Problem: In background execution I need to create an excel sheet on application server, the data would be contained in internal table, The FM like WS_DOWNLOAD etc..cannot support these as they have GUI component.
    All the documentation that I have been through states to use dataset which saves the file in.csv or txt format seperated by delimiter, is it possible to save as a true excel file.
    same as this thread:
    Re: Excel download in Application Server
    let me know,
    Thanks in advance .

    * Write column headers, if required
      IF column_headers = 'X'.
    *   ... override field names with LABELS_IN, if specified
        IF NOT labels_in[] IS INITIAL.
          DESCRIBE TABLE labels_in LINES num_lines.
          IF num_lines > num_fields.
            RAISE too_many_labels.
          ELSEIF num_lines < num_fields.
            RAISE too_few_labels.
          ENDIF.
          ASSIGN COMPONENT 1 OF STRUCTURE labels_in TO <f>.
          LOOP AT fields_in.
            READ TABLE labels_in INDEX sy-tabix.
            fields_in-name = labels_in-name.
            MODIFY fields_in.
          ENDLOOP.
        ENDIF.
    *   ...write column headers to file...
        position = 0.
        LOOP AT fields_in.
          IF fixed_length NE space.
    *** INSERT: DAR was here for Issue 17817 --------------- dar012009 ---v
            field_len = STRLEN( fields_in-name ).
    *** INSERT: DAR was here for Issue 17817 --------------- dar012009 ---^
            DO fields_in-len TIMES.
              offset = sy-index - 1.
    *          IF sy-index > 15.                                 dar012009
              IF sy-index > field_len.                          "dar012009
                line_out+position(1) = space.
              ELSEIF fields_in-name+offset(1) NE space.
                line_out+position(1) = fields_in-name+offset(1).
              ELSE.
                line_out+position(1) = space.
              ENDIF.
              position = position + 1.
            ENDDO.
          ELSE.
            CONCATENATE line_out fields_in-name INTO line_out
              SEPARATED BY delimiter.
          ENDIF.
        ENDLOOP.
        IF fixed_length EQ space.
          SHIFT line_out LEFT DELETING LEADING delimiter.
        ENDIF.
        IF no_write IS INITIAL.                                 "dar041505
          TRANSFER line_out TO file_out.
        ENDIF.                                                  "dar041505
        data_out = line_out.  APPEND data_out.                  "dar041505
      ENDIF.
    * Write lines to file...
      LOOP AT data_in.
        CLEAR line_out.
        position = 0.
        DO num_fields TIMES.
          ASSIGN COMPONENT sy-index OF STRUCTURE data_in TO <f>.

  • How to compare 2 different repositories in Designer 2000?

    How to compare 2 different repositories in Designer 2000?
    Is it possible to compare repositories?
    If yes, how can i do that? Is there a tool for this?
    Situation:
    I've 2 different designer repositories. I've compared in the database schema DES2_MANAGER the table SDD_ELEMENTS with the second database.
    I've compared the modules, where the last_update_date was different.
    Result was 10 screens. So now i want to compare these modules(SCREEN) in designer with an other designer Repositorie.
    Thanks anyway

    If yo will click on the name/title of the document (there'll be a small arrow on the right of it), you will get this menu:
    You can choose to browse all versions....

  • Install Acrobat 7 and CS2 applications - running Windows 2000 and IE 6

    need to install replacment Acrobat 7 and CS2 applications - running Windows 2000 and IE 6. Any problems with this?

    http://web.archive.org/web/20070203090721/http://www.adobe.com/products/creativesuite/syst emreqs.html

  • User name & password for oracle designer 2000

    Hi,
    I have downloaded the oracle designer 2000 from oracle . I need user name & password to enter the screen. If anyone knows pl. help me

    The username and password you are looking for is that of the Database you are connecting to. I.e. where you have installed the designer repository.
    If you have not installed the repository, follow the instruction to create the oracle user (repository owner), install the designer repository and use it to login.
    The best thing will be to download the documentation the way you downloaded the software. It is important

  • Importing a .dmp file into Designer/2000 v1.3.2

    Hi everyone. Is it possible to directly import a dmp file
    exported using Designer/2000 v1.0.0 into Designer/2000 v1.3.2.
    or do I need to go via the same v1.0.0 import and only then
    upgrade to v1.3.2
    Thank you for your help.
    null

    Mangaliso,
    This forum is for Headstart related questions and experiences
    only. Please go to metalink.oracle.com to get more information on
    your problem.
    Regards,
    Lauri
    Mangaliso Fweta (guest) wrote:
    : Hi everyone. Is it possible to directly import a dmp file
    : exported using Designer/2000 v1.0.0 into Designer/2000 v1.3.2.
    : or do I need to go via the same v1.0.0 import and only then
    : upgrade to v1.3.2
    : Thank you for your help.
    null

  • DOC SUR LA MIGRATION D'UNE BASE DE DONNEE ACCESS 2000 VERS ORACLE 9i

    TRES TRES URGENT
    JE PREPARE MON MEMOIRE ET C'EST LA PREMIERE FOIS QUE J UTILISE LE WORK BENCH MIGRATION D ORACLE
    J AIMERAI BIEN RECEVOIRE UNE DOCUMENTATION SUR LA CONFIGURATION D ORACLE MIGRATION WORKBENCH ET LES DIFFERENT ETAPES A RESPECTER POUR FAIRE LA MIGRATION DUNE BASE DE DONNEE ACCESS 2000 VERS ORACLE 9i SI POSSIBLE AVEC LES ECRANS DE QUI MONTRE LES DIFFERENTS ETAPES DE LA CONFIGURATION ET DE LA MIGRATION.
    MERCI
    SVP SVP

    Regardez http://download-west.oracle.com/docs/html/B10255_01/toc.htm. il montre les différences.
    merci
    Barry

Maybe you are looking for

  • An unexpected error has been detected by Java Runtime Environment

    Hi there, I am trying to run my application in java and suddenly java started giving me the bellow error: # An unexpected error has been detected by Java Runtime Environment: # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d81bd10, pid=1500, tid=3

  • A whine (and veiled query for advice)

    A longish time ago, in a state far away..... I had a license to Photoshop, the bee's knees of creative software. (an even longer time ago, in another universe, I used PageMaker 1.0 on a Mac 512 with internal and extermal floppy drives and no hard dis

  • Use emails and adress book from a different user

    I bought a new Imac and start using it. Then when I tryed to restore the back up that I have on my other macbook, that I did on Time Machine, it went to a different user. Now I have 2 users. There are 2 apps that I can not use with me new user (Thing

  • Updating an existing data  in the table...urgent

    Hi All, I am updating the existing records in the table.My CO piece of code is as below: if(!vo.isExecuted() && !vo.isPreparedForExecution()) vo.executeQuery(); Row requestRow = vo.getCurrentRow(); requestRow.setAttribute("CustomerName", custName); r

  • Logitech keyboard for use on Apple Mac Mini

    I am trying to use my Logitech 350 wired keyboard with my Apple Mac Mini. Is there any key that can function like the Apple Function or Apple Option keys? Also, how does one get the F1-12 keys to work and what do they do?