ORA-20001 send Email of APEX

Until anyone responds... I 'm affecting the security group ID. ;-)

The inside APEX, I created a simple test application that allows the user to enter a phone number and the code attempts to use e-mail to send to the phone number, that is a message "text".

The page was just an edit individual line and a button control. The button triggers a process called 'TextEmProc '.

"TextEmProc" was just a few lines:

< PRE >
DECLARE

ls_JustTheNums VARCHAR2 (32);

BEGIN

ls_JustTheNums: = RegExp_Replace (: P1_MOBILE_NUM, "[^ [: digit:]]'," ");

wwv_flow_api.set_security_group_id;

APEX_040000.APEX_MAIL. SEND (p_to = > ls_JustTheNums |) "@txt.att.net.
P_FROM = > 'your Apex App friendly. "
p_body = > "Someone's average margin");

END;
< / PRE >

The appellant, translates the error message: "ORA-20001: this procedure must be called from an application session.»

This never works and always gets this error. Anyone have an idea what is wrong?

Thank you

-Joe

Hey Joe,

If you use the package of mail in an APEX application so no need to set the security_group_id, because it is already defined.

Try the following code:

DECLARE
   ls_JustTheNums VARCHAR2(32);
BEGIN
   ls_JustTheNums := RegExp_Replace( :P1_MOBILE_NUM, '[^[:digit:]]', '' );
   APEX_MAIL.SEND( p_to    => ls_JustTheNums || '@txt.att.net',
                           p_from  => 'Your Friendly Apex App',
                           p_body  => 'Someone is Way Out of Margin' );
END;

Note: That I also deleted APEX_040000 of your call APEX_MAIL scheme name. You should not use references to hard-coded patterns, because if you upgrade to 4.1 APEX your code will no longer work.

BTW, at APEX 4.0, you can also use use the declarative process type 'Send E-Mail' and use & PX_XXXX. syntax to refer to dynamic values.

Concerning
Patrick
-----------
My Blog: http://www.inside-oracle-apex.com
APEX Plug-Ins: http://apex.oracle.com/plugins
Twitter: http://www.twitter.com/patrickwolf

Tags: Database

Similar Questions

  • Sending emails to APEX

    Hi friends,

    I am trying to create some procedures to send emails to users when specific situations occurs at the database, using APEX.

    In Apex Admin e-mail log, I still get access to the network error ORA-24247 denied by the access control list (ACL).

    I looked in the manuals and Foruns and got the procedure to allow http://download.oracle.com/docs/cd/E10513_01/doc/install.310/e10496/otn_install.htm#BEHGBHDF, but I couldn't make it work.

    It is said the table DBA_NETWORK_ACLS does not exist.

    How should I proceed?

    Thank you!

    You need to enable network services as explained in the link posted in your first post.

    Do you need s/n roles, if you do not have... ask your DBA ;)

  • Send Email to APEX 4.2

    Hi All,
    
         This could be general question would like to know what could be best way to send email to end users for below scenario
    
       - Assuming I have a Query as "select * from emp where empname is null"
      - It means we have empty values for column empname, if there are any empty values in that column I need to send mail to end users that "there are missing data for these columns" Please back fill those data manually.
    - In this way it will help end users to they manual work to check query in back end daily, we will be sending mail to users when we found these problem.
    
    Please help on this request to send mail.
    
    Regards,
    Sruthitamiri 
    

    Sruthi Tamiri wrote:

    1. Hi all
    2. It could be general question would like to know what might be the best way to send them to end-users for scenario below
    3. -Assuming that I have a query such as "select * from emp where empname sucks."
    4. -It means that we have empty for empname column values, if there are empty values in this column, I need to send an e-mail to end users that "missing data for these columns" back fill these data manually.
    5. -In this way it will help end-users to they manual work to check the query in backend per day, we will send mail to users when we learned these problem.
    6. Please help on this application to send an e-mail.
    7. Kind regards
    8. Sruthitamiri

    Why this message is formatted as code when it does not? Is it as an attempt to align the "chips" are manually created then it failed spectacularly. Note that there is a button in the editor of the forum for the formatting of the text and bulleted unordered lists.

    Sending e-mail alerts based on the results of the query is obtained using scheduled tasks or continuous Query Notification, as advised in this previous thread: Re: request/design of the necessary Multiple INTERFACE.

  • Problem of HTML tag when sending emails through APEX

    Hello
    Below is my code for sending mail:

    DECLARE
    l_body CLOB.
    l_body_html CLOB.

    cursor c2 is
    SELECT pn, pdt_name FROM lib_details WHERE a_date BETWEEN to_date(:P13_SDATE,'DD-MON_YYYY') AND to_date(:P13_EDATE,'DD-MON-YYYY').


    BEGIN
    for c_lib in c2
    loop
    l_body_html: = l_body_html |
    ' < html > < body >
    UL >
    li > ' | c_lib. PN||', ' || c_lib.pdt_name |' /li >
    /UL > '; p;
    l_body_html: = l_body_html | "< body / > < / html > ';

    () apex_mail. Send
    p_to = > "xxxx."
    P_FROM = > "xxxx."
    p_body = > l_body_html,
    p_subj = > "Test Mail");
    END;

    Give me the result in the format below:
    all the < HTML > < body > also comes with email, if I get the correct result, what is the problem here?
    I am not able to understand this. Can anyone help?

    OUTPUT
    ------------
    < html > < body >
    UL > li > a, b
    /UL > < html > < body >
    UL > li > c, and d
    /UL > < html > < body >
    ..........................................

    Please NOTE: I voluntarily removed the start tags (<) UL and li so that the post will not be shaped.

    Published by: Suzi on 9 February 2012 13:18

    >

    Give me the result in the format below:
    all theTags also comes with email, if I get the correct result, what is the problem here?
    I am not able to understand this. Can anyone help?

    For HTML output, you will need to send it using the parameter p_body_html , not p_body.

    Please NOTE: I voluntarily removed the start tags (<) UL and li so that the post will not be shaped.

    Display code encapsulated in .

    ...\
    

    Tags eliminates the need to resort to these weird paraphrases.

  • Error ORA-20001 while trying to reset the password of Admin 4.2 Apex

    Hello

    I had to reset my password admin apex and tried to launch as below mentioned the apxchpwd.sql script, but I got an ORA-20001.

    I checked in my console (OEM) the status of the user apex_040200 and status is expired, but not locked...

    Any idea of the reason for the error?

    This is the result I got while running the script:

    Connected to:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production

    With partitioning, OLAP, Data Mining and Real Application Testing options

    SQL > connect sys@mars as sysdba

    Enter password: *.

    Connected.

    SQL > @apxchpwd

    Syntax: SET SERVEROUTPUT {ON |} {OFF} [SIZE n]

    [[MAST] {WRA [DETERIORATED] |}] WOR [D_WRAPPED] | TRU [NCATED]}]

    Enter a lower value for the password for the user of the Application ADMIN Express.

    Enter a password for the user ADMIN [] *.

    Modified session.

    .. .the ADMIN password

    declare

    *

    ERROR on line 1:

    ORA-20001: password validation failure

    ORA-06512: at line 33 level

    Hello

    In fact, it seems to be a known issue with Apex 4.2.2 and there is a note in Metalink (support.oracle.com) on this subject:Doc ID 1579712.1

    Although it is not documented while the script asks you a new password, you must keep in mind the following:

    Password is not consistent with the rules of this site password complexity.
    * Password must contain at least one alphabetic character ().
    * Password must contain at least one punctuation character ().
    * Password must contain at least one uppercase alphabetic character.
    * Password must contain at least one alphabetic character tiny.

  • Apex.oraclecorp... I can send email from a procedure?

    I have an application that wants to send automatic reminders...

    I tried these but during the compilation of the procedure, it looks like they might not be available?

    APEX_MAIL. SEND, UTL_MAIL.send, UTL_SMTP. Looks like they are disabled in this environment or...


    What can I do with my privileges of the current user in apex.oraclecorp.com to send emails from a procedure?


    Thank you!!!

    Claudio

    I found my problem...

    The following procedure works fine... Thank you all!

    create or replace procedure 'TRACKER_EMAIL '.

    is

    BEGIN

    () apex_mail. Send

    p_to => ' [email protected]',

    P_FROM => ' [email protected]',

    p_body-online "it is a test."

    p_subj => "Recall!");

    END;

  • ORA-20001: unauthorized access (package for the undefined security group variable).

    I'm creating an application that uses the authentication of the APEX and characteristics (work) registration and forgot password forms (does not work).

    My I forgot the password is public (requires authentication). The user provides the user name and a secret answer, which are validated and then provides the new password. I try to use htmldb_util.reset_pw to reset the password of the user, but it does not work.

    I have a process on the new password page call a PL/SQL anonymous block that looks like this (see below), where username = P16_ITEM1 and P18_ITEM1 = new password.

    BEGIN
    apex_040000.htmldb_util.reset_pw (V ('P16_ITEM1'), V ('P18_ITEM1'));
    END;

    I don't know how to send a message of success/failure of such PL/SQL block to the APEX, but that's a separate issue, I guess.

    In any case, during the trial through SQL Developer as the user with APEX_ADMINISTRATOR_ROLE, I get the following error:

    ORA-20001: unauthorized access (package for the undefined security group variable).
    ORA-06512: at "APEX_040000.WWV_FLOW_FND_USER_API", line 22
    ORA-06512: at "APEX_040000.WWV_FLOW_FND_USER_API", line 1220
    ORA-06512: at "APEX_040000.HTMLDB_UTIL", line 1253
    ORA-06512: at line 8 level

    I've searched previous discussions and tried different suggestions with no luck.

    I'm on Oracle DB 11g XE and APEX 4.x.

    Any help will be appreciated. Thank you

    Alex.

    In any case, during the trial through SQL Developer as the user with APEX_ADMINISTRATOR_ROLE, I get the following error:

    ORA-20001: unauthorized access (package for the undefined security group variable).

    When executing code outside the Apex which depends on the security defined Apex group, perform the following steps before your own code:

    wwv_flow_api.set_security_group_id(apex_util.find_security_group_id('YOUR_SCHEMA_NAME'));
    

    Google "wwv_flow_api.set_security_group_id" for more details, like this blog:

    http://www.easyapex.com/index.php?p=502

    -Morten

    http://ORA-00001.blogspot.com

  • Send emails as a task without external SMTP server

    Hello

    I would like to send notifications by e-mail at set intervals, but ideally without needing an external SMTP server (if I could use an external SMTP server, it would be easy to do either with UTL_SMTP, UTL_TCP). It is possible to send mails from within applications using the APEX_MAIL package but I can not use this package in a task scheduler to a valid session. It should probably be possible to create a session of "false" (Giffy Martin on Oracle APEX D'Souza: how to create a Session of the APEX in PL/SQL) in a scheduled task, and then to send mails using APEX_MAIL but I hope there might be a simpler solution, so advice and guidance would be much appreciated.

    Kind regards

    Pavel

    If you do not want a 'Server SMTP external', which would be an "internal SMTP server" by your definition? APEX_MAIL is simply a wrapper around UTL_SMTP. You still need an SMTP server to send emails.

    See setting up Email to:

    http://docs.Oracle.com/CD/E59726_01/doc.50/e39151/adm_wrkspc002.htm#AEADM29163

  • APEX_SEND, PAAS and limit sending emails

    Hello world

    I intend to use APEX_MAIL. SEND_MAIL to send mails from 15 000-20 000 with PAAS.

    According to this http://docs.oracle.com/cloud/latest/dbcs_common/CSDBU/develop013.htm#CSDBU250 , we can send only 5000 emails per day...

    Is it possible to increase this limit to $ 15,000 or 20 000? I saw here that could send emails to 10 000 (https://community.oracle.com/message/2684697#2684697) so I'm quite confused, someone could help me on this please?

    Thank you

    Youssef

    1192074 wrote:

    Please update your forum profile with a real handle instead of '1192074 '.

    I intend to use APEX_MAIL. SEND_MAIL to send mails from 15 000-20 000 with PAAS.

    According to this http://docs.oracle.com/cloud/latest/dbcs_common/CSDBU/develop013.htm#CSDBU250 , we can send only 5000 emails per day...

    Is it possible to increase this limit to $ 15,000 or 20 000? I saw here that could send emails to 10 000 (https://community.oracle.com/message/2684697#2684697) so I'm quite confused, someone could help me on this please?

    The limit of 5000 applies to use the database Oracle Cloud Service. The post on the 2008 forum refers to the use of an installed instance locally the APEX, where no limit can be configured by the administrator of the instance using the instance Email Maximum per workspace setting.

    Ask questions specifically about the service Cloud DB on the Oracle database Service of Cloud forum. Note that since it is a parameter of the instance level, it will be not configurable for individual workspaces Cloud.

  • error ORA-20001: in the window of the geolocation

    When to access addresses, in packed geolocation application, I receive the following error message:

    ORA-20001: get_dbms_sql_cursor error ORA-00942: table or view does not exist

    Is this a bug in the application packed?

    I use apex.oracle.com to test this packaged application...

    Also not able to save an area of interest with a polygon

    1 error has occurred

    Hello

    In general, it should work - I have also tested the app on apex.oracle.com.

    First question:

    from your description, it seems that the packaged application installation did not create all or part required correctly tables.

    Can you check (via SQL Workshop) that the tables EBA_SPATIAL_ADDRESSES, EBA_SPATIAL_IMAGES and EBA_SPATIAL_AOI exist...?

    If this is not the case, try to remove and reinstall the application. One reason might be that your workspace quota is already maxed out and who

    There is simply no space left for the required tables...

    Question 2: the steps are:

    1) click the icon 'blue' polygon on the map

    2) click on the points of the polygon you want to draw

    3) click 'Finish' in the lower corner of the map

    (4) specify a name for the 'area of interest '.

    5) click "Save".

    Of course, this also requires the tables to be present...

    Hope this helps

    Best regards

    Carsten-

  • Create_collection_from_query_b; ORA-20104 and ORA-20001

    Hi all

    First of all:

    The APEX Version: Application Express 4.2.1.00.08

    SQL-Developer: Version 3.0.04

    Oracle: Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    I have an application process, which is expected to generate a collection. If I run this feature in the apex, a collection will be created, but no data.

    If I run this in the SQL-Developer, the

    As a result:

    ORA-20104: create_collection_from_query_b error: ORA-20001: invalid analysis of schema for the current workspace ID

    ORA-06512: in "APEX_040200.WWV_FLOW_COLLECTION", line 1878

    ORA-06512: in "APEX_040200.WWV_FLOW_COLLECTION", line 1915

    Code:

    [...]

    l_query: = ' select pal.valid_from, pal.valid_till, pa.supplier, Pal.Equipment_Type

    of quotation.purchase_agreement pa, quotation.purchase_agree_line pal

    IF APEX_COLLECTION. COLLECTION_EXISTS (p_collection_name = > c_coll_name)

    THEN APEX_COLLECTION. DELETE_COLLECTION (p_collection_name = > c_coll_name);

    END IF;

    APEX_COLLECTION. () CREATE_COLLECTION_FROM_QUERY_B

    p_collection_name = > c_coll_name,

    p_query = > l_query);

    The select statement is correct. (Already checked)

    Why my error occure?

    Thanks for help

    Hello

    First of all: thanks vinc.

    This error occurse just in the sql developer.

    This error is not important for apex.

    If you see this error message in the sql developer, you should omit the collection and "print" query. [dbms_output.put_line (l_query);]

    You copy the result (select... from... where the...) of the dbms_output and run this. I had really no results.  I had just a space after a variable.

    I got the error

    This problem is now resolved.

  • sending emails using APEX_MAIL. Send

    All,

    I use apex API to send emails and attachments but here on Lotus notes when e-mails are received this is this text by default "Please meet XXXXXX" at the head, how do I remove this default text to appear when Apex sends e-mails in Lotus notes?

    APEX_MAIL. SEND)

    P_TO = > xxxxx.

    P_FROM = > xxxx,.

    P_CC = > xxxx,.

    P_BCC = > xxx,

    P_BODY = > body text.

    P_SUBJ = > text object.

    P_BODY_HTML = > html text); .......

    using Apex 4.1.1/Oracle 11gx

    Thank you

    Jeff

    OK, consider this as a full page PLSQL level process I work with a single line below its good, runs, it runs at the click of a button.

    Start

    APEX_MAIL. SEND)

    P_TO => ' [email protected]',

    P_FROM =>' [email protected]',

    P_CC => ' [email protected]',

    P_BCC => ".

    P_BODY => the body of the text,

    P_SUBJ => 'it's my letter of text. "

    P_BODY_HTML-online 'Hello we test the body of the email here');

    exception

    When other then null;

    end;

    regrads,

  • Interactive report gives ORA - 20001:error

    Hello

    I am reading a table of SQL Server and displays the output in the interactive report. SQL Server read via database public and connected to the database link Oracle via DG4MSQL. The error I get is:
    ORA-20001: get_dbms_sql_cursor error ORA-02070: SQL SERVER database does not COUNT in this context

    However when I run the same report as usual report it works fine.

    The SQL query behind the report is:
    SELECT * FROM TRANSP_COMP_V;
    The code behind the display is:
    CREATE OR REPLACE VIEW TRANSP_COMP_V AS
    (
    select 
    "Usr_Name",
    "Usr_Handle", 
    "BLoc", 
    "SLC_Hand"
    from ord.Req@sqlserver);
    Where @sqlserver is the link of public database to SQL Server 2008 R2.

    I tried the following:

    (1) used instead the name of each column * and got the same result
    (2) Rebult and respected the view several times. No problem during compilation
    (3) tested and ran the view independently and the SQL query in SQL Studio without any problem

    Is there any restriction on the interactive report during playback of the external data source (such as SQL Server through ODBC)? The error itself is confusing, as I'm not using COUNTY anywhere.

    Thank you very much.


    Using APEX 4.1.1 running in the Oracle Database 11 G R2 (windows x 64) (topic 23)

    It may be different depending on the style of the selected candidates paging - as long as total nbr of lines is not indicated, he might be allowed.
    APEX product managers may be able to describe some internal workings that explain why it does not work for an IR.

    It is one of the best examples out there for the pipeline functions. It's just a feeling - something I'll try, but I have not worked with external sources in a long time.
    http://www.Oracle-Developer.NET/display.php?ID=207

    Scott

  • Send email to multiple users

    I use Apex 4.1 and need to send e-mail based on some condition.

    I need to send an e-mail to two people A and B if APPUSER is based in APAC and otherwise to send email to anyone C

    I have the slider that gets this information, but do not know how to use it in the code for apex_mail.send

    How to apply the values returned by the cursor on the code below?

    ----------

    Open mailcursor (this slider returns A and B or C just)

    () apex_mail. Send
    p_to = > XXXXXXXXXX (it should send two people or based on the extracted value of the cursor).
    P_FROM = > '[email protected] ',.
    p_cc = > NULL,
    p_body = > ' * this is a system generated message, please do not respond to this *' |
    Chr (10) | UTL_TCP. CRLF. "Please check data ' |"
    Chr (10) | UTL_TCP. CRLF. 'Employee' | : P8_EMP_EMAIL |' raised demand on demand ' |
    Chr (10) | UTL_TCP. CRLF. "Thank you,.
    p_subj = > 'New demand Alert');

    LKSwetha wrote:
    I use Apex 4.1 and need to send e-mail based on some condition.

    I need to send an e-mail to two people A and B if APPUSER is based in APAC and otherwise to send email to anyone C

    I have the slider that gets this information, but do not know how to use it in the code for apex_mail.send

    How to apply the values returned by the cursor on the code below?

    ----------

    Open mailcursor (this slider returns A and B or C just)

    Please post code using .

    ...\
    

    Tags.

    apex_mail.send(
    p_to => XXXXXXXXXX ( it has to send to two people or one based on value fetched from cursor ) ,
    p_from => '[email protected]',
    p_cc => NULL,
    p_body => '***** This is a system generated message, please do not reply to this *****'||
    chr(10) || utl_tcp.crlf || 'Please check for the data '||
    chr(10) || utl_tcp.crlf || 'As Employee '||:P8_EMP_EMAIL||' has raised request on application '||
    chr(10) || utl_tcp.crlf ||'Thanks',
    p_subj => 'New Request Alert' );
    

    As stated in the documentation ofapex_mail.send of documentation for the p_to parameter:

    Valid e-mail address to which the e-mail will be sent (mandatory). To several email addresses, use a comma-separated list

  • Error ORA-20001 when you create a new application

    Hello
    I am creating a new application of an existing table in the database and I get the following error. The application is created using the Wizard (type of database application, from scratch, report and our page)

    ORA-20001: unable to create modules. ORA-20001: create error pages. ORA-20001: unable to create form page. ORA-20001: Error Page = 2 item = 'P2_NON_ORACLE_EMPLOYEE_SPEAKER' id = '1975288532127294112' ORA-20001: error page 2 item = = "P2_NON_ORACLE_EMPLOYEE_SPEAKER" id = "1975288532127294112" a same name something like existing at the level of applications. ORA-0000: normal end successfully

    The table I created the app on is defined as follows:
    CREATE TABLE  "TABLE_1" 
       (    "ID" NUMBER, 
            "SESSION_EXTERNAL_PAPER" VARCHAR2(30), 
            "OWNER_CFP_SUBMITTER1_FULL_NA" VARCHAR2(255), 
            "OWNER_CFP_SUBMITTER1_COMPANY" VARCHAR2(255), 
            "STATUS" VARCHAR2(30), 
            "SESSION_ID" NUMBER, 
            "TITLE" VARCHAR2(255), 
            "ABSTRACT" VARCHAR2(4000), 
            "SESSION_TYPE" VARCHAR2(30), 
            "SESSION_CATEGORY" VARCHAR2(30), 
            "STREAM" VARCHAR2(30), 
            "PRIMARY_TRACK" VARCHAR2(255), 
            "OPTIONAL_TRACK" VARCHAR2(255), 
            "CROSS_STREAM_TRACK" VARCHAR2(30), 
            "SUPPORTING_VIDEO" VARCHAR2(4000), 
            "ATTENDEE_ROLE" VARCHAR2(255), 
            "TO_RATING" VARCHAR2(30), 
            "TO_COMMENTS" VARCHAR2(4000), 
            "COMMENTS" VARCHAR2(4000), 
            "ORACLE_PARTNERNETWORK" VARCHAR2(30), 
            "IS_YOUR_OPN_MEMBERSHIP_UNDER_A" VARCHAR2(255), 
            "ORACLE_PARTNER_TYPE" VARCHAR2(255), 
            "OPN_MEMBERSHIP_LEVEL" VARCHAR2(30), 
            "ORACLE_REGION_BASED" VARCHAR2(30), 
            "ORACLE_VALIDATED_INTEGRATION" VARCHAR2(30), 
            "HAS_YOUR_COMPANY_ACHIEVED_SPEC" VARCHAR2(4000), 
            "PLEASE_DESCRIBE_THE_VALUE_OF_O" VARCHAR2(4000), 
            "INCLUDE_CASE_STUDY" VARCHAR2(30), 
            "PROVIDE_NAME_OF_THE_CUSTOMER_F" VARCHAR2(255), 
            "PLEASE_PROVIDE_A_BRIEF_DESCRIP" VARCHAR2(4000), 
            "NON_ORACLE_EMPLOYEE_SPEAKER1_F" VARCHAR2(255), 
            "NON_ORACLE_EMPLOYEE_SPEAKER1_C" VARCHAR2(255), 
            "ORACLE_EMPLOYEE_SPEAKER1_FULL" VARCHAR2(255), 
            "ORACLE_EMPLOYEE_SPEAKER1_COMPA" VARCHAR2(255), 
            "NON_ORACLE_EMPLOYEE_SPEAKER2_F" VARCHAR2(255), 
            "NON_ORACLE_EMPLOYEE_SPEAKER2_C" VARCHAR2(255), 
            "ORACLE_EMPLOYEE_SPEAKER2_FULL" VARCHAR2(255), 
            "ORACLE_EMPLOYEE_SPEAKER2_COMPA" VARCHAR2(255), 
            "NON_ORACLE_EMPLOYEE_SPEAKER3_F" VARCHAR2(255), 
            "NON_ORACLE_EMPLOYEE_SPEAKER3_C" VARCHAR2(255), 
            "ORACLE_EMPLOYEE_SPEAKER3_FULL" VARCHAR2(255), 
            "ORACLE_EMPLOYEE_SPEAKER3_COMPA" VARCHAR2(255), 
            "NON_ORACLE_EMPLOYEE_SPEAKER4_F" VARCHAR2(255), 
            "NON_ORACLE_EMPLOYEE_SPEAKER4_C" VARCHAR2(255), 
            "ORACLE_EMPLOYEE_SPEAKER4_FULL" VARCHAR2(255), 
            "ORACLE_EMPLOYEE_SPEAKER4_COMPA" VARCHAR2(255), 
            "CREATED" DATE, 
            "CREATED_BY" VARCHAR2(50), 
            "LAST_UPDATE" DATE, 
            "LAST_UPDATED_BY" VARCHAR2(50), 
             CONSTRAINT "OOW_PAPER_PK" PRIMARY KEY ("ID") ENABLE
       ) ;
    I use APEX version 4.0.2.00.07

    Any idea what could be wrong and what can be done to solve the problem?

    See you soon,.
    Andy

    If you add a synonym for display to the database, the generator must see and allow you to use...

    Thank you

    Tony Miller
    Webster, TX

    Never argue with a fool. They do you drag down to their level, then beat you with experience.

    If you answer this question, please mark the thread as closed and give points where won...

Maybe you are looking for